diff --git a/autotodo/data/notes.md b/autotodo/data/notes.md index ed18fd7..dfa6f7b 100644 --- a/autotodo/data/notes.md +++ b/autotodo/data/notes.md @@ -27,6 +27,23 @@ # 2026-02-09 +- [ ] Rechnung Gertrudenhof + +Testobesto + + +- [ ] Rechnung an lustige Leute + +- [ ] Cornelius hauen + + +- [ ] Rechnung STG +- [ ] Test 2 + +- [ ] Test 3 + +# 2026-03-16 + - [ ] Rechnung Gertrudenhof - [ ] Rechnung an lustige Leute - [ ] Cornelius hauen diff --git a/autotodo/data/patterns.ron b/autotodo/data/patterns.ron index f45ee11..2f6d845 100644 --- a/autotodo/data/patterns.ron +++ b/autotodo/data/patterns.ron @@ -1,8 +1,4 @@ [ - ( - name: "P5 rückmelden", - pattern: MonthlyOpt(dom: 10, months: ["March"]), - ), ( name: "Morello updaten", pattern: Weekly(dow: "Monday"), @@ -44,7 +40,7 @@ pattern: MonthlyOpt(dom: 15, months: ["February", "March"]), // March for 2026, Feb for after ), ( - name: "Jahresabschluss", + name: "Jahresabschluss des Vorjahres", pattern: MonthlyOpt(dom: 15, months: ["March"]), ), ( diff --git a/autotodo/src/main.rs b/autotodo/src/main.rs index a24060b..723d34d 100644 --- a/autotodo/src/main.rs +++ b/autotodo/src/main.rs @@ -67,7 +67,7 @@ fn update_notes(notes_path: &PathBuf, patterns_path: Option) { let mut latest_date = NaiveDate::MIN; let mut lines_to_not_use: Vec = Vec::new(); - // Find todo-type lines + // Find todo-type lines from existing file let mut n_lines = 0; while let Ok(n) = notes_bufreader.read_line(&mut str_buf1) { if n == 0 { @@ -205,7 +205,7 @@ fn update_notes(notes_path: &PathBuf, patterns_path: Option) { fn main() { let args = Args::parse(); if args.patterns == None { - dbg!("Warning: No patterns argument given. Will not generate any pattern-type todos"); + println!("Warning: No patterns argument given. Will not generate any pattern-type todos"); } update_notes(&args.notes, args.patterns); } diff --git a/double_pendulum/.gitignore b/double_pendulum/.gitignore new file mode 100644 index 0000000..0f9d898 --- /dev/null +++ b/double_pendulum/.gitignore @@ -0,0 +1,2 @@ +target +out diff --git a/double_pendulum/Cargo.lock b/double_pendulum/Cargo.lock new file mode 100644 index 0000000..f8845fb --- /dev/null +++ b/double_pendulum/Cargo.lock @@ -0,0 +1,61 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 4 + +[[package]] +name = "crossbeam-deque" +version = "0.8.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51" +dependencies = [ + "crossbeam-epoch", + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-epoch" +version = "0.9.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" +dependencies = [ + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-utils" +version = "0.8.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" + +[[package]] +name = "double_pendulum" +version = "0.1.0" +dependencies = [ + "rayon", +] + +[[package]] +name = "either" +version = "1.15.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" + +[[package]] +name = "rayon" +version = "1.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f" +dependencies = [ + "either", + "rayon-core", +] + +[[package]] +name = "rayon-core" +version = "1.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91" +dependencies = [ + "crossbeam-deque", + "crossbeam-utils", +] diff --git a/double_pendulum/Cargo.toml b/double_pendulum/Cargo.toml new file mode 100644 index 0000000..afe3d6d --- /dev/null +++ b/double_pendulum/Cargo.toml @@ -0,0 +1,7 @@ +[package] +name = "double_pendulum" +version = "0.1.0" +edition = "2021" + +[dependencies] +rayon = "1.10" diff --git a/double_pendulum/src/main.rs b/double_pendulum/src/main.rs new file mode 100644 index 0000000..aabd930 --- /dev/null +++ b/double_pendulum/src/main.rs @@ -0,0 +1,244 @@ +use rayon::prelude::*; +use std::f32::consts::PI; +use std::io::Write; +use std::process::{Command, Stdio}; + +const WIDTH: usize = 2000; +const HEIGHT: usize = 2000; + +const FPS: usize = 1; +const DURATION: usize = 25; +const TOTAL_FRAMES: usize = FPS * DURATION; + +const SUBSTEPS_PER_FRAME: usize = 100; + +const DT: f32 = 0.002; + +const EPS: f32 = 1e-6; + +const OUTPUT: &str = "double_pendulum_lyapunov.mp4"; + +const G: f32 = 9.81; + +#[derive(Clone, Copy)] +struct State { + th1: f32, + th2: f32, + w1: f32, + w2: f32, +} + +#[derive(Clone, Copy)] +struct Cell { + a: State, + b: State, + lyap: f32, +} + +fn main() -> Result<(), Box> { + let mut cells = initialize(); + + let mut frame = vec![0u8; WIDTH * HEIGHT * 3]; + + let mut ffmpeg = Command::new("ffmpeg") + .args([ + "-y", + "-f", + "rawvideo", + "-pix_fmt", + "rgb24", + "-s", + &format!("{}x{}", WIDTH, HEIGHT), + "-r", + &FPS.to_string(), + "-i", + "-", + "-c:v", + "libx264", + "-preset", + "slow", + "-crf", + "18", + "-pix_fmt", + "yuv420p", + OUTPUT, + ]) + .stdin(Stdio::piped()) + .spawn()?; + + let stdin = ffmpeg.stdin.as_mut().unwrap(); + + for frame_i in 0..TOTAL_FRAMES { + for _ in 0..SUBSTEPS_PER_FRAME { + cells.par_iter_mut().for_each(|c| { + c.a = rk4(c.a); + c.b = rk4(c.b); + + let dth1 = wrap(c.a.th1 - c.b.th1); + let dth2 = wrap(c.a.th2 - c.b.th2); + + let dist = (dth1 * dth1 + dth2 * dth2).sqrt(); + + if dist > 0.0 { + c.lyap += (dist / EPS).ln(); + + let scale = EPS / dist; + + c.b.th1 = c.a.th1 + dth1 * scale; + c.b.th2 = c.a.th2 + dth2 * scale; + c.b.w1 = c.a.w1; + c.b.w2 = c.a.w2; + } + }); + } + + render(&cells, &mut frame); + + stdin.write_all(&frame)?; + + println!("frame {}/{}", frame_i + 1, TOTAL_FRAMES); + } + + drop(ffmpeg.stdin.take()); + + ffmpeg.wait()?; + + Ok(()) +} + +fn initialize() -> Vec { + let mut v = vec![ + Cell { + a: State { + th1: 0.0, + th2: 0.0, + w1: 0.0, + w2: 0.0 + }, + b: State { + th1: 0.0, + th2: 0.0, + w1: 0.0, + w2: 0.0 + }, + lyap: 0.0 + }; + WIDTH * HEIGHT + ]; + + v.par_chunks_mut(WIDTH).enumerate().for_each(|(y, row)| { + let fy = y as f32 / (HEIGHT - 1) as f32; + + for (x, c) in row.iter_mut().enumerate() { + let fx = x as f32 / (WIDTH - 1) as f32; + + let phi1 = -PI + fx * 2.0 * PI; + let phi2 = -PI + fy * 2.0 * PI; + + let a = State { + th1: phi1, + th2: phi2, + w1: 0.0, + w2: 0.0, + }; + + let b = State { + th1: phi1 + EPS, + th2: phi2 + EPS, + w1: 0.0, + w2: 0.0, + }; + + *c = Cell { a, b, lyap: 0.0 }; + } + }); + + v +} + +fn render(cells: &[Cell], frame: &mut [u8]) { + frame + .par_chunks_mut(WIDTH * 3) + .enumerate() + .for_each(|(y, row)| { + let src = &cells[y * WIDTH..(y + 1) * WIDTH]; + + for (x, c) in src.iter().enumerate() { + let i = x * 3; + + let val = (c.lyap * 0.02).tanh(); + + let v = (val * 255.0) as u8; + + row[i] = v; + row[i + 1] = v; + row[i + 2] = v; + } + }); +} + +fn rk4(s: State) -> State { + let k1 = deriv(s); + + let s2 = add(s, k1, 0.5 * DT); + let k2 = deriv(s2); + + let s3 = add(s, k2, 0.5 * DT); + let k3 = deriv(s3); + + let s4 = add(s, k3, DT); + let k4 = deriv(s4); + + State { + th1: s.th1 + DT * (k1.th1 + 2.0 * k2.th1 + 2.0 * k3.th1 + k4.th1) / 6.0, + th2: s.th2 + DT * (k1.th2 + 2.0 * k2.th2 + 2.0 * k3.th2 + k4.th2) / 6.0, + w1: s.w1 + DT * (k1.w1 + 2.0 * k2.w1 + 2.0 * k3.w1 + k4.w1) / 6.0, + w2: s.w2 + DT * (k1.w2 + 2.0 * k2.w2 + 2.0 * k3.w2 + k4.w2) / 6.0, + } +} + +#[derive(Copy, Clone)] +struct Deriv { + th1: f32, + th2: f32, + w1: f32, + w2: f32, +} + +fn deriv(s: State) -> Deriv { + let d = s.th1 - s.th2; + + let sin = d.sin(); + let cos = d.cos(); + + let denom = 3.0 - (2.0 * d).cos(); + + let w1dot = (-9.81 * (3.0 * s.th1.sin() + (s.th1 - 2.0 * s.th2).sin()) + - 2.0 * sin * (s.w2 * s.w2 + s.w1 * s.w1 * cos)) + / denom; + + let w2dot = + (2.0 * sin * (2.0 * s.w1 * s.w1 + 2.0 * 9.81 * s.th1.cos() + s.w2 * s.w2 * cos)) / denom; + + Deriv { + th1: s.w1, + th2: s.w2, + w1: w1dot, + w2: w2dot, + } +} + +fn add(s: State, k: Deriv, h: f32) -> State { + State { + th1: s.th1 + k.th1 * h, + th2: s.th2 + k.th2 * h, + w1: s.w1 + k.w1 * h, + w2: s.w2 + k.w2 * h, + } +} + +fn wrap(a: f32) -> f32 { + let tau = 2.0 * PI; + + (a + PI).rem_euclid(tau) - PI +} diff --git a/ellamedia_contract b/ellamedia_contract.md similarity index 100% rename from ellamedia_contract rename to ellamedia_contract.md diff --git a/ibans.md b/ibans.md new file mode 100644 index 0000000..1fa11ae --- /dev/null +++ b/ibans.md @@ -0,0 +1,10 @@ +## Löhne +Hassan: DE26 6609 0800 0009 4775 43 +Mika: +Corni: + +## Sachbezüge +Hassan: DE61 7001 7000 8888 1937 10 +Mika: DE66 7001 7000 8888 0423 00 +Corni: DE95 7001 7000 8888 0424 57 +Jan: DE14 7001 7000 8888 1922 28 diff --git a/island_insp.md b/island_insp.md new file mode 100644 index 0000000..44480ec --- /dev/null +++ b/island_insp.md @@ -0,0 +1,53 @@ +## Copywriting + +topology.vc: We're an early stage emerging tech venture firm. +unseen studio: Creating the unexpected / A brand, digital & motion studio / A brand, digital and motion studio creating refreshingly unexpected ideas and striking visuals that help bold brands cut through the noise. +Wibify: Wir bauen, was Sie digital erfolgreich macht +WAM: We design and build products that help companies grow. +Radiance: Build bold. Build fast. Build once. +Liteshop: We create identity, brand messaging, packaging, positioning, strategies, for projects, companies and events +fonts.wondermake.xyz: Weird, wonderful & partly functional fonts for the discerning designer +lml.cc: Digital Excellence, Global Innovation, Business meets Art, Unlock Brand Depth. Sekundär: Art Direction: Art Direction, UI&UX, Brand Design, Development +bajgartoffice.com: Your shortcut to a brand that connects meaning with feeling. Sekundär: for early stage tech startups that need direction and identity + +Ist: + +Wir entwickeln Software mit maximaler Expertise und dem Mut, IT konsequent neu zu denken. Das Ergebnis: Systeme, die echtes Wachstum erschaffen. Unsere Kunden wissen: Wir sind direkt und nahbar, mit echter Lust auf Top-Lösungen - bereit, jede Herausforderung gemeinsam anzupacken. + +Wie unseen studio: + +Eine Softwareagentur, die durchdachte Lösungen entwickelt, mit denen Unternehmen IT zu ihrer größten Stärke machen. +A software agency building _ and _ that help companies _ and _. + +Projektslisten: + +Pandaloop: Eine Software-Agentur, die für breite Expertise in modernsten Technologien und maximale Lernbereitschaft steht. Wir realisieren Ihre Software- und IT-Projekte auf höchstem Niveau. + +### Überlegungen +- Die ersten 2 Wörter, die der User sieht, sollten "Software" und "Pandaloop" sein + +## Design +https://www.withradiance.com/ (Animation hat signifikante Fehler) +https://unseen.co/ +https://2025.unseen.co/ +https://www.simonholm.studio/ +https://liteshop.design/en +https://www.jobyaviation.com/ +https://fonts.wondermake.xyz/fonts +https://lml.cc (Splashscreen Mitte) +https://wero-wallet.eu +https://freitag.ch/en_DE +https://www.apollo.io/ + +## Branchenähnliche Websites +https://www.denkwerk.com/ Ansprache ganz gut (Culture Seite) + +## Typographie +Plan: Wenn man ne gap zu spalte ratio festlegt kann man das letter spacing so abstrahieren: +- Pandaloop schriftzug: 8 Spalten + 7 Gaps +- PL Logo: 3 Sp + 2 Gaps +-> Letter spacing so dass 'o' von "Pandaloop" halb so hoch ist wie logo +-> Daraus ergibt sich auch ein Grid system für zeilen +- WOBEI: Man sollte auch eine Gap bei zeilen haben also muss PL logo bisschen mehr als doppelt so hcoh sein wie o + -> Vermutlich will man gap_x = gap_y? +- Note: Pandaloop ist 1.5 mal so hoch wie das o in Pandaloop (in Mozilla Headline) diff --git a/leadfinder/.gitignore b/leadfinder/.gitignore index ea2b4f5..c3e0499 100644 --- a/leadfinder/.gitignore +++ b/leadfinder/.gitignore @@ -1,2 +1,3 @@ .env target +out diff --git a/leadfinder/Cargo.lock b/leadfinder/Cargo.lock index b3c109d..2924c1a 100644 --- a/leadfinder/Cargo.lock +++ b/leadfinder/Cargo.lock @@ -638,6 +638,12 @@ dependencies = [ "hashbrown", ] +[[package]] +name = "inline_colorization" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc1804bdb6a9784758b200007273a8b84e2b0b0b97a8f1e18e763eceb3e9f98a" + [[package]] name = "ipnet" version = "2.12.0" @@ -716,6 +722,7 @@ dependencies = [ "clap", "csv", "dotenv", + "inline_colorization", "reqwest", "serde", "serde_json", diff --git a/leadfinder/Cargo.toml b/leadfinder/Cargo.toml index 50b39e0..1928c5b 100644 --- a/leadfinder/Cargo.toml +++ b/leadfinder/Cargo.toml @@ -13,3 +13,4 @@ clap = { version = "4.5.60", features = ["derive"] } serde_json = "1.0.149" reqwest = "0.13.2" thiserror = "2.0.18" +inline_colorization = "0.1.6" diff --git a/leadfinder/data/apollo-ediumla.csv b/leadfinder/data/apollo-ediumla.csv new file mode 100644 index 0000000..fb000ab --- /dev/null +++ b/leadfinder/data/apollo-ediumla.csv @@ -0,0 +1,1203 @@ +Company Name,Company Name for Emails,Account Stage,Lists,# Employees,Industry,Account Owner,Website,Company Linkedin Url,Facebook Url,Twitter Url,Company Street,Company City,Company State,Company Country,Company Postal Code,Company Address,Keywords,Company Phone,Technologies,Total Funding,Latest Funding,Latest Funding Amount,Last Raised At,Annual Revenue,Number of Retail Locations,Apollo Account Id,SIC Codes,NAICS Codes,Short Description,Founded Year,Logo Url,Subsidiary of,Subsidiary of (Organization ID),Primary Intent Topic,Primary Intent Score,Secondary Intent Topic,Secondary Intent Score,Prerequisite: Determine Research Guidelines,Prerequisite: Research Target Company,Qualify Account +SalesTech Management GmbH,SalesTech Management,Cold,"",33,marketing & advertising,jan@pandaloop.de,http://www.signition-holding.com,http://www.linkedin.com/company/signition-holding-gmbh,"","","",Frankfurt,Hesse,Germany,"","Frankfurt, Hesse, Germany","advertising services, workflow automation, mobility solutions, urban mobility solutions, digital signage networks, content creation, ki-gestützte lösungen, transportation and logistics, salestech, energy & utilities, ki-optimierte kundenerlebnisse, customer centricity, digital signage, quartiersmobilität, nachhaltige mobilitätskonzepte, marketing and advertising, vertriebstechnologie, marketing automation, digital tool development, b2b, customer relationship management, information technology and services, data management, digital signage netzwerke, vertriebs- und marketingoptimierung, customer management, e-learning, customer experience, data optimization, inhouse-agentur-modelle, creative agency, financial services, data analytics, automotive sales innovation, tool development, digital marketing, kooperationsmarketing, services, digital transformation, business consulting, data-driven business models, sales activation, martech, ki-gestützte produkte, customer engagement, customer retention, automotive transformation, e-mobility kompetenzzentrum, datenmanagement, management consulting services, real estate, transformationsprozesse in mobilität, consulting, automobilvertrieb digital, workflow optimization, customer data analytics, customer journey optimization, automotive, finance, education, distribution, transportation & logistics, construction & real estate, marketing & advertising, saas, computer software, information technology & services, enterprise software, enterprises, crm, sales, internet, education management, management consulting",'+49 69 80087070,"Outlook, DigitalOcean, Slack, Bootstrap Framework, Mobile Friendly, Nginx, WordPress.org, Typekit, Google Font API, Google Tag Manager, Django, Remote, DATEV Accounting, PowerBI Tiles, Power BI Documenter, Oracle Fusion Cloud ERP","","","","",5500000,"",69c2838047a8220001dc2e48,7375,54161,"Die SalesTech Management GmbH (former SIGNITION Holding GmbH) vereint unter einem Dach fünf Unternehmen mit zahlreichen Spezialisten aus den Bereichen Technologie, Unternehmensberatung, Industrie, Agentur und Handel. + +Neben den klassischen Marketing-, Vertriebsaktivierungs-, E-Commerce- und After-Sales-Angeboten liegen unsere Schwerpunkte auf MarTech- und SalesTech-basierten Services und Produkten – sowie den dazu passenden E-Learning- und E-Coaching-Angeboten. Wir arbeiten datenbasiert und nutzen KI-Anwendungen. + +Für unsere Kunden agieren wir ganz im Sinn von „Create Future Profits Today"" und führen sie sicher durch die komplexen und digitalen Herausforderungen. Wir unterstützen sie bei ihrem Transformationsprozess sowie bei der technologiebasierten Optimierung von Kundenerlebnissen – vom Erstkontakt bis zum Kaufabschluss und darüber hinaus. + +Die SalesTech Management GmbH ist ein Unternehmen der salestech group.",2014,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69afd1c04fbb930001acdf4c/picture,Quadriga Capital (quadriga-capital.de),559219197369643bddf70c00,"","","","","","","" +INC Innovation Center,INC Innovation Center,Cold,"",34,management consulting,jan@pandaloop.de,http://www.innovation-center.com,http://www.linkedin.com/company/inc-innovation-center,"","",30 Campus-Boulevard,Aachen,North Rhine-Westphalia,Germany,52074,"30 Campus-Boulevard, Aachen, North Rhine-Westphalia, Germany, 52074","technology, sustainability, incubation, assessments, strategy, academy, community, acceleration, new products, innovation, industry 40, training, ai, venturing, artificial intelligence, solution development, prototyping, business consulting & services, smart cities, project management, digital supply chain, advanced materials, ai chatbots, information technology and services, circular product design, training and education, digital twins, ai in manufacturing, industrial automation, industry 4.0, consulting, industry 4.0 maturity center, data governance, energy efficiency, customer journey, sustainability strategies, supply chain optimization, smart manufacturing, technology innovation, additive manufacturing, technology assessment, sustainable energy, market scouting, digitalization services, industry partnerships, b2b, research collaboration, circular economy, services, edge ai, digital transformation, innovation consulting, pilot projects, decarbonization technologies, microelectronics, research and development, innovation ecosystems, research and development in the physical, engineering, and life sciences, data management, energy & utilities, corporate venturing, business model development, hannover fair solutions, manufacturing, hydrogen economy, digital factory demo, education, environmental services, renewables & environment, communities, information technology & services, management consulting, productivity, material science, mechanical or industrial engineering, research & development",'+49 241 94577490,"Cloudflare DNS, Amazon SES, SendInBlue, Outlook, Microsoft Office 365, Webflow, Slack, Salesforce, Google Tag Manager, Vimeo, Mobile Friendly, YouTube, Linkedin Marketing Solutions, Adobe InDesign, Strato, Copilot, OpenAI, ChatBot","","","","","","",69c2838047a8220001dc2e4a,8731,54171,"INC Innovation Center GmbH, based in Aachen, Germany, specializes in technology-driven innovations. The company serves as a global one-stop-shop for ideating, validating, testing, piloting, and implementing digital services and products. Their focus is on research, development, consulting, training, and sales in technology and innovation management, particularly in the areas of Industry 4.0, production, logistics, and customer service. + +The company offers end-to-end services in digital transformation, emphasizing rapid implementation and cross-industry platforms for AI applications. With over 300 completed assessments and projects, INC provides tailored consulting, training, and professional services. Their community-driven approach includes open innovation sessions, expert networking, and access to global innovation hubs. INC has a team of over 100 experts and has generated significant turnover contributions for clients, showcasing their commitment to delivering value through multidisciplinary collaboration.",2013,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/673039d2eb725300012f2da5/picture,"","","","","","","","","" +21strategies,21strategies,Cold,"",25,information technology & services,jan@pandaloop.de,http://www.21strategies.com,http://www.linkedin.com/company/21strategies,"",https://twitter.com/21strategies,27 Lilienthalstrasse,Hallbergmoos,Bavaria,Germany,85399,"27 Lilienthalstrasse, Hallbergmoos, Bavaria, Germany, 85399","kuenstliche intelligenz, tactical ai, industrial ai, it services & it consulting, autonomous decision systems, autonomous underwater systems, ai in aerospace, services, ai for military applications, maritime security, national security, cyber defense, high fidelity simulation, ai for defense, consulting, ai strategy generation, complex engagement planning, ai for cyber defense, ai for logistics, ai behavior modeling, ai-powered planning, drone swarm ai, aerospace, predictive analytics, ai scenario analysis, ai red teaming, supply chain ai, maritime security ai, financial planning, supply chain optimization, ai decision support, ai training environment, government, security ai, ai for tactical operations, machine learning, sensor and effector models, multi-domain simulation, ai risk assessment, machine speed decision, investment management, decision-making automation, supply chain, third wave ai, ai for defense exercises, computer systems design and related services, ai in defense industry, b2b, ai strategy development, defense ai, ai strategy evaluation, simulation environment, defense industry, financial services, ghostplay environment, ai training platform, ai for complex simulations, transportation & logistics, information technology & services, enterprise software, enterprises, computer software, artificial intelligence",'+49 81 188997356,"Mobile Friendly, Nginx, WordPress.org, Remote, AI, DDS-CAD, .NET, C#, Docker, Google Cloud Machine Learning Engine, Radarstats, Tor",3739999,Venture (Round not Specified),2089999,2022-12-01,"","",69c2838047a8220001dc2e52,8731,54151,"21strategies is a B2B deep tech company based in Hallbergmoos, Bavaria, Germany, founded in 2020. Under the leadership of CEO Yvonne Hofstetter, the company focuses on Enterprise AI solutions that enhance strategic and tactical decision-making in uncertain environments. It serves both civilian and defense sectors, utilizing proprietary decision-support algorithms to address complex real-life risks. + +The company's flagship product, HEDGE21, is a SaaS solution tailored for corporate treasury departments and in-house banks. This innovative hedging tool integrates seamlessly with existing IT systems and offers a smart, adaptive closed-loop control cycle for automation, with options for human oversight. Additionally, 21strategies is developing virtual battlefield twin technology, which is supported by its AI platform and has garnered interest from the German military. + +21strategies is committed to promoting European technological sovereignty, providing decision-support and simulation capabilities that align with Europe's strategic autonomy goals and NATO's innovation initiatives. The company has successfully generated revenue within its first year of operation.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69ae62a464723f00017b5194/picture,"","","","","","","","","" +Synera,Synera,Cold,"",81,information technology & services,jan@pandaloop.de,http://www.synera.io,http://www.linkedin.com/company/syneragmbh,"","",8U Konsul-Smidt-Strasse,Bremen,Bremen,Germany,28217,"8U Konsul-Smidt-Strasse, Bremen, Bremen, Germany, 28217","software, algorithmic modeling, startup, automation, processautomation, aiagents, generative design, process automation, saas, cad, fea, optimization, agenticengineering, connected engineering, agent engineering, engineering, simulation, ai, agent platform, software development, engineering automation, visual programming, cae workflows, low-code platform, ai integration, additive manufacturing, fe analysis automation, efficiency boost, data analysis, simulation-driven design, cad integration, custom automation, user-friendly interface, automation templates, token-based licensing, 3d visualization, engineering productivity, web access, rest api integration, real-time collaboration, non-engineering access, rapid prototyping, cloud deployment, user interface builder, engineering knowledge management, integrated 3d viewer, automation libraries, automation marketplace, cross-platform accessibility, reusable workflows, cost analysis, engineering solutions, functional mock-up interface, hardware optimization, automation scalability, entry point flexibility, data import/export, workflow sharing, manual process reduction, error reduction, manual task automation, cost-effective software, engineering simulation, engineering project management, rapid engineering solutions, engineering software integration, b2b, consulting, services, information technology & services, computer software, enterprise software, enterprises, data analytics","","Cloudflare DNS, Amazon SES, MailJet, Sendgrid, Outlook, Microsoft Office 365, Webflow, Hubspot, Bing Ads, Vimeo, CrazyEgg, Linkedin Marketing Solutions, Mobile Friendly, DoubleClick Conversion, Google Tag Manager, DoubleClick, Google Dynamic Remarketing, Nginx, AI",20520000,Series A,14800000,2022-09-01,"","",69c2838047a8220001dc2e5d,8711,54133,"Synera is a low-code engineering platform designed to automate workflows for engineers. Founded in 2018 and based in Bremen, Germany, the company aims to help engineering organizations accelerate product development by integrating various CAx tools, such as CAD and simulation software, through visual programming and AI agents. The platform features a node-based interface that allows engineers to automate repetitive tasks without coding, making it easy to capture and reuse organizational expertise. + +Key capabilities of Synera include over 1000 built-in nodes for connecting tools, support for multiple geometry and simulation formats, and integration with popular CAD and FEA systems. The platform is deployable on AWS and Microsoft Azure, ensuring scalability and security. Synera's AI agents autonomously manage engineering tasks, significantly reducing development cycles and minimizing errors. The company serves industries such as automotive, aerospace, medical technology, and manufacturing, focusing on agile product development and process efficiency.",2018,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f9e616bb20870001e94ef3/picture,"","","","","","","","","" +X-impuls AG,X-impuls AG,Cold,"",40,information technology & services,jan@pandaloop.de,http://www.x-impuls.de,http://www.linkedin.com/company/ximpuls,"","",8-10 Querstrasse,Frankfurt,Hesse,Germany,60322,"8-10 Querstrasse, Frankfurt, Hesse, Germany, 60322","it services & it consulting, netzbetreiber, strategieentwicklung, branchenexpertise, energieversorger, cloud-services, data analytics, information technology and services, projektmanagement, regulatorische vorgaben, government, kundenservice ki, digitalisierung, b2b, risk management, energiewende, services, smart grids, consulting services, it-beratung, versorgungswirtschaft, künstliche intelligenz, sap alternativen, verteilnetzbetreiber, netzmanagement, management consulting services, technologieintegration, energiewirtschaft, technology consulting, project management, netzstabilität, digitale transformation, robotic process automation, consulting, machine learning, change management, industrial automation, regulatory compliance, energy & utilities, regulatorische umsetzung, management consulting, business services, cloud services, supply chain management, customer relationship management, email automation, ki, innovationsmanagement, operational efficiency, energieeffizienz, sap & alternativen, managementberatung, artificial intelligence, energiebranche, organisationsentwicklung, cybersecurity, strategische planung, process optimization, rpa, customer engagement, prozessoptimierung, it-architektur, distribution, transportation & logistics, information technology & services, productivity, mechanical or industrial engineering, cloud computing, enterprise software, enterprises, computer software, logistics & supply chain, crm, sales",'+49 61 529089390,"Outlook, WordPress.org, Google Font API, Shutterstock, Apache, Mobile Friendly, StatCounter","","","","","","",69c2838047a8220001dc2e49,8742,54161,"Leidenschaft, Dynamik und Innovationswille treiben die X-impuls AG seit der Gründung 2014 an. Dabei steht der Kunde stets im Mittelpunkt und wir als Partner an seiner Seite. + +Wir widmen uns Themen der Digitalisierung wie Robotic Process Automation, Process Mining, Chatbots, Blockchain und Machine Learning neben unserer langjährigen Erfahrung in SAP, powercloud und im Projektgeschäft mit all seinen Facetten.",2014,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670b002f4f99df0001af106b/picture,"","","","","","","","","" +KI Bundesverband,KI Bundesverband,Cold,"",110,political organization,jan@pandaloop.de,http://www.ki-verband.de,http://www.linkedin.com/company/ki-verband,"","",40 Schiffbauerdamm,Berlin,Berlin,Germany,10117,"40 Schiffbauerdamm, Berlin, Berlin, Germany, 10117","political organizations, b2b, ai industry advocacy platforms, information technology and services, digital transformation, ai collaboration, ai sector growth, european ai regulation, ai in europe, ai smes, machine learning, ai industry representation, ai industry networking, ai in healthcare, ai industry promotion, digital sovereignty, ai ecosystem germany, ai ecosystem building, ai in finance, ai solutions, ai sector development, ai community, ai growth, ai industry growth strategies, research and development in the physical, engineering, and life sciences, user interface, ai industry platform, industry reports, european ai, deep-tech, ai development, ai community building, ai project funding, regulatory framework, ai projects, networking events, ai policy shaping, ai policy, professional, scientific, and technical services, ai for digital economy, ai policy recommendations, ai standards europe, ai ecosystem support, generative ai, project management, ai research, ai sector, ai industry collaboration, ai in logistics, innovation, ai ecosystem development, government, ai for startups, policy influence, ai network, ai industry standards, ai for sustainable development, ai research projects, technology standards, natural language processing, ai standards, ai advocacy, user experience, ai industry policy, ai in germany, ai industry association, ai innovation hubs, web application, ai innovation support, ai events, ai industry partnerships, ai in public sector, ai ecosystem, ai industry support programs, ai policy advocacy europe, ai industry advocacy, ai in climate tech, ai in smart manufacturing, ai in manufacturing, ai research initiatives, ai regulation, computer vision, ai in industrial applications, ai project collaboration, ai ecosystem initiatives, ai community engagement, ai industry clusters, consulting, ai industry networking events, ai for digital sovereignty, ai startups, ai for smes, ai industry reports, startups, ai standards development, ai innovation, ai in retail, research and development in artificial intelligence, sustainability, ai research collaboration, customer service, ai for industry 4.0, ai industry support, ai in digital transformation, industry collaboration, policy advocacy, ai ethics, responsive design, artificial intelligence, javascript, interactive design, front-end development, mobile compatibility, dynamic content, client-side scripting, web accessibility, performance optimization, cross-browser support, frontend frameworks, web technologies, ui components, progressive enhancement, seo best practices, site navigation, data visualization, event handling, form validation, api integration, asynchronous requests, content management, javascript libraries, coding standards, digital accessibility, web security, agile development, version control, development workflow, debugging techniques, code maintainability, collaboration tools, testing frameworks, continuous integration, deployment strategies, user engagement, analytics tracking, site performance, scalability solutions, cloud integration, content delivery, e-commerce solutions, healthcare, non-profit, manufacturing, information technology & services, productivity, ux, environmental services, renewables & environment, consumer internet, consumers, internet, health care, health, wellness & fitness, hospital & health care, nonprofit organization management, mechanical or industrial engineering",'+49 177 7940463,"Gmail, Google Apps, Hubspot, Typeform, Google Font API, Nginx, Mobile Friendly, reCAPTCHA, WordPress.org, Google Tag Manager, Vimeo, AI","","","","","","",69c2838047a8220001dc2e4b,8731,54171,"KI Bundesverband e.V. (German Artificial Intelligence Association) is Germany's largest network of AI companies, startups, and deep tech firms, established in 2018. With 300-400 members, the association is dedicated to fostering a sustainable AI ecosystem that aligns with European values and promotes digital sovereignty. + +The association advocates for the interests of AI companies in various sectors, emphasizing ethical AI use, data protection, and transparency. It promotes innovation and practical AI adoption through initiatives like regional AI clusters and working groups. Members benefit from networking opportunities, political advocacy, and access to events and reports that highlight AI's impact across industries. The association also provides strategic consulting and training to support practical AI transformation.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69a92def9ec6020001d94b29/picture,"","","","","","","","","" +PartSpace,PartSpace,Cold,"",25,information technology & services,jan@pandaloop.de,http://www.partspace.io,http://www.linkedin.com/company/part-space,https://www.facebook.com/easy2parts/,"",17 Ulrichsberger Strasse,Deggendorf,Bayern,Germany,94469,"17 Ulrichsberger Strasse, Deggendorf, Bayern, Germany, 94469","ai, automated supplier matching, cad to quote, drawingbased sourcing, supplier cost, sourcing, neuronale netze, procurement, digital drawing analysis, cost engineering, supplier selection, precision part matching, regressionsanalyse, data enrichment, faster parts purchasing, nlpp, digital procurement intelligence, aipowered buying, instant cost insight, spend analytics, supplier intelligence, 3d sourcing engine, it system custom software development, component bundling, cluster analysis of components, machine learning in supply chain, predictive analytics, consulting, services, data analytics platform, geometric similarity analysis, inventory management, erp data integration, data analytics, non-linear performance pricing, digital supply chain, b2b, cost reduction in component purchasing, supplier evaluation, cost modeling, computer systems design and related services, cloud computing, digital twin analysis, geometric similarity detection, product group reformulation, ai for manufacturing procurement, cost savings, digital transformation in manufacturing, ai in industrial procurement, automated technical drawing analysis, manufacturing, ai for drawing comparison, digital supplier database, predictive cost analytics, price benchmarking, 3d model analysis, smart procurement, process automation, digital supplier evaluation, performance pricing, supplier management, transparency in procurement, ai-driven procurement, cost optimization, data cleansing, supply chain management, cloud-based procurement, industrial automation, system interfaces, e-commerce, distribution, information technology & services, enterprise software, enterprises, computer software, mechanical or industrial engineering, logistics & supply chain, consumer internet, consumers, internet",'+49 99 14022800,"Outlook, Microsoft Office 365, Microsoft Azure Hosting, Google Tag Manager, Apache, Mobile Friendly, Azure Devops, Remote, React Native, Docker, Android, Linkedin Marketing Solutions, Facebook, Instagram, TikTok, DotNetNuke, C# (C Sharp), SAP, Siemens PLM, .NET, Python, C#, Microsoft Excel, Salesforce CRM Analytics, Cascade CMS, AI, Amazon CloudWatch, Sass, Wider Planet, SolarWinds RMM, Oracle Procurement Cloud, Mode, Zoho CRM",14300000,Venture (Round not Specified),14300000,2025-10-01,"","",69c2838047a8220001dc2e5c,3599,54151,"PartSpace is an AI-powered procurement and spend analytics platform based in Deggendorf, Germany. Founded in 2021, the company focuses on improving engineering procurement by analyzing CAD files, bills of materials (BOMs), and supplier data. This approach enables faster and more cost-effective sourcing decisions. PartSpace operates as a cloud-based platform on Microsoft Azure, ensuring data security with ISO 27001 certification and GDPR compliance. + +The platform offers a range of features tailored for engineering workflows, including data organization, AI-powered costing, and supplier benchmarking. It cleans and structures complex engineering data into a searchable library, generates instant cost estimates, and provides insights into supplier performance. PartSpace supports enterprise-scale operations across various industries, including machinery, logistics, and healthcare. The company has a dedicated customer success team to assist with implementation and ongoing support.",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69625b9c86d0030001de6e11/picture,"","","","","","","","","" +Workist,Workist,Cold,"",53,information technology & services,jan@pandaloop.de,http://www.workist.com,http://www.linkedin.com/company/workist-com,"","",126 Linienstrasse,Berlin,Berlin,Germany,10115,"126 Linienstrasse, Berlin, Berlin, Germany, 10115","document processing, ai, automation, order confirmation processing, sales back office automation, rpa, intelligent document processing, erp, ai sales assistant, bpm, order entry, invoice processing, ai agent, software development, scalability, multi-format document processing, order entry for retail and manufacturing, ai-powered workflows, erp system compatibility, process optimization, manufacturing, business process automation, order data extraction, cost reduction, workflow automation, future-proof technology, services, order automation, order processing automation, data validation, computer systems design and related services, human in the loop, automated data validation, order management, wholesale, fast deployment, customer-specific item recognition, distribution, manual effort reduction, error-free data transfer, b2b, ai ocr software, process scalability, real-time data transfer, error reduction, automated master data matching, continuous ai learning, high accuracy ai, document recognition, inquiry processing, machine learning, digital transformation, ai document processing, seamless system integration, complex document understanding, multi-language support, lists of services automation, time savings, erp integration, customer service enhancement, automated rfq processing, variant configuration support, order and inquiry validation, automated order backlog clearing, information technology & services, mechanical or industrial engineering, artificial intelligence",'+49 30 28686276,"Salesforce, Cloudflare DNS, Sendgrid, Gmail, Google Apps, Zendesk, UptimeRobot, Vercel, Typeform, Slack, Mobile Friendly, Google Tag Manager, Remote, AI, Hubspot, LinkedIn Ads",13030000,Series A,9900000,2022-09-01,"","",69c2838047a8220001dc2e45,7375,54151,"Workist is a Berlin-based software company that specializes in automated document processing for B2B transactions. Founded in 2019, Workist aims to eliminate manual data entry and repetitive tasks through its AI-powered solution, WorKI. This software automatically captures, validates, and transfers data from various business documents, such as orders and invoices, integrating seamlessly with existing enterprise resource planning (ERP) systems. + +The company serves industries that handle large volumes of transactional documents, including wholesale, manufacturing, retail, and logistics. Workist has processed over 2 million documents, achieving high automation rates and significant reductions in processing times for its clients, which include major companies like Uber, Dell, Netflix, and Zoom. With a mission to free people from mundane work, Workist is committed to transforming the way businesses manage their document workflows.",2019,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/696420b3abbc2a00015e0139/picture,"","","","","","","","","" +Artificial Intelligence Center Hamburg (ARIC),Artificial Intelligence Center Hamburg,Cold,"",48,research,jan@pandaloop.de,http://www.aric-hamburg.de,http://www.linkedin.com/company/aricev,"","",9 Van-der-Smissen-Strasse,Hamburg,Hamburg,Germany,22767,"9 Van-der-Smissen-Strasse, Hamburg, Hamburg, Germany, 22767","kuenstliche intelligenz, artificial intelligence, kiberatung, tech, machine learning, research services, ki-community, business intelligence, netzwerkbildung, ki-ökosystem, education, ki-partnernetzwerk, ki-ökosystem hamburg, ki-community hamburg, ki-regulierung, ki-beratung, ki-implementierungsberatung, technologieentwicklung, ki-anwendungen, ki-showroom hamburg, ki-projektmanagement, verantwortungsvolle ki, services, ki-industrie, ki-kompetenzzentrum, ki-entwicklungsprojekte hamburg, künstliche intelligenz hamburg, ki-forschung, ki-ethische prinzipien, ki-startups, ki-workshops, ki-transformation hamburg, ki-weiterbildung, ki-training, ki-events, ki-gestützte forschung, ki-partnerschaften, ki-innovationsförderung, ki-gestützte wirtschaftsentwicklung, b2b, data science, research and development in the physical, engineering, and life sciences, responsible ai, ki-showroom, ki-interdisziplinäre projekte, information technology & services, ki-eventformate, research and development, ki-ethik, ki-innovation, ki-region hamburg, ki-implementierung, ki-community-building, interdisziplinäre zusammenarbeit, ki-entwicklung, government, wissenschaftliche forschung, ki-strategie, ki-projekte, ki-transformation, ki-wissenstransfer, ki-weiterbildungsangebote, consulting, ki-projektförderung, non-profit, analytics, research & development, nonprofit organization management",'+49 40 79724442,"Outlook, Microsoft Office 365, Apache, reCAPTCHA, Mobile Friendly, WordPress.org, Google Tag Manager, AI","","","","","","",69c2838047a8220001dc2e46,8731,54171,"The Artificial Intelligence Center Hamburg (ARIC) is a key AI initiative in northern Germany, established in 2019 by various businesses, research teams, and the City of Hamburg. As a registered scientific association, ARIC serves as a cross-sectoral hub for artificial intelligence, aiming to enhance AI skills across companies, public administration, and research in the Hamburg metropolitan area. + +ARIC promotes ""Responsible AI,"" focusing on ethical and transparent AI use. The center offers a range of services, including an interactive showroom for AI demonstrations, educational workshops, networking events, and consulting services to assist businesses in implementing AI solutions. It also supports AI startups through initiatives like the AI.Startup.Hub Hamburg project, which includes accelerator and ideation programs. ARIC collaborates with universities and various stakeholders to foster application-oriented AI research and development.",2019,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69af8d294be90900017f66a9/picture,"","","","","","","","","" +Flank,Flank,Cold,"",33,information technology & services,jan@pandaloop.de,http://www.flank.ai,http://www.linkedin.com/company/flank-ai,"",https://twitter.com/legal_os,145 Koepenicker Strasse,Berlin,Berlin,Germany,10997,"145 Koepenicker Strasse, Berlin, Berlin, Germany, 10997","contract creation, contract management, saas, legal ai, design, legal content, legal tech, legal on demand, expert agents, generative ai, ai agents, software development, workflow automation, autonomous legal ai agents, contract drafting, consulting, ai for legal compliance, services, regional hosting, enterprise-grade control, ai for legal review, ai legal policy enforcement, artificial intelligence, forms automation, ai escalation paths, enterprise software, agentic ai in law, high-volume request handling, b2b, ai policy management, ai legal automation, microsoft teams integration, slack integration, autonomous legal decision-making, context-aware legal ai, gdpr compliance, compliance questionnaires, offices of lawyers, ai-powered document drafting, ai in legal negotiations, enterprise legal workflows, ai for legal strategy support, system integration, layered decision-making in legal ai, security and audit trails, ai legal risk management, natural language processing, ai integration in legal systems, data security, soc2 certification, legal services, legal process automation, contract review automation, legal document review, legal, computer software, information technology & services, enterprises, computer & network security","","Cloudflare DNS, Gmail, Google Apps, Google Cloud Hosting, Rackspace MailGun, Microsoft Office 365, Hubspot, Slack, Typekit, Ruby On Rails, Vimeo, Segment.io, Mobile Friendly, Varnish, YouTube, Linkedin Marketing Solutions, Google Tag Manager, Google Font API, Google Workspace, Remote, AI, ChatGPT, Claude, Zapier, TypeScript, React, Tailwind, Akamai Connected Cloud (formerly Linode), GraphQL, MongoDB, Python, Fastapi, Jira",19200000,Series A,10000000,2025-02-01,"","",69c2838047a8220001dc2e50,7389,54111,"Flank is an AI-native automation platform based in Berlin, specializing in deploying autonomous AI agents for enterprise teams in sectors such as legal, compliance, privacy, information security, and finance. Founded in 2018 as Legal OS, the company rebranded to Flank to reflect its broader focus beyond legal departments. With a team of 11-50 employees, Flank has experienced significant growth, raising $10 million in funding and achieving triple-digit revenue growth. + +Flank's primary offering includes autonomous AI agents that manage enterprise workflows end-to-end. These agents automate legal tasks such as drafting and reviewing documents, and they provide 24/7 support for routine inquiries. The platform integrates seamlessly with existing tools like Slack, Microsoft Teams, and Salesforce, allowing users to submit requests through familiar channels. Flank's technology is designed to enhance efficiency and accuracy, making it a valuable resource for mid-to-large enterprises facing operational challenges.",2019,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69ac8dfe43c2380001229696/picture,"","","","","","","","","" +MAIA,MAIA,Cold,"",28,information technology & services,jan@pandaloop.de,http://www.getmaia.ai,http://www.linkedin.com/company/prodlane-maia,"","",4 Melanchthonstrasse,Leipzig,Saxony,Germany,04315,"4 Melanchthonstrasse, Leipzig, Saxony, Germany, 04315","digital workspace, saas, produkt management, product management, industrial companies, datadriven, software development, customer support ai, source referencing, ai for research, ai document processing, enterprise knowledge management, ai for technical comparisons, gdpr-compliant ai, product management ai, document analysis, document analysis ai, product documentation ai, ai knowledge management, industrial ai, european data security, ai for technical support, natural language processing, german industrial ai, sharepoint integration, ai for complex data analysis, ai chat interface, manufacturing, computer systems design and related services, technical documentation search, ai-powered knowledge base, source-based answers, ai for multilingual knowledge, enterprise ai platform, automated document search, multilingual knowledge, b2b, employee onboarding ai, cloud-based ai, ai for product lifecycle, research document analysis, knowledge automation, ai for product info, ai for standards & guidelines, document processing, ai for employee onboarding, system integration, secure data environment, confluence integration, ai for technical data, ai for research papers, api integration, technical document search, services, industrial knowledge base, ai for market analysis, ai for legal assessments, pdf analysis, ai for research & development, multilingual ai, ai for competitive analysis, secure ai platform, computer software, information technology & services, artificial intelligence, mechanical or industrial engineering","","Cloudflare DNS, MailJet, Outlook, Microsoft Office 365, Route 53, Webflow, Google Tag Manager, Stripe, Wistia, Mobile Friendly, Android, Remote, Akamai App & API Protector, LinkedIn Ads",1840000,Seed,1000000,2024-12-01,"","",69c2838047a8220001dc2e56,3571,54151,"MAIA is an AI platform dedicated to secure technical knowledge management for German SMEs and industrial companies. It provides immediate access to company knowledge through an intelligent chat interface, ensuring GDPR compliance by hosting data on servers in Germany and Switzerland. MAIA aims to drive digital transformation by offering innovative AI solutions that enhance access to company knowledge for all employees. + +The platform features a deep understanding of technical documents and internal jargon, allowing it to effectively route queries to the most suitable AI models. It integrates data from various sources, such as PDFs and SharePoint, and employs continuous learning and neurosymbolic reasoning for enhanced safety and sophistication. MAIA supports a range of applications, including conversational AI for customer service, HR automation, and solutions for sectors like healthcare, logistics, and iGaming.",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/695765b53545f3000180541c/picture,"","","","","","","","","" +CONXAI,CONXAI,Cold,"",28,information technology & services,jan@pandaloop.de,http://www.conxai.com,http://www.linkedin.com/company/conxai,"","","",Munich,Bavaria,Germany,"","Munich, Bavaria, Germany","aec, computer vision, agentic ai, knowledge engineering automation, jobsite analytics, knowledge management, frontier tech, deep learning, bim, machine reasoning, nocode ai, digital twin, explainable ai, cognitive document workflow automation, artificial intelligence, construction tech, edge computing, software development, information technology & services","","Cloudflare DNS, Gmail, Google Apps, Create React App, Webflow, BambooHR, Slack, Google Tag Manager, Mobile Friendly, Remote, AI, TypeScript, Cypress, Kubernetes, Terraform, AWS Analytics, GitLab, HELM, Docker, React, Redux, Cognito, HTML Pro, CSS, Javascript, Autodesk BIM Collaborate",5170000,Seed,2200000,2023-11-01,"","",69c2838047a8220001dc2e4c,"","","CONXAI is a Munich-based startup founded in 2020, located in Karlsfeld, Bavaria, Germany. The company specializes in an AI platform designed for the construction industry, aiming to turn fragmented and under-utilized data into actionable insights. CONXAI focuses on improving project control, automating workflows, and enabling data-driven decisions, addressing challenges such as high rates of unused project data and post-project information loss. + +The platform analyzes various construction data sources, including designs, plans, and IoT sensor data, using advanced technologies like AI and computer vision. It automates the extraction of cost and risk insights from unstructured data, offering user-friendly analytics through no-code configurations and intuitive dashboards. CONXAI targets contractors, manufacturers, and software vendors, providing benefits such as increased productivity, streamlined operations, and enhanced decision-making. The company's business model supports scalable solutions, allowing for growth from single use cases to enterprise-wide applications.",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/695e99fdd5c1fd0001e00afc/picture,"","","","","","","","","" +omni:us,omni:us,Cold,"",53,information technology & services,jan@pandaloop.de,http://www.omnius.com,http://www.linkedin.com/company/omniushq,"",https://twitter.com/omniushq,42 Perleberger Strasse,Berlin,Berlin,Germany,10559,"42 Perleberger Strasse, Berlin, Berlin, Germany, 10559","neural networks, handwritten text recognition, smart automation, claimstech, process optimization, machine learning, computer vision, data extraction, artificial intelligence, e2e claims automation, digital claims adjuster, deep learning, claim, insurtech, insurance, insurance transformation, technology, deep information technology, information technology, claims cost reduction, services, claim indexation automation, claims process change management, claims process efficiency, claims workflow automation, ai models for insurance, end-to-end claims processing, b2b, claims decision automation, automated claims indexation, recovery claims ai, automated fnol, ai claims audit, ai for insurance risk assessment, ai-powered claims decisions, predictive analytics, claims process optimization, ai claims decision catalog, claims automation saas, claims process transformation, customer satisfaction improvement, financial services, first notice of loss automation, semi-automation in claims, claims process automation, claims process digitalization, claims process scalability, leakage detection ai, insurance agencies and brokerages, insurance claims ai, claims process integration, automated claims verification, claim automation platform, legacy system integration, claims process transparency, claims automation for high-frequency lines, claims leakage reduction, claims process reference models, consulting, claims data access, ai-driven claims insights, fraud detection, claims cost savings, ai claim automation, recovery detection ai, ai decision support, finance, information technology & services, enterprise software, enterprises, computer software, insurance agencies & brokerages, computer & network security",'+49 30 220560730,"Cloudflare DNS, Outlook, CloudFlare Hosting, Atlassian Cloud, Oracle Cloud, Hubspot, Slack, DoubleClick, Linkedin Marketing Solutions, Google Tag Manager, Google Dynamic Remarketing, Mobile Friendly, DoubleClick Conversion, WordPress.org, AI",67450000,Series A,12390000,2022-11-01,12000000,"",69c2838047a8220001dc2e4f,7375,52421,"omni:us is a Berlin-based AI company founded in 2015, focusing on claims automation for the property and casualty insurance industry. The company specializes in high-frequency, low- to medium-severity claims across property, motor, and liability lines. With a team of scientific engineers and AI experts, omni:us aims to enhance efficiency in insurance through no-touch automation and bias-free decision-making. + +The company offers AI as a Service (AIaaS) for end-to-end claims automation, integrating with core systems like Guidewire and Sapiens. Key products include the Digital Claims Adjuster, which autonomously resolves over 50% of claims, and the Agentic Co-Pilot, which provides actionable recommendations with high accuracy. omni:us also features tools for predictive analysis and custom model training, achieving significant efficiency gains and improved settlement processes. The firm serves global insurers, driving advancements in digital insurance.",2015,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67140f1a21ffa30001353800/picture,Qidenus (qidenus.com),5f497bd93701e300015edb51,"","","","","","","" +PLAN D,PLAN D,Cold,"",23,management consulting,jan@pandaloop.de,http://www.plan-d.com,http://www.linkedin.com/company/plan-d-consulting,"","",12 Weinmeisterstrasse,Berlin,Berlin,Germany,10178,"12 Weinmeisterstrasse, Berlin, Berlin, Germany, 10178","digital ventures, digital experiences, managementberatung, digitalstrategie, iot, daten, ai, digitale transformation, blockchain, change management, business consulting & services, digital transformation, ai deployment, project management, ai automation, management consulting services, ai integration, ai in society, ai regulation compliance, ml ops, management consulting, ai use cases, data security, ai monitoring, ai process automation, cloud infrastructure, ai in pharma, ai in mobility, non-profit, consulting, ai training, legal, artificial intelligence, ai solutions, ai for resource efficiency, ai scalability, data management, data-driven solutions, data analytics, ai strategy, ai operations, ai development, regulatory compliance, cloud computing, machine learning, data science, b2b, government, eu ai act compliance, ai regulation audit, education, ai mvp development, ai in energy sector, data analysis, ai governance, ai use case workshop, ai for societal challenges, sustainable ai, ai architecture, risk assessment, process optimization, ai ethics, ai consulting, ai project management, cloud solutions, ai optimization, software development, ai for business, ai project execution, ai project support, ai risk management, ai training programs, services, productivity, computer & network security, information technology & services, enterprise software, enterprises, computer software, internet infrastructure, internet, nonprofit organization management",'+49 1512 8423436,"MailJet, Gmail, Outlook, Google Apps, Microsoft Office 365, Amazon AWS, Slack, Google Tag Manager, Apache, Mobile Friendly, IoT, AI, Remote, Jupyter, Python, SQL","","","","","","",69c2838047a8220001dc2e54,7375,54161,"PLAN D is a Berlin-based strategy and technology consultancy founded in 2017 by Sebastian Bluhm and Dirk Schmachtenberg. The company specializes in Data and Artificial Intelligence, helping businesses enhance their competitive edge through tailored AI strategies, technologies, and digital products. With a team of over 20 professionals, PLAN D has successfully completed more than 250 projects for medium-sized businesses and global corporations. + +The company offers comprehensive AI consultancy services, including strategy development, data science, process optimization, digital product development, and innovation consulting. They focus on automating tasks, improving efficiency, and creating custom AI solutions that align with clients' business goals. PLAN D also engages in pro bono projects, addressing societal challenges such as bird conservation and healthcare improvements. Their notable clients include Tesla, ERGO, and Deutsche Bahn, showcasing their expertise across various industries.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/675d8fd7d24ef3000190daf4/picture,"","","","","","","","","" +Mindfuel,Mindfuel,Cold,"",31,information technology & services,jan@pandaloop.de,http://www.mindfuel.ai,http://www.linkedin.com/company/mindfuelai,"","",18 Franz-Joseph-Strasse,Munich,Bavaria,Germany,80801,"18 Franz-Joseph-Strasse, Munich, Bavaria, Germany, 80801","maximizing data value, ai, stakeholder reporting, data ai impact management, data strategy, data value chain, data product innovation, data product lifecycle, data product use cases, business strategy, ai product strategy, datadriven value creation, ai products, data products, measuring data roi, ai strategy, data product management, data product portfolio management, data impact reporting, business intelligence & data impact, value management, use case management, data impact visualization, ai portfolio management, software development, data science collaboration, data-driven decision making, ai solution delivery, data management, ai resource planning, business impact, ai project lifecycle tracking, artificial intelligence, ai governance, ai value scoring, value maximization, ai resource allocation, cross-team collaboration, ai use case scoring, risk assessment, solution definition, use case prioritization, ai performance metrics, information technology and services, ai project dependency mapping, ai project management, business impact visualization, ai solution validation, ai use case management, portfolio management, enterprise saas, data and ai portfolio, b2b, customer engagement, data asset management, ai initiative prioritization, ai strategy tools, data and ai strategy, ai project alignment tools, stakeholder alignment, ai impact measurement, ai project scoping tools, ai project dependencies, ai portfolio visualization, ai impact dashboards, services, consulting, ai project tracking, ai project visibility, computer systems design and related services, ai lifecycle management, data and ai insights, business intelligence, information technology & services, analytics","","Cloudflare DNS, Mailchimp Mandrill, MailJet, Outlook, Microsoft Office 365, Pipedrive, Webflow, Hubspot, Google Tag Manager, Google Font API, Mobile Friendly, Linkedin Marketing Solutions, Remote, AI",4130000,Seed,4130000,2024-03-01,"","",69c2838047a8220001dc2e51,7375,54151,"Mindfuel specializes in AI and data product management, offering the SaaS platform Delight to help organizations centralize and prioritize their data and AI initiatives. Founded to address challenges with stalled data projects, Mindfuel combines data science and product development to bridge the gap between business needs and AI delivery. The company operates as a remote, people-first team, focusing on transforming data and AI ideas into tangible business results. + +The core product, Mindfuel Delight, serves as a data impact management platform that centralizes use cases, tracks progress, and aligns with business goals. It features value management tools, use case management, and real-time reporting to enhance collaboration between AI and business teams. In addition to Delight, Mindfuel offers expert consultancy services to guide clients in developing AI and data products more effectively. The company primarily serves large enterprises in Germany and the EU, helping them manage portfolios and demonstrate business impact while adhering to strict data privacy laws.",2019,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/695cc666efb03f0001b401e7/picture,"","","","","","","","","" +TOPAS Industriemathematik,TOPAS Industriemathematik,Cold,"",24,information technology & services,jan@pandaloop.de,http://www.topas.tech,http://www.linkedin.com/company/topasbremen,"","","",Bremen,Bremen,Germany,"","Bremen, Bremen, Germany","optimierung, technologietransfer, autonomes fahren, modellpraediktive regelung, autonome robotik, autonome systeme, industriemathematik, energiemanagement, ki, algorithmenentwicklung, it services & it consulting, artificial intelligence, energy & utilities, autonomous navigation, aerial robotics, services, real-time system control, autonomous vehicles, sensor integration, autonomous systems, research collaboration, autonomous test field operations, mathematical modeling, simulation and testing, data analytics, robotics, unmanned aerial vehicles, machine learning, energy management, mathematical algorithms, high-speed nonlinear optimization, ai algorithm optimization, real-time data processing, sustainable solutions, drone-based wildlife monitoring, modular software framework, sensor fusion, navigation software, data management tools, complex data analysis, optimization algorithms, optimization software, predictive analytics, aerospace, ros2 compatibility, innovation support, test field development, unmanned maritime vessels, manufacturing, information technology & services, b2b, environmental mapping, sensor data integration, distributed multi-robot coordination, maritime industry, digital twin creation, sustainable energy solutions, environmental perception, custom algorithm development, ai-driven predictive maintenance, modular software platform, prototype development, sensor data fusion in complex environments, process optimization, high-performance computing, energy consumption reduction, multi-sensor data fusion, path planning, autonomous system development, data-driven decision making, data analysis, custom software, cybersecurity, autonomy framework, autonomous exploration robots, digital twin, research and development, maritime autonomous systems, trajectory optimization, trajectory planning, real-time decision making, autonomous vehicle testing, energy optimization, ardupilot integration, consulting, remote testing facilities, predictive control, autonomous driving in urban traffic, government, obstacle avoidance, co2 emission minimization, energy system optimization, digital twin for industrial systems, localization algorithms, system simulation, high-precision localization, computer systems design and related services, maritime robotics, education, distribution, mechanical or industrial engineering, oil & energy, enterprise software, enterprises, computer software, research & development","","Outlook, Microsoft Office 365, Mobile Friendly, Nginx, Remote, AI","","","","","","",69c2838047a8220001dc2e55,8731,54151,"TOPAS Industriemathematik is a transfer center based in Bremen, Germany, focused on industrial mathematics for optimized, assisted, and autonomous systems. Since June 2022, it has operated at the Digital Hub Industry near the University of Bremen, fostering innovation through collaborations with research institutions and industry partners. The company promotes diversity in talent attraction and emphasizes practical applications of industrial mathematics in research and development. + +TOPAS specializes in developing automation solutions and technologies for autonomous driving projects and intelligent systems. It actively engages in events and initiatives to enhance collaboration, such as the DLR Synergietreffen 2023 and Drone Days 2025. The company is also involved in European networks addressing challenges in automated road traffic, contributing to advancements in autonomous vehicle deployment.",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670e196abcbf6f0001754612/picture,"","","","","","","","","" +Playbook®,Playbook®,Cold,"",27,information technology & services,jan@pandaloop.de,http://www.getplaybook.com,http://www.linkedin.com/company/playbook-os,"",https://twitter.com/PlaybookOs,44 Donaustrasse,Berlin,Berlin,Germany,12043,"44 Donaustrasse, Berlin, Berlin, Germany, 12043","software development, quality management, non-conformance management, regulatory standards, integrated quality system, gxp, team collaboration, risk management, operational efficiency, gxp compliance, training automation, integrated system, regulatory compliance, training management, issue detection, error prevention, risk mitigation, audit readiness, validation documentation, b2b, training quizzes, quality management platform, audit trail, management consulting services, iso compliance, iso 13485, pharmaceutical quality, quality improvement, custom workflows, pic/s regulation support, team collaboration tools, iso 9001, pic/s compliance, inspection management, audit support, gxp compliance software, real-time reporting, consulting, transparency, healthcare, automated audits, iso 13485 software, ai-driven platform, regulatory audit readiness, data security, quality process automation, customizable processes, medical device compliance, quality documentation, automated workflows, error reduction, validation, capa, workflow automation, capa management, deviation management, document control, compliance, real-time evidence, healthcare quality, regulatory adherence, records management, performance improvement, services, pic/s, information technology & services, health care, health, wellness & fitness, hospital & health care, computer & network security","","Outlook, Microsoft Office 365, Amazon AWS, Slack, Hubspot, Mobile Friendly, Linkedin Marketing Solutions, reCAPTCHA, Google Tag Manager, Typekit","","","","","","",69c2838047a8220001dc2e5b,8731,54161,"Your systems have given you storage. They have never +given you memory. + +Playbook brings Operating Memory to regulated industries. When something changes, your people, your systems, and your AI all know. + +It all plays together, with Playbook®.",2022,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6778b6135a9f2e00012e87db/picture,"","","","","","","","","" +eccenca,eccenca,Cold,"",38,information technology & services,jan@pandaloop.de,http://www.eccenca.com,http://www.linkedin.com/company/eccenca-gmbh,https://facebook.com/eccenca,https://twitter.com/eccenca,8 Hainstrasse,Leipzig,Sachsen,Germany,04109,"8 Hainstrasse, Leipzig, Sachsen, Germany, 04109","digital supply network solutions, digital twins, data integration, supply chain management, data reconciliation, hyperautomation, decisionautomation, ai, itsm automation, smart data, data management, data governance, fair data, processautomation, gdpr compliance software, data preparation, data products, knowledge graphs, linked data, data mesh, digital transformation, complexity management, big data, semantic technologies, distributed use of shared data resources, semantic layer, gdpr, digital supply chain twin, it services & it consulting, data silos reduction, enterprise data management, knowledge infusion, data quality assurance, knowledge digitization, data interoperability tools, data governance automation, data connectivity solutions, process automation platform, data privacy compliance, data silos, ai trustworthiness, rdf, data lineage tracking, other scientific and technical consulting services, semantic web standards, energy & utilities, data enrichment, data lineage and provenance, data modeling, data security, b2b, manufacturing, data privacy management, semantic data architecture, data lineage visualization, knowledge digitization tools, enterprise software, ai model guidance, owl, data connectivity, data lineage, enterprise knowledge management, knowledge capture in pharma, knowledge graph for r&d, digital twin for physical infrastructure, complex product data management, gdpr data mapping, ai behavior control, ai explainability, digital supply networks, gdpr compliance, services, supply chain digital twin, data governance framework, semantic data management, process automation, trustworthy ai, ai model explainability, data exploration, complex data management, data as a service, data integration platform, data interoperability, shacl, regulatory compliance, software development, semantic interoperability in power & utility, knowledge graph platform, consulting, ai-ready data, semantic data modeling, enterprise data lineage, transportation & logistics, contextualized data, data privacy, distribution, transportation_logistics, energy_utilities, enterprises, computer software, information technology & services, logistics & supply chain, computer & network security, mechanical or industrial engineering",'+49 341 26508028,"Salesforce, Outlook, GitHub Hosting, Slack, Apache, TYPO3, Mobile Friendly, Remote, AI, Linkedin Marketing Solutions","","","","","","",69c2838047a8220001dc2e4d,7375,54169,"eccenca is a German software company founded in 2013, specializing in enterprise knowledge graph technology. It originated as a spin-off from Leipzig University’s Institute for Applied Informatics and is now a subsidiary of brox-IT Solutions. With headquarters in Leipzig and additional offices in Berlin, Hannover, and Stuttgart, eccenca is expanding its presence into France and the United Kingdom. + +The company focuses on providing solutions for digital transformation, including big data integration and regulatory compliance. Its flagship product, eccenca Corporate Memory, is a knowledge graph platform that centralizes and governs semantic knowledge management. This platform helps organizations document business rules and data sources, enabling automation and interoperability across systems. eccenca also offers the eccenca GDPR Suite for automated compliance and various Data as a Service solutions. The company serves multiple industries, including automotive, telecommunications, and financial services, and has partnered with notable clients like Nokia, Volkswagen, and Bosch.",2013,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6962c1d9cf65370001ee1dbc/picture,"","","","","","","","","" +COMPLEVO GmbH,COMPLEVO,Cold,"",21,information technology & services,jan@pandaloop.de,http://www.complevo.de,http://www.linkedin.com/company/complevo-gmbh,"","",14 Franklinstrasse,Berlin,Berlin,Germany,10587,"14 Franklinstrasse, Berlin, Berlin, Germany, 10587","construction management, radwechselprozessautomatisierung, artificial intelligence, mobile app development, cloud architecture, ki-gestützte prozessoptimierung, operations research, risk management, process analysis, custom software development, workflow optimization, consulting, system integration, digital workflows, cloud solutions, services, ai support, computer systems design and related services, business process outsourcing, software development, ai-powered solutions, b2b, machine learning, data science, custom automation, fertigungseinsatzplanung, data analytics, variantenmanagement, information technology and services, schnittstellen, supply chain automation, digital transformation, workflow automation, process automation, information technology & services, cloud computing, enterprise software, enterprises, computer software",'+49 30 959997578,"Outlook, Bootstrap Framework, WordPress.org, Mobile Friendly, Google Tag Manager, Typekit, Nginx, Remote","","","","","","",69c2838047a8220001dc2e4e,7372,54151,"Making decisions is hard. Our software will not let our customers down even when facing endless, complex options, and helps them to choose the best one. Our focus is on the development and implementation of industrial decision-making support and forecast systems with optimization cores for operational and strategic planning issues. We advise and support our clients during the design, implementation and introduction of new planning and control systems.",2011,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6708f272a0de88000151d526/picture,"","","","","","","","","" +change2target,change2target,Cold,"",24,management consulting,jan@pandaloop.de,http://www.change2target.com,http://www.linkedin.com/company/change2target,https://facebook.com/change2target,"",11 Oskar-Schlemmer-Strasse,Munich,Bavaria,Germany,80807,"11 Oskar-Schlemmer-Strasse, Munich, Bavaria, Germany, 80807","business consulting & services, sustainable supply chains, project management, management consulting services, supply chain resilience, supply chain data aggregation, supply chain stakeholder coordination, management consulting, supply chain resilience building, global supply chains, supply chain risk mitigation, supplier management, energy & utilities, supply chain transparency, data transparency, supply chain cost reduction, supply chain performance, supply chain transformation, consulting, process improvement, ai-powered analytics, resilience, ai solutions, data integration, supply chain resilience tools, supply chain risk early warning, supply chain data management, supply chain crisis management, data analytics, supply chain disruption mitigation, supplier quality, supply chain trend forecasting, b2b, supply chain data centralization, manufacturing, supply chain external warehouse, supply chain risk management, supply chain control center, supply chain management, supply chain sustainability metrics, distribution, supply chain risk, supply chain strategy, risk management, transportation & logistics, operational excellence, hybrid consulting, supply chain decision support, ai-powered solutions, process optimization, supply chain digitalization, supply chain project prioritization, supply chain efficiency, supply chain project management, supply chain automation, sustainability, supply chain monitoring, operational efficiency, services, supply chain optimization, transportation_logistics, energy_utilities, productivity, enterprise software, enterprises, computer software, information technology & services, mechanical or industrial engineering, logistics & supply chain, environmental services, renewables & environment",'+49 22 194969131,"Outlook, Apache, Google Font API, WordPress.org, Vimeo, Mobile Friendly, Facebook Comments","","","","","","",69c2838047a8220001dc2e53,7374,54161,"change2target is an international management consulting firm based in Munich, Germany, founded in 2006. The company specializes in supplier management, supply chain optimization, and customer-focused value management, utilizing lean enterprise principles. With a presence in over 25 countries and a team of more than 150 experts, change2target enhances supply chain performance, product quality, and sustainability through operational excellence programs and transparent risk management. + +The firm employs a unique Hybrid Consulting model, where consultants work directly at client sites, supported by external coaches to foster sustainable change. change2target offers a range of services, including operational excellence programs, risk management solutions, and AI-driven data analysis tools. Its philosophy emphasizes customer-centric approaches, with experience spanning various sectors, including automotive, energy, chemicals, and pharmaceuticals. The company has generated significant client benefits, focusing on revenue growth, cost reductions, and improved decision-making through innovative solutions like change2target AI.",2006,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e8fc654d6df400014c18a6/picture,"","","","","","","","","" +ITONICS,ITONICS,Cold,"",140,information technology & services,jan@pandaloop.de,http://www.itonics-innovation.com,http://www.linkedin.com/company/itonics,https://facebook.com/pages/ITONICS/222649084444006,https://twitter.com/ITONICS,9 Emilienstrasse,Nuremberg,Bavaria,Germany,90489,"9 Emilienstrasse, Nuremberg, Bavaria, Germany, 90489","strategic foresight, technology management, strategic portfolio management, consulting, foresight, innovation portfolio management, transformation, trend management, startup scouting, innovation, roadmapping, idea management, strategic innovation, strategy, innovation management, technology scouting, ideation, enterprise software, software, information technology, software development, innovation platform, innovation tools, ai-powered platform, innovation workflows, project tracking, management consulting services, strategic alignment, end-to-end innovation platform, crowdsourcing, innovation ecosystem management, ai features, ai-powered innovation platform, innovation benchmarking, ai in innovation, portfolio management, innovation technology, innovation value, innovation project tracking, innovation collaboration, innovation strategy, innovation strategy execution, project management, customer engagement, innovation ecosystem, innovation projects, innovation process, innovation community engagement, healthcare, innovation automation, innovation trend analysis, innovation data analytics, innovation community, innovation leadership, risk management, ai-driven decision support, financial services, data integration, management consulting, manufacturing, innovation growth strategies, innovation impact measurement, innovation pipeline, innovation pipeline optimization, innovation strategy alignment, innovation portfolio, innovation os, innovation growth, workflow automation, innovation roi, strategic planning, trend analysis, innovation process automation, innovation performance, business impact, innovation process automation tools, trend and technology scouting, roi measurement, innovation insights, innovation software, innovation growth acceleration, innovation portfolio optimization, innovation culture, innovation business outcomes, innovation decision-making, innovation project management, innovation capabilities, environmental scanning, crowdsourcing innovation ideas, innovation process optimization, emerging technologies, trend scouting, opportunity identification, collaborative evaluation, open innovation, gamification, ai-powered insights, kpi tracking, portfolio dashboards, agile execution, change monitoring, signal scanning, technology radar, continuous improvement, innovation communities, crowdsourced ideas, expert rating, actionable insights, process automation, data-driven decisions, collaborative workflows, business transformation, cross-functional collaboration, pipeline monitoring, strategic investment, foresight templates, market trends, competitive analysis, growth strategies, innovation metrics, resource management, ideation campaigns, digital collaboration, competitive advantage, proactive decision-making, feedback loops, scouting tools, innovation processes, b2b, finance, education, enterprises, computer software, information technology & services, communities, internet, productivity, health care, health, wellness & fitness, hospital & health care, mechanical or industrial engineering",'+49 911 60060550,"Gmail, Google Apps, Microsoft Office 365, Amazon AWS, Route 53, Amazon CloudFront, Typeform, MongoDB, Figma, Hubspot, Slack, Amazon SES, Zendesk, Mobile Friendly, Google Dynamic Remarketing, DoubleClick Conversion, Google Analytics, Linkedin Marketing Solutions, Google Tag Manager, DoubleClick, Vimeo, YouTube, WordPress.org, Linkedin Login, Linkedin Widget, Shutterstock, Remote, AI, Python, Langchain, Mode, Docker, Tor, AngularJS, TypeScript, Javascript, CSS, REST, GraphQL, React, Next.js, SES, go+, Node.js","","","","",10000000,"",69c2838047a8220001dc2e47,7375,54161,"ITONICS is a global leader in innovation management, offering an AI-powered Innovation Operating System (Innovation OS). This comprehensive SaaS platform integrates foresight, ideation, and portfolio management into a single solution, enabling organizations to drive innovation from strategy to execution. Founded by Dr. Michael Durst, ITONICS employs over 150 people across 16 countries and serves more than 500 companies, including notable names like adidas, Johnson & Johnson, and Amazon. + +The ITONICS Innovation OS features modular capabilities that centralize innovation data and automate processes. Key modules include Foresight for tracking trends and technologies, Ideation for managing and evaluating ideas, and Portfolio for optimizing investments and project governance. The platform also offers real-time analytics, workflow management, and third-party integrations, all designed to enhance collaboration and accelerate sustainable growth. ITONICS is committed to data security, being ISO-certified and GDPR-compliant, and provides 24/7 support to its users.",2009,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69a43cb8436f360001b2d09a/picture,"","","","","","","","","" +Softwarekontor GmbH,Softwarekontor,Cold,"",23,information technology & services,jan@pandaloop.de,http://www.softwarekontor.de,http://www.linkedin.com/company/softwarekontor-gmbh,https://facebook.com/softwarekontor,https://twitter.com/Softwarekontor,8 Amtsstrasse,Ludwigshafen,Rhineland-Palatinate,Germany,67059,"8 Amtsstrasse, Ludwigshafen, Rhineland-Palatinate, Germany, 67059","datenbankentwicklung, beratung digitale transformation, softwareentwicklung, software services, office365, it services & it consulting, it-architektur, it-qualitätssicherung, it-prozessautomatisierung, datenanalyse, maßgeschneiderte it-lösungen, it-beratung, software redesign, it-modernisierung, cloud services, it-support, it-change-management, apps, cloud computing, cloud-implementierung, it-konsolidierung, azure, services, it-infrastruktur, it consulting, automation, agile entwicklung, projektmanagement, sustainability, devops, project management, custom software, microsoft azure, it-agilität, iot, it-infrastrukturaufbau, individuelle lösungen, it-optimierung, consulting, digital transformation, software development, systemintegration, datenmanagement, microsoft365, ui/ux design, digitalisierungs-workshop, security, business intelligence, cybersecurity, ai/ki, digitalisierung, it-strategieentwicklung, wertschöpfung durch digitalisierung, it-strategie, information technology and services, computer systems design and related services, support-partnerschaft, it-partnerschaft, b2b, prozessdigitalisierung, softwareprojekte, industrie 4.0, it-projektbegleitung, nachhaltige softwareentwicklung, softwaremodernisierung, digitale transformation, data protection, big data, automatisierung, non-profit, information technology & services, enterprise software, enterprises, computer software, management consulting, environmental services, renewables & environment, productivity, analytics, nonprofit organization management",'+49 621 5206620,"Outlook, Nginx, Mobile Friendly, Bootstrap Framework, WordPress.org, Google Tag Manager, Remote","","","","","","",69c2838047a8220001dc2e57,7375,54151,"Die Softwarekontor GmbH ist ein mittelständisches IT- und KI-Dienstleistungsunternehmen mit Sitz in der Metropolregion Rhein-Neckar. Wir begleiten Unternehmen auf dem Weg in die digitale Zukunft: von der Entwicklung moderner Digitalisierungsstrategien über die Modernisierung bestehender Software bis hin zur Umsetzung leistungsstarker ChatBots und KI Agenten. Dabei setzen wir uns verantwortungsvoll für soziale und ökologische Nachhaltigkeit ein. +Weitere Informationen unter https://www.softwarekontor.de .",1999,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68ce6cfa7c4e5d0001a75c89/picture,"","","","","","","","","" +Digital Beat GmbH,Digital Beat,Cold,"",49,professional training & coaching,jan@pandaloop.de,http://www.digitalbeat.de,http://www.linkedin.com/company/digitalbeat,https://www.facebook.com/DigitalBeat.de/,"",97 Hansaring,Cologne,North Rhine-Westphalia,Germany,50670,"97 Hansaring, Cologne, North Rhine-Westphalia, Germany, 50670","kuenstliche intelligenz, events, podcast, digitales marketing, online kongresses, digitale infoprodukte, online marketing, online kongresse, change management, event management, effizienzsteigerung, information technology and services, computer training, ai management certification, ai strategy development, ai in decision making, customer relationship management, b2b, online learning, ai marketing professional, ai workflow automation, ai training, ai for digital transformation, consulting, ai project management, ai for executives, ki-strategien, educational services, unternehmensprozesse, ai automation, ai in hr, ai in data analysis, management consulting, ai in sales, ai in customer service, ki-tools, ai project planning, ai in content creation, ai certifications, ai in web development, ai in marketing, ai tools for business, services, ai tool training, ki-weiterbildungen, ai in creative industries, automatisierung, zertifizierte kurse, ai tools, ai legal and ethical compliance, ki-management, ai change management, ai transformation courses, practical ai skills, education, information technology, corporate ki courses, ai in business, praxisnahe schulungen, saas, events services, information technology & services, crm, sales, enterprise software, enterprises, computer software, e-learning, internet, education management",'+49 221 82829101,"Gmail, Google Apps, Zendesk, Amazon AWS, BuddyPress, Amazon SES, VueJS, Google Font API, jPlayer, Facebook Widget, Facebook Custom Audiences, Ubuntu, Mobile Friendly, Amadesa, Visual Website Optimizer, Vimeo, WordPress.org, Google Analytics, Facebook Login (Connect), Nginx, Google Tag Manager, Linkedin Marketing Solutions, Remote, Adobe Creative Cloud, Adobe Premiere Pro, Adobe After Effects, Google, Trustpilot, DATEV Accounting, Canva, ChatGPT, Midjourney, Microsoft PowerPoint, Scrum Do","","","","","","",69c2838047a8220001dc2e58,8299,61142,"Digital Beat GmbH is a German company based in Köln, specializing in AI training and education for businesses, marketing professionals, and self-employed individuals. The company focuses on integrating AI into marketing, sales, operations, and workflows. Founded as an advertising and marketing firm, Digital Beat has shifted its emphasis to AI-driven further education, connecting clients with top experts to share practical knowledge and insights. + +Digital Beat offers a range of AI-focused training programs, including the KI Agency Kickstart, which helps founders build AI marketing agencies, and the KI Automation Specialist course, designed to create reliable AI automations for various business processes. Their offerings also include seminars, online courses, coaching, events, and workshops aimed at enhancing modern marketing and AI integration. The company targets a diverse audience, including entrepreneurs, managers, and employees, to foster career development and organizational growth.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/683eccdf9d30ae0001854a1d/picture,"","","","","","","","","" +VisionAI,VisionAI,Cold,"",28,information technology & services,jan@pandaloop.de,http://www.visionai.co,http://www.linkedin.com/company/wearevisionai,"",https://twitter.com/recommendyio,7 Adenauerplatz,Bielefeld,Nordrhein-Westfalen,Germany,33602,"7 Adenauerplatz, Bielefeld, Nordrhein-Westfalen, Germany, 33602","vision, ecommerce, saas, artificial intelligence, computer vision, software development, conversion rate optimization, recommendation algorithms, ai-driven marketing, ai shop management, product recommendation engine, dashboard analytics, automated recommendations, semantic product understanding, shopware integration, ai product discovery, ai for revenue increase, deep commerce knowledge, ai customer insights, ai model training, ai system deployment, ai for competitive retail, ai product catalog management, visual product analysis, ai for independent brands, computer systems design and related services, e-commerce data analysis, magento integration, information technology and services, b2b, ai e-commerce tools, automated product bundles, recommendation engine performance, ai for product recommendations from images, ai-powered search, customer engagement, digital commerce ai, ai deployment, e-commerce, deep learning, conversion optimization, api integration, api connectors, automated cross-selling, product tagging ai, e-commerce personalization, recommendation system, ai-driven product suggestions, ai automation, ai for google shopping, shopify integration, ai sales uplift, ai-powered analytics, ai for online retail, inventory management, recommendation engines, ai for shop optimization, ai tools for e-commerce, ai marketing tools, software as a service, ai shop optimization, ai automation in retail, revenue growth tools, ai for small retailers, ai for european commerce, ai sales automation, customer experience enhancement, real-time metrics, api for e-commerce, shop system integration, customer relationship management, product description analysis, e-commerce automation, ai for personalized shopping, ai search technology, ai for e-commerce efficiency, customer experience, ai for product bundles, product tagging, services, digital transformation, product data enrichment, independent retailer ai, semantic search, automated product suggestions, ai-powered shop dashboard, retail, product image analysis, consumer products & retail, consumer internet, consumers, internet, information technology & services, computer software, crm, sales, enterprise software, enterprises","","Cloudflare DNS, Gmail, Google Apps, Outlook, Google Dynamic Remarketing, Mobile Friendly, Facebook Widget, Facebook Login (Connect), DoubleClick, DoubleClick Conversion, Google Tag Manager, Facebook Custom Audiences, Circle, AI, Remote",6490000,Seed,5500000,2023-10-01,"","",69c2838047a8220001dc2e59,7375,54151,"VisionAI specializes in AI-powered catalog management and product data enrichment solutions for e-commerce businesses. Their platform offers a centralized system to store, organize, and optimize product data, including images, descriptions, and pricing. By leveraging artificial intelligence and machine learning, VisionAI automatically categorizes products, identifies market trends, and recommends pricing adjustments. The platform integrates with popular e-commerce backends like Shopware, Shopify, and Magento, allowing for seamless synchronization of product catalogs across various sales channels. + +The company provides advanced features such as AI-driven product data enrichment, which includes tagging products and generating textual content from images. VisionAI's AI agents automate tasks related to product data entry and maintenance, enhancing data accuracy and boosting conversion rates. Additionally, the platform offers dashboard analytics for monitoring performance and customization services to tailor functionalities and user experiences to specific customer needs. VisionAI aims to help e-commerce businesses improve their product catalog management and enhance customer experiences through intelligent search and recommendation capabilities.",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69188dd9d2c5dc000149c530/picture,"","","","","","","","","" +akirolabs,akirolabs,Cold,"",30,information technology & services,jan@pandaloop.de,http://www.akirolabs.com,http://www.linkedin.com/company/akirolabs,"","",208 Greifswalder Strasse,Berlin,Berlin,Germany,10405,"208 Greifswalder Strasse, Berlin, Berlin, Germany, 10405","management consulting, procurement, supplier management, risk management, supplier intelligence, category management, generative ai, saas, procurement development, strategic procurement, machine learning, professional services, procurement transformation, artificial intelligence, market insights, ai, it services, digital procurement, software development, data visualization, integrated supplier insights, risk assessment, manufacturing, strategy lifecycle management, workflow automation, pharmaceuticals, consulting, performance tracking, ai-driven decision support, services, enterprise security, multi-category strategy, scenario modeling, technology, financial services, ai-powered procurement platform, supply chain management, supply chain resilience, esg strategy integration, enterprise-wide procurement governance, management consulting services, real-time strategy adjustment, energy & utilities, value creation, automated risk signals, market intelligence, b2b, central strategy repository, supplier strategy management, healthcare, ai at work, stakeholder collaboration, strategy execution dashboards, ai-assisted procurement, category strategy building, ai-assisted supplier segmentation, digital transformation in procurement, retail, compliance management, multi-region support, computer software, information technology & services, professional training & coaching, mechanical or industrial engineering, medical, logistics & supply chain, health care, health, wellness & fitness, hospital & health care",'+49 30 75438466,"Cloudflare DNS, MailJet, Sendgrid, Outlook, Microsoft Office 365, Freshdesk, Slack, Bootstrap Framework, Mobile Friendly, YouTube, Nginx, Apache, DoubleClick, Vimeo, Google Tag Manager, reCAPTCHA, Wistia, Helpscout, Intercom, Adobe Media Optimizer, Google Analytics, Facebook Login (Connect), Cedexis Radar, WordPress.org, Micro, Circle, AI, CallMiner Eureka, Linkedin Marketing Solutions",6100000,Other,1100000,2024-07-01,"","",69c2838047a8220001dc2e5a,7375,54161,"akirolabs is a Berlin-based AI-powered SaaS platform founded in 2021. The company focuses on transforming procurement into a strategic business partner through collaborative category strategy management and value orchestration. Established by experienced procurement professionals, akirolabs leverages their expertise to enhance strategic category management. + +The platform offers a range of features, including a Strategy Room for managing procurement strategies, collaborative workflows for cross-functional alignment, and AI-powered tools for market intelligence and scenario modeling. It also provides a central repository for strategy storage and emphasizes alignment with ESG targets. Akirolabs serves various industries, including automotive, healthcare, and telecommunications, and aims to empower procurement teams with self-sufficient strategy development. + +Recognized as an IDC Innovator and a ""Cool Vendor"" by Gartner, akirolabs has raised $5 million in funding and is committed to data privacy and security. The company is dedicated to delivering significant value compared to traditional sourcing tools, positioning itself as a leader in the ProcureTech space.",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69a518673b1fb60001f8e55b/picture,"","","","","","","","","" +JUNE GmbH,JUNE,Cold,"",52,information technology & services,jan@pandaloop.de,http://www.june.tech,http://www.linkedin.com/company/june-platform,"","",49A Goethestrasse,Munich,Bavaria,Germany,80336,"49A Goethestrasse, Munich, Bavaria, Germany, 80336","online dispute resolution, legal tech, legal managed services, workflow automation, data analysis, saas, mass litigation, legal operations, cloud platform, ki, case management, odr, matter management, it services & it consulting, information technology & services, data analytics, computer software",'+49 4258 828080,"Microsoft Office 365, Microsoft Azure Hosting, Outlook, Hubspot, React Redux, Sophos, MongoDB, WordPress.org, Google Tag Manager, Mobile Friendly, AI, LinkedIn Ads","",Venture (Round not Specified),0,2025-03-01,"","",69c283866ce8cd0001b05cac,"","","JUNE GmbH is a legal technology company based in Munich, Germany, founded in 2020. It specializes in a modular, cloud-based Case Management Platform designed to manage mass litigation and high-volume legal cases. The platform utilizes AI-driven workflow automation to enhance legal operations and improve efficiency in document handling and stakeholder coordination. + +With a team of 11-50 employees, JUNE has processed over 1.2 million legal cases. The company emphasizes human-centric AI and continuous innovation, aiming to create a collaborative environment for law firms and corporate legal departments. Key features of the platform include document classification and extraction, workflow automation, and collaboration tools, which support scalable case management and ensure transparency and standardization across legal processes. JUNE serves international law firms and corporate legal departments, providing solutions that optimize legal workflows and enhance collaboration.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/690dba6941dbdc0001a78940/picture,"","","","","","","","","" +Taxy.io,Taxy.io,Cold,"",44,information technology & services,jan@pandaloop.de,http://www.taxy.io,http://www.linkedin.com/company/taxy-io,https://www.facebook.com/Taxy.io,https://twitter.com/taxy_io,72A Juelicher Strasse,Aachen,North Rhine-Westphalia,Germany,52070,"72A Juelicher Strasse, Aachen, North Rhine-Westphalia, Germany, 52070","natural language processing, tax advisery, legaltech, taxautomation, ai, machine learning, digitalization, taxtech, taxdataanalytics, taxtechnolgy, software development, answers ai, internal knowledge ai, financial technology, tax law, ai training, tax law knowledge base, digital transformation, b2b, tax data analytics, ai chatbot, ai legal research, legal technology, knowledge management, digital tax platform, digital tax solutions, ai in tax consulting, tax consulting software, ai legal compliance, nlp, tax law modules, inheritance planning software, consulting, data security, automated estate planning, cloud hosting, grundsteuer software, tax technology, tax advisory tools, tax compliance, ai beta club, tax automation software, legal ai software, b2b software, legal services, operational efficiency, information technology & services, computer systems design and related services, tax law ai, ai legal assistant, services, ai for tax questions, tax automation, software as a service, automated tax advice, ai-powered tax questions, finance, legal, artificial intelligence, finance technology, financial services, computer & network security, cloud computing, enterprise software, enterprises, computer software, saas","","MailJet, Gmail, Google Apps, Google Cloud Hosting, Atlassian Cloud, AWS SDK for JavaScript, Hubspot, Zendesk, Wix, Mobile Friendly, Google Dynamic Remarketing, Facebook Widget, DoubleClick, Varnish, Facebook Custom Audiences, Facebook Login (Connect), Google Tag Manager, Linkedin Marketing Solutions, DoubleClick Conversion, Android, Remote, Microsoft Azure Monitor, Terraform",2200000,Merger / Acquisition,0,2025-08-01,"","",69c283876ce8cd0001b05cb4,7375,54151,"Taxy.io is a German legal tech company founded in 2018, specializing in AI-powered automation software for tax consulting and advisory workflows. Based in Aachen, it was established as a spin-off from RWTH Aachen University and has grown to serve over 1,700 advisory firms across Germany. In August 2025, Taxy.io was acquired by Visma, a prominent European software provider, which allows it to expand its reach to over 2 million customers internationally. + +The company develops a range of AI-driven tools designed to enhance efficiency in tax advisory processes. Its offerings include solutions for instant answers to tax law questions, analysis of inheritance and gift tax scenarios, automated property tax declarations, and monitoring of legal changes. Taxy.io's technology leverages natural language processing and large language models to streamline workflows and reduce manual tasks for tax professionals.",2018,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/696082362ea6480001ca8560/picture,"","","","","","","","","" +reSTART SMES,reSTART SMES,Cold,"",50,machinery,jan@pandaloop.de,http://www.restartsmes.eu,http://www.linkedin.com/company/restart-smes,"","","",Stuttgart,Baden-Wuerttemberg,Germany,"","Stuttgart, Baden-Wuerttemberg, Germany","smes, funding, digital transformation, manufacturing, automation machinery manufacturing, innovation support, sustainability, digital skills, hackathons, digital ecosystem building, european sme network, sme support services, digital skills training, sustainable manufacturing, digital maturity evaluation, restart smes hackathons, workforce upskilling, digital transformation strategies, government, ai, digitalization of supply chains, process optimization, cybersecurity, digital innovation hubs, predictive maintenance, distribution, education, collaborations, human-centered robotics, b2b, technology providers, european funding programs, iot deployment, innovation, digital assessment, technology matchmaking, digital ecosystem, digitalization in textiles and food sectors, services, robotics integration, digital strategies, smart sensors in industry, industry 5.0, smart manufacturing, non-profit, digital readiness, iot, digital transformation consultancy, information technology, hackathon events, digital supply chain, big data, digital skills development, workforce training, advanced manufacturing technologies, european commission, robotics, digital maturity, technology showcase, all other miscellaneous manufacturing, resilience, manufacturing sectors, cross-sector collaboration, digital platform, technology transfer, ai fusion for manufacturing, digital twin applications in manufacturing, technology provider network, green industry practices, digital twins, digital assessment tools, cybersecurity solutions, digital roadmap development, industrial automation, technology adoption, digital twin technology, decentralized data sharing, green manufacturing, strategic alliances, data analytics, european funding, advanced manufacturing, consulting, matchmaking events, ai applications, industry 5.0 adoption, industry 5.0 technologies, digital transformation roadmaps, mechanical or industrial engineering, environmental services, renewables & environment, nonprofit organization management, enterprise software, enterprises, computer software, information technology & services","","Cloudflare DNS, CloudFlare Hosting, Mobile Friendly, Apache, YouTube, Ubuntu, WordPress.org, Google Font API","","","","","","",69c283876ce8cd0001b05cb5,3559,33999,"We enable traditional manufacturing SMEs to form strategic alliances with innovative, digitally- savvy SMEs and exchange experiences, best practices and know-how to transform their business model and improve its sustainability + +By joining the ReStartSMEs project: + - Profile digital readiness of your SME + - Form alliance with an innovative, digitally-savvy SME from your industry line and improve sustainability of your business model + - Increase effectiveness of your staff + - Undergo a digital transformation under a supervision of a dedicated business coach + +Everything under the supervision of European Digital Transformation Experts from our consortium.",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e5abb50c09320001d601b7/picture,"","","","","","","","","" +Modelyzr GmbH,Modelyzr,Cold,"",22,information technology & services,jan@pandaloop.de,http://www.modelyzr.com,http://www.linkedin.com/company/modelyzr,"","",54 Ludgeristrasse,Muenster,North Rhine-Westphalia,Germany,48143,"54 Ludgeristrasse, Muenster, North Rhine-Westphalia, Germany, 48143","demand management, maschinelearning, dataquality, indirekter vertrieb, maschinelles lernen, ma, b2bmarktanalytik, softwareentwicklung, datenbanken, sales, marktrecherche auf knopfdruck, bigdataanalysen, marketing, channel management, markttransparenz, marktpotenzial, leadgen, machine learning, vertrieb, gotomarket, absatzpotenziale, zielkunden ausserhalb des crms, mergers & acquisition, kuenstliche intelligenz, direkter vertrieb, software development, sap integration, kunden- und zielgruppenforschung, data consolidation, real-time lead qualification, ki-gestützte markterschließung, market segmentation, data analytics, crm integration, target customer prioritization, market entry strategies, market trend prediction, real-time market insights, market trend forecasting, go-to-market-strategien, kunden- und marktsegmentierung, vertriebs- und marketingstrategie, market research automation, datenanalyse engine, big data, ki-gestützte automatisierung, ki-gestützte trendanalyse, complex b2b sales structures, ki-gestützte prognosen, external market data, lead generation, datenkonnektivität, markt- und kundenpotenziale, datenbasiertes business development, information technology and services, b2b, synergy recognition, data integration, internal data correlation, market ai, sales and business development support, customer engagement, big data analytics, predictive analytics, internal data analysis, market potential mapping, ai in business development, sales funnel optimization, ki-basierte entscheidungsfindung, datenqualität und governance, business intelligence, echtzeit-analysen, market research and analysis, marketing automation, automatisierte cluster-algorithmen, customer journey mapping, marktpotenzialanalyse, market opportunity detection, decision support systems, data quality management, scenario planning, data-driven growth, customer targeting, umsatzpotenziale identifizieren, data-driven business growth, management consulting services, lead-generierung, market potential analysis, zukunftsorientierte marktplanung, automated market segmentation, vertriebs- und marketingeffizienz, datenvisualisierung, customer profiling, markt- und wettbewerbsanalyse, marktmodelle, vertriebsoptimierung, data visualization tools, external data sources, customer overlap analysis, b2b-unternehmen, erp compatibility, user experience, market expansion, external data integration, automated clustering, demand forecasting, services, business consulting, customer identification, ki-basierte szenarienanalyse, customer acquisition, real-time data processing, consulting, zielgruppenanalyse, externe und interne datenintegration, artificial intelligence, information technology & services, enterprise software, enterprises, computer software, marketing & advertising, analytics, saas, ux, management consulting",'+49 251 85712682,"Amazon SES, Outlook, Microsoft Office 365, Atlassian Cloud, Hubspot, Google Maps, Nginx, WordPress.org, Google Tag Manager, Mobile Friendly, React Native, Android, Remote, SAP, SAP Business Technology Platform, Microsoft Office","",Seed,0,2025-09-01,"","",69c283876ce8cd0001b05cb9,7375,54161,"Identify high-value markets and target customers in real time with MODELYZR AI. +Activate untapped market potential and focus your sales efforts where they count. + +By connecting internal and external data sources, MODELYZR reveals patterns, analyzes market dynamics, and enables data-driven decisions across Sales, Marketing, and Business Development – for scalable, profitable growth. + +Leading companies use MODELYZR to break down data silos, operationalize their growth strategy, and unlock sales opportunities at the push of a button – faster, smarter, and with maximum ROI. + +👉 Book your demo today and turn your data into your competetive advantage. + + + + +https://modelyzr.com/en/privacy-policy/",2015,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66ecf5ff9a16190001d77b7c/picture,"","","","","","","","","" +metaphacts GmbH,metaphacts,Cold,"",46,information technology & services,jan@pandaloop.de,http://www.metaphacts.com,http://www.linkedin.com/company/metaphacts-gmbh,"",https://twitter.com/metaphacts,38 Wieslocherstrasse,Walldorf,Baden-Wuerttemberg,Germany,69190,"38 Wieslocherstrasse, Walldorf, Baden-Wuerttemberg, Germany, 69190","knowledge democratization, banking finance, linked data, life sciences pharma, engineering manufacturing, knowledge graphs, decision intelligence, semantic technologies, knowledge graphs & semantic technologies, software development, user experience, knowledge graph platform, ontology reuse, w3c standards, semantic layer for enterprise architecture, pharmaceuticals, digital twins, other scientific and technical consulting services, finance, healthcare, open vocabulary standards, energy, explainable ai, metadata management, model governance, data lineage, ai conversation interface, vocabulary governance, data analytics, services, enterprise information architecture, vocabulary management, model-driven app building, data integration, collaborative modeling, ai-driven insights, open standards, knowledge graph validation, data governance, business intelligence, ontology management, b2b, natural language processing, data contextualization, knowledge discovery, manufacturing, ai-assisted semantic modeling, consulting, semantic knowledge modeling, data cataloging, energy_utilities, information technology & services, ux, medical, financial services, health care, health, wellness & fitness, hospital & health care, enterprise software, enterprises, computer software, analytics, artificial intelligence, mechanical or industrial engineering",'+49 62 276989965,"Gmail, Pardot, Google Apps, Pipedrive, React, Salesforce, Slack, Google Tag Manager, YouTube, Bootstrap Framework, Joomla, Apache, Mobile Friendly, Linkedin Marketing Solutions, IoT, Android, Node.js, Remote, AI, Tor",220000,Merger / Acquisition,0,2023-01-01,7777000,"",69c283866ce8cd0001b05c79,7375,54169,"metaphacts GmbH is a Germany-based company founded in 2014, located in Walldorf, Baden-Württemberg. It specializes in enterprise knowledge graph platforms that help organizations transform complex data into actionable knowledge. The company focuses on industries such as business, finance, life sciences, cultural heritage, engineering, automotive, and pharmaceuticals. + +The flagship product, metaphactory, enables users to manage knowledge graphs effectively. It features tools for integrating diverse data sources, managing ontologies, and ensuring data quality. The platform also supports rapid application development with a low-code environment and offers user-friendly interfaces for data discovery and analytics. + +metaphacts emphasizes the importance of data clarity and innovation, aiming to enhance decision-making through knowledge graphs and AI. The company serves a variety of clients, including Siemens Energy, and provides solutions that address data chaos and improve efficiency across multiple domains.",2014,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6844434db6f1e80001504487/picture,Digital Science (digital-science.com),54a11c6969702da753cfb800,"","","","","","","" +Crowdworx,Crowdworx,Cold,"",28,information technology & services,jan@pandaloop.de,http://www.crowdworx.com,http://www.linkedin.com/company/crowdworx,https://facebook.com/crowdworx,https://twitter.com/crowdworx,94 Petersburger Strasse,Berlin,Berlin,Germany,10247,"94 Petersburger Strasse, Berlin, Berlin, Germany, 10247","crowdsourcing & efficiency improvement, idea management, efficiency improvement, crowdsourcing, open innovation, innovation management, software development, innovation roi boosting, innovation strategy, software publishing, innovation processes, consulting, b2b, government, digital transformation consulting, idea capture, market testing, external idea sources, trend scouting, automated routing, business software, scalable innovation platform, decision support tools, innovation knowledge base, multi-language support, social forecasting, crowdsourced innovation software, innovation portfolio management, innovation management software, innovation kpis, idea management software, innovation culture building, idea prioritization, continuous improvement software, knowledge base, ai for innovation, ai toolbox, user engagement, gamified voting, b2c, gdpr compliance, open innovation platform, services, b2b and b2c crowdsourcing, real-time idea evaluation, partner collaboration, smart assistants, workflow automation, multi-device access, hosting and security, innovation benchmarking, information technology and services, computer systems design and related services, idea screening, idea campaigns, idea reuse recommendations, management consulting, communities, internet, information technology & services",'+49 30 54905374,"Outlook, Microsoft Office 365, Amazon AWS, Jira, Atlassian Confluence, Hubspot, Slack, Multilingual, Google Tag Manager, Nginx, Mobile Friendly, WordPress.org, Linkedin Marketing Solutions, Remote","","","","","","",69c283866ce8cd0001b05cad,7375,54151,"Crowdworx is the leading provider of Innovation Management software and Idea Management software. We connect Strategy, Ideas, and Execution with our AI-powered Innovation Engine™ to accelerate innovation success.",2007,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/687f0b920a5db30001b6e7ac/picture,"","","","","","","","","" +Everlast Consulting GmbH,Everlast Consulting,Cold,"",86,management consulting,jan@pandaloop.de,http://www.kiberatung.de,http://www.linkedin.com/company/everlast-consulting,"","",55 Turmstrasse,Neu-Ulm,Bayern,Germany,89231,"55 Turmstrasse, Neu-Ulm, Bayern, Germany, 89231","instagram marketing, marketing kommunikation, consulting, digitalisierung, marketing communcations, content strategie, content marketing, social media marketing, unternehmensberatung, kuenstliche intelligenz, social media beratung, business consulting & services, marketing & advertising, consumer internet, consumers, internet, information technology & services, management consulting",'+49 176 66367935,"Cloudflare DNS, Gmail, Google Apps, Active Campaign, Mobile Friendly, Hotjar, SoundCloud, Google Tag Manager, Instagram, Linkedin Marketing Solutions, Facebook, AI, Webflow, Figma, Adobe Photoshop, Strato","","","","","","",69c283876ce8cd0001b05cbd,"","","Everlast Consulting GmbH, based in Biberach an der Riß, operates under the brand Everlast AI. The company specializes in AI consulting, digital transformation, and business coaching for medium-sized enterprises. Its mission is to enhance efficiency and reduce personnel costs through the implementation of artificial intelligence solutions. + +Everlast AI offers a range of services, including AI-driven automation tools, digital transformation strategies, and sales training. Their solutions encompass automated systems for social media, email, customer relationship management, and chatbots, all designed to streamline business processes. The company also provides ongoing education and technical support, including accredited training programs and live coaching sessions. + +With a multicultural team of 30 experts, Everlast AI emphasizes customized solutions and has established a strong presence in the market, including a rapidly growing YouTube channel that shares insights on AI in business. The company has successfully collaborated with various medium-sized firms, achieving significant revenue growth and positioning clients as leaders in their respective industries.",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66ee9bc0daa38c0001f436e9/picture,"","","","","","","","","" +doubleYUU,doubleYUU,Cold,"",24,management consulting,jan@pandaloop.de,http://www.doubleyuu.com,http://www.linkedin.com/company/doubleyuu,https://facebook.com/pages/doubleYUU/137075506313720,https://twitter.com/dbleyuu,17 Keplerstrasse,Hamburg,Hamburg,Germany,22763,"17 Keplerstrasse, Hamburg, Hamburg, Germany, 22763","change management, collaboration, digital transformation, keynotes, managementberatung, digital leadership, fuehrungskraefte trainings, interim management, consultingberatung, ki transformation, business consulting & services, digital mindset, silicon valley spirit, organisationsentwicklung, process optimization, government, innovation, innovation management, next-generation workplace, consulting, potenzialanalyse, management consulting, kpi-steuerung, digital culture, services, coaching, digital strategy for banks, leadership development, esg-implementierung, management consulting services, transformation, geschäftsmodelle, agile methoden, tech adoption, future skills, nachhaltigkeitsstrategie, okrs, cloud solutions, digital strategy, b2b, m&a begleitung, leadership, digitale transformation, business services, automatisierung von geschäftsprozessen, information technology and services, digital leadership impulse, transformation bei dax-30 unternehmen, sustainable business, business process optimization, automation, künstliche intelligenz, ki-potenzialanalyse, strategieentwicklung, transformation rad, lean-startup accelerator, ai-beratung, esg, finance, cloud computing, enterprise software, enterprises, computer software, information technology & services, marketing, marketing & advertising, financial services",'+49 40 33429594,"Route 53, Outlook, CloudFlare Hosting, Slack, Salesforce, Google Maps, Google Maps (Non Paid Users), Google Tag Manager, WordPress.org, Linkedin Marketing Solutions, Mobile Friendly, Typekit","","","","",490000,"",69c283876ce8cd0001b05cc1,8742,54161,"Wir sind doubleYUU - Ihre Managementberatung für (digitale) Transformation. Seit 2009 schaffen wir als Team um unseren Gründer Dr. Willms Buhse einzigartige strategische Mehrwerte für Kunden – mit digitalem Expertenwissen, praxiserprobtem Methoden und einem klaren Fokus auf Umsetzung. In enger Zusammenarbeit mit unseren Kunden identifizieren und realisieren wir Potenziale und führen Unternehmen so in eine erfolgreiche, digitale Zukunft. + +Unsere vier Bereiche, um Transformation wirksam zu machen: + +⬆️ Beratung: Wir gestalten Zukunft +▸Strategie & Organisationsentwicklung +▸KI & Digitale Transformation +▸Change Management +▸Excellence & Performance + +⚙️Interims-Management: Wir packen mit an +▸Senior- & C-Level +▸Transformation Office +▸Projekt Management +▸Digital & IT Rollen + +👤Führungskräfte-Entwicklung: Wir stärken Menschen +▸Executive Sparring +▸Leitbild & Learning Journey +▸Coaching & Training +▸Kulturentwicklung & Mindset + +🚀Startups: Wir bauen Neues +▸Trend & Startup Scouting +▸Corporate Venture Building +▸Investment Strategie +▸doubleYUU Investments + +Weitere Informationen finden Sie unter www.doubleyuu.com. +Unser Impressum: https://doubleyuu.com/impressum/",2009,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/691125e322e6f600010b77b0/picture,"","","","","","","","","" +CTO GmbH,CTO,Cold,"",55,information technology & services,jan@pandaloop.de,http://www.cto.de,http://www.linkedin.com/company/cto-balzuweit-gmbh,http://www.facebook.com/ctoBalzuweit/,"",3 Lautlinger Weg,Stuttgart,Baden-Wuerttemberg,Germany,70567,"3 Lautlinger Weg, Stuttgart, Baden-Wuerttemberg, Germany, 70567","requirement request in sap, data extraction, digital invoice dispatch, enterprise content management, workflow, digital invoice verification, electronic invoice verification, digital mail archiving, document recognition, enterprise input management, digital contract file, digital contract management, capturing, digitization service, document classification, sap archiving, automatic invoice management, digital mailroom, digital personnel file, document management, it services & it consulting, datenschutzkonforme archivierung, sap s/4hana cloud archiv, process optimization, managed services, rechnungsworkflow, unternehmenssoftware, automation, it support, workflow automation, compliance archivierung, sap s/4hana archivierungslösung, datenmigration bei sap s/4hana, datenmigration sap, automatisierte workflows sap, content management schnittstellen, langzeitdatenhaltung, langzeitarchivierung, services, peppol schnittstelle, personalmanagement software, revisionssicheres archiv, zertifizierte software, sap integration, content management standards in sap, revisionssichere archivierung sap, it-integration, vertragsmanagement sap, e-rechnung ab 2027, dokumentenarchivierung, automatisierte dokumentenerfassung, digitale akten, cloud archivierung, sap content server, automatisierte dokumentenklassifikation sap, sap schnittstellen, information technology and services, revisionssichere speicherung sap, content repository, langzeitarchivierung gesetzeskonform, datenmigration, sap s/4hana archivierung, cloud plattform, archivierung sap, content management system, langzeitarchivierung für gesetzliche vorgaben, consulting, sap ecm lösungen, sap s/4hana, datenmigration sap s/4hana, revisionssichere speicherung, automatisierte workflows, peppol e-rechnungen, business intelligence, dokumentenmanagement, rest api schnittstelle, microsoft office integration, sicherheitszertifikate sap, clarc software, compliance lösungen, software publishing, datenmanagement plattform, sicherheitsstandards, revisionssichere datenhaltung, e-invoicing sap, digitale personalakte, datenintegrität, content management interoperability services, b2b, computer software, automatisierte dokumentenverarbeitung, it-sicherheitszertifizierung, sicherheitszertifikate, nosql datenbank, automatisierte dokumentenklassifikation, automatisierte datenextraktion, it-sicherheit, microsoft 365 integration, open standards, automatisierte dokumentenextraktion, enterprise software, datenmanagement, archivierung, automatisierte dokumentenprüfung sap, sap content management, digitalisierungslösungen, xrechnung zugferd unterstützung, langzeitarchivierung sap, langzeitarchivierung dsgvo, vertragsverwaltung, datenmanagement in der cloud, content lifecycle management, automatisierte datenextraktion sap, automatisierte dokumentenprüfung, supply chain management, rechnungsmanagement, prozessoptimierung, webbasierte recherche, ocr datenextraktion, datenschutz, revisionssichere archivierung, effizienzsteigerung, datenverschlüsselung, cloud solutions, sap ilm zertifizierung, business process management, content management, ki im dokumentenmanagement, digital transformation, content lifecycle management in sap, datenarchivierung in der cloud, content management standards, sap content integration, sicherheitszertifikate für archivierung, datenverschlüsselungstechnologien, computer systems design and related services, nosql datenbank in archivlösungen, ki dokumentenmanagement, finance, legal, non-profit, distribution, information technology & services, analytics, enterprises, logistics & supply chain, cloud computing, financial services, nonprofit organization management",'+49 711 7186390,"Outlook, DigitalOcean, Amazon SES, Freshdesk, Hubspot, Mobile Friendly, reCAPTCHA, WordPress.org, Nginx, Google Tag Manager","","","","","","",69c283866ce8cd0001b05cb0,7375,54151,"CTO Balzuweit GmbH is a software company based in Stuttgart, Germany, specializing in document management systems (DMS), process automation, and digital archiving solutions. The company develops the CLARC software suite, which includes tools designed to enhance document workflows and improve efficiency. As an SAP partner, CTO Balzuweit offers solutions like CLARC Archive for SAP, ensuring compatibility with evolving technologies. + +Their product offerings include CLARC Invoice for digital invoice processing, Digitale Personalakte for HR administration, and Digitale Immobilienakte for property management. They also provide CLARC Mailroom for efficient document handling and general tools for document management and process automation. These solutions support features such as XRechnung for compliance with B2G invoicing. The company has successfully implemented its solutions for various clients, including Festool and Schluchseewerk AG, showcasing their versatility across different sectors.",1990,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6906b644f06a7900018d7aa8/picture,"","","","","","","","","" +D11Z. Ventures,D11Z. Ventures,Cold,"",28,venture capital & private equity,jan@pandaloop.de,http://www.d11z.com,http://www.linkedin.com/company/d11z,"","",19 Edisonstrasse,Heilbronn,Baden-Wuerttemberg,Germany,74076,"19 Edisonstrasse, Heilbronn, Baden-Wuerttemberg, Germany, 74076","langfristige und persoenliche zusammenarbeit, startups, assetlight iot, venture capital, marktzugang deutschland, unternehmensansiedlung, deep tech, marktzugang dach, digitale geschaeftsmodelle, mittelstaendisches unternehmernetzwerk, kuenstliche intelligenz, innovative technologien, single family office, softwareasaservice, privatfinanzierter fonds, kontakt zu weltmarktfuehrern, venture capital & private equity principals, ai deal sourcing, cloud computing, seed funding, evergreen fund, ai technology, founder guidance, european family office, deep tech innovation, industrial tech, information technology & services, early-stage funding, industry connections, fund structure, b2b, seed investment support, securities and commodity contracts intermediation and brokerage, ai ecosystem collaboration, venture scouting ai, data-driven investment, digital pioneers, government, software development, data analytics, digital transformation, european cloud infrastructure, family office, founder support programs, mobility, disruptive technologies, cybersecurity, infrastructure support, venture capital & private equity, ai-driven deal flow, pro bono infrastructure, consulting, digital marketing, early-stage investments, european startups, founder-first approach, exponential growth, software & technology services, academy for startups, startup scaling support, portfolio support, follow-up investors, ai for deal flow, portfolio management, european tech ecosystem, sustainable investments, services, saas, enterprise software, enterprises, computer software, marketing & advertising",'+49 713 18731830,"Outlook, Netlify, React, DigitalOcean, Slack, Apache, Google Tag Manager, WordPress.org, Mobile Friendly, Airflow, Excel4Apps, Microsoft PowerPoint","","","","","","",69c283876ce8cd0001b05cb3,6799,5231,"D11Z.Ventures is a prominent European single-family office and venture capital firm located in Heilbronn, Germany. Founded in 2012, with roots dating back to 2005, the firm specializes in early-stage investments in digital pioneers, focusing on sectors such as AI, deep-tech, and B2B SaaS across Europe, including Germany and Israel. It operates as D11Z. Ventures GmbH & Co. KG and is associated with the family office of Lidl founder Dieter Schwarz, led by CEO Thomas R. Villinger. + +The firm manages approximately $231.9 million in assets and has made 94 investments, achieving 10 exits. D11Z.Ventures employs a data-driven approach for deal sourcing and offers ongoing support to its portfolio companies, leveraging regional networks and cloud infrastructure to enhance growth and market access. With a diverse portfolio, notable investments include Aleph Alpha, become.1, and PL BioScience. D11Z.Ventures positions itself as a committed partner, providing not just capital but also guidance and resources to foster the success of its investments.",2024,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6959525e7924f30001b71588/picture,"","","","","","","","","" +GPI Consulting GmbH,GPI Consulting,Cold,"",38,information technology & services,jan@pandaloop.de,http://www.gpi-consulting.de,http://www.linkedin.com/company/gpiconsulting,https://www.facebook.com/gpiconsulting/,"",10 Kleine Johannisstrasse,Hamburg,Hamburg,Germany,20457,"10 Kleine Johannisstrasse, Hamburg, Hamburg, Germany, 20457","it services & it consulting, stakeholder-management, digitalisierungsstrategie, it solutions, agile dienstleistungen, customer engagement, it security, softwareentwicklung, software development, unternehmensberatung, change management, workshops, digitale transformation, management consulting services, technologieberatung, system integration, it consulting, business consulting, b2b, cloud migrationen, process optimization, transformationsbegleitung, cybersecurity, transformation, projektmanagement, 360-grad-ansatz, innovative methoden, prozessoptimierung, strategieentwicklung, systemischer ansatz, künstliche intelligenz, technology consulting, it-infrastruktur, branchen know-how, risk management, it infrastructure, agile methoden, business analyse, innovative lösungen, maßgeschneiderte prozesse, it-entscheidungen treffen, interdisziplinäres team, customer relationship management, information technology and services, operational efficiency, services, transformationsfähigkeit, consulting, requirements engineering, praxisnahe ergebnisse, cloud computing, schulungen, mittelstand, management consulting, software engineering, digital transformation, data analytics, project management, information technology & services, computer & network security, crm, sales, enterprise software, enterprises, computer software, productivity","","Hubspot, Facebook Login (Connect), DoubleClick, WordPress.org, Google Dynamic Remarketing, Facebook Widget, Adobe Media Optimizer, Apache, Cedexis Radar, Vimeo, Mobile Friendly, Google Analytics, DoubleClick Conversion, Facebook Custom Audiences, Google Tag Manager, Linkedin Marketing Solutions, Remote, AI, PowerBI Tiles, GoToAssist (FASTchat), Azure Data Factory, Nevron Vision for SSRS, Veracode Static Analysis (SAST), SQL, Microsoft SQL Server Reporting Services, C#, DotNetNuke, SAP","","","","","","",69c283876ce8cd0001b05cb6,8742,54161,"GPI Consulting GmbH is a mid-sized consulting firm based in Germany, specializing in digital transformation for businesses in the DACH region (Germany, Austria, Switzerland). The company employs a comprehensive 360-degree approach that combines strategic, technological, and operational support to deliver practical solutions. With over 1,000 successful transformations, GPI Consulting emphasizes implementable solutions that provide real added value, focusing on rapid and individualized results. + +The firm offers tailored services across four core areas: strategy, technology, analytics, and agility. They provide strategic guidance to shape digital futures, assist in making optimal IT decisions, and enhance efficiency through business and process analysis. Additionally, GPI Consulting supports transformation at all levels by fostering agile methodologies and ensuring that changes are effectively integrated into the organization. Their holistic approach aims for concrete outcomes, making them a valuable partner for mid-sized enterprises navigating digital challenges.",2009,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68bdf284f37a7a00018fc9ca/picture,"","","","","","","","","" +9x,9x,Cold,"",21,information technology & services,jan@pandaloop.de,http://www.go9x.com,http://www.linkedin.com/company/go-9x,"","","",Berlin,Berlin,Germany,"","Berlin, Berlin, Germany","training, nocode, lowcode, no code, sales ops, saas customisation, automation, business operations, internal tools, ai, technology, information & internet, operational efficiency, training programs, ai and no-code resources, business process automation, computer training, business intelligence, automation in business functions, automation strategies, no-code platforms, ai workflows without coding, ai adoption, self-service automation, team training, ai skill transfer, team skill development, platform integration, email automation, no-code tools, courses, generative ai, b2b, automation support, ai workflows, enterprise automation, project management, education & training, ai for teams, platform training, online learning, platform integration tools, ai and no-code education, platform connectors, business automation, ai skill building, no-code for operators, no-code automation, information technology & services, consulting, automation solutions, ex-operators, no-code platform training, team enablement, no-code automation bootcamp, services, automation training, workshops, custom workshops, workflow automation, automation consulting, operator-led automation, digital transformation, ai training, ai automation for teams, custom ai workshops, ai literacy, process automation, automation enablement, no-code development, lead generation, tutorials, ai and no-code tutorials, education, analytics, productivity, e-learning, internet, computer software, education management, marketing & advertising, sales","","Gmail, Google Apps, Microsoft Office 365, Amazon AWS, Webflow, Slack, Google Analytics, Ruby On Rails, Google Font API, reCAPTCHA, Wistia, Mobile Friendly, New Relic, Google Tag Manager, AI, IoT","","","","","","",69c283876ce8cd0001b05cbb,8748,61142,"9x is a Berlin-based company that specializes in training business teams to utilize AI, no-code, and low-code tools for automating and digitalizing operations. Founded over five years ago, 9x evolved from an automation agency into a provider of AI automation training and enablement, focusing on functions such as Operations, Revenue Operations, Finance, HR, Growth, and Marketing. The company aims to empower teams to achieve autonomy in process automation without needing coding expertise. + +9x offers a variety of services, including training courses, consulting, and implementation support. They provide free tutorials and asynchronous courses on AI automation, along with live sessions covering tools like ChatGPT and Airtable. Their consulting services guide businesses in digitalizing processes and selecting the right tools, while their implementation services include workflow automation and custom tool building. 9x operates in France, Germany, the United Kingdom, and the United States, and has successfully collaborated with various clients to enhance their operational efficiency.",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69ad6452c1310b00011d9231/picture,"","","","","","","","","" +TCI - Transformation Consulting International,TCI,Cold,"",110,management consulting,jan@pandaloop.de,http://www.tci-partners.com,http://www.linkedin.com/company/tci_5,"","","",Mannheim,Baden-Wuerttemberg,Germany,"","Mannheim, Baden-Wuerttemberg, Germany","safe, agile, sap s4 hana, interim management, business development, after sales crm, restrukturierung sanierung kmus, change management, organisationsentwicklung, sap consultancy, s4 hana, elearning, ict transformation, organisation fuehrung, digital transformation, project management, geschaeftsstrategien, nachhaltigkeit sustainabilitiy, change management transformation, business transformation, customer experience, finance, riskmanagement ma, projektmanagement, employee journey, leadership entwicklung organisation, sustainability, procurement scm, organisation leadership, erp transformation, einkauf scm, sales, hochleitstungsteams entwickeln, innovation growth, journey to cloud, innovation wachstum, digitale geschaeftsmodelle, transformationsdesign, chief people officer advisory, business consulting & services, resource-based innovation, digitalisierung, digital twins, management consulting, sanierungskonzepte, business innovation, consulting, s/4hana migration, open leadership framework, hybrid cloud strategien, strategieberatung, it strategy, sustainable business models, managementberatung, organizational development, leadership coaching, services, financial services, product lifecycle management, künstliche intelligenz, cyber security, ki-agenten in der produktentwicklung, enterprise transformation cycle, nachhaltigkeit, restrukturierung & sanierung, cloud computing, transformation, it-transformation, risk management, partner ecosystem, customer-centric approach, sanierung, m&a unterstützung, branchenübergreifend, strategy & transformation, product variants modeling, enterprise transformation, open leadership ansatz, smarte sanierung, variantenreiche produktabbildung, natural language processing, ai-agenten für produktentwicklung, kundenorientierung, expert networks, digitaler produktlebenszyklus, unternehmensentwicklung, management consulting services, digital infrastructure, digital ecosystems, business plattform, hr transformation, information technology and services, ai solutions, human-centric transformation, digital twin development, data analytics, innovative technologies, b2b, manufacturing, digitalstrategie, business model innovation, distribution, agile methoden, digital strategy, m&a advisory, technology integration, process automation, process optimization, führungskräfteentwicklung, project leadership, out of the blue innovation, innovationsmanagement, agile transformation, leadership development, sustainable growth, e-learning, internet, information technology & services, computer software, education, education management, productivity, environmental services, renewables & environment, professional training & coaching, computer & network security, enterprise software, enterprises, artificial intelligence, mechanical or industrial engineering, marketing, marketing & advertising",'+49 62 14960840,"Outlook, WordPress.org, Mobile Friendly, Google Tag Manager, Apache, Vimeo","","","","","","",69c283876ce8cd0001b05cbf,8742,54161,"TCI - Transformation Consulting International is a management consulting firm based in Mannheim, Germany. The company specializes in enterprise transformation and organizational development, operating with a network of over 200 independent partners who bring an average of 20 years of experience. TCI has successfully completed more than 3,500 projects, showcasing its extensive expertise in various sectors, including information technology, automotive, banking, and life sciences. + +The firm organizes its services into three main practice groups: Strategy & Orientation, Digitalization & Business Platform, and Management & Organization. TCI focuses on strategic initiatives, digital infrastructure development, and leadership enhancement to drive successful transformations. With a commitment to an implementation-oriented approach, TCI collaborates with clients to improve structures and processes, aiming for sustainable performance and success across economic, ecological, and social dimensions.",2006,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e7d55fc0d11500018ca89f/picture,"","","","","","","","","" +2b AHEAD ThinkTank,2b AHEAD ThinkTank,Cold,"",40,research,jan@pandaloop.de,http://www.2bahead.com,http://www.linkedin.com/company/2b-ahead-thinktank-gmbh,https://www.facebook.com/2bAheadThinkTank/,"",7 Spinnereistrasse,Leipzig,Saxony,Germany,04179,"7 Spinnereistrasse, Leipzig, Saxony, Germany, 04179","trend studies, strategic business development, innovation management, congresses, keynotes, consulting, incubators, research services, prognosen, corporate growth, future studies, scenario planning, wettbewerbsvorteil, professional, scientific, and technical services, sustainability, industry-specific future studies, event management, foresight programme, zukunftsstudien, startups, deep tech investments, sustainability strategies, scenario development tools, future workforce planning, future forecasting, scientific foresight, business consulting, risk management, future workshops, ki-strategie, deeptech-investments, innovationsmanagement, market analysis, branchenentwicklung, innovationsreisen, customer experience, product development, zukunftsszenarien, research and development in the physical, engineering, and life sciences, technology trend forecasting, mentoring programs, b2b, unternehmenswachstum, business strategy, trend analysis, customer engagement, leadership development, industry development, future ai programs, research and development in the social sciences and humanities, marktprognosen, sustainable growth strategies, zukunftsforschung, ai training, deeptech investment funds, technology forecasting, trend research, strategic foresight, research institute, wachstumsstrategie, market research, investment in innovation, digital transformation, zukunftstrends, ki-programme, services, management consulting, zukunftsplanung, corporate innovation strategies, foresight consulting, trendanalysen, future-oriented leadership programs, business intelligence, accelerators, venture capital, venture capital & private equity, environmental services, renewables & environment, events services, analytics, information technology & services",'+49 341 12479610,"Outlook, Google Cloud Hosting, Slack, Hubspot, Facebook Custom Audiences, Facebook Widget, Nginx, Google Tag Manager, Mobile Friendly, Facebook Login (Connect), YouTube, Linkedin Marketing Solutions, Varnish, Wix, AI, Remote, Google, Meta Ads Manager, Copilot","","","","","","",69c283876ce8cd0001b05cc0,8742,54172,"2b AHEAD ThinkTank is Europe's largest independent future research institute, based in Leipzig, Germany. Founded by Sven Gábor Jánszky in 2002, it specializes in scientific foresight and strategic consulting, focusing on predicting technological and business model disruptions. The institute is recognized for its innovative insights and has established itself as a leading organization in futurology. + +The ThinkTank conducts in-depth future studies, including reports on topics like Generative AI and its anticipated impact by 2035. It offers tailored management consulting to help businesses navigate future changes, with a history of accurate predictions in various sectors. Additionally, 2b AHEAD organizes annual summits, providing a platform for networking and sharing new research findings among industry practitioners. The institute also founded 2b AHEAD Ventures, an incubator dedicated to developing disruptive business models.",2008,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67155a9466cade00017c44c7/picture,"","","","","","","","","" +blue automation GmbH,blue automation,Cold,"",25,machinery,jan@pandaloop.de,http://www.blue-automation.de,http://www.linkedin.com/company/blue-automation-gmbh,https://www.facebook.com/p/blue-automation-GmbH-100042494835159/,"",14 Buchenweg,Rennerod,Rhineland-Palatinate,Germany,56477,"14 Buchenweg, Rennerod, Rhineland-Palatinate, Germany, 56477","anlageninbetriebnahme, retrofit, technologie, spssoftware engineering & solutions, inbetriebnahme von maschinensondermaschinen und anlagen, roboter engineering, visuelle mess und kamerasysteme, elektrokonstruktion, robot engineering, software, hardwarekonstruktion, hardwareplanung, softwareentwicklung, spssoftware, building technologies, fmi, prozessoptimierung, virtual commissioning, beratung, hardwaredesign, software engineering, weltweiter service vor ort, virtuelle inbetriebnahme, vision inspection system, konzeptionierung, schaltplaene erstellen, sps, digital twin, fmu, simulation, automation machinery manufacturing, industrie 4.0, smart engineering, fertigungstechnik, cyber-physical systems, automatisierungstechnik, blue edge one, digitale fabrik, plant simulation, systemintegration, inbetriebnahme, roboter steuerung, industrieautomation, kollaborative robotik, automatisierte steuerungssysteme, maschinenbau, siemens systemlösungen, automatisierte qualitätssicherung, siemens mechatronics concept designer, vision inspektionssysteme, anlagenbau, industrial machinery manufacturing, process optimization, projekt engineering, software development, b2b, sps software programmierung, prozesssimulation, roboterprogrammierung, industrial automation, mechatronics concept designer, cybersecurity, services, manufacturing, automatisierungslösungen, automatisierte codegenerierung, mechatronics design, engineering, system retrofit, robotics, automation, training, electrical engineering, fmi / fmu, sps-programmierung, system integration, automatisierungskonzepte, consulting, healthcare, virtuelle simulation, elektroplanung, kollisionsvermeidung, digitaler zwilling, schaltschrankplanung, offine programmierung, fmi / fmu simulation, information technology & services, mechanical or industrial engineering, health care, health, wellness & fitness, hospital & health care",'+49 2664 252420,"Outlook, Microsoft Office 365, Facebook Widget, TYPO3, Nginx, Mobile Friendly, Facebook Custom Audiences, Google Tag Manager, Facebook Login (Connect), Remote, Circle, IoT, Salesforce CRM Analytics","","","","","","",69c283876ce8cd0001b05cc2,3546,33324,"blue automation GmbH is a German engineering company located in Rennerod, specializing in innovative automation technology solutions for industrial applications. The company offers a wide range of services, including software development, robot engineering, and virtual commissioning, ensuring comprehensive support from concept development to maintenance. With a commitment to precision and cost-effectiveness, blue automation emphasizes strong customer support through personal contacts. + +The company provides tailored solutions across the automation lifecycle, including custom hardware design, PLC-based programming, robotics integration, and simulation for efficient plant setup. Their specialized software tools include the Mechatronics Concept Designer, Process Simulate, and Plant Simulation, among others. blue automation serves various industries, such as automotive, packaging, chemical, and pharmaceuticals, and operates internationally with locations in the USA and India.",2013,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/683ff0ff6506b00001c3a9f6/picture,"","","","","","","","","" +unilab,unilab,Cold,"",28,information technology & services,jan@pandaloop.de,http://www.unilab.de,http://www.linkedin.com/company/unilab-gruppe,"","",14 Technologiepark,Paderborn,North Rhine-Westphalia,Germany,33100,"14 Technologiepark, Paderborn, North Rhine-Westphalia, Germany, 33100","itdienstleistungen, it automation, kommunikationsberatung, ki, cloudloesungen, digitale prozesse, digitalisierung, modern workplace, transformationsberatung, darktrace, digital solution partnernet, itinfrastruktur, itpartnernetz, zukunftsmanagement, docusign, itsicherheit, software, consulting, rechenzentrumsleistungen, human design, digital scouts, it services & it consulting, cybersecurity with ki, datacenter windrad, cloud backup, ai security in wind energy, it security audit, future of work, it security, customer engagement, data center, security solutions, management consulting, software engineering, it consulting, digitalization, energy-efficient cloud, cloud computing, services, coaching, energy-efficient data centers, wind energy data center, cloud management, it compliance, it modernization, cloud migration, future workplace, cloud strategy, sustainable it solutions, sustainable datacenter in wind turbine, it infrastructure optimization, it risk management, digital scouting, green cloud solutions, process automation, ki solutions, wind-powered datacenter, it infrastructure, cloud security, process optimization, big data, digital training, human-centered digital transformation, it resilience, regulatory ki training, managed services, technology consulting, ki training, computer software, digital processes, data analytics, sustainability, information technology and services, software development, cloud infrastructure, training, data protection, cybersecurity, computer systems design and related services, digital workplace, b2b, cloud architecture, digital transformation, leadership development, private ai solutions, computer software and services, innovation, data center services, finance, education, information technology & services, computer & network security, internet service providers, enterprise software, enterprises, environmental services, renewables & environment, internet infrastructure, internet, financial services",'+49 525 116560,"Outlook, Nginx, Mobile Friendly, Remote","","","","","","",69c283876ce8cd0001b05cbe,7375,54151,"unilab Systemhaus GmbH is an IT services company located in Paderborn, Germany, with over 30 years of experience in developing innovative solutions. The company focuses on IT infrastructure, IT security, digitalization, and AI-driven technologies. unilab is dedicated to driving digital transformation through human-centered technology that enhances business processes and promotes sustainable growth. + +The company offers a range of customized IT solutions, including tailored IT infrastructure and security concepts, which feature cloud architectures and AI-supported cybersecurity. They also specialize in digital processes and modern workplace solutions, utilizing generative AI and automation to improve efficiency and compliance. Additionally, unilab provides support for integrating DocuSign, enabling secure, paperless signing of contracts and agreements within existing workflows. Their services aim to address digitalization challenges and facilitate the transition to efficient, AI-enhanced operations.",1988,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66de018672fd3700012c0877/picture,"","","","","","","","","" +CTcon Management Consultants,CTcon Management Consultants,Cold,"",61,management consulting,jan@pandaloop.de,http://www.ctcon.de,http://www.linkedin.com/company/ctcon-gmbh,"","",5 Burggrafenstrasse,Duesseldorf,North Rhine-Westphalia,Germany,40545,"5 Burggrafenstrasse, Duesseldorf, North Rhine-Westphalia, Germany, 40545","digitalisierung, after sales, controlling, beste berater 2020, managementberatung, big data, human resources, data analytics big data, coaching, hr, organisation, controlling finance, managementtraining, agilitaet, data analytics, crm, finance, unternehmenssteuerung, managementpodcast, finance risiko management compliance, strategieentwicklung, marketing marke pricing, beste berater 2019, risikomanagement, restrukturierung, change management, vertrieb after sales crm, controlling amp finance, operations management, vertrieb, digitalisierung digital transformation, business consulting & services, data quality & governance, data strategy & governance, digital transformation in energy, market research, sap controlling, data infrastructure, leadership development, b2b, sap s/4hana, unternehmensberatung, data science in management, consulting, supply chain management, data-driven innovation, services, data-driven decision making, customer-centricity, digital twin, ml ops, data-driven management, management development, data governance, organizational change, data culture, blended learning, operational performance management, business intelligence, management consulting, data strategy, organisationsentwicklung, ai, predictive analytics, financial consulting, process optimization, talent development, sustainable business, data integration, supply chain excellence, netzwerk, data-driven leadership, whitepapers, data & analytics, information technology and services, management-podcast, data-driven hr, führungskräfteentwicklung, supply chain transformation, ai in finance, digitale transformation, education, financial services, risk management, management consulting services, data modeling, künstliche intelligenz, whitepaper, data science, change & training, digital transformation, unternehmensentwicklung, data culture building, performance management, industrial automation, predictive forecasting, s/4hana optimization, esg reporting, e-learning, fachtrainings, data-driven controlling, machine learning, data security, executive coaching, business transformation, talent management, innovation, forschung & wissenschaft, enterprise software, enterprises, computer software, information technology & services, sales, logistics & supply chain, analytics, mechanical or industrial engineering, internet, education management, artificial intelligence, computer & network security, professional training & coaching",'+49 211 5779030,"Apache, Google Maps (Non Paid Users), Google Font API, Mobile Friendly, YouTube, Google Maps","","","","","","",69c283866ce8cd0001b05cae,8742,54161,"CTcon Management Consultants (CTcon GmbH) is a prominent German management consultancy firm founded in 1992. Headquartered in Düsseldorf, with additional offices in Bonn, Frankfurt, Munich, and Vallendar, the company employs around 62 people and generates approximately $25.9 million in revenue. CTcon serves a diverse range of clients, including many from the DAX 40 and EURO STOXX 50, as well as leading medium-sized enterprises and public-sector institutions. + +The firm specializes in corporate management, controlling, and governance, offering comprehensive consultancy services that include management consulting, finance and controlling, and management training. CTcon's proprietary management framework is tailored to client needs, integrating insights from processes and behavioral studies. The company emphasizes collaboration with clients and maintains strong academic ties, particularly with WHU – Otto Beisheim School of Management, to ensure a blend of research and practical application in its services.",1992,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66ff854e5c13ca0001dca465/picture,"","","","","","","","","" +PiraCon GmbH,PiraCon,Cold,"",26,information technology & services,jan@pandaloop.de,http://www.piracon.net,http://www.linkedin.com/company/piracon-gmbh,"","",19 Rudolf-Diesel-Strasse,Murr,Baden-Wuerttemberg,Germany,71711,"19 Rudolf-Diesel-Strasse, Murr, Baden-Wuerttemberg, Germany, 71711","itservices, itprojekt und prozessmanagement, itinfrastruktur, itsicherheit, it services & it consulting, information technology & services",'+49 7144 501300,"Outlook, Microsoft Office 365, Woo Commerce, WordPress.org, Mobile Friendly, reCAPTCHA, Apache, Remote, AI","","","","","","",69c283876ce8cd0001b05cb1,"","","Wir, die PiraCon GmbH, sind ein junges IT-Dienstleistungsunternehmen, welches von den Gründern mit dem Ziel und dem Selbstverständnis ins Leben gerufen wurde, sich als unabhängiger Business Partner, ohne Hersteller- und Produktbindung, seiner Kunden zu etablieren. Hierbei konzentrieren wir uns auf die Schaffung von Mehrwert für unsere Kunden und die Erhöhung der Wertschöpfung. Wir sehen uns als Beratungsunternehmen der nächsten Generation, das IT nicht nur als Kostenfaktor, sondern als einen wichtigen Wertschöpfungs- und Produktionsfaktor begreift. Im Rahmen unserer Dienstleistungen legen wir daher unser Augenmerk nicht ausschließlich auf technologische Kriterien und Aspekte, sondern berücksichtigen auch die Auswirkungen auf Geschäftsprozesse und Wirtschaftlichkeit. Als Teil der AROD-Gruppe bieten wir unseren Kunden auch Unterstützung bei der strategischen Unternehmensplanung sowie der Optimierung von Geschäftsprozessen durch die AROD Consulting an.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e54bb6a6b5db00013049fb/picture,"","","","","","","","","" +setis GmbH,setis,Cold,"",28,information technology & services,jan@pandaloop.de,http://www.setis.com,http://www.linkedin.com/company/setis-gmbh,"","","",Darmstadt,Hesse,Germany,"","Darmstadt, Hesse, Germany","itautomation, broadcom automic automation, business process automation, workflow design, it automation, automation health checks, devops automation, automation, cloud migration, management consulting, automation best practices, information technology and services, automic scripts, b2b, software development, continuous delivery automation, automic web interface, automation architecture, rise with sap automation, automation consulting, computer software, custom automation solutions, automation in financial services, project management, computer systems design and related services, system monitoring, automation training, performance optimization, automation strategy, managed services, process optimization, consulting, continuous delivery, sap automation, system integration, automic automation, kafka and automic integration, automation for sap processes, troubleshooting automation, kafka integration, business consulting, offshore automation support, workflow automation, it-automation, automic continuous delivery, it infrastructure, services, finance, education, information technology & services, productivity, financial services",'+49 61 518289800,"Outlook, Eloqua, Slack, WordPress.org, Mobile Friendly, Apache, Bootstrap Framework, Android, Remote, Automic Automation, SQL, SAP","","","","","","",69c283876ce8cd0001b05cb2,7375,54151,"Automation Experts - Erfolgreiche Services für Ihre Automation. + +Business Process Automation ist der Schlüssel zur erfolgreichen Digitalisierung Ihres Unternehmens. + +Unsere auf Automic Automation®-Lösungen spezialisierten Berater helfen Ihnen gerne dabei, Ihre Geschäftsprozesse und Abläufe zuverlässig und nachvollziehbar auf Grundlage von Best Practices abzubilden. Transparent und über Systemgrenzen hinweg. Unabhängig davon, ob Sie bei Null starten oder auf vorhandene Implementierungen aufsetzen. Und wenn Sie möchten, übernehmen wir auch den Betrieb für Sie. + +Kunden in Deutschland, Österreich und in der Schweiz vertrauen auf unsere kompetente und umfassende Unterstützung. Wir sind immer für Sie da. Mit Flexibilität und Individualität halten wir Ihnen den Rücken frei.",1997,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/672ff6cc5a84f000012aaf35/picture,"","","","","","","","","" +Sprint Reply DE,Sprint Reply DE,Cold,"",21,information technology & services,jan@pandaloop.de,"",http://www.linkedin.com/company/sprint-reply-de,http://facebook.com/sprint,http://twitter.com/sprint,22 Riesstrasse,Munich,Bavaria,Germany,80992,"22 Riesstrasse, Munich, Bavaria, Germany, 80992","process mining amp reengineering, customer journey amp lifecycle management, ideation design thinking, digital evolution roadmap, datadriven ai business model, digital trend trigger analysis, customer journey lifecycle management, transformation change program, robotic process automation, digital trend amp trigger analysis, digital strategy capability audit, innovation capabilities, process mining reengineering, digital gotomarket, process intelligence, digital portfolio management, digital transformation, technology reviews cloud design, datadriven amp ai business model, digital strategy amp capability audit, transformation amp change program, it services & it consulting, information technology & services","","Akamai, Akamai DNS, Outlook, Akamai RUM, Google Play, MotionPoint, Google Font API, RightNow, Adobe Media Optimizer, Mobile Friendly, Omniture (Adobe), YouTube, AddThis, Google Maps, TurnTo, iTunes, Google Analytics, Reviews, Remote","","","","","","",69c283876ce8cd0001b05cb7,"","","Sprint Reply GmbH is a specialized company within the Reply Group, focusing on Intelligent Process Automation (IPA), HyperAutomation, and digital transformation services. Based in Germany, Sprint Reply employs 20-49 people and generates revenue between 1M-5M in the business services industry. The company aims to optimize business processes and enhance customer experiences by creating AI-powered digital workforces. + +Sprint Reply offers a range of services, including Business Process Management (BPM) and Intelligent Process Automation. Their solutions encompass process transformation, no-code/low-code automation platforms, and AI-driven tools for various industries such as retail, aviation, and pharmaceuticals. They also provide chatbot and live chat solutions that integrate with existing systems to improve efficiency and customer experience. The company emphasizes a balanced approach to governance, people, and technology, promoting a philosophy of maximizing human potential through automation.",2014,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6754412b2818db0001d55873/picture,T-Mobile (t-mobile.com),5d09381da3ae61b7f7b73360,"","","","","","","" +Market Logic Software,Market Logic,Cold,"",190,information technology & services,jan@pandaloop.de,http://www.marketlogicsoftware.com,http://www.linkedin.com/company/market-logic-software,https://facebook.com/marketlogicsoftware/,https://twitter.com/market_logic,28 Franklinstrasse,Berlin,Berlin,Germany,10587,"28 Franklinstrasse, Berlin, Berlin, Germany, 10587","manage research, insights marketing, share knowledge, insights roi, market insights platform, market research, knowledge management, marketing insights platform, search information, market & competitive intelligence, data driven decisions, agency collaboration, insights management, personalize reporting, insightsdriven marketing, enterprise software, software, marketing, sales, information technology, software development, market insights saas, insights deployment automation, enterprise data platform, market trend detection, services, business intelligence, competitive analysis tools, insights reporting, market trend analysis, unified data sources, insights sharing, competitive analysis, data analytics, market signals, insights api, innovation acceleration, structured and unstructured data integration, enterprise insights, b2b, insights data integration, market intelligence platform, industry-specific ai, scalability, ai models, industry-specific ai models, cloud-based insights, market monitoring tools, healthcare, consumer goods, insights ecosystem management, ai-driven market analysis, automation, ai-driven insights reporting, insights deployment, ai insights platform, insights analytics, market monitoring, insights solutions, market intelligence saas, insights sharing platform, enterprise insights platform, structured data analysis, insights management platform, structured and unstructured data analysis, competitive intelligence tools, business insights automation, insights data visualization, ai-driven analytics, insights collaboration tools, market research tools, automated research synthesis, competitive intelligence, insights workspace, insights data sourcing, data governance, insights dashboard, business decision support, competitive intelligence ai, insights reporting automation, insights collaboration platform, market signals analysis, management consulting services, automotive, knowledge management system, data sourcing, insights tools, real-time insights, real-time market insights, ai insights assistant, insights automation, market intelligence api, cloud infrastructure, ai-driven insights, data integration api, cloud hosting, business analytics, finance, insights ecosystem, competitive tracking, ai models for industry-specific insights, data-driven decisions, data integration, market intelligence tools, insights collaboration, enterprise saas platform, market and consumer data analysis, telecom, knowledge discovery ai, enterprise insights automation, market insights, ai insights for innovation, market and consumer data, insights management tools, healthcare & pharmaceuticals, enterprise saas, market signals detection, ai models for insights, retail, insights automation tools, market monitoring solutions, ai-powered market intelligence, innovation, insights management system, competitive tracking ai, business decision tools, data sources integration, market research automation, market intelligence automation, insights ecosystem integration, market intelligence saas tools, ai-powered insights platform, market signals monitoring, insights platform, financial services, ai-powered insights, market trend analysis tools, data visualization, market intelligence, deepsights platform, business insights, consumer behavior analysis, insights development, self-service portal, c-level insights, report generation, strategic decision-making, insights lifecycle management, integrated knowledge system, insights engagement platform, customizable dashboards, api integration, seamless access to knowledge, trusted sources, insights pipeline, intuitive ai, business analytics tools, knowledge capture, actionable insights, research compliance, collaborative insights, industry insights, stakeholder engagement, ai assistance, market trends analysis, decision support system, competitor insights, user-friendly interface, insights-driven strategy, automated workflows, research vendor management, real-time data access, insights from multiple sources, business process integration, consumer_products_retail, enterprises, computer software, information technology & services, analytics, health care, health, wellness & fitness, hospital & health care, consumers, internet infrastructure, internet, cloud computing",'+49 30 3988150,"Amazon SES, MailJet, Gmail, Outlook, Google Apps, Google Cloud Hosting, WP Engine, Atlassian Cloud, Slack, Zendesk, DoubleClick, WordPress.org, DemandBase, Nginx, Wistia, Mobile Friendly, Google Tag Manager, Hubspot, Personio, ADP, Jira, AWS SDK for JavaScript, Spring Boot, Google Cloud, Autopilot, Apple Business Manager, Microsoft Intune Enterprise Application Management, Microsoft 365, Microsoft Exchange Server 2003, SharePoint, Microsoft Teams, WebOffice",51190000,Venture (Round not Specified),0,2021-01-01,8750000,"",69c283876ce8cd0001b05cba,7375,54161,"Market Logic Software is a Berlin-based enterprise SaaS provider founded in 2006, specializing in AI-powered market insights management solutions. The company focuses on transforming market and consumer data into actionable business intelligence for global brands across various industries. + +Their primary offering is an end-to-end market insights platform that integrates data and tools to support strategic innovation, marketing, and sales decisions. Key components of the platform include the Insights Engine, which utilizes existing data sources, the DeepSights™ WorkSpace for insights and analytics experts, and the DeepSights™ AI Assistant, an award-winning tool that provides decision-makers with insight-rich answers around the clock. Market Logic's solutions are designed to deliver trusted insights at scale. + +With over 600 clients, Market Logic serves sectors such as consumer packaged goods, healthcare, retail, automotive, finance, and telecom. The company has received recognition for its technical leadership, including awards for its innovative AI solutions.",2006,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69b3c80a33c0470001d35150/picture,"","","","","","","","","" +SCAILEX GmbH | SCALING LAW FIRMS,SCAILEX,Cold,"",37,information technology & services,jan@pandaloop.de,http://www.scailex.group,http://www.linkedin.com/company/scailex,"","",29 Friedenheimer Bruecke,Munich,Bavaria,Germany,80639,"29 Friedenheimer Bruecke, Munich, Bavaria, Germany, 80639","lebensversicherung, legaltech, dieselskandal, legal tech, it services & it consulting, financial process automation, insurance claim automation, data validation, customer engagement, industry-specific solutions, ai automation, digital customer communication, digital workflows, b2b, legal process automation, information technology and services, multi-channel communication, legal services, automated billing, digital communication, claim processing, digital case management, cloud platform, invoice automation, financial management, government, automated invoicing, text interpretation, end-to-end claim management, digital transformation, data extraction, document recognition, claim sourcing and qualification, services, business intelligence, intelligent interfaces, process digitization, information technology & services, workflow automation, automated workflows, case management, ai text generation, claim handling, dispute value forecasting, automated case closure, customer interaction automation, scalable services, scalable cloud services, cost reduction, cloud-based process management, banking process automation, natural language processing, machine learning, risk management, government document processing, ai-driven process automation, mass claim processing, computer systems design and related services, financial services, automated legal workflows, finance, legal, analytics, artificial intelligence","","Outlook, Microsoft Office 365, Atlassian Cloud, AI",3300000,Debt Financing,3300000,2022-02-01,"","",69c283866ce8cd0001b05cab,7375,54151,"We are rethinking legal processes to create a completely new eco-system in the legal world. As one of the leading legal tech providers in Europe, we offer a unique cloud-based claim management system that has fundamentally changed the work environment for lawyers and legal departments through intelligent interfaces, automated workflows, text recognition and text interpretation. + + +Our goal is to automate the handling of legal processes to the maximum, so that law firms and legal departments can significantly increase their current caseload within a short time. This requires an intelligent and flexible legal tech platform that, thanks to the latest cognitive technology, reduces the activities in a law firm or legal department by at least 90 percent. Through process automation, the error rate is reduced while the quality of pleadings and lawsuits increases. In this way, legal service providers can scale up their clients and thus their business volume many times over. + + + +One team. One goal. +Working with us means thinking in a new way, living our innovative strength and making a big difference. Every colleague contributes decisively to our success with his or her high level of personal responsibility. At the same time, we are in a continuous learning process that leads to ever new productive solutions through constructive and positive cooperation. For this, we are looking for die-hard team players who are ready to take on the biggest challenge in the tech industry. + +- Flexible working hours +- Individual training +- Unique team spirit +- Innovative, courageous, different +- Always responsive +- We love ideas +- Shop offer for employees +- Fitness from Jobrad +- Steep learning curve +- Team events + + +Work with us! +https://www.scailex.group/en/career/",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6715c9d324afa10001b55ac0/picture,"","","","","","","","","" +Holisticon AG,Holisticon AG,Cold,"",60,information services,jan@pandaloop.de,http://www.holisticon.de,http://www.linkedin.com/company/holisticon-ag,https://facebook.com/Holisticon,https://twitter.com/holisticon,43 Juergen-Toepfer-Strasse,Hamburg,Hamburg,Germany,22763,"43 Juergen-Toepfer-Strasse, Hamburg, Hamburg, Germany, 22763","bpmsoa agile java software architecture, agile, camunda, bpmautomatisierung, uxui, digital products, java, itsicherheit, smart data, software architecture, ai, bpmsoa, digitale produkte",'+49 40 60944300,"Outlook, Microsoft Office 365, Google Cloud Hosting, Jira, Atlassian Confluence, Microsoft Azure, Amazon SES","","","","",4300000,"",69c283866ce8cd0001b05caf,"","","Holisticon AG is a technology consultancy based in Germany, founded in 2007. With headquarters in Hamburg and additional offices in Hannover and Kiel, the company employs over 100 IT specialists. Holisticon focuses on digitalization, software development, and IT management, integrating strategy, organization, and technology to address complex challenges for international clients. The company generates approximately $6 million in revenue and is recognized for its sustainable growth and strong partnerships. + +Holisticon offers a range of services, including consulting, project management, implementation, maintenance, training, and sales. Its holistic consulting approach emphasizes strategy development for digital markets, custom software creation optimized for scalability and security, and enhancing organizational agility through agile methodologies. The firm is committed to driving digitization, automating processes, and achieving operational excellence across various industries. Recently, Holisticon became a standalone entity under the Nexer Group, further expanding its expertise in digital transformation in Germany and Central Europe.",2007,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6909a6744687a30001c4373d/picture,"","","","","","","","","" +LUY,LUY,Cold,"",38,information technology & services,jan@pandaloop.de,http://www.luy.eu,http://www.linkedin.com/company/luy,"","",114 Sankt-Martin-Strasse,Munich,Bavaria,Germany,81669,"114 Sankt-Martin-Strasse, Munich, Bavaria, Germany, 81669","software development, prozessoptimierung, change management, enterprise architecture, reifegradmodelle, visual analytics, it-transformation, datenvisualisierung, cloud solutions, kmu-unterstützung, digitale fitness & transformation, visualisierung, b2b, it-migration & standardisierung, consulting, manufacturing, analytics, datenmanagement, management consulting services, digitalisierung, risikoanalyse, business intelligence, kollaboratives arbeiten, distribution, automation, teamorientierte architektur, entscheidungsunterstützung, collaboration plattform, kollaboration, risk management, automatisierte reports, nutzerfreundliche oberfläche, branchenunabhängig, unternehmensplanung, live-datenaktualisierung, services, it-standardisierung, system integration, it-architektur, unternehmensanalyse, datenintegration, transparenz, digital transformation, business navigation, business navigation tool, schnittstellenmanagement, open-source-ansatz, unternehmensstrategie, construction & real estate, szenarienplanung, schnelle ergebnisgenerierung, api-integration, project management, unternehmensentwicklung & planung, enterprise architecture management, construction, information technology & services, cloud computing, enterprise software, enterprises, computer software, mechanical or industrial engineering, productivity",'+49 89 6145510,"Salesforce, Gmail, Outlook, Google Apps, Microsoft Office 365, Google Cloud Hosting, Jira, Atlassian Confluence, Atlassian Cloud, Bootstrap Framework, Nginx, Google Tag Manager, Mobile Friendly, AI, Remote, Node.js, Linkedin Marketing Solutions","","","","","","",69c283876ce8cd0001b05cb8,7375,54161,"LUY is a premier B2B SaaS provider specializing in Enterprise Architecture Management (EAM). + +We empower organizations to streamline their architecture processes, enhance decision-making, and drive digital transformation. Our innovative solutions are trusted by over 120 enterprises worldwide. + +Founded in 2023, our Business Navigation Suite equips decision-makers and project participants with the tools they need to navigate today's complex business and IT landscape. As interrelationships and dependencies between business and IT become increasingly intricate and constantly evolving, relying on partial information from tools like Excel, Visio, or PowerPoint is no longer sufficient.",2023,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69adae8364723f000175835c/picture,iteratec (iteratec.com),556d2d5b73696412614eae00,"","","","","","","" +Silbury Deutschland GmbH,Silbury Deutschland,Cold,"",37,information technology & services,jan@pandaloop.de,http://www.silbury.com,http://www.linkedin.com/company/silbury-it-solutions-deutschland-gmbh,https://www.facebook.com/silbury,https://twitter.com/silbury_it,20 Fichtenstrasse,Fuerth,Bavaria,Germany,90763,"20 Fichtenstrasse, Fuerth, Bavaria, Germany, 90763","oracle e20, oracle webcenter portal, oracle irm, oracle webcenter spaces, oracle site studio, oracle ucm, oracle webcenter, oracle webcenter sites, oracle urm, oracle fusion middleware, oracle webcenter content, oracle ecm, oracle ipm, it services & it consulting, agile teams, sustainability consulting, custom software solutions, ai-powered data analysis, low-code applications, cloud solutions, consulting, services, rpa, digital sustainability frameworks, other scientific and technical consulting services, business intelligence, ai-driven automation, technology consulting, government, digital experience platforms, environmental data management, artificial intelligence, sustainability strategies, content management systems, digital reporting automation, sustainability frameworks, automated reporting, enterprise software, b2b, ai for sustainability, data integration, machine learning, software development, sustainable business consulting, ai solutions, digital innovation, it consulting, digital solutions, content management, csrd reporting, ai transformation, environmental consulting, automated csrd report generation, digitalization, agile methods, process optimization, software engineering, management consulting, process automation, ai-automated compliance, sustainability, custom software, sustainable enterprise management software, modern tech-stack, automation, custom software development, custom digital solutions for sustainability, digital transformation, professional services, enterprise websites, data management, enterprise sustainability management, sustainable business models, non-profit, information technology & services, cloud computing, enterprises, computer software, analytics, environmental services, renewables & environment, professional training & coaching, nonprofit organization management",'+49 911 215430,"Outlook, Microsoft Office 365, Vercel, Hubspot, Slack, Mobile Friendly, Docker, Zscaler, AI, AWS SDK for JavaScript, Javascript, Spring Boot, Angular, go+, Node.js, React, Next.js, Kubernetes, Salesforce Service Cloud, Microsoft Excel","","","","","","",69c283876ce8cd0001b05cbc,7375,54169,"Silbury Deutschland GmbH is an IT consulting and software development company based in Fürth, Bavaria, Germany. Founded in 2007, the company employs around 50 people and generates annual revenue of $13.5 million. Led by Markus Neubauer and Kolja Eigl, Silbury focuses on integrating artificial intelligence, sustainability, and digitalization to provide effective business solutions. + +The company offers a range of services, including AI consulting and implementation, digitalization and development, organizational transformation, and sustainability compliance support. Silbury also provides agile coaching and process optimization to enhance efficiency and sustainability in business operations. One of its key products is Mia Sustain, an AI-powered SaaS platform that assists organizations in managing sustainability reporting requirements under the CSRD and VSME standards. Silbury primarily serves large companies in the DACH region, Asia, the Middle East, and Africa, particularly in the information technology and data processing sectors.",2007,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/690cfc5ce9f6c80001bee432/picture,"","","","","","","","","" +hema.to GmbH,hema.to,Cold,"",18,information technology & services,jan@pandaloop.de,http://www.hema.to,http://www.linkedin.com/company/hemato,"","","",Munich,Bavaria,Germany,"","Munich, Bavaria, Germany","software development, deep learning, diagnostic decision support, gdpr compliance, biotechnology, medical devices, reproducibility, performance studies, cell classification, large database of fcs files, automated report generation, multi-site concordance studies, services, ai-driven population classification, clinical validation, ai model calibration, automated gating, large-scale cytometry data, remote collaboration, secure data handling, ai cytometry, fast analysis, risk management, expert-level ai models, cloud security, report export, research and development in the physical, engineering, and life sciences, panel-independent workflows, automated pipelines, ce-ivd marking, regulatory compliance, cytometry workflow, clinical decision support, transformer models for cytometry, machine learning, data anonymization, healthcare, workflow automation, b2b, healthcare technology, diagnostic support, cloud-based analysis, information technology & services, artificial intelligence, hospital & health care, health care, health, wellness & fitness","","Postmark, Gmail, Google Apps, Amazon AWS, Webflow, Zendesk, reCAPTCHA, Vimeo, Mobile Friendly, Google Tag Manager, Xamarin, Node.js, Android, React Native, Remote, Circle, Micro, AI, Render",7920000,Seed,3960000,2025-02-01,"","",69c283046ce8cd0001b0348b,3824,54171,"hema.to GmbH is a Munich-based deeptech AI startup founded in 2021. The company specializes in developing fully automated, AI-powered software for clinical decision support in blood cancer diagnostics, utilizing flow cytometry data. Its mission is to make clinical cytometry analysis objective, automated, and personalized, allowing doctors to tailor treatments to individual patients' immune systems. + +The company offers cloud-based, AI-driven cytometry solutions that enhance reproducibility, security, speed, and flexibility. Key products include the hema.to Workflow Studio, which aids in population classification and workflow management, and the hema.to B-NHL module, designed for diagnostic support in B-cell non-Hodgkin lymphoma patients. These tools help hematology labs increase efficiency and maintain high-quality standards by automating analysis and reducing operator variability. hema.to is CE-IVD certified and holds FDA registration, reflecting its commitment to regulatory compliance and quality in healthcare diagnostics.",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/687cf305b19b9a000122c213/picture,"","","","","","","","","" +eschbach,eschbach,Cold,"",120,information technology & services,jan@pandaloop.de,http://www.eschbach.com,http://www.linkedin.com/company/eschbachit-gmbh,https://facebook.com/eschbachit,"",97 Schaffhauser Strasse,Bad Saeckingen,Baden-Wuerttemberg,Germany,79713,"97 Schaffhauser Strasse, Bad Saeckingen, Baden-Wuerttemberg, Germany, 79713","shiftconnector interactive shift log, operational logging software, clean room, mobile operations, blockchain, paas, ioequipment, pharmaceutical manufacturing, oee, saas, chemical manufacturing, enterprise platform, shift communication, ioperformance oee, lean six sigma, intranet extranet, shift documentation, software web development, software amp web development, websites cms, mobile apps, software web development shiftconnector interactive shift log, software development, manufacturing, smart factory, kpis visualization, performance management, collaboration software, plant performance dashboards, digital transformation, industry-specific solutions, system integration, plant safety logs, cloud-based software, automated task management, digital shift handover, manufacturing efficiency, regulatory compliance, ai decision support, incident tracking, healthcare, data integration, shiftconnector, artificial intelligence, chemicals, gxp equipment log, services, integrated plant systems, digital operations platform, b2b, pharmaceuticals, computer systems design and related services, digital collaboration, ai root cause analysis, real-time data, safety compliance, performance monitoring, ai in pharma, ai-powered insights, operational efficiency, continuous improvement, process industry, shift handover, structured communication, plant process management, distribution, cloud computing, enterprise software, enterprises, computer software, information technology & services, medical, mechanical or industrial engineering, health care, health, wellness & fitness, hospital & health care",'+49 776 1559590,"Sendgrid, Outlook, Zendesk, Amazon AWS, Microsoft Office 365, Hubspot, Slack, Bing Ads, Shutterstock, Linkedin Marketing Solutions, Apache, DoubleClick Conversion, Mobile Friendly, Google Tag Manager, Google Analytics, DoubleClick, Google Dynamic Remarketing, AI, IoT, Remote, Tor","","","","",10600000,"",69c283046ce8cd0001b03485,3575,54151,"eschbach is a software development company based in Bad Säckingen, Germany, with a North American office in Boston, Massachusetts. Founded in 2005, the company specializes in plant process management solutions tailored for the chemical, pharmaceutical, and manufacturing sectors. With a team of approximately 70-113 employees, eschbach generates around $5 million in annual revenue and operates in 21 countries, offering its services in eight languages. + +The company's flagship product, Shiftconnector®, is a no-code, cloud-native SaaS platform designed for digital daily management and smart collaboration in manufacturing. It centralizes operational data from various sources, enabling real-time decision-making and performance tracking. Key features include Tier Collaboration Dashboards, AI-driven tools like SAMI (Artificial Manufacturing Intelligence), and strong integrations with systems such as SAP and AVEVA PI. eschbach has received multiple awards for its innovative solutions and holds certifications in quality management and information security, emphasizing its commitment to operational clarity and efficiency in 24/7 plant environments.",2005,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69a930619df4e5000116f280/picture,"","","","","","","","","" +atacama | Software GmbH,atacama,Cold,"",15,information technology & services,jan@pandaloop.de,http://www.atacama.de,http://www.linkedin.com/company/atacama-software-gmbh,"","",Hildegard-von-Bingen-Strasse,Bremen,Bremen,Germany,28359,"Hildegard-von-Bingen-Strasse, Bremen, Bremen, Germany, 28359","software development, healthcare interoperability, artificial intelligence, project management, care management software, healthcare digitalization, pflege- und krankenkassensoftware, healthcare system integration, healthcare software development, healthcare compliance, medical informatics, hospital it, healthcare digital transformation, services, digitales fallmanagement, digital health solutions, semantic tools, ki-basierte assistenzsysteme, healthcare system support, ki-basierte dokumentenerkennung, gesundheitsdatenanalyse, health it solutions, hospital information systems, consulting, cloud solutions, patient data management, process optimization, patient care, healthcare analytics, healthcare data analysis, data security, healthtech, healthcare consulting, ki-gestützte pflegeplanung, patient documentation, health it, digitale gesundheitsversorgung, healthcare efficiency tools, healthcare software, healthcare process optimization, government, medical software, healthcare transparency, automatisierte fallprüfung, digitale pflegedokumentation, ai in healthcare, interoperable gesundheitsdaten, data management, healthcare it consulting, healthcare data security, computer systems design and related services, workflow automation, b2b, healthcare project management, semantische analysewerkzeuge, digital health, digital transformation, standardsoftware health sector, healthcare, information technology & services, productivity, cloud computing, enterprise software, enterprises, computer software, computer & network security, health, wellness & fitness, health care, hospital & health care","","Microsoft Office 365, Apache, Mobile Friendly, Remote","","","","","","",69c283046ce8cd0001b0348e,7375,54151,"Die atacama Firmengruppe entwickelt unter dem Motto ""Für Transparenz im Gesundheitswesen"" branchenspezifische Standardsoftware-Lösungen für das Gesundheitswesen und unterstützt Berater und Softwarehersteller mit semantischen Tools und intelligenten Analyse-Werkzeugen.",1998,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67054bbb3e496b00010371b0/picture,"","","","","","","","","" +Kontext-e,Kontext-e,Cold,"",46,information technology & services,jan@pandaloop.de,http://www.kontext-e.com,http://www.linkedin.com/company/kontextegmbh,https://www.facebook.com/KontextEGmbH,"","",Dresden,Saxony,Germany,"","Dresden, Saxony, Germany","softwarearchitektur, automotive, softwareentwicklung, itconsulting, itberatung, uiux, reporting, dashboarding, production, business intelligence, erpconsulting, qad, financials, appentwicklung, itsicherheit, it services & it consulting, qad cloud erp, cloud computing, transportation & logistics, industrie 4.0 lösungen, web applications, manufacturing, maßgeschneiderte software, b2b, digitalisierung, branchenlösungen, computer systems design and related services, scalability, api design, software development, devops, business process optimization, embedded software für industrie, automatisierte testprozesse, international projektmanagement, microservices architektur, agile software development, custom software development, mobile app development, digitale transformation, consulting, api integration, technologies: .net, java, c++, python, aws, azure, data security, test automation, it consulting, technologieberatung, performance optimization, it-beratung, industrial automation, desktop applications, erp implementation, qad erp anpassung, cloud erp, individuelle softwarelösungen, cloud native development, branchenfokus, services, transportation_&_logistics, analytics, information technology & services, enterprise software, enterprises, computer software, mechanical or industrial engineering, computer & network security, management consulting",'+49 35 18889990,"Outlook, Microsoft Office 365, Microsoft Azure Hosting, Leadfeeder, Slack, YouTube, Google Play, Apache, Mobile Friendly, Google Tag Manager, Bootstrap Framework, WordPress.org, reCAPTCHA, Node.js, Xamarin, Remote, AI, AWS SDK for JavaScript, Java EE, Spring","","","","","","",69c283046ce8cd0001b03497,7375,54151,"We are an owner-managed IT company with headquarters in the center of Dresden. Since it was founded in 1999 as a spin-off from the Technical University of Dresden (TUD), we have stood for experienced conception and sophisticated implementation of individual software. Our core competencies include the areas of software development, consulting & service and ERP implementation. This is supplemented by our own Bluetype products, a web-based top web publishing software and the revenue management system (EMS) for collecting revenue data at bus companies. Due to the numerous projects, our consultants and developers are very familiar with the processes in a wide variety of industries.",1999,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6878c127e87d60000181848e/picture,"","","","","","","","","" +LSK Engineering Services GmbH,LSK Engineering Services,Cold,"",23,machinery,jan@pandaloop.de,http://www.lsk-es.com,http://www.linkedin.com/company/lsk-engineering-services-gmbh,https://facebook.com/pages/LSK-Engineering-Services-GmbH/110417639050407,"",11 Friedrich-Bergius-Strasse,Crailsheim,Baden-Wuerttemberg,Germany,74564,"11 Friedrich-Bergius-Strasse, Crailsheim, Baden-Wuerttemberg, Germany, 74564","programmierung, industriemontage, engineering services, automatisierungstechnik, elektrotechnik, industrial it, automatisierung, automation machinery manufacturing, schaltschrankbau, microchip sam, robotics, project management, automation, electrical equipment and appliance manufacturing, b2b, smarthome, system integration, electrical engineering, automation services, plc programming, consulting, hmi, building automation, rockwell automation partner, scada, datenbankanbindung, wago steuerungen, industrial automation, microcontroller-programmierung, all other electrical equipment and component manufacturing, services, manufacturing, information technology & services, mechanical or industrial engineering, productivity",'+49 795 1297290,"Outlook, Google Font API, Mobile Friendly, Woo Commerce, Apache, WordPress.org","","","","","","",69c283046ce8cd0001b03486,1731,33599,"LSK Engineering Services GmbH is an industrial automation company based out of Friedrich Bergius Str. 11, Crailsheim, Baden-Wuerttemberg, Germany.",2003,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66fbc688d8aaa20001713158/picture,"","","","","","","","","" +Eckelmann AG,Eckelmann AG,Cold,"",180,machinery,jan@pandaloop.de,http://www.eckelmann.de,http://www.linkedin.com/company/eckelmann-ag,"","",161 Berliner Strasse,Wiesbaden,Hesse,Germany,65205,"161 Berliner Strasse, Wiesbaden, Hesse, Germany, 65205","plc, scada, elektrotechnik, kundenspezifische steuerungen, digitalisierung, refrigeration, automation, software, anlagenautomation, bildverarbeitung, iiot, gebaeudeautomation, medizintechnik, motion control, hvacr, antriebstechnik, cnc, mobile automation, maschinenautomation, kaeltetechnik, manufacturing execution system, gebaeudeleittechnik, pruefsysteme, automation machinery manufacturing, services, hardware- & elektrokonstruktion, schaltschrankbau, sichere steuerungstechnik, energieeffizienz, lifecycle-management, manufacturing, cad/cam-systeme, halbleiterindustrie automation, automatisierungslösungen, industrial automation, energiespeicher, cloud computing, technology, b2b, construction & real estate, software development, machine learning, intralogistik, energy management, hmi/sps, factoryware software, healthcare, industrie 4.0, 3d-druck automation, bildverarbeitungssysteme, verbundsteuerungen, weltweite inbetriebnahme, maschinensteuerung, machinery manufacturing, virtuelle inbetriebnahme, künstliche intelligenz, industrielle automatisierung, system integration, systemintegration, instandhaltung & lifecycle management, regulatorische sonderentwicklungen, pharma automation, industrial machinery manufacturing, embedded solutions, leitsysteme, softwareentwicklung, smart service, operational efficiency, biotechnology, kälte- & gebäudetechnik, digitaler zwilling, medizintechnik automation, regulatory compliance, factoryware virtual replica, consulting, maßgeschneiderte softwarelösungen, energy efficiency, data analytics, virtus caelum cloud, education, distribution, construction, information technology & services, mechanical or industrial engineering, enterprise software, enterprises, computer software, artificial intelligence, oil & energy, health care, health, wellness & fitness, hospital & health care, environmental services, renewables & environment",'+49 611 71030,"Outlook, DoubleClick, Apache, Google Font API, Google Tag Manager, WordPress.org, Mobile Friendly, Google Maps, Google Maps (Non Paid Users), Remote, AI, Microsoft Office, Microsoft Teams","","","","",84000000,"",69c283046ce8cd0001b03487,3589,33324,"Eckelmann AG is a family-owned German company established in 1977, specializing in industrial automation and digitization solutions. Based in Wiesbaden, Germany, the company operates globally with over 500 employees across various locations, including China and the Czech Republic. Eckelmann generates approximately $73.7 million in annual revenue and focuses on providing comprehensive services, including consulting, customized hardware and software development, and turnkey automation systems. + +The company offers a range of products such as CNC controllers, drive systems, and industrial PCs for cutting machines, as well as building and refrigeration control technology. Eckelmann also develops innovative applications that utilize machine learning and cloud infrastructure. It serves multiple industries, including mechanical engineering, food production, and medical technology, and emphasizes sustainable automation practices. Certified under various international standards, Eckelmann is committed to employee development and aims for zero waste in its operations.",1977,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/695925d6950b0a0001b4fbfe/picture,"","","","","","","","","" +Willach Pharmacy Solutions,Willach Pharmacy Solutions,Cold,"",14,medical devices,jan@pandaloop.de,http://www.willach-pharmacy-solutions.com,http://www.linkedin.com/company/willach-pharmacy-solutions,"","","",Ruppichteroth,North Rhine-Westphalia,Germany,53809,"Ruppichteroth, North Rhine-Westphalia, Germany, 53809","medical equipment manufacturing, clinical workflow solutions, pharmacy automation systems, pharmaceutical products, pharmacy automation, medical software, hospital inventory management, medication dispensing, medical equipment and supplies manufacturing, b2b, healthcare technology, hospital equipment, medication safety technology, patient safety, medical devices & equipment, hospital pharmacy systems, healthcare equipment & supplies, medical facility management, healthcare services, hospital solutions, consulting, medtech solutions, healthtech, pharmacy management, healthcare automation, pharmacy solutions, compliance, clinical solutions, pharmaceuticals, services, healthcare, distribution, medical devices, hospital & health care, health care, health, wellness & fitness, medical","","Outlook, Nginx","","","","","","",69c283046ce8cd0001b03488,8099,33911,"Willach provides high-quality products and develops extremely efficient solutions for the storing and dispensing of medicine packages and medical consumables and the packaging of tablet pouches in public pharmacies, hospital pharmacies, hospital wards and medical care centres. + +Based on careful analysis of each customer's exact needs and demands, we develop tailor-made solutions which give them a sustainable, competitive edge. + +Willach has more than 50 years of experience in the international healthcare markets. We've refined our products continuously to create today's modular system solutions. Today, we help customers on every major continent. + +Learn more about how our intelligent solutions can help you organise your working processes in a far faster, more efficient, more productive and more ergonomic way. Contact us now! +Contact",1889,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66d813090a166700019583c5/picture,WillachGroup (willach.com),649409ef68408e01b6afa856,"","","","","","","" +Cybus,Cybus,Cold,"",64,information technology & services,jan@pandaloop.de,http://www.cybus.io,http://www.linkedin.com/company/cybus,https://facebook.com/cybusready/,https://twitter.com/cybus_io,124 Osterstrasse,Hamburg,Hamburg,Germany,20255,"124 Osterstrasse, Hamburg, Hamburg, Germany, 20255","industrial internet, cybersecurity, modbus, profinet, heidenhain tnc, din spec 27070, industrial dataops, opc ua, kubernetes, kafka, high availability, internet of things, data integration, siemens sinumerik, data sovereignty, mqtt, data governance, industrial devops, iiot, edge, can bus, machine data acquisition, industrial connectivity, hybrid cloud edge deployment, bacnet, fanuc focas, smart factory, beckhoff ads, mda, cicd, connectivity, pfannenberg io connect, siemens simatik, werma win, sick cola, data security, industrie 40, ansible, manufacturing, developer tools, industrial automation, enterprise software, software, information technology, software development, multi-cloud support, data analytics, multi-factor authentication, it/ot integration, edge computing, devops for industry, cloud-native technologies, vendor-neutral data pipeline, data load balancing, factory digitalization, real-time data access, vendor neutrality, ldap integration, ai-driven data analytics, on-premises deployment, real-time energy monitoring, devops tools, microservices architecture, predictive maintenance data, helm charts, data pipeline automation, data standardization, real-time monitoring, data orchestration, operational efficiency, industrial data standardization, services, infrastructure as code, condition monitoring, security-by-design, scalability, real-time data, predictive maintenance, api management, unified namespace, multi-location support, predictive analytics, infrastructure as code (iac), industrial protocols support, edge-to-cloud data flow, data processing, factory digital twin support, ai integration in manufacturing, secure data architecture, multi-site deployment, energy data management, industrial protocol compatibility, traceability in production, cloud integration, consulting, factory data hub, data load balancing in industry, data infrastructure, microservices, data consistency, microservices in industry, industrial data security, energy & utilities, b2b, scalable architecture, edge data collection, data pipeline management, vendor neutral platform, data connectivity, multi-protocol support, data security protocols, data governance in manufacturing, event-driven architecture, energy management, cloud-native technology, devops in manufacturing, traceability, mes integration, edge data processing, data orchestration tools, industrial data platform, high performance data processing, logistics, factory connectivity, industrial iot, protocol support, traceability solutions, docker compose, industrial data management, hybrid cloud deployment, data preprocessing, data integration platform, digital transformation, data visualization, data distribution, computer systems design and related services, edge devices, distribution, transportation_and_logistics, energy_and_utilities, enterprises, computer software, information technology & services, computer & network security, mechanical or industrial engineering, oil & energy",'+49 40 52389101,"Route 53, Mailchimp Mandrill, Gmail, Google Apps, Amazon AWS, Atlassian Cloud, Hubspot, Bing Ads, Facebook Login (Connect), Linkedin Marketing Solutions, Google Analytics, Ubuntu, Google Dynamic Remarketing, Nginx, DoubleClick Conversion, Google Tag Manager, Facebook Custom Audiences, WordPress.org, DoubleClick, reCAPTCHA, Facebook Widget, Mobile Friendly, Vimeo, IoT, Remote, AI, Connect",11930000,Venture (Round not Specified),0,2023-12-01,4111000,"",69c283046ce8cd0001b0348f,3825,54151,"Cybus GmbH is a software company based in Hamburg and Berlin, founded in 2015. It specializes in industrial IoT solutions for smart manufacturing, with its main product being Cybus Connectware. This scalable Factory Data Hub enables real-time data integration from production environments into IT and business operations, supporting both existing and new factories. + +The company focuses on providing high data availability, flexibility, and cybersecurity in business-critical production settings. Cybus Connectware facilitates collaboration between manufacturing operations and IT, allowing for real-time monitoring and connectivity in smart factories. The company serves notable clients such as Liebherr, Krone, Porsche, and Handtmann, and collaborates with partners like Capgemini and TeamViewer. With a commitment to efficiency, flexibility, and sustainability, Cybus positions itself as a leader in software-defined manufacturing in Europe.",2015,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6958faade2b95300014ffd0c/picture,"","","","","","","","","" +LACOS | LACOS AgSystems,LACOS,Cold,"",88,farming,jan@pandaloop.de,http://www.lacos.eu,http://www.linkedin.com/company/lacos-gmbh,https://www.facebook.com/lacosgmbh/,"","",Salzkotten,North Rhine-Westphalia,Germany,33154,"Salzkotten, North Rhine-Westphalia, Germany, 33154","landtechnik, software, landwirtschaft, automatische dokumentation, precision farming, apps, displays, software developement, lenkung, gps, telemetrie, agriculture, softwareentwicklung, individuelle software, smart farming, terminals, gnss, fahrspurplanung, hardware, automatisierung landtechnik, autonome landmaschinen, feldrobotik steuerung, landwirtschaftliche informationsverarbeitung, maschinenmonitoring, landtechnik steuerungssysteme, operational efficiency, fieldplanning, consulting, robotics, isobus, routenoptimierung, automatisierte missionsplanung, autonome selbstfahrer, intelligente gps-fahrspurplanung, sicherheitssoftware landtechnik, automatisierte dokumentation landmaschinen, telematik hardware, agrarrobotik lösungen, services, automatisierung, softwareentwicklung landtechnik, herstellerunabhängige steuerung, automation, landwirtschaftliche maschinen, e-commerce, landmaschinen vernetzung, cloud services, maschinenautomatisierung, b2b, maschinensteuerung, telematics, datenaufzeichnung landtechnik, ressourceneffizienz landtechnik, gps-technologie, agricultural implement manufacturing, automatisierungstechnik, robotics & automation, datenanalyse landmaschinen, machine learning, gps gps-entwicklung, fleet management, kommunikation isobus-systeme, landwirtschaftliche dienstleistungen, landtechnik software, feldroutenplanung, landmaschinen software, mathematische algorithmen, education, distribution, transportation & logistics, information technology & services, mechanical or industrial engineering, consumer internet, consumers, internet, cloud computing, enterprise software, enterprises, computer software, artificial intelligence",'+49 3662 86880,"Outlook, Mobile Friendly, Google Tag Manager, Apache, IoT, Remote","","","","","","",69c283046ce8cd0001b0349c,3829,33311,"LACOS, founded in 1990, is a German company specializing in software and hardware for agricultural engineering. With over 30 years of experience, LACOS focuses on precision farming, telematics, field planning, robotics, and automation to improve efficiency and sustainability in agriculture. The company has grown to employ over 70 people across four locations in Germany, including a newly established subsidiary, LACOS AgSystems GmbH. + +LACOS develops innovative solutions such as high-precision GPS technologies, automatic lane planning, and ISOBUS-compatible hardware like the LC:ONE display. Their products aim to enhance agricultural operations through data-driven tools and seamless integration with existing machinery. The company emphasizes in-house development and quality management, ensuring that all products are designed and produced in Germany. LACOS collaborates with agricultural machinery manufacturers and provides training and support to help farmers and land-based businesses achieve sustainable practices.",1990,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e63c478a08e100015e4297/picture,"","","","","","","","","" +Clinomic,Clinomic,Cold,"",51,information technology & services,jan@pandaloop.de,http://www.clinomic.ai,http://www.linkedin.com/company/clinomic-group-aachen,https://facebook.com/clinomicai,https://twitter.com/clinomicai,"",Aachen,North Rhine-Westphalia,Germany,"","Aachen, North Rhine-Westphalia, Germany","digitalization, krankenhaus, medical device, workflow, future of healthcare, critical care, patient care, mona, healthcare, data mining, artificial intelligence, intensive care unit, patient management, pdms, telemedicine, intensive care, intensivstation, ki, technology, information & internet, workflow automation, digital icu, hospital information systems, resource optimization in critical care, multi-site icu management, healthcare equipment & supplies, medical device integration, healthcloud, clinical data repository, teleicu, structured clinical data, ai analytics, data anonymization, modular healthcare software, medical equipment and supplies manufacturing, hospital it integration, webicu, healthcare technology, predictive analytics in icu, mona os, cloud-based healthcare solutions, ai decision support, analytics, digital health innovation, cybersecurity, b2b, consulting, services, medical device support, digital health, interdisciplinary teleconsultation, real-time data access, data analytics, hl7 fhir, mona platform, interoperability, data security, ai tools, remote patient monitoring, medical devices, healthcare analytics, ai in healthcare, patient data management, structured data, business analytics, cloud services, hl7 v2, automated documentation, cloud computing, digital transformation, business intelligence, clinical decision support, patient safety enhancement, clinical workflows, secure data exchange, information technology & services, structured health data, digital transformation in icu, medical data interoperability, automation, medical device connectivity, future-proof healthcare it, regulatory compliance, saas, hospital & health care, health care, health, wellness & fitness, enterprise software, enterprises, computer software, health care information technology, computer & network security",'+49 24 189438737,"Gmail, Google Apps, Microsoft Office 365, reCAPTCHA, WordPress.org, Mobile Friendly, Nginx, Remote, Angular, ebs, Siemens SIMATIC S7, Lens, REST, Taleo Applicant Tracking Systems (ATS), Wider Planet, Salesforce CRM Analytics, AWS SDK for JavaScript, Jira, Karate Labs, Playwright, Python, Selenium, Xray",50850000,Series B,25300000,2025-04-01,"","",69c283046ce8cd0001b03490,3845,33911,"Clinomic is a medical technology company founded in 2019, originating from RWTH Aachen University Hospital in Germany. The company specializes in AI-driven digital transformation for intensive care units (ICUs) and critical care medicine. Clinomic develops intelligent assistance systems designed to streamline ICU workflows, reduce administrative burdens, and enhance patient outcomes. The team includes over 70 experts from various fields, including engineers, developers, and medical professionals. + +The flagship product, Mona, is an AI-powered smart bedside assistant that consolidates and visualizes patient data in real-time. It features voice-controlled documentation, automatic flagging of critical changes, and supports remote telemedicine consultations. Clinomic also offers additional services through its subsidiaries, focusing on patient data management and health data analysis. The company emphasizes compliance with healthcare regulations and aims to improve interoperability across healthcare systems. Clinomic is committed to expanding its AI capabilities and international presence to benefit high-acuity care settings globally.",2019,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/687da8aa88e6dc0001938830/picture,"","","","","","","","","" +Ophigo,Ophigo,Cold,"",50,real estate,jan@pandaloop.de,http://www.ophigo.com,http://www.linkedin.com/company/ophigo,"","",19 Neue Rothofstrasse,Frankfurt,Hesse,Germany,60313,"19 Neue Rothofstrasse, Frankfurt, Hesse, Germany, 60313","ai, 3d virtual tours, proptech, e2e, real estate, commercial real estate, digital signatures, leasing non-residential real estate, pelayanan stabil dan berkualitas, player information protection, live casino, togel, technology innovation, cock fight, proteksi global, online poker, platform resmi, gaming, player experience, platform poker resmi, live chat support, game experience, game features, upgrade sistem, fishing game, program referral poker, sistem keamanan canggih, community poker indonesia, standar proteksi internasional, slot games, pengalaman gaming maksimal, global standards, kredibilitas komunitas poker, keamanan transaksi, upgrade hardware dan software, casinos (except casino hotels), certified poker site, permainan online indonesia, experience bermain poker, real money games, system upgrade, poker terpercaya indonesia, software security, proteksi transaksi online, inovasi teknologi game, online gambling, trusted platform, program referral, entertainment, pelayanan berkualitas, poker online, transaction security, b2c, games",'+49 177 02912242,"Cloudflare DNS, CloudFlare Hosting, CloudFlare, Slack, WordPress.org, Mobile Friendly, Google Font API, Google Tag Manager, Bootstrap Framework, Nginx, LiveChat","","","","","","",69c283046ce8cd0001b03495,"",71321,"Ophigo is a PropTech startup that enables anyone to find, create, and manage their ideal workspace through phenomenal technology and service. With our next-generation platform, we provide an efficient, transparent, and supported experience.",2019,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67051a0146923f0001f18660/picture,"","","","","","","","","" +Bosch Health Campus,Bosch Health Campus,Cold,"",56,hospital & health care,jan@pandaloop.de,http://www.bosch-health-campus.de,http://www.linkedin.com/company/bosch-health-campus,"","","",Stuttgart,Baden-Wuerttemberg,Germany,"","Stuttgart, Baden-Wuerttemberg, Germany","praevention, forschung, medizin, aus und weiterbildung, digitales gesundheitswesen, gesundheitsversorgung, hospitals & health care, patient-centered care, health education, medical diagnostics, ai diagnostics, artificial intelligence, healthcare collaboration, medical technology, medical education, interdisciplinary medicine, ai-powered diagnostics, health literacy, patient care, health policy, personalized medicine, medical data analytics, healthcare data integration, medical research, personalized treatment approaches, biomedical research, medical data analysis, ai in medicine, robotics in medicine, digital health solutions, global health collaboration, biotechnology, telemedicine, medical treatment, health system innovation, sustainable health systems, precision medicine, offices of physicians, healthcare, digital transformation, mental health, services, healthcare innovation, intersectoral healthcare, living lab for healthcare, international health networks, digital health, clinical trials, healthcare technology, digital health innovation hub, research and development, intersectoral health networks, healthcare workforce training, education, non-profit, hospital & health care, information technology & services, health care information technology, health care, health, wellness & fitness, research & development, nonprofit organization management",'+49 711 81010,"Outlook, Microsoft Office 365, Mobile Friendly, Etracker, Apache, Instagram, Facebook, WhatsApp","","","","","","",69c283046ce8cd0001b03498,8011,62111,"Bosch Health Campus GmbH (BHC) is a subsidiary of the Robert Bosch Stiftung, established in March 2022. Located in Stuttgart, Germany, it consolidates the foundation's healthcare initiatives, employing over 3,600 people. BHC focuses on four key areas: Care, Research, Education, and Empowerment, aiming to provide innovative, patient-centered healthcare while promoting digitalization and sustainability. + +The BHC operates the Robert Bosch Hospital, which offers comprehensive maximum-care services, including oncology and clinical trials. It also houses several renowned research institutes and features the Irmgard Bosch Learning Center for training healthcare professionals. The Robert Bosch Center for Innovative Health supports funding initiatives to enhance healthcare access and innovation. BHC's programs, such as PORT, provide outpatient care and social counseling across Germany, influencing national healthcare policies and promoting sustainable systems.",2022,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e5605e95ef4d0001751999/picture,"","","","","","","","","" +Claranet Deutschland,Claranet Deutschland,Cold,"",80,information technology & services,jan@pandaloop.de,"",http://www.linkedin.com/company/claranet-deutschland,"","",196 Hanauer Landstrasse,Frankfurt am Main,Hessen,Germany,60314,"196 Hanauer Landstrasse, Frankfurt am Main, Hessen, Germany, 60314","aws, sap security, sap managed services, application performance management, kubernetes, cloud migration, ecommerce hosting, managed hybrid cloud, devops, vpn, azure, docker, container, sap, spryker, iso 27001, cloud sicherheit, managed public cloud, threat detection, managed services, managed cloud, ittraining, cybersecurity, microsoft 365, google cloud","","Outlook, Microsoft Office 365, Snowflake","","","","","","",69c283046ce8cd0001b0349b,"","","Claranet Deutschland, a subsidiary of Claranet Group Ltd., is a managed technology service provider based in Frankfurt am Main, Germany. Established in 2000, the company specializes in IT modernization for mid-sized and large enterprises. With additional locations in Berlin and Munich, Claranet Deutschland employs around 3,200 people across 11 countries and manages 40 data centers, generating significant annual revenue. + +The company offers a wide range of managed IT services, including cloud hosting on platforms like AWS, Google Cloud, and Azure, along with cybersecurity solutions such as a 24/7 Security Operations Center. Claranet also provides data management and AI services, application and SAP support, modern workplace solutions, and network connectivity. With a focus on customer success, Claranet serves over 10,000 business clients, emphasizing tailored solutions and long-term partnerships.",1996,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/686eba9afb9dc8000178d829/picture,Claranet (claranet.com),5e571c3f34d93a000113e7c0,"","","","","","","" +digid GmbH,digid,Cold,"",18,medical devices,jan@pandaloop.de,http://www.digid.com,http://www.linkedin.com/company/digidgmbh,"","",30A Robert-Koch-Strasse,Mainz,Rhineland-Palatinate,Germany,55129,"30A Robert-Koch-Strasse, Mainz, Rhineland-Palatinate, Germany, 55129","biotech, diagnostics, nanotech, healthtech, medical equipment manufacturing, nanometer sensors, high-volume manufacturing, healthcare, animal health monitoring, research and development in the physical, engineering, and life sciences, environmental monitoring, cantilever bending signals, animal-free antibodies, sensor integration, scalable nanotechnology, environmental sensors, multi-biomarker detection, precision measurement, nanosensing technology, services, molecular detection, ai algorithms, nanoscale sensing, real-time measurement, industry surveillance, predictive analytics, nanoscale measurement applications, food safety, biomarker monitoring, b2b, real-time diagnostics, logistics, sensor technology, automotive diagnostics, diagnostic solutions, stand-alone devices, biomems, biochip array technology, automotive, food safety testing, digital nano insights, nanotechnology in biotech, customized nanosensing, sensor nanotechnology, molecular diagnostics, biotechnology, low-cost nanosensors, ai-driven data analysis, molecular environmental changes, biomarker detection, molecular antibodies, aerospace, sequence-defined antibodies, biotech industry, molecular technology, manufacturing, industry, technology, biosensing, nanotechnology, ai, real-time, biomarkers, sensor, molecular, biochip, customized, stand-alone, high-volume, low-cost, medical devices, hospital & health care, health care, health, wellness & fitness, information technology & services, enterprise software, enterprises, computer software, mechanical or industrial engineering, real time",'+49 1511 4965810,"Cloudflare DNS, Outlook, Slack, Apache, Google Analytics, Mobile Friendly, WordPress.org, Google Tag Manager","","","","","","",69c283046ce8cd0001b03491,3825,54171,"digid GmbH is a Mainz based healthtech company. digid was started by an, interdisciplinary team of experienced specialists from the fields of Diagnostics, Pharma, Nanotech, Artificial Intelligence and Digitalization. + +digid aims to digitalize todays diagnostics solutions through the development of a proprietary, scalable system that combines Sensorics, Nanotech and A.I. + + +digid GmbH ist ein Healthtech Unternehmen mit Sitz in Mainz. digid wurde von einem erfahrenen, interdisziplinären Team von Spezialisten aus den Bereichen Diagnostik, Pharma, Nanotechnologie und K.I. gestartet. + +digid entwickelt innovative Lösungen im Bereich der digitalen Diagnostik und revolutioniert mittels einer proprietären Kombination aus Sensorik, Nanotechnologie und Künstlicher Intelligenz, die Analyse, Echtzeitauswertung und Interpretation multipler Biomarker und Vitaldaten.",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66ed379cb183e400016f6610/picture,"","","","","","","","","" +Learning Systems and Robotics Lab,Learning Systems and Robotics Lab,Cold,"",14,research,jan@pandaloop.de,http://www.dynsyslab.org,http://www.linkedin.com/company/learnsyslab,https://www.facebook.com/learnsyslab,http://twitter.com/learnsyslab,90 Theresienstrasse,Munich,Bavaria,Germany,80333,"90 Theresienstrasse, Munich, Bavaria, Germany, 80333","multi-agent path planning, aerospace product and parts manufacturing, adaptive control, b2b, robotics, multi-robot transfer learning, model predictive control, safe robot learning, rock fragmentation uav, visual-inertial odometry, robot control, learning algorithms, deep learning, automation, localization, uwb localization, semantic scene understanding, gaussian mixture models, multi-task transfer learning, transportation & logistics, reinforcement learning, services, high-speed quadrotor control, semi-static environment slam, multi-modal sensor fusion, bayesian optimization, artificial intelligence, aerial swarm choreography, trajectory planning, gaussian processes, safety guarantees, sensor fusion, construction & real estate, collision avoidance algorithms, robust control, machine learning, multi-vehicle navigation, deep neural networks, multi-robot systems, multi-agent coordination, mechanical or industrial engineering, information technology & services","","Apache, Google Analytics, Google Font API, Mobile Friendly, WordPress.org, YouTube","","","","","","",69c283046ce8cd0001b03492,3589,33641,"The Learning Systems and Robotics Lab (LSY), formerly known as the Dynamic Systems Lab, is an academic research group led by Prof. Angela Schoellig. It is affiliated with the Technical University of Munich and the University of Toronto Institute for Aerospace Studies. The lab focuses on enabling seamless interaction between robotic systems and the physical world, particularly in unstructured and dynamic environments. This is achieved through the integration of controls, machine learning, and optimization. + +LSY conducts research in two main areas: developing novel control and learning algorithms for single and multi-robot systems, and exploring interdisciplinary applications of robotics. Key projects include safe and robust robot learning, perception-based control, mobile manipulation, and robotic swarms. The lab showcases its work through various demonstrations, such as quadrotor swarms, mobile manipulation tasks, and navigation solutions. The lab also engages in interdisciplinary partnerships and actively recruits for academic positions, fostering collaboration with academia, industry, and government.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f23556c95e9c0001e22bfc/picture,"","","","","","","","","" +SE3 Labs,SE3 Labs,Cold,"",28,information technology & services,jan@pandaloop.de,http://www.se3.ai,http://www.linkedin.com/company/se3-labs,"","",317 Bodenseestrasse,Munich,Bavaria,Germany,81249,"317 Bodenseestrasse, Munich, Bavaria, Germany, 81249","software development, smart factories, b2b, gnss-denied environments, real-time data analytics, terrain analysis in defense, ai for construction, ai for europe sovereignty, spatialgpt, consulting, government, advanced computer vision, visual data processing, ai for industrial automation, infrastructure analysis, ai for smart factories, sensor data integration, queryable insights, ai for large-scale unstructured environments, unstructured visual data, ai in physical world, construction data analysis, real-time spatial understanding, defense technology, terrain analysis, ai for smart city management, urban asset assessment, ai-driven construction site monitoring, gnss-denied navigation, visual data analysis, spatial ai technology, automation, large-scale unstructured environment analysis, digital twins, object detection, unstructured visual data conversion, defense & national security, large language models, smart infrastructure, 3d environment understanding, large-scale environment analysis, spatial ai, construction & real estate, ai for defense, autonomous navigation, services, gnss-denied navigation solutions, infrastructure management, ai solutions, ai for infrastructure safety, computer vision, computer systems design and related services, information technology & services, artificial intelligence","","Gmail, Google Apps, Amazon AWS, Mobile Friendly, Multilingual, NVIDIA Jetson, CallMiner Eureka, Visio, Mode, Ubuntu, Docker","",Seed,0,2025-02-01,"","",69c283046ce8cd0001b03493,3531,54151,"SE3 Labs is a Spatial AI company focused on 3D computer vision and AI technologies. They develop solutions that help computers understand and interact with the physical 3D world through ready-to-use APIs, tools, and developer platforms. By integrating 3D computer vision with large language models, SE3 Labs addresses the challenges of applying AI in real-world scenarios. + +The company offers a cloud-based developer platform featuring optimized algorithms and standardized interfaces for building spatial computing products. Their services include generating photorealistic 3D digital twins from various data sources and providing specialized tools for applications in sectors like defense, smart infrastructure, construction, and robotics. SE3 Labs aims to enhance decision-making and operational efficiency across various industries, including drone navigation and industrial inspection. Founded by experts in the field, the company emphasizes innovation and a fast-paced work culture.",2023,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/690c22f63fe5900001c3e7d4/picture,"","","","","","","","","" +MLL Münchner Leukämielabor,MLL Münchner Leukämielabor,Cold,"",180,hospital & health care,jan@pandaloop.de,http://www.mll.com,http://www.linkedin.com/company/mll-muenchner-leukaemielabor,https://de-de.facebook.com/muenchnerleukaemielabor/,"",31 Max-Lebsche-Platz,Munich,Bavaria,Germany,81377,"31 Max-Lebsche-Platz, Munich, Bavaria, Germany, 81377","mutationsscreening, leukaemiediagnostik, molekulargenetik, forschung, chromosomenanalyse, zytomorphologie, immunphaenotypisierung, sequenzanalyse, diagnostik, therapie, fluoreszenz in situ hybridisierung fish, hospitals & health care, klinische studien, krebsgenetik, krebsdiagnostik-methoden, künstliche intelligenz, lymphom, innovative diagnostik, krebsdiagnostik-algorithmen, ngs, genomforschung, automatisierte analyse, diagnoseunterstützung, forschungsdatenmanagement, datenmanagement, big data, sequenzierungsdaten, genomsequenzierung, liquid biopsy, mrd, research and development, laborautomatisierung, genomdatenbanken, genetische variationen, genomdatenanalyse, hämatologische erkrankungen, data interpretation, b2b, personalized medicine, krebsforschungspartner, fusionsgene, immunphänotypisierung, forschungsprojekte, leukämie-risikoabschätzung, krebsforschungseinrichtungen, genetische biomarker, krebsdiagnostik, datenmanagement-systeme, datenbanken, krebsforschungsergebnisse, iso 17025, krebsforschungslabor, krebsgenetik-analysen, diagnostische methoden, qualitätsmanagement, pharmaceuticals, big data analytics, krebsforschungstechnologien, klinische datenanalyse, klinische diagnostik, krebsgenomforschung, forschungsinfrastruktur, automatisierte datenanalyse, datenverarbeitung, iso 15189, sequenzierungsservice, krebsforschung, cloud computing, bioinformatik, sequenzierungsplattformen, klinische forschung, hämatologie, genetische marker, mutationsanalyse, bioinformatik-software, cap-akkreditierung, biotechnology, medical diagnostics, qualitätskontrolle, fish, krebsbehandlung, genomnetzwerk, biobank, datenanalyse, forschungsdaten, krebsdiagnostik-tools, sequenzierung, dateninterpretation, klinische daten, ki-gestützte diagnostik, ki-basierte diagnostik, medical and diagnostic laboratories, automatisierte prozesse, healthcare, genetische tests, diagnostikmethoden, krebsprognose, personalized therapy, leukämie, diagnostische algorithmen, krebsgenetik-tools, services, forschungskooperationen, krebsrisikostratifizierung, automatisierung, medical laboratories, zytogenetik, molekulare diagnostik, leukämie-diagnostik, consulting, bioinformatik-tools, hospital & health care, enterprise software, enterprises, computer software, information technology & services, research & development, medical, medical & diagnostic laboratories, medical practice, health care, health, wellness & fitness",'+49 89 990170,"Amazon SES, Rackspace MailGun, Outlook, Microsoft Office 365, Hubspot, Slack, Salesforce, Apache, Vimeo, Mobile Friendly, AI, Ning, Flow, Fishbowl, MacStadium, Enom, MLlib, ZTE, Olo, .NET","","","","",47000000,"",69c283046ce8cd0001b03496,8731,62151,"MLL Münchner Leukämielabor GmbH, based in Munich, Germany, is a prominent laboratory focused on the diagnosis and research of leukemia, lymphoma, and other hematological diseases. Established in 2005, MLL is recognized as one of the largest leukemia laboratories globally, processing around 125,000 samples each year and employing approximately 330-396 staff members. The laboratory utilizes advanced technology and quality assurance to deliver precise diagnostics and personalized treatment options for over 5,000 patients annually. + +MLL offers a comprehensive diagnostic portfolio that includes cytomorphology, chromosome analysis, FISH, immunophenotyping, and molecular genetic examinations. The company also provides web-based tools for data analysis and supports clinical research through its pharma services. In addition to its diagnostic capabilities, MLL engages in research collaborations to enhance diagnostics and personalized medicine, partnering with institutions like the Comprehensive Cancer Center Klinikum rechts der Isar and Universitätsklinikum Würzburg.",2005,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f16436e521f70001f96f92/picture,"","","","","","","","","" +REINHOLZ Technologies GmbH,REINHOLZ,Cold,"",29,information technology & services,jan@pandaloop.de,http://www.reinholz-technologies.com,http://www.linkedin.com/company/reinholz-software-&-technology,"","",3 Fraunhoferstrasse,Itzehoe,Schleswig-Holstein,Germany,25524,"3 Fraunhoferstrasse, Itzehoe, Schleswig-Holstein, Germany, 25524","process control, industrial it, codesys, industrial automation, simatic, industry it, mobile automation, automation, academy, tia portal, industrial engineering, industrial security, ot security, it services & it consulting, it/ot-security, bibliotheken iec-61131, consulting, datenbanken für industrie, mes schnittstellen, bibliotheken für gerätehersteller, manufacturing, security & safety, herstellerunabhängige automatisierung, information technology & services, b2b, system integration, security spotlight, elektrokonstruktion, cloud-anbindung, codesys experts, visualisierungen, computer systems design and related services, anwendungsbeispiele, testcenter, services, industrie 4.0 lösungen, software development, data security, inbetriebnahme, cnc-systemlösungen, industrie 4.0, support & service, custom software, hmi panel, migration von anlagen, retrofit, ganzheitliche betrachtung, softwareentwicklung, testcenter software, safety software engineering, funktionale sicherheit, security, education, distribution, mechanical or industrial engineering, computer & network security",'+49 482 19497900,"Microsoft Office 365, Mobile Friendly, Google Tag Manager, Nginx, WordPress.org, Quantcast, Remote, Siemens SIMATIC S7, SIMATIC WinCC","","","","","","",69c283046ce8cd0001b0348a,3581,54151,"Als Spezialist für Automatisierungstechnik entwickeln wir innovative Konzepte und moderne Software für die industrielle Automatisierung. Unser Leistungsspektrum reicht von herstellerunabhängiger Beratung und Softwareentwicklung bis hin zur Inbetriebnahme und Dokumentation kompletter Automatisierungssysteme in verschiedensten Branchen. + +Erfolgreiche Automatisierung basiert bei uns auf fundiertem technischen Know-how, kontinuierlicher Weiterbildung und hoher Flexibilität. Erfahrene Softwarespezialisten mit umfassender Branchenexpertise ergänzen sich in leistungsstarken Teams und stehen für Stabilität, Verlässlichkeit und professionelles Projektmanagement. So realisieren wir maßgeschneiderte Automatisierungslösungen mit hoher Qualität und nachhaltigem Mehrwert. + +In unserer Automation Academy bieten wir praxisorientierte Schulungen und Fachvorträge zu aktuellen Themen der Automatisierung an. + +Im Rahmen eines geförderten Entwicklungsprojekts arbeitet REINHOLZ Technologies an einer modularen OT-Sicherheitslösung für industrielle Produktions- und Automatisierungsnetze. + +Das Vorhaben wird gefördert aus dem Landesprogramm Wirtschaft 2021–2027 mit Mitteln des Europäischen Fonds für regionale Entwicklung (EFRE). + +https://reinholz-technologies.com/foerderungen/","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6755316c16ae9d000125bf65/picture,"","","","","","","","","" +mip Consult GmbH,mip Consult,Cold,"",19,information technology & services,jan@pandaloop.de,http://www.mip-software.de,http://www.linkedin.com/company/mip-consult-gmbh,https://www.facebook.com/profile.php,"",9 Wilhelm-Kabus-Strasse,Berlin,Berlin,Germany,10829,"9 Wilhelm-Kabus-Strasse, Berlin, Berlin, Germany, 10829","immobilien, logistik, crm, datenschutz, custom software, itberatung, softwareentwicklung, web app, banken, gesundheit, maschinenbau, microsoft apps, informationssicherheit, itdienstleister, onlineshops, erp, microservicesarchitektur, agenturen, k configurator, automobile, process mining, restful api, echtzeit-datenverarbeitung, branchenübergreifende software, benutzerfreundlichkeit, datenmanagement, customer relationship management, individuelle software, langfristige supportmodelle, technologie-stack, maßgeschneiderte software, kundenindividuelle konfigurationen, consulting, information technology and services, sicherheitskonzepte, systemintegration, cloud-basierte lösungen, sicherheitszertifizierte entwicklung, automatisierte deployment-prozesse, computer systems design and related services, individuelle nutzerzugänge, b2b, it-infrastruktur, systemanbindung, skalierbarkeit, schnittstellenentwicklung, rollout und support, prozessoptimierung, sicherheitsstandards, requirements engineering, responsive design, kundenorientierte entwicklung, produktkonfigurator, datenschutzkonforme lösungen, agile entwicklung, langzeitbetreuung, zukunftssichere software, software development, automatisierung, api-entwicklung, devops, it-sicherheit, skalierbare anwendungen, flexible systemarchitektur, consent management, microservice-architektur, services, real estate, sales, enterprise software, enterprises, computer software, information technology & services, mechanical or industrial engineering",'+49 30 208899900,"Route 53, Outlook, reCAPTCHA, Mobile Friendly, Nginx, WordPress.org, Google Tag Manager, Google Font API, Google Maps, Google Maps (Non Paid Users), Wordpress, Linkedin Marketing Solutions","","","","","","",69c283046ce8cd0001b0348d,7375,54151,"MIP Software – Ihr Partner für maßgeschneiderte Softwarelösungen, App-Entwicklung und IT-Beratung in Deutschland. Wir bieten innovative, skalierbare digitale Lösungen für Unternehmen aller Branchen.",2003,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66ebf515900e2b0001aaa0b9/picture,"","","","","","","","","" +Turbit,Turbit,Cold,"",30,renewables & environment,jan@pandaloop.de,http://www.turbit.com,http://www.linkedin.com/company/turbit,"","",79 Kottbusser Damm,Berlin,Berlin,Germany,10967,"79 Kottbusser Damm, Berlin, Berlin, Germany, 10967","ai & wind energy, predictive maintenance, software, scada, ai, insurance, asset performance management, energy management, wind energy, condition monitoring, renewable energy, failure prediction, high-frequency data, scada integration, anomaly detection, data hub, risk management, downtime reduction, technology, ai risk management, predictive analytics, cloud data storage, sensor data analysis, ai-powered insights, real-time data, data management, data streaming, wind turbine fault prediction, component anomaly detection, ai-driven maintenance planning, iec 61400-25-2, asset lifecycle management, renewable energy ai, real-time alerts, blade damage detection, failure mode prediction, operational efficiency, fault detection, ai monitoring, failure modes, ai for wind industry, asset management software, ai-based risk assessment, failure mode solutions, fault detection ai, neural networks, services, power output optimization, scalable ai, ai infrastructure, asset downtime prevention, engineering services, asset management, asset health monitoring, wind turbines, asset data centralization, wind turbine health diagnostics, power curve analysis, ai operating system, asset performance, root cause analysis, ai model training, asset health, b2b, asset performance analytics, performance optimization, data-driven decision making, failure database, ai model retraining, api integration, failure prediction ai, wind farm optimization, information technology & services, oil & energy, clean energy & technology, environmental services, renewables & environment, enterprise software, enterprises, computer software","","Google Cloud Hosting, Outlook, Hubspot, Slack, Google Dynamic Remarketing, Varnish, Wix, Django, DoubleClick Conversion, Bootstrap Framework, Mobile Friendly, Google Tag Manager, Google Analytics, DoubleClick, Multilingual, Docker, Android, Remote, AI","",Venture (Round not Specified),0,2021-09-01,"","",69c283046ce8cd0001b03489,3621,54133,"Turbit Systems GmbH is a technology company focused on AI-powered monitoring and risk management solutions for the wind energy sector. The company aims to enhance the performance and reliability of wind turbines by enabling operators and asset managers to predict failures and optimize turbine operations. Turbit envisions becoming the central intelligence hub for the global wind industry, providing transparency and financial stability for wind turbine assets. + +Turbit offers an operating system for live wind park AI monitoring, utilizing advanced machine learning to analyze turbine data and deliver actionable insights. Key features include performance monitoring, risk management tools like Turbit Blue, and automated anomaly detection. The company is also developing the Turbit Assistant, which will incorporate advanced AI capabilities. Turbit's system architecture addresses the full lifecycle of turbine data, helping to improve operational efficiency and tackle challenges in wind power generation. + +Turbit serves a global clientele of wind turbine owners, operators, and asset managers, with VSB Service GmbH as a confirmed customer. Founded by CEO Michael Tegtmeier, the company emphasizes the transformative role of AI in the wind energy sector.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68bdbce166cda70001ea639d/picture,"","","","","","","","","" +DLMC GmbH,DLMC,Cold,"",13,hospital & health care,jan@pandaloop.de,http://www.dlmc.de,http://www.linkedin.com/company/dlmc-gmbh,https://www.facebook.com/DLMC.de,"",8 Mittelstrasse,Sprockhoevel,North Rhine-Westphalia,Germany,45549,"8 Mittelstrasse, Sprockhoevel, North Rhine-Westphalia, Germany, 45549","erloesoptimierung, strukturpruefung, drgupdate, primaerkodierung, monthly medco meeting, medizincontrolling, mdbearbeitung, hospitals & health care, weaning-patienten dokumentation, healthcare services, fallsteigerung, aktenversand in safe-containern, aktenmanagement, kodiermanual krankenhaus 2025, testing laboratories and services, gesetzliche vorgaben, patientendaten, kodierung, distribution, strukturprüfung, datenschutz, iso 9001:2015, mdk-optimierung, schlichtungsausschuss, kodierleitfäden, consulting, audit, datenschutzkonzept, education, kodiermanual, md-prüfung, healthcare, externes medizincontrolling, b2b, fallmanagement, leistungsgruppen-analyse, ki-gestützte kodierung, qualitätsmanagement, mdk-bearbeitung, financial services, drg-abrechnung, strukturmerkmale weaning, reformgesetz krankenhaus, services, hybridverfahren, md-bearbeitung, rechnungsoptimierung, revisionssicherheit, qualitätszertifizierung, leistungsgruppenanalyse, prozessoptimierung, erlösoptimierung, finance, legal, hospital & health care, health care, health, wellness & fitness",'+49 233 9124110,"Shutterstock, WordPress.org, Mobile Friendly, Apache, reCAPTCHA, AI","","","","","","",69c283046ce8cd0001b0348c,8011,54138,"Rückstände in der Primärkodierung und im MDK-Bearbeitung beseitigen, Personalengpässe abfedern, Erlösmaximierung vor Abrechnung – die DLMC GmbH ist mit ausschließlich festangestellten MitarbeiterInnen seit mehr als 15 Jahren ein verlässlicher Partner im Medizincontrolling. Mit dem breiten Wissensschatz unseres großen Teams unterstützen wir Krankenhäuser jeder Größe und Trägerschaft in der Fallbearbeitung aller Fachabteilungen. + +Neben Niederlassungen in Berlin und Stuttgart ist der Sitz der DLMC GmbH in Sprockhövel bei Wuppertal in Nordrhein-Westfalen.",2008,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/677cf57b20188e0001a91c61/picture,"","","","","","","","","" +romeisIE,romeisIE,Cold,"",11,information technology & services,jan@pandaloop.de,http://www.romeis-ie.de,http://www.linkedin.com/company/romeis-information-engineering-gmbh,https://www.facebook.com/romeisie/,"","",Gelnhausen,Hesse,Germany,63571,"Gelnhausen, Hesse, Germany, 63571","management cockpit, massgeschneiderte softwareloesungen einfuehrung neuer technologien technische beratung management coc, massgeschneiderte softwareloesungen, einfuehrung neuer technologien, vr, technische beratung, ar, apps, webappliaktionen, portale, it services & it consulting, logistik und supply chain, datenmanagement, automation, remote monitoring, digital platforms, big data analytics, automatisierte prozesse, business intelligence dashboards, software development, b2b-portale, webapplikationen, inventory management, industry 4.0, datenintegration, up-keeper, digital workflows, datenpools, process optimization, ai telephony, digitale transformation, business intelligence, predictive maintenance, web applications, maschinelles lernen, process automation, b2b, system integration, automated reporting, operational efficiency, data security, massendatenanalyse, flexocube outdoor-küchen, services, manufacturing automation, digital transformation, gesundheitstechnologie, compliance erfüllen, makeit makerspace, portal development, prozessautomatisierung, api schnittstellen, iot devices, app development, ki-basierte entscheidungsfindung, cloud services, iot, ai solutions, cloud solutions, big data, ki-lösungen, systeme vernetzen, automatisierung, data management, medizintechnik digitalisierung, hochautomatisierte lagerhaltung, predictive analytics, guudeai, user experience, bauwesen und bauindustrie, system nahtlos integrieren, data integration, data pools, cloud computing, software as a service, enterprise software, fertigungsautomatisierung, cloud infrastructure, industrie 4.0 lösungen, app-entwicklung, machine learning, digitaler zwilling, informationstechnologie und dienstleistungen, mobile apps, digital solutions, adexperts online marketing, maßgeschneiderte software, software engineering, smart logistics, computer systems design and related services, project management, healthcare it, industrial automation, cloudlösungen, technology consulting, it consulting, smart factory, user interface design, data analytics, logistics solutions, hohe automatisierung, consulting, high automation, enterprise solutions, custom software, logistiklösungen, cloud integration, einsatzplanungssysteme, ki-telefonassistenz, ai chatbots, mobile entwicklung, digitalization, automatisierung und industrie 4.0, healthcare, education, manufacturing, distribution, construction, information technology & services, enterprises, computer software, analytics, computer & network security, ux, saas, internet infrastructure, internet, artificial intelligence, productivity, mechanical or industrial engineering, management consulting, health care, health, wellness & fitness, hospital & health care",'+49 6051 7003095,"Outlook, Microsoft Office 365, Mobile Friendly, Apache, Google Font API, AI","","","","","","",69c283046ce8cd0001b03494,7375,54151,"Seit 2002 unterstützen wir mittelständige und große Unternehmen bei der Bewältigung der immer komplexer werdenden Herausforderungen der modernen Informationstechnik. + +Gerade im Zeitalter des Web 2.0 (oder mittlerweile 3.0 bzw. 4.0) ist es für alle Unternehmen unerlässlich, diese neuen Vertriebs- und Kommunikationskanäle richtig zu nutzen. romeis Information Engineering verfügt über jahrelange Erfahrung in den Bereichen der modernen Informationsarchitektur und ist damit Ihr kompetenter Partner bei der erfolgreichen Lösung aktueller und zukünftiger Herausforderungen. + +Im März 2009 haben wir unser Unternehmen an die neuen Anforderungen der Informationstechnologie angepasst und uns im Bereich Performance Marketing mit herausragenden Experten verstärkt. So können wir Ihnen und Ihrem Unternehmen bestmögliche Unterstützung bei der Maximierung Ihrer Online-Geschäftsaktivitäten bieten.",2002,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/690eee263ebc85000143b8fb/picture,"","","","","","","","","" +BIT Technologies GmbH,BIT,Cold,"",15,information technology & services,jan@pandaloop.de,http://www.bittechnologies.io,http://www.linkedin.com/company/bit-technologies-gmbh,"","",15A Speditionstrasse,Duesseldorf,Nordrhein-Westfalen,Germany,40221,"15A Speditionstrasse, Duesseldorf, Nordrhein-Westfalen, Germany, 40221","it architecture, dev ops, anonymization, agile, encryption, oracle, jenkins, sas, data masking, software development, compliance, digitalization, it services, gdpr, hadoop, it services & it consulting, digital transformation, cloud infrastructure, data management, resource booking platform, cybersecurity, enterprise software, b2b, consulting, software customization, cloud computing, data security, technology consulting, services, information technology and services, software engineering, data integrity, it support, remote management, cloud solutions, cloud migration, debt recovery system, managed services, custom software solutions, it infrastructure, outdoor advertising management, business process automation, devops, it strategy, synthetic data generation, real-time insights, erp for smes, customer relationship management, oracle netsuite, neurorehabilitation platform, property management automation, api development, user experience, customer-specific solutions, digital ecosystem, digital solutions, luxury car rental software, computer systems design and related services, it consulting, system integration, scalability, erp implementation, data anonymization, consulting services, data analytics, business efficiency, software integration, healthcare, finance, information architecture, information technology & services, enterprises, computer software, internet infrastructure, internet, computer & network security, management consulting, crm, sales, ux, health care, health, wellness & fitness, hospital & health care, financial services","","Gmail, Google Apps, WordPress.org, Google Font API, Mobile Friendly, Google Tag Manager, React Native, Remote, Circle, ","","","","","","",69c283046ce8cd0001b03499,7375,54151,"BIT Technologies GmbH is an IT consulting and custom software solutions firm founded in 2018. The company specializes in delivering tailored technology services to businesses across various sectors, focusing on custom software solutions, IT consulting, managed services, and software implementation and integration. BIT Technologies emphasizes a client-centric approach, ensuring that each project is guided by a dedicated consulting team that understands the unique needs and challenges of its clients. + +The firm serves multiple domains, including legal reporting, treasury, accounting, and risk reporting, and provides expertise to financial service providers and industry. BIT Technologies is committed to making advanced technology accessible to small and medium-sized enterprises (SMEs), helping them enhance their operations and focus on their core business. One of their notable collaborations includes working with Drive Me, a luxury car rental company, to improve their operations using Oracle NetSuite solutions.",2019,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e0b36bd0e9f20001e4aa9c/picture,"","","","","","","","","" +Incoretex GmbH,Incoretex,Cold,"",16,information technology & services,jan@pandaloop.de,http://www.incoretex.de,http://www.linkedin.com/company/incoretex,"","",30 Weststrasse,Aachen,Nordrhein-Westfalen,Germany,52074,"30 Weststrasse, Aachen, Nordrhein-Westfalen, Germany, 52074","iot, railway solutions, digital surfaces, smart carpet, sensors, counting carpet, smart textiles, app development, big data analysis, ai, sensor, smart floor, smart surfaces, highresolution sensors, software development, it services & it consulting, connectivity solutions, consulting, flexible sensors, semiconductor and other electronic component manufacturing, device management, customer focus, performance optimization, sensor technology for smart products, state-of-the-art ai, electrical equipment and appliance manufacturing, high-res sensors, over-the-air updates, data-driven insights, iot infrastructure, automation, smart sensors, high-resolution sensors, supply chain management, sensor technology integration, ai consulting, ai-driven automation, end-to-end infrastructure, ai solutions, ai-based product automation, ai-driven data insights, device control, sensor integration in surfaces, ai analysis, sensor technology, user experience, data analysis, data sharing, device management platform, information technology, ai automation, remote access, product connectivity, scalability, b2b, digital transformation, sensor technology for various surfaces, performance ai systems, smart product development, thin high-resolution sensors, custom sensor solutions, data insights, connectivity sdk, product enhancement, services, device authentication, ai-based solutions, data security, ai-driven decision making, ultra-high-res sensors, flexible sensor design, ai for product development, cloud connectivity, sensor integration, product online, manufacturing, hardware, apps, information technology & services, logistics & supply chain, ux, data analytics, computer & network security, mechanical or industrial engineering",'+49 1577 4511677,"Circle, AI, IoT, Olo","","","","","","",69c283046ce8cd0001b0349a,3571,33441,"Incoretex GmbH is a German technology company founded in 2019, based in Aachen. The company specializes in AI-powered IoT solutions and high-resolution sensor technology, focusing on the development of smart products in the appliances, electrical, and electronics sectors. With a team of around 8 employees, Incoretex aims to enhance products through IoT connectivity and AI-driven value generation. + +Incoretex offers a range of services, including connectivity solutions for remote access and control, high-resolution sensor technology for data gathering, and end-to-end infrastructure that supports everything from device hardware to backend management. The company also provides consulting services to help clients develop superior smart products and improve user experiences. Incoretex positions itself as a full-service provider, supporting clients from the initial idea through to realization and supply.",2019,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e59de31c238800018aef6b/picture,"","","","","","","","","" +Tegtmeier Inkubator GmbH,Tegtmeier Inkubator,Cold,"",16,information technology & services,jan@pandaloop.de,http://www.tegtmeier-inkubator.de,http://www.linkedin.com/company/tegtmeier-inkubator,"","",14 Burchardstrasse,Hamburg,Hamburg,Germany,20095,"14 Burchardstrasse, Hamburg, Hamburg, Germany, 20095","machine learning, big data, iot, smarthome, it services & it consulting, b2c, software architect, benutzerorientierte lösungen, nachhaltige gebäudetechnologie, sustainability, embedded systems, sensorbasierte steuerung, user experience, sensorik, software development, product development, adaptive systeme, prototypenentwicklung, smart home sicherheit, sensor- und aktorentechnologie, python developer, entwicklungslabor hamburg, data protection, hardware integration, technologieentwicklung, innovative standards, ökologische produkte, d2c, information technology & services, smart home produkte, information technology and services, machine learning algorithmen, smart home automation, sensorik developer, research & development, umweltfreundliche innovationen, iot developer, computer systems design and related services, iot technologien, ml & computer vision, innovationslabor, technologie-startup, digital transformation, marktreife produkte, automatisierte verbrauchsoptimierung, klimafreundliche technologien, cloud computing, data security, technologie forschung, electrical equipment, appliance, and component manufacturing, energieeffizienz, benutzerinteraktion, intelligente systeme, software engineering, prototyping, smart home, network security, sensors, intelligente gebäudesysteme, artificial intelligence, enterprise software, enterprises, computer software, b2b, environmental services, renewables & environment, embedded hardware & software, hardware, ux, computer & network security, internet of things, consumers",'+49 40 76500390,"Mobile Friendly, Cloudinary, Data Storage, AI, FUSION, Micro, Radarstats, Visio, IBM HTTP Server, ebs, Bevywise MQTT Broker, AudioEye","","","","","","",69c283046ce8cd0001b0349d,7375,54151,"Mit unserem Team aus Entwicklern und IT-Architekten schaffen wir neue Lösungen für die Hausautomatisierung mit Maschine Learning und IoT-Komponenten. + +Unsere Themen: Automatisierung / Big Data / Datenanalyse / Künstliche Intelligenz / Smart Home",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f266da7f9f200001c00f40/picture,"","","","","","","","","" +DextraData GmbH,DextraData,Cold,"",68,information technology & services,jan@pandaloop.de,http://www.dextradata.com,http://www.linkedin.com/company/dextradata-gmbh,http://www.facebook.com/dextradatagmbh/,"",4 Girardetstrasse,Essen,North Rhine-Westphalia,Germany,45131,"4 Girardetstrasse, Essen, North Rhine-Westphalia, Germany, 45131","cloud services, digital transformation, healthcare solutions, it service management, process automation, integrated security management, next generation infrastructure, internet of things, it consulting & services, it financial management, data quality management, application amp security consulting, cloud amp managed services, solution integration, application security consulting, it project management, managed services, advanced data analytics, business consulting, software security consulting, data management, softwareentwicklung, cloud managed services, software development, custom software development, digital workflow, iso 27001, business applications, services, healthcare technologies, real-time process monitoring, financial management, it management, hospital revenue management, electronic flight bag, risk management, supply chain management, consulting, bcm, patient data management, process optimization, healthcare analytics, data security, data-driven decision making, iot connectivity, ai solutions, aviation, business process automation, smart parking solutions, integrated management systems, data analytics, clinical data analytics, information technology and services, gdpr, ai in healthcare, data protection, manufacturing, healthcare, logistics, speech recognition, compliance tools, iot device management, computer systems design and related services, workflow automation, b2b, saas solutions, smart data, ai-driven decision support, iot tracking, security management, financial services, workflow management, industry of things, finance, distribution, cloud computing, enterprise software, enterprises, computer software, information technology & services, management consulting, logistics & supply chain, computer & network security, mechanical or industrial engineering, health care, health, wellness & fitness, hospital & health care, artificial intelligence",'+49 201 959750,"Outlook, Marketo, Atlassian Cloud, Hubspot, Slack, Mobile Friendly, Apache, TYPO3, Remote, Terraform, Ansible, Docker, Kubernetes","","","","","","",69c2830115da7500018957fe,7375,54151,"DextraData GmbH is an independent software vendor and IT consulting company based in Essen, Germany. Founded in 1995, it has a team of approximately 77-87 employees and generates annual revenue of around $6-6.5 million. The company has offices in Essen, Berlin, Hamburg, and Munich. + +DextraData specializes in practical SaaS solutions for digital transformation, focusing on IT Consulting & Services, Cloud & Managed Services Consulting, and Business Consulting. Its product portfolio includes core applications like COCKPIT, GRASP, and Dex7, as well as the Dex7 IoT Platform, which offers real-time locating technology. The company also provides financial management software and integrated risk management solutions tailored for regulated industries. Through its subsidiary, DextraData Healthcare Technologies GmbH, it delivers healthcare solutions that enhance clinical and financial processes. + +DextraData serves various sectors, particularly business, aviation, and healthcare, emphasizing transparency, workflow optimization, and predictive analytics. The company is recognized for its technological expertise and has received accolades for innovation and management excellence.",1995,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69b11ac23418e0000147042e/picture,"","","","","","","","","" +ENLYZE GmbH,ENLYZE,Cold,"",15,information technology & services,jan@pandaloop.de,http://www.enlyze.com,http://www.linkedin.com/company/enlyze,"","",6A Heliosstrasse,Cologne,North Rhine-Westphalia,Germany,50825,"6A Heliosstrasse, Cologne, North Rhine-Westphalia, Germany, 50825","praediktive wartung, iot, machine data, datadriven analytics, data science, machine learning, industrie 40, digitalisierung, predictive maintenance, data quality, kuenstliche intelligenz, produktionssysteme, iiot, managed services, it services & it consulting, iiot infrastructure, data standardization, operational efficiency, data visualization with grafana and power bi, industrial machinery manufacturing, process data harmonization, data harmonization, data enrichment, data standardization for manufacturing, real-time process monitoring, distribution, data management systems, data access control, data-driven production, data connectors, cloud data warehouse, edge device for real-time data, data privacy, data integration in heterogeneous systems, data scalability, data-driven decision making, use case deployment, custom kpi development, process data modeling, data visualization, data integration, edge device deployment, data platform extension, ai integration for manufacturing, data security, data collection sensors, power bi integration, digital twin, data platform for continuous improvement, transportation & logistics, data collection from legacy systems, data platform for industry 4.0, real-time data access, data management, data synchronization with legacy systems, data security in manufacturing, digital twin creation, data processing, data security protocols, manufacturing, data pipeline, ai-ready manufacturing data, data analysis software, data synchronization, data integration with erp and mes, data modeling, data visualization platforms, data security management, data platform for scalable manufacturing, edge computing, grafana dashboards, data security measures, manufacturing data platform, oee management, data analytics, data storage solutions, automated data analysis, predictive maintenance data, consulting, data collection, edge data distribution, data modeling for manufacturing, data collection automation, data collection from sensors and plcs, data visualization tools, data privacy in industrial environments, data automation tools, api integration, manufacturing intelligence, energy & utilities, manufacturing analytics, b2b, data platform for multi-site production, data privacy compliance, data analysis tools, data analysis for quality control, automated kpi calculation, process data contextualization, process traceability, production monitoring, data analysis for process optimization, data modeling for digital twins, data platform customization, data automation, services, data integration apis, process optimization, transportation_logistics, energy_utilities, artificial intelligence, information technology & services, enterprise software, enterprises, computer software, computer & network security, mechanical or industrial engineering",'+49 162 9598487,"Gmail, Google Apps, Microsoft Office 365, Zendesk, Amazon AWS, Cloudflare DNS, Outlook, CloudFlare Hosting, Vercel, React Redux, Hubspot, Slack, Facebook Custom Audiences, Google Tag Manager, DoubleClick Conversion, Facebook Widget, DoubleClick, Intercom, Google Dynamic Remarketing, Mobile Friendly, Linkedin Marketing Solutions, Multilingual, Facebook Login (Connect), Stripe, IoT, Android, Node.js, Remote",2420000,Seed,0,2022-06-01,"","",69c2830115da750001895800,3556,33324,"ENLYZE GmbH is a technology company based in Germany, founded in 2018. It specializes in a hardware and software platform designed to extract, process, and analyze machine and production data. This platform aims to optimize manufacturing quality, profitability, and efficiency for industrial clients. Headquartered in Aachen, ENLYZE operates in the industrial IoT and manufacturing analytics sector, employing around 29 people and generating an estimated annual revenue of $7.2 million. + +The company offers an end-to-end Manufacturing Data Platform as a SaaS solution, which includes data connectivity and integration, cloud-based data processing, and proprietary analytics powered by AI. Key features include a patented FLUX current sensor for non-invasive power measurement, real-time dashboards for visibility, and preconfigured use cases that drive productivity gains. ENLYZE focuses on enabling predictive maintenance and quality, reducing scrap, and enhancing machine utilization, all while ensuring a user-friendly experience for clients in continuous manufacturing environments.",2018,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/673485f5f347a8000146ef0e/picture,"","","","","","","","","" +Transact GmbH,Transact,Cold,"",15,information technology & services,jan@pandaloop.de,http://www.transact.de,http://www.linkedin.com/company/transacthamburg,"","",1 Kleine Reichenstrasse,Hamburg,Hamburg,Germany,20457,"1 Kleine Reichenstrasse, Hamburg, Hamburg, Germany, 20457","qlikview extension, qlik sense, datenanalyse mit kis daten, medizincontrolling, datenanalyse mit sap daten, prozesscontrolling im gesundheitswesen, digitalisierung, datenanalyse, qlikview, business intelligence, finanzcontrolling im gesundheitswesen, business intelligence platforms, data automation, computer systems design and related services, data governance, healthcare performance metrics, software development, hospital information systems, project management, data visualization, cloud bi, research analytics, reporting solutions, operational efficiency, medical data science, quality reporting, digital transformation, on-premise bi, data analysis, op process monitoring, data management, healthcare it, bi solutions, b2b, data integration, healthcare analytics, data connectors, data integration in hospitals, hospital management reports, services, patient data analysis, healthcare software, data sourcing, consulting, data security, data quality, medical research tools, clinical decision support, clinical workflow optimization, qlik partner, drg analysis, medical research data, clinical data analysis, managed services, automated reporting, data-driven decision making, connector development, data extraction, data analytics, healthcare, analytics, information technology & services, productivity, enterprise software, enterprises, computer software, computer & network security, health care, health, wellness & fitness, hospital & health care",'+49 40 822123800,"Outlook, Vimeo, Mobile Friendly, Apache, Ubuntu, Qlik Sense, AI","","","","","","",69c2830115da750001895805,7375,54151,"Gegründet 1994 - hat sich unser Unternehmen auf die Entwicklung, das Design und die Implementierung wegweisender Softwarelösungen im Gesundheitswesen spezialisiert. + +Wir entwickeln und implementieren Software zur Unterstützung administrativer Prozesse und bieten darüber hinaus individuelle Beratungs- und Integrationsleistungen an. Die Grundlage fast aller unserer Arbeiten bietet die universelle BI-Plattform QlikView. + +Gerade im Bereich Healthcare bieten wir mit unserem umfassenden Know-How ein breites Spektrum an fertigen Controlling-Lösungen für alle Bereiche des Krankenhauses. Die Expertise aus zahllosen QlikView-Projekten setzen wir auch in vielen Bereichen außerhalb des Gesundheitswesens um. + +Unser absoluter Anspruch ist es, unseren Kunden die auf ihre Umgebung und Business Prozesse angepasste optimale Lösung zu liefern. Eine sehr enge Bindung zwischen uns und unseren Kunden und Qualitätssicherung haben stets allerhöchste Priorität in der Transact-Unternehmensstrategie.",1994,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/671476ba475e690001ce2998/picture,"","","","","","","","","" +Pexon Consulting GmbH,Pexon Consulting,Cold,"",56,information technology & services,jan@pandaloop.de,http://www.pexon-consulting.de,http://www.linkedin.com/company/pexon,"","",42A Suedliche Muenchner Strasse,Gruenwald,Bavaria,Germany,82031,"42A Suedliche Muenchner Strasse, Gruenwald, Bavaria, Germany, 82031","python, synapse, kuenstliche intelligenz, google cloud, terraform, multi cloud, fullstack, java, snowflake, big query, redshift, aws, azure, kubernetes, devops, migrationen, data, cicd, modernisierung von applikationen, hybrid cloud, it services & it consulting, containerization, consulting, ai in manufacturing, regulatory compliance, machine learning, cloud infrastructure, information technology and services, artificial intelligence, cloud native development, cloud security, cloud optimization, ai in healthcare, data analytics, data plattformen, private cloud, cloud migration, computer systems design and related services, multi-cloud management, infrastructure as code, data lakes, data security, data integration, b2b, künstliche intelligenz, ai chatbots dsgvo, ai projects, data warehouse, data & ai, software engineering, generative ai, data engineering, cloud strategy, software development, cloud services, kubernetes security, private ai infrastruktur, data governance, services, dsgvo-konforme ki-lösungen, sicherheitskonforme cloud-lösungen, cloud computing, esg reporting cloud, data & ai whitepapers, healthcare, finance, education, manufacturing, energy & utilities, information technology & services, enterprise software, enterprises, computer software, internet infrastructure, internet, computer & network security, health care, health, wellness & fitness, hospital & health care, financial services, mechanical or industrial engineering",'+49 69 80884991,"Cloudflare DNS, Gmail, Google Apps, Microsoft Office 365, Google Cloud Hosting, Hubspot, Slack, Google Workspace, Python, AWS SDK for JavaScript, AWS Trusted Advisor, Microsoft Azure Monitor, Google Cloud, Docker, Kubernetes, Amazon Web Services (AWS), Microsoft Azure","","","","","","",69c2830115da750001895810,7375,54151,"Pexon Consulting GmbH is a German IT consulting firm based in Munich, with an additional office in Berlin. Founded in 2019 by Phillip Pham and Paul Niebler, the company specializes in cloud infrastructure and artificial intelligence solutions aimed at enterprise digital transformation. Pexon has successfully completed over 100 projects across various sectors, focusing on delivering scalable and compliant infrastructure solutions. + +The company offers a range of services in three main areas: Cloud Infrastructure, Smart Applications, and AI & Data Infrastructure. Their expertise includes cloud assessment and migration, cloud-native application development, and AI-driven process optimization. Pexon supports public cloud environments, primarily using Azure and AWS, while also catering to private and hybrid cloud scenarios for clients in regulated industries. They serve diverse sectors, including banking, energy, healthcare, manufacturing, and logistics, guiding clients through all project phases with a practical, industry-agnostic approach.",2019,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69a4bbb28f14f70001c04b2e/picture,"","","","","","","","","" +29FORWARD,29FORWARD,Cold,"",47,information technology & services,jan@pandaloop.de,http://www.29forward.com,http://www.linkedin.com/company/29forward,"","","",Ismaning,Bavaria,Germany,"","Ismaning, Bavaria, Germany","sas, testmanagement, business intelligence, business analyse, tibco spotfire, sap, data science amp statistics, data vault, cloud architecture, microsoft azure, microsoft fabric, data management, data warehouse, analytics, projektmanagement, quality assurance, data science statistics, powerbi, data governance, power bi, azure data platform, computer systems design and related services, services, information technology and services, data security, data quality, data architecture, advanced analytics, process optimization, machine learning, retail, hybrid data solutions, cloud solutions, data science, data visualization, b2b, data analytics and business intelligence, managed services, project management, machine learning & ai, consulting, predictive analytics, artificial intelligence, information technology & services, computer & network security, cloud computing, enterprise software, enterprises, computer software, productivity",'+49 89 206021270,"Outlook, Cloudflare DNS, Microsoft Office 365, CloudFlare Hosting, GoDaddy Hosting, Slack, Mobile Friendly, Vimeo, WordPress.org, Adobe Media Optimizer, Cedexis Radar, Apache, Google Font API, Woo Commerce, Webex, Remote","","","","","","",69c2830115da750001895813,7374,54151,"29FORWARD is a Germany-based company founded in 2013, specializing in data management, advanced analytics, business intelligence (BI), and consulting services. The company supports organizations in making data-driven decisions across various industries, including banking, insurance, retail, public services, finance, and healthcare. Headquartered in Munich, Bavaria, 29FORWARD also has a presence in London, UK, and operates internationally with a team of 25-44 employees. + +The company offers a range of services that cover the entire data lifecycle. This includes data architecture and management, advanced analytics and AI, business intelligence and visualization, as well as project and operational support. 29FORWARD emphasizes tailored solutions that address the specific needs and challenges of its clients, fostering long-term partnerships through collaboration and expertise in data analysis and implementation.",2013,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69a813f043773b0001ff02ba/picture,"","","","","","","","","" +MARQ4 Automation,MARQ4 Automation,Cold,"",29,machinery,jan@pandaloop.de,http://www.marq4automation.com,http://www.linkedin.com/company/marq4-automation,"","",16 Schlossstrasse,Rietheim-Weilheim,Baden-Wuerttemberg,Germany,78604,"16 Schlossstrasse, Rietheim-Weilheim, Baden-Wuerttemberg, Germany, 78604","automation & pruefmittel, automation machinery manufacturing, ki-basierte partikelprüfung, industry 4.0, medical devices, electronics, automatisierung, montageanlagen, qualitätskontrolle, transportation & logistics, machine learning, produktionsoptimierung, traceability, maßgeschneiderte lösungen, automobil-controller-tests, fehlererkennung, inline-prüfung, compliance, medizintechnik-prüfungen, montageautomation, sondermaschinen, hightech-prüfmittel, end-of-line-test, automotive, industrie 4.0, automatisierte sortierung, cyber security, robotics, risk management, manufacturing, prozessautomation, dynamic light system, inline-inspektion, automatisierte codierung, ki-technologie, industrial machinery manufacturing, ki-gestützte systeme, automatisierungstechnologie, automatisierte fertigung, b2b, automation, echtzeitüberwachung, prüfsysteme, hochvolt-systeme, testing, distribution, batteriemanagement-systeme, roboterintegration, micro-ohm-messung, industrieautomation, qualitätssicherung, sondermaschinenbau, prüftechnik, food industry, services, hochpräzise kraft-weg-messung, automatisierte datenanalyse, predictive maintenance, flexible automatisierung, industrie 4.0 integration, lebensmittelverpackungsautomation, healthcare, transportation_logistics, hospital & health care, computer hardware, hardware, artificial intelligence, information technology & services, computer & network security, mechanical or industrial engineering, health care, health, wellness & fitness",'+49 7424 992595,"Microsoft Office 365, Hubspot, Apache, Google Tag Manager, Mobile Friendly, WordPress.org, AI","","","","","","",69c2830115da750001895814,3599,33324,"MARQ4 Automation GmbH, a subsidiary of the Marquardt Group, specializes in developing and manufacturing highly automated assembly and testing systems for industrial production. Established in 2021 in Rietheim-Weilheim, Germany, the company employs around 60 engineers, technicians, and designers. It aims to provide flexible, customer-focused solutions in the automation sector. + +The company offers customized assembly systems and test equipment technology, including automated assembly systems for mass production, testing technology for quality assurance, and complete integrated systems that combine both automation and testing capabilities. MARQ4 Automation serves various industries, including automotive, electronics, medical technology, and electromobility, with a focus on innovative solutions like battery management systems for electric vehicles. + +Operating globally, MARQ4 Automation markets its products as ""made in Germany"" and leverages the Marquardt Group's international network to reach customers across Europe, North America, Asia, and North Africa. The company prides itself on providing complete solutions from a single source, emphasizing strong customer relationships and efficient communication.",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6864ed650923370001b3f1f4/picture,"","","","","","","","","" +EEP Elektro-Elektronik Pranjic GmbH,EEP Elektro-Elektronik Pranjic,Cold,"",14,machinery,jan@pandaloop.de,http://www.eep.de,http://www.linkedin.com/company/eep-elektro-elektronik-pranjic-gmbh,"","",21 Am Luftschacht,Gelsenkirchen,North Rhine-Westphalia,Germany,45886,"21 Am Luftschacht, Gelsenkirchen, North Rhine-Westphalia, Germany, 45886","automation machinery manufacturing, steuerungstechnik, ortserkennungssysteme für bergbau, vollautomatisierte steuerung, sicherheitszonenmanagement im bergbau, sicherheitszonen, bergbau, elektrohydraulische steuerung, hydraulik, schaltanlagen, services, 3d visualisierung, scada, fernsteuerung, manufacturing, minevis überwachungssystem, explosionsgeschützte steuerungssysteme, iec61131, mining equipment, construction machinery manufacturing, prozessvisualisierung, mining, sensorik, datenarchivierung, automatisierte bergbautechnik, electronics, ortserkennung, feldbussysteme, kundenindividuelle lösungen, 3d-visualisierung im bergbau, modulare steuerungssysteme, b2b, visualisierung, fernbedienung mit ortserkennung, vorausschauende wartungssysteme, automation, automatisierung, datenverarbeitung, datenübertragungssysteme, iot-integration, bergbautechnik, elektrohydraulische steuerungen für bergbau, electrical equipment, datenkommunikation, industrieautomation, automatisierte schachtsteuerung, sicherheitssteuerung, industrial automation, explosionsgefährdete bereiche, sps steuerung, pra_matic steuerungssystem, mechanical or industrial engineering, computer hardware, hardware",'+49 20 91489770,"Microsoft Office 365, Apache, Mobile Friendly","",Other,0,2022-03-01,"","",69c2830115da750001895802,3585,33312,EEP Elektro-Elektronik Pranjic GmbH,1989,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6743ba5685bc3400017afbb2/picture,"","","","","","","","","" +LAKE FUSION Technologies GmbH,LAKE FUSION,Cold,"",31,information technology & services,jan@pandaloop.de,http://www.lf-t.net,http://www.linkedin.com/company/lft-gmbh,"","",15 Schiessstattweg,Markdorf,Baden-Wuerttemberg,Germany,88677,"15 Schiessstattweg, Markdorf, Baden-Wuerttemberg, Germany, 88677","radar, safety, objektbasierte datenfusionssoftware, situational awareness, signalverarbeitung lidar, kamera, sensor und datenfusion, algorithmenentwicklung, processing software, autonomes fahren, verfahrensentwicklung, lidar, umfeldmodelle, software development, real-time data visualization, lidar perception for volumetric security, environmental recognition, volumetric security, lidar perception for security, sensor data recording, lidar perception certification, rule-based data fusion, georeferenced sensor data, sensor fusion algorithms, environment perception, lidar perception software, sensor fusion software, lidar perception for military, sensor data quality, adas safety standards, security, b2b, lidar perception for aviation, autonomous driving safety, computer systems design and related services, military, sensor data fusion, collision avoidance, lidar data recording, safety standards iso 26262, automotive sensor systems, sensor calibration, lidar data processing, lidar perception modules, sensor data fusion chains, rule-based fusion methods, airborne, lidar perception in complex environments, lidar perception for drones, safety-critical software, autonomous vehicle certification, lidar perception for vessel monitoring, autonomous vehicle safety, automotive, vessel services, asil d certification, lidar perception in challenging weather, automotive sensor testing, lidar perception algorithms, adas safety, level 4 autonomous vehicles, artificial intelligence, lidar perception, sensor data synchronization, drones, services, transportation & logistics, information technology & services, aviation & aerospace",'+49 171 4762058,"Outlook, Microsoft Office 365, WordPress.org, Mobile Friendly, YouTube, Apache","",Venture (Round not Specified),0,2024-06-01,"","",69c2830115da750001895803,3812,54151,"LAKE FUSION Technologies GmbH (LFT) is a German deep-tech company based in Markdorf, founded in 2018 by former Airbus engineers. The company specializes in LiDAR technology, safety-critical software, rule-based algorithms, and sensor data fusion for highly automated systems across automotive, airborne, and security sectors. LFT is recognized as a leading supplier in environmental safeguarding for automated driving, applying aviation safety standards to ground-based automation. + +LFT develops a range of advanced products, including deterministic LiDAR algorithms and safety-relevant sensor data fusion systems. Their key offerings include the ASPP TIGEREYE® for artifact filtering and environment detection, ADFS MENTISFUSION® for multimodal sensor fusion, and a Safety Kit for L4 certification. The company also provides environment perception systems and expert services. With a strong focus on civilian signal processing, LFT has established a significant lead in LiDAR intelligence and safety assurance, catering to various market segments such as automotive, airborne, and security applications.",2018,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68776ce03932ef0001bcd651/picture,"","","","","","","","","" +BRESSNER Technology GmbH,BRESSNER Technology,Cold,"",35,computer hardware,jan@pandaloop.de,http://www.bressner.de,http://www.linkedin.com/company/bressner-technology,https://facebook.com/pages/Bressner-Technology-GmbH/405036466352981,https://twitter.com/BRESSNER_Tech,51 Industriestrasse,Groebenzell,Bavaria,Germany,82194,"51 Industriestrasse, Groebenzell, Bavaria, Germany, 82194","gpu computer, panel pcs touch displays, medical solutions, software & hardware solutions, microsoft skype for business addons, embedded systems, mainboards embedded boards, iiothardware, industrial tablets & handhelds, pci express expansions, mobile computer, 19 industrial computers, industrial flash, connectivty devices, gpu server, gpu expansions, computer hardware manufacturing, rugged computing, industrial iot, consulting, e-commerce, services, it-infrastruktur, robuste systeme, edge ki computer, liquid cooling systeme, hpc-lösungen, industrielle hardware-lösungen, ip69k-zertifizierte displays, industrielle pcs, b2b, systemintegration, medizinisch-zertifizierte panel pcs, gpu-erweiterungen, defense & security, medical devices, medizinische hardware, manufacturing, computer and peripheral equipment manufacturing, embedded pcs, server-kühlung, healthcare & medical devices, gpu-server, information technology, ki-lösungen, lokale server-container, pcie-erweiterungen, display-lösungen, rugged ki-server, autonome fahrzeuge ki-systeme, industrial automation, healthcare, defense, industrial, medical, iot, ai, rugged, hpc, embedded hardware & software, hardware, consumer internet, consumers, internet, information technology & services, hospital & health care, mechanical or industrial engineering, health care, health, wellness & fitness",'+49 81 42472840,"Outlook, Microsoft Office 365, Hubspot, Vimeo, Apache, YouTube, WordPress.org, Woo Commerce, Google Tag Manager, reCAPTCHA, Linkedin Marketing Solutions, Mobile Friendly, Android, Visio, Salesforce CRM Analytics","","","","",15200000,"",69c2830115da750001895806,3571,33411,"BRESSNER Technology GmbH is a German system integrator and value-added distributor based in Gröbenzell, Bavaria. With over 30 years of experience, the company specializes in industrial hardware solutions, embedded computing systems, and high-performance computing products. BRESSNER operates globally, with branches in the UK, USA, and Czech Republic, and serves over 700 customers across the EMEA region. As a subsidiary of One Stop Systems Inc. since 2018, BRESSNER continues to function independently. + +The company offers a wide range of products, including rugged industrial PCs, panel PCs, and mobile computing devices like the Scorpion rugged tablets. BRESSNER also provides high-performance computing solutions, industrial embedded systems, and industrial IoT connectivity solutions. Their services include OEM manufacturing, software development, and comprehensive project consultation. BRESSNER is ISO 9001:2015 certified and maintains an ESD-protected production facility to meet the needs of various industries, including healthcare, defense, automotive, and logistics.",1994,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69ade8386138a60001347aea/picture,"","","","","","","","","" +inhaus GmbH,inhaus,Cold,"",15,information technology & services,jan@pandaloop.de,http://www.inhaus-gmbh.de,http://www.linkedin.com/company/inhaus-gmbh,https://www.facebook.com/InhausGmbh,https://twitter.com/gmbhinhaus,70 Grabenstrasse,Duisburg,North Rhine-Westphalia,Germany,47057,"70 Grabenstrasse, Duisburg, North Rhine-Westphalia, Germany, 47057","aal & smart home, it services & it consulting, innovative gebäudetechnik, assistive technology, inhouse gmbh, langjährige erfahrung, qualitätsanspruch, integrierte smart home technik, innovative assistenzlösungen, intelligente raum- und gebäudesysteme, komponenten namhafter hersteller, nachhaltigkeit, assistenzlösungen, hybride assistenzsysteme, machine learning, designintegration, sicherheits- und komfortautomatisierung, integrierte gebäudetechnik, medical equipment and supplies manufacturing, integrierte softwarelösungen, situationserkennung, intuitive bedienung ohne bedienungsanleitung, smart home lösungen, healthcare technology, pflegeimmobilien, automatisierte tendenz- und verlaufskurven, nutzerorientierte bedienung, autonomieförderung, kooperation mit fraunhofer inhaus-zentrum, pflege- und betreuungssysteme, funkbasierte assistenz ohne kameras, b2b, gebäudesysteme, individuelle wohnambiente, projekterfahrung mit über 1.400 wohneinheiten, machine learning in pflege, automatisierung, hybride assistenzlösungen für bestandsimmobilien, healthcare, technische assistenzlösungen, automatisierte situationserkennung, nachrüstungslösungen, einfache nachrüstung, hybride systeme, integrierte gebäudesysteme, energieeffizienz, lebensqualität im alter, projektplanung, pflege- und sozialimmobilien, projektberatung und planung, information technology & services, individuelle anpassung an wohnumfeld, qualitätsentwicklung, zukunftssichere wohnkonzepte, assistenztechnik für pflege, construction, design und funktionalität, smart home, sicherheits- und komforttechnik, services, pflege- und betreuungstechnik, einsatz in betreutem wohnen und pflegeheimen, dezente technik im architektonischen gesamtkonzept, assistenzsysteme für demenzwohngemeinschaften, funkbasierte assistenzsysteme, moderne wohnkonzepte, benutzerfreundliche steuerung, sicherheitslösungen, beratung und anforderungsanalyse, dezente technikintegration, assistenzsysteme, artificial intelligence, health care, health, wellness & fitness, hospital & health care, internet of things, consumers","","Outlook, Microsoft Office 365, Apache, WordPress.org, Mobile Friendly","","","","","","",69c2830115da750001895808,8734,33911,Die Inhaus GmbH bietet Smart Home Lösungen für ein individuelles Wohnambiente sowie technische Assistenzlösungen (AAL) für Pflege- und Sozialimmobilien.,2003,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6838244bc0b42600011f7e89/picture,"","","","","","","","","" +aescuvest,aescuvest,Cold,"",15,venture capital & private equity,jan@pandaloop.de,http://www.aescuvest.vc,http://www.linkedin.com/company/aescuvest-gmbh,https://facebook.com/aescuvest,https://twitter.com/aescuvest,328 Hanauer Landstrasse,Frankfurt,Hesse,Germany,60314,"328 Hanauer Landstrasse, Frankfurt, Hesse, Germany, 60314","risikokapital, private equity, venture capital, life science, risk capital, equity crowdfunding, investment, fundraising, 10xhealth, business angel, crowdinvesting, digital health, startup, healthcare, biotechnology, crowdfunding, venture capital & private equity principals, b2b, investment committee, financial services, startup investment, ai-driven health solutions, healthcare startups, healthtech startups europe, remote patient monitoring, healthcare portfolio, healthcare technology-driven investors, healthcare funding rounds, healthcare solutions, healthcare technology, investment guidance, medical diagnostics, healthcare diagnostics, ai in healthcare, healthtech growth, personalized medicine, healthcare innovation, industry experts, remote monitoring, middle east healthtech, healthcare investment network, investment structuring, healthtech investment, healthtech middle east, healthtech partnerships, securities and commodity contracts intermediation and brokerage, european healthtech, healthcare venture boutique, healthcare technology evaluation, medical technology, remote health monitoring, healthcare innovation ecosystem, healthtech, ai healthcare, diagnostics, healthcare startups sourcing, portfolio management, finance, fund-raising, health, wellness & fitness, information technology & services, health care, hospital & health care, social fundraising, social media, consumer internet, consumers, internet",'+49 69 254741644,"Microsoft Office 365, Amazon AWS, Outlook, MailChimp SPF, Zendesk, Postmark, Zoho SalesIQ, Webflow, Mobile Friendly, reCAPTCHA, Remote, AI, Android",5780000,Venture (Round not Specified),880000,2020-11-01,256000,"",69c2830115da7500018957ff,6799,5231,"Aescuvest is a venture capital boutique and equity crowdfunding platform based in Frankfurt, Germany, established in 2014. The company specializes in investing in healthtech startups and small to medium-sized enterprises (SMEs) across Europe. It serves as a digital marketplace that connects investors, including Business Angels, High-Net-Worth Individuals, Family Offices, and Corporate Investors, with early-stage healthcare companies. Aescuvest focuses on Series A and Series B investments, emphasizing scalable and innovative healthcare solutions. + +The company offers a range of services, including thorough pre-screening and due diligence conducted by an experienced Investment Committee. Aescuvest provides ongoing support for both investors and portfolio companies, assisting with business development and market access. It also manages legal documentation and fund transfers, ensuring a smooth investment process. Aescuvest targets healthtech innovations, including medical devices, digital health solutions, and biotechnology, addressing various medical challenges. Since its inception, Aescuvest has facilitated funding for at least 17 companies, showcasing its commitment to advancing healthcare technology.",2014,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68214a1ce7a60c00017f5bef/picture,"","","","","","","","","" +PrehApp GmbH,PrehApp,Cold,"",24,medical devices,jan@pandaloop.de,http://www.prehapp.de,http://www.linkedin.com/company/prehapp-gmbh,"","",7 Am Weichselgarten,Erlangen,Bavaria,Germany,91058,"7 Am Weichselgarten, Erlangen, Bavaria, Germany, 91058","digital health, diga fasttrack, digitale gesundheitsanwendungen, medizinische software, datenschutz im gesundheitswesen, digitale versorgung, evidenzbasierte medizin, medizinproduktesoftware, iso 13485, regulatory affairs, softwareentwicklung im gesundheitswesen, patientenzentrierte loesungen, medtech, healthcare it, pharma medtech partnerschaften, gesundheitsinnovation, medical equipment manufacturing, datenhosting in der eu, klinische studienorganisation, sicheres software-lifecycle-management, medical devices, medizinische leitlinien, ki-gestützte therapie, künstliche intelligenz in medizinprodukten, diga, services, regulatorik, risikomanagement, d2c, therapie-apps für spezifische krankheitsbilder, medizinsoftware, webbasierte medizinsoftware, datenschutz, consulting, medizinische software für diga, medizinprodukt, research and development in the physical, engineering, and life sciences, klinische studien unterstützung, healthcare analytics, patientenzentriert, innovative digitale gesundheitstechnologien, iec 62304, progressive web apps, data security, usability in healthcare, content-erstellung, digitale medizinprodukte, therapie-apps, software lifecycle management, regulatory compliance, information technology, softwareentwicklung, digitale therapien, healthcare software, post market surveillance, software development, interoperabilität in healthcare, mdr (medical device regulation), datenschutz in der medizin, patientenorientierte inhalte, healthcare, ce-zertifizierung, patientenaufklärung digital, b2b, softwarebetrieb, healthcare technology, eu-hosting, klinische studien, legal, health, wellness & fitness, information technology & services, hospital & health care, computer & network security, health care",'+49 91 31691420,"Cloudflare DNS, Microsoft Office 365, CloudFlare Hosting, Mobile Friendly, Google Tag Manager, WordPress.org, AI","","","","","","",69c2830115da750001895801,8731,54171,"Wir entwickeln digitale Gesundheitsanwendungen gemeinsam mit unseren Partnern aus Industrie und Wissenschaft – von der Idee bis zur Anwendung in der Versorgung. + +Als interdisziplinäres Team verbinden wir medizinische, technische und regulatorische Expertise und begleiten unsere Partner zuverlässig durch den gesamten DiGA-Prozess. Unser Anspruch ist es, digitale Gesundheitslösungen zu schaffen, die wirksam sind, den regulatorischen Anforderungen entsprechen und im Versorgungsalltag bestehen. + +Ein besonderer Schwerpunkt unserer Arbeit liegt auf Digitalen Gesundheitsanwendungen (DiGA), die wir gemeinsam mit unseren Partnern erfolgreich als ""Apps auf Rezept"" in den Markt bringen.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68c50e8bf0a014000189eb23/picture,"","","","","","","","","" +Bitac GmbH,Bitac,Cold,"",21,information technology & services,jan@pandaloop.de,http://www.bitac-consulting.de,http://www.linkedin.com/company/bitac-gmbh,"","","",Wegberg,North Rhine-Westphalia,Germany,41844,"Wegberg, North Rhine-Westphalia, Germany, 41844","azure sql, ssis, powerbi embedded, ssas, sqlserver, dax, data vault, ssrs, big data, powerbi, azure data analytics, fabric, consulting, it services & it consulting, data management, data strategy consulting, cloud data management, data migration, data integration, microsoft fabric, power apps, bi consulting, data compliance, power bi custom visuals, distribution, iot data integration, manufacturing, b2b, data transformation, power apps custom development, data warehousing, power bi, data strategy, cloud data security, business intelligence, predictive analytics, management consulting services, data analytics, business process optimization, digital transformation, data reporting, data privacy management, data governance frameworks, data security standards, data integration with azure, data platform, data lifecycle management, data quality management, data visualization tools, data quality assurance, power bi training, power automate, azure data factory, real-time data analysis, data security, data governance, data visualization, cloud data solutions, data platform migration, iot integration, industrie 4.0, data warehouse design, construction, data analysis, data security compliance, industry 4.0 data analytics, data governance strategy, data quality, power platform training, real-time dashboarding, services, data lifecycle optimization, enterprise software, enterprises, computer software, information technology & services, mechanical or industrial engineering, analytics, computer & network security",'+49 2432 963880,"Outlook, Microsoft Office 365, Vimeo, WordPress.org, Google Font API, Mobile Friendly, DoubleClick Conversion, Apache, DoubleClick, Google Tag Manager, reCAPTCHA, UserLike, Google Dynamic Remarketing, Remote, Microsoft SQL Server Reporting Services, Netlify, Microsoft Fabric, Power BI Documenter, SQL, Microsoft Power Platform, Microsoft Power Apps, Microsoft Power Automate, PowerBI Tiles, GoToAssist (FASTchat), Veracode Static Analysis (SAST), Nevron Vision for SSRS","","","","","","",69c2830115da750001895804,7375,54161,"Bitac GmbH is a consulting firm based in Wegberg, Germany, established in 2014. The company specializes in business intelligence and corporate management services. It operates under the company identification code DE296524062 and is led by Tobias Fohr and a team of professionals. + +Bitac GmbH focuses on providing consulting and development services tailored to enhance business intelligence and corporate management practices. The firm has a notable presence, with a reported number of branches. Financial information, including total assets and revenue, is available through business registries.",2014,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e5ed288a08e100015c9b4c/picture,"","","","","","","","","" +Zentrum für Telematik e.V.,Zentrum für Telematik e.V,Cold,"",44,research,jan@pandaloop.de,http://www.telematik-zentrum.de,http://www.linkedin.com/company/telematik-zentrum,"","",5 Magdalene-Schoch-Strasse,Wuerzburg,Bavaria,Germany,97074,"5 Magdalene-Schoch-Strasse, Wuerzburg, Bavaria, Germany, 97074","vleo, satellite formations, mobile systems, attitude control, industrial automation, cubesats, research services, netsat-formationskontrolle, fernwartung, research and development in the physical, engineering, and life sciences, consulting, automation, telemedicine, autonome navigation, automatisierung, systemintegration, sensorik, satellitenformationen, internet of things, mobile systeme, b2b, system integration, infrastruktur für raumfahrt, robotics, telekommunikation, deals3d 3d-denkmalschutz, cloud computing, machine learning, services, energy management, space factory 4.0, yete2/siw-systeme, in-orbit-produktion, datenfusion, kleinsatellitenbus, vamos! unterwasserroboter, data security, autodok drohneneinsatz, predictive maintenance, telematik, raumfahrt, lolasat-low-latency-kommunikation, kleinsatelliten, research and development, schwarmtechnik in der raumfahrt, telecommunications, forschung und entwicklung, fernsteuerung, aerospace, quantenverschlüsselung, non-profit, manufacturing, transportation & logistics, mechanical or industrial engineering, health care information technology, health care, health, wellness & fitness, hospital & health care, information technology & services, enterprise software, enterprises, computer software, artificial intelligence, oil & energy, computer & network security, research & development, nonprofit organization management",'+49 931 61563310,"Apache, Mobile Friendly, Bootstrap Framework, AWS SDK for JavaScript, KiCad EDA, Eaglestats, MATLAB","","","","","","",69c2830115da75000189580e,3812,54171,"Welcome to the Zentrum für Telematik (Center for Telematics)! Since 2007 we have been developing practical, interdisciplinary solutions from the following areas Telecommunication, Automatisation and Informatics. + +The enormous progress in telecommunications and information processing technologies enables the provision of increasingly sophisticated services over long distances. The combination of these disciplines with control and automation technology in telematics opens up efficient possibilities to collect data from a distance and to react accordingly taking into account the distances involved.",2007,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66d4a713bed7d700013c645f/picture,"","","","","","","","","" +SAMA PARTNERS Business Solutions GmbH,SAMA PARTNERS Business Solutions,Cold,"",43,information technology & services,jan@pandaloop.de,http://www.samapartners.com,http://www.linkedin.com/company/samapartners,"","",3 Hermsheimer Strasse,Mannheim,Baden-Wuerttemberg,Germany,68163,"3 Hermsheimer Strasse, Mannheim, Baden-Wuerttemberg, Germany, 68163","business continuty management, cybersecurity, data analytics, vulnerability scans, socasaservice, rightshoring, penetration tests, informationssicherheit, security by design, internet of things, software developement, it strategy, cisoasaservice, devops, artificial intelligence, application lifecycle, compliance, software engineering, legacy systems, cyber threat intelligence, offshoring, isms, digitalization, it security, audits, security operations center, digital transformation, penetration testing, security operations centre, cloud security, threat detection, vulnerability management, security incident response, cybersecurity conference, cybersecurity consulting, security consulting, security certifications, managed services, soc-as-a-service, consulting services, managed security services, threat intelligence, security automation tools, consulting, information security, industrial cybersecurity, application security, security training, information technology and services, security automation, security compliance assessments, computer systems design and related services, regulatory compliance, security governance, predictive maintenance, b2b, managed it services, government, threatbay cti platform, sector-specific socs, data protection, security governance systems, cybairsoc sector-specific soc, it transformation, ai risk strategies, post-quantum cryptography, software development, ai management systems, regional security partnerships, industrial it security, ai safety audits, security operations, services, healthcare, finance, education, legal, transportation & logistics, energy & utilities, information technology & services, computer & network security, auditing, management consulting, health care, health, wellness & fitness, hospital & health care, financial services",'+49 621 10759977,"Outlook, Slack, Bootstrap Framework, Mobile Friendly, Google Font API, WordPress.org, Apache, Siemens SIMATIC S7","","","","","","",69c2830115da7500018957fd,7375,54151,"SAMA PARTNERS Business Solutions GmbH is an independent consulting and engineering company based in Mannheim, Germany. Founded in 2010, it specializes in information security, artificial intelligence, and compliance, with additional offices in Munich and Tunis. The company employs around 80 people and is a member of the European Cyber Security Organisation (ECSO). It holds ISO/IEC 27001:2022 certification, demonstrating its commitment to security standards. + +The company offers a wide range of services, including the development of governance and management systems for information and cyber security, and operates Security Operations Centers (SOC) under the brand SOCurity®, providing 24/7 monitoring for critical infrastructure. SAMA PARTNERS also features the ThreatBay® platform for cyber threat intelligence and runs the SAMA Academy for IT security training and certification. Additionally, it is working on CybAirSOC, a specialized Security Operations Center for the aviation sector in partnership with Munich Airport. SAMA PARTNERS serves various industries, including energy, automotive, healthcare, and telecommunications.",2010,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68bf2672e930ce0001410b4b/picture,"","","","","","","","","" +SCALORS,SCALORS,Cold,"",44,information technology & services,jan@pandaloop.de,http://www.scalors.com,http://www.linkedin.com/company/scalors-gmbh,"","","",Achim,Lower Saxony,Germany,"","Achim, Lower Saxony, Germany","scrum, ai consulting, software development, agile coaching, recruiting, devops as a service, project management, ai, javascipt, process consulting, devops, java, team augmentation, cyber security, product development, ai solutions, real-time monitoring, hospitality, cybersecurity, predictive analytics, consulting, e-commerce, services, maritime, fleet management software, technology consulting, logistics, artificial intelligence, security-first engineering, user experience, inventory management, customized ai models, data analytics, secure cloud deployment, client-specific development, fleet management, enterprise software, cloud integration, healthcare technology, agile development, b2b, case management systems, ai-powered chatbots, computer systems design and related services, cloud computing, innovative platforms, software outsourcing, machine learning, remote workforce, mobile app development, large language models, regulatory compliance tools, ecommerce, scalable systems, user experience design, technology solutions, system integration, healthcare, regulatory compliance, secure platforms, software engineering, automation tools, natural language processing, custom software development, data security, industry-specific solutions, digital transformation, legal services, ai engineering, tailored software solutions, off-shore and near-shore development, legal, custom software, information technology & services, productivity, computer & network security, leisure, travel & tourism, enterprises, computer software, consumer internet, consumers, internet, management consulting, ux, health care, health, wellness & fitness, hospital & health care",'+49 42 140895870,"Outlook, Slack, Remote","","","","","","",69c2830115da750001895809,7375,54151,"Scalors is a software development company with over ten years of experience, specializing in custom software development, artificial intelligence (AI), and machine learning (ML) solutions. The company has successfully completed more than 300 projects, maintaining a 98.5% on-time and on-budget completion rate. Scalors focuses on delivering efficient, secure, and scalable solutions tailored to meet business goals. + +The company offers a range of services, including custom software development, AI and ML solutions, natural language processing, computer vision, and data science. Their dedicated teams of engineers and project managers provide clients with immediate access to expert resources for end-to-end project management. Scalors emphasizes innovation and operational optimization, ensuring high-quality delivery within budget. They create bespoke software and AI-driven tools, including custom business intelligence solutions and language models for various applications.",2014,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69abd155f5705100019abea0/picture,"","","","","","","","","" +SYSTHEMIS AG,SYSTHEMIS AG,Cold,"",26,information technology & services,jan@pandaloop.de,http://www.systhemis.de,http://www.linkedin.com/company/systhemis-ag,"","",76A Mergentheimer Strasse,Wuerzburg,Bavaria,Germany,97082,"76A Mergentheimer Strasse, Wuerzburg, Bavaria, Germany, 97082","b2b, c#, sozialversicherung plattform, healthcare platform development, data privacy, security in healthcare, schnittstellenentwicklung gesundheitswesen, software development, consulting, customer relationship management, government, rest api, healthcare digitalization, it-großprojekte im gesundheitswesen, cloud solutions, information technology & services, healthcare software, medizinische dienste software, java, cloud computing, digital health, data analytics, compliance, healthcare data security, health data exchange, angular, system integration, healthcare infrastructure, healthcare system integration, branchensoftware gesundheitswesen, sql databases, risk management, healthcare project management, datendrehscheibe gesundheitswesen, software testing, gesundheitsdaten plattform, docker, application development, it consulting, healthcare it solutions, devops, software architecture, healthtech, healthcare compliance, services, kubernetes, elektronischer datenaustausch, custom software solutions, gkv-meldungen plattform, microservices, custom software development, project management, agile development, gkv-fachverfahren, healthcare, computer systems design and related services, healthcare process optimization, crm, sales, enterprise software, enterprises, computer software, health, wellness & fitness, app development, apps, management consulting, productivity, health care, hospital & health care","","Route 53, Outlook, Microsoft Office 365, Apache, WordPress.org, Vimeo, Google Font API, Mobile Friendly, Remote, AWS SDK for JavaScript, Spring, Angular, BASE, Container Network Interface (CNI), IBM Spectrum LSF, Amazon EC2 Container Service, SkimLinks, UptimeRobot, Windows Azure Pack, SES","","","","","","",69c2830115da75000189580c,7375,54151,"Viele Mitarbeiter der SYSTHEMIS AG sind bereits seit über 15 Jahren in den Unternehmen der Thome-Gruppe tätig. Im Jahr 2009 wurde die SYSTHEMIS AG als eigenständige Gesellschaft gegründet, um Dienstleistungen zur IT-Beratung und Softwareentwicklung unter einem Dach zusammenzufassen.",2009,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66ec7a04e94fa6000103cf4e/picture,"","","","","","","","","" +gestigon GmbH,gestigon,Cold,"",25,information technology & services,jan@pandaloop.de,http://www.gestigon.com,http://www.linkedin.com/company/gestigon,https://facebook.com/GestigonGmbh,https://twitter.com/gestigon,15 Maria-Goeppert-Strasse,Luebeck,Schleswig-Holstein,Germany,23562,"15 Maria-Goeppert-Strasse, Luebeck, Schleswig-Holstein, Germany, 23562","c, software, enabling technology, body tracking, middleware, sw development, automotive, cocoon, gestic, gesture recognition, 3d, 3d sensors, natural user interfaces, gesture control, selforganizing maps, kinect pmdtec mesa creative, consumer electronics, augmented reality, wearables, hardware, information technology, software development, ai integration, mobility, gaze tracking, sensor fusion algorithms, kontextbewusste interaktion, user experience design, hochpräzise sensorik, cost reduction, edge computing, machine learning, human-machine interface, gesundheitswesen, sensor calibration, aesthetic design, virtual patient care, data modeling, datenmodellierung, health monitoring sensors, voice interaction in vehicles, human state monitoring, multimodal interaction, remote sensing, real-time data interpretation, b2b, computer vision, human pose estimation, occupant detection, navigational, measuring, electromedical, and control instruments manufacturing, ar/vr, predictive analytics, data analytics, healthcare, data interpretation, ki-gestützte wahrnehmung, product customization, touchless gesture control, ai-based behavior prediction, patents, sensorlösungen, user experience, affective computing, industry-specific solutions, radarsensoren, real-time interaction, ai consulting, perception systems, user-centered design, safety enhancement, virtual reality, automobilindustrie, sensor technology, touchless sensors, prototyping, services, robotics perception, automotive safety systems, automation, gestenerkennung, robotik, robotics, benutzerinterfaces, system integration, consulting, digitale zwillinge, sensor fusion, embedded systems, signal processing, ai data management, system design, validation design, transportation & logistics, information technology & services, consumers, consumer goods, artificial intelligence, enterprise software, enterprises, computer software, health care, health, wellness & fitness, hospital & health care, ux, mechanical or industrial engineering, embedded hardware & software",'+49 451 87929130,"Workday, Slack, Mobile Friendly, Apache, Vimeo, WordPress.org, Workday Recruit, Android, Remote",900000,Merger / Acquisition,0,2025-10-01,1280000,"",69c2830115da75000189580f,3812,33451,"Transforming Perception into Action – gestigon's remote sensing applications with cameras, radars or other touchless sensors enable a comprehensive understanding of the user's state, predicting a desired state based on the user's context and building an easy-to-use interface.",2011,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6962ddaa5e6cf600013fbf9f/picture,Valeo (valeo.com),54a1348b69702d333db85c00,"","","","","","","" +CORE,CORE,Cold,"",120,management consulting,jan@pandaloop.de,http://www.core.se,http://www.linkedin.com/company/core-transform,https://facebook.com/CORE.social/,https://twitter.com/core_se_,194 Kurfuerstendamm,Berlin,Berlin,Germany,10707,"194 Kurfuerstendamm, Berlin, Berlin, Germany, 10707","solution engineering & delivery, it strategy in financial services, it transformation management, business consulting & services, process automation, m&a support, identity management, product design, software development frameworks, innovation strategy, digital health infrastructure, advanced analytics, technology strategy, management consulting services, logistics, customer experience, cloud computing, cloud security, transformation management, modular systems, data security, regulatory frameworks in finance, cybersecurity, regulatory compliance, financial services, program management, automotive, digital ecosystems, enterprise architecture, healthcare, payment solutions, regulatory frameworks, it sourcing, project management, software development, services, product innovation, regulatory & legal compliance, m&a and divestitures, architecture & technology management, digital transformation, distributed ledgers, future-oriented technology, transformation engineers, it organization, technical standards, digital business models, machine learning, cloud saas, technology consulting, ai and automation, digital banking, b2b, data protection, identity verification, information technology and services, supply chain management, organizational development, cloud infrastructure, consulting, it modernization, finance, legal, transportation & logistics, management consulting, privacy, enterprise software, enterprises, computer software, information technology & services, computer & network security, health care, health, wellness & fitness, hospital & health care, productivity, artificial intelligence, logistics & supply chain, internet infrastructure, internet",'+49 30 26344020,"Cloudflare DNS, Sendgrid, Outlook, Microsoft Office 365, Microsoft Azure Hosting, Mobile Friendly, Remote, AI","","","","",85977000,"",69c2830115da750001895812,7375,54161,"CORE is a Nordic-based technology think tank that specializes in supporting institutions through complex technology transformations. Founded around 2010, the company combines technology expertise with strategy consulting to help organizations navigate intricate technological changes and strategic challenges. + +CORE offers technology and strategy consulting, focusing on tailor-made solutions to enhance organizational processes, particularly in treasury and working capital management. The company emphasizes values such as simplicity, dedication, efficiency, and safety in its operations, aiming to deliver high-quality service to its clients. + +CORE primarily serves institutions undergoing significant technological and strategic transformations. The company is currently updating its service offerings, reflecting its commitment to continuous improvement and adaptation in a dynamic environment.",2009,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e140226f1be20001d28039/picture,EPAM Systems (epam.com),60124d303cb70c00ca4f449a,"","","","","","","" +Ubermetrics Technologies GmbH,Ubermetrics,Cold,"",15,information technology & services,jan@pandaloop.de,http://www.ubermetrics-technologies.com,http://www.linkedin.com/company/ubermetrics-technologies-gmbh,https://www.facebook.com/UberMetrics/,https://twitter.com/ubermetrics,9 Alte Schoenhauser Strasse,Berlin,Berlin,Germany,10119,"9 Alte Schoenhauser Strasse, Berlin, Berlin, Germany, 10119","public relations, print, media monitoring, earned media, social media monitoring, business intelligence, social listening, natural language processing, text mining, medienbeobachtung, web, media intelligence, media analysis, content intelligence, radio, saas, internet, social media, news, monitoring, information discovery, digital analytics, artificial intelligence, corporate communication, technologie, technology, information & internet, consumer internet, consumers, information technology & services, analytics, computer software, media",'+49 30 57702130,"Outlook, Microsoft Office 365, IoT, AI, Remote, Epicor Prophet 21, CallMiner Eureka, Neo4j Graph Data Science, NLP, Intel",750000,Merger / Acquisition,0,2021-02-01,5900000,"",69c2830115da7500018957fc,7370,"","Ubermetrics Technologies GmbH is a Berlin-based research and development center within the UNICEPTA Group, established in 2011. The company specializes in AI-powered media monitoring, data intelligence, and analytics platforms that process public data from various online and offline sources. Its solutions support business decisions in areas such as PR, marketing, sales, strategy, and supply chain management. + +The flagship product, uberMetrics DELTA, offers a comprehensive media monitoring solution that integrates monitoring, press review, and crisis management across multiple channels. It provides real-time processing of content from a vast array of sources, delivering insights on metrics like sentiment, virality, and audience engagement. The platform emphasizes a ""do-it-yourself"" approach, ensuring high data security and customizable reporting features. Ubermetrics serves a range of leading global companies, providing data-driven insights to enhance decision-making across various business functions.",2011,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/682eb13c9a10410001de3e2f/picture,UNICEPTA (unicepta.com),54a128f969702db878d73201,"","","","","","","" +Robo-Technology GmbH,Robo-Technology,Cold,"",16,machinery,jan@pandaloop.de,http://www.robo-technology.com,http://www.linkedin.com/company/robo-technology-gmbh,"","",12 Benzstrasse,Puchheim,Bavaria,Germany,82178,"12 Benzstrasse, Puchheim, Bavaria, Germany, 82178","robotik, automation machinery manufacturing, b2b, sensorintegration, robot simulation, mechatronics, machine vision, mechatronic development, cad simulation, software development, process optimization, consulting, hochdynamische robotik, abb robotics support, research automation, 3d printing, vxworks, manufacturing, servo technology, industrieroboter für forschung, cfk-leichtbaukomponenten, spezialrobotik für raumfahrt, automation solutions, industrial machinery manufacturing, aerospace, fpga design, turnkey robot systems, automatisierte qualitätskontrolle, hardware engineering, sensors, system integration, automation, high precision robotics, safety systems, kinematic calibration, ethercat, industrial automation, prüfsysteme für cfk-bauteile, ultraschall-prüfsysteme, xilinx fpga, custom control systems, leica lasertracker kalibrierung, kollisionsschutzsysteme, fiber composite robot tools, rt-linux, sensor data processing, services, research and development, semiconductor and electronics, mathematical algorithms, siemens robotics integration, synchronisierte ultraschallprüfung, roboter-programmierung, robotics, echtzeitsysteme, automatisierte ultraschallprüfung, process development, fem analysis, baugruppenentwicklung, sicherheitszertifizierte robotersysteme, distribution, information technology & services, mechanical or industrial engineering, hardware, research & development",'+49 89 8006390,"Slack, Apache, Bootstrap Framework, Remote","","","","","","",69c2830115da750001895807,3599,33324,We automate your production processes based on your ideas and contribute the robot specific know-how. Depending on your requirements we supply development and manufacturing of the complete machine or of subsystems.,1981,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66ea89d784459f0001914971/picture,"","","","","","","","","" +G2K Group,G2K Group,Cold,"",41,information technology & services,jan@pandaloop.de,http://www.g2kgroup.com,http://www.linkedin.com/company/good-2-know,"","",31 Koenigin-Luise-Strasse,Berlin,Berlin,Germany,14195,"31 Koenigin-Luise-Strasse, Berlin, Berlin, Germany, 14195","predective analytics, maschine learning, safety security, risk management, data analytics, customer experience, internet of things, smart industry, cloud, it solutions, iot, cutting edge technology, artificial intelligence, improving situation awareness, smart retail, smart city, it services & it consulting, information technology & services","","Apache, Remote","",Merger / Acquisition,0,2023-05-01,"","",69c2830115da75000189580b,"","","G2K Group is an artificial intelligence and data management company based in Munich, Germany. Founded in 2012, it was acquired by ServiceNow in May 2023. The company focuses on creating value through data and offers a comprehensive platform that addresses enterprise challenges using AI. + +G2K's core offerings include situation awareness and risk management, data analytics, cloud solutions, artificial intelligence, and Internet of Things (IoT) technologies. Their solutions enable retailers to connect real-time data across storefronts and physical spaces, translating that data into actionable insights. G2K primarily serves the transportation and hospitality sectors, with a strong emphasis on the retail industry.",2012,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f6560a707f6b0001af2d1a/picture,ServiceNow (servicenow.com),62e988f120543100ca687c36,"","","","","","","" +N+P Informationssysteme GmbH,N+P Informationssysteme,Cold,"",140,information technology & services,jan@pandaloop.de,http://www.nupis.de,http://www.linkedin.com/company/n-p-informationssysteme-gmbh,https://www.facebook.com/nupismeerane/,"",1 An der Hohen Strasse,Meerane,Saxony,Germany,08393,"1 An der Hohen Strasse, Meerane, Saxony, Germany, 08393","fertigung, autodesk gold partner, systemintegration, plmpdm, digitale fabrik, beratung, cadcam, itentwicklung, programmierungsoftwareentwicklung, itbetrieb, erp, mes, industrie 40, konstruktion, itimplementierung, itberatung, schulungen, planung, iot, digitales gebaeude, itservices, it services & it consulting, cloud computing, softwarelösungen, smart building energiecontrolling, digitaler gebäudebetrieb, it-infrastruktur, it-projektmanagement, digitales facility management, project management, inventory management, bim-integration, digitale gebäudeverwaltung, manufacturing, digitales gebäudemanagement, b2b, information technology, computer systems design and related services, plattform für digitale services, automatisierung, prozessautomatisierung, datenmanagement, customer relationship management, energieeffizienz, it-support, digital transformation, bim-standards, software as a service, pdm, datenanalyse, plm, digitale transformation, echtzeitüberwachung, cad, bauindustrie, fertigungsindustrie, energy management, process optimization, consulting, digitaler zwilling, cam, energiecontrolling, bauplanung, digitalisierung mittelstand, cafm, digitale baustelle, automatisierte fertigung, produktdatenmanagement, smart factory, industrie 4.0, digitale bauprozesse, construction, facility management, smart building, bim, iot im bauwesen, bim im bauwesen, services, digitale zwillinge, it-service, supply chain management, information technology & services, enterprise software, enterprises, computer software, productivity, mechanical or industrial engineering, crm, sales, saas, oil & energy, logistics & supply chain",'+49 37 6440000,"Outlook, Microsoft Office 365, Hubspot, Google Tag Manager, Mobile Friendly, GoToWebinar, Gem, Wider Planet, Homestead, Matrix42 MyWorkspace","","","","","","",69c2830115da75000189580d,7375,54151,"N+P Informationssysteme GmbH is a family-owned IT system provider established in 1990. The company specializes in digitalization solutions for mid-sized companies in the manufacturing and construction sectors throughout Germany. With a workforce of over 200 employees and a customer base exceeding 2,000, N+P operates from seven locations, including its headquarters in Meerane and branches in Berlin, Dresden, Kassel, Magdeburg, and Nürnberg. + +N+P focuses on integrating IT systems to create seamless digital value chains, avoiding isolated systems. The company offers a range of services, including digital process optimization, IT infrastructure solutions, software development, and cloud security. Their in-house teams develop and customize software tailored to industry-specific needs, such as Autodesk Inventor for mechanical engineering and BIM for construction planning. N+P is recognized for its commitment to shaping IT trends and has been a finalist in Saxony's Entrepreneur of the Year competition.",1990,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6841242a3273010001c2c7b5/picture,"","","","","","","","","" +LINDERA,LINDERA,Cold,"",12,information technology & services,jan@pandaloop.de,http://www.lindera.de,http://www.linkedin.com/company/lindera,https://www.facebook.com/linderaDE/,https://twitter.com/linderade,34 Modersohnstrasse,Berlin,Berlin,Germany,10245,"34 Modersohnstrasse, Berlin, Berlin, Germany, 10245","health care, 3d motion tracking, healthcare, motion tracking, software development, technology, deep tech, coding, sdk, elder care, artificial intelligence, hr benefits, computer vision, it services & it consulting, mdr-zertifiziert, services, automatisierte dokumentation, iso 13485, pflege und medizin, b2b, pflege-apps für pflegepersonal, pflege digitalisieren, medical devices manufacturing, pflege-apps für pflegeeinrichtungen, pflegequalität, health information technology, pflegepersonalentlastung, sturzprävention, pflege-apps für ambulante pflege, pflegeprozessoptimierung, rehabilitation, bewegungsanalyse, pflege-apps wissenschaftlich validiert, pflegeforschung, wissenschaftliche validierung, pflege-apps iso 27001, pflegeinnovation, präzise bewegungsdaten, medtech innovation, digitale pflege, verlaufsmessung, medtech, wissenschaftlich validiert, pflege-apps in der geriatrie, risk assessment, pflege und geriatrie, pflege digital, healthcare equipment and supplies manufacturing, risikoreduktion, pflegefachkräfte, reha-technologie, stationäre pflege, pflege-apps für pflegeheime, pflege-it-systeme, app-basierte bewegungsanalyse, pflegeeffizienz, interoperabilität, datenschutzkonform, wissenschaftliche studien, pflegeeinrichtungen, pflege-apps für angehörige, ki-gestützte mobilitätsanalyse, healthcare analytics, mobilitätsförderung, datenschutz, pflege-apps, therapieplanung, medizinprodukt, pflegequalitätssicherung, pflege-apps mdr, iso 27001, medical equipment and supplies manufacturing, ki in der medizin, ganganalyse per app, medical and diagnostic laboratories, pflegeintegration, 3d-bewegungsanalyse, pflegealltag, ambulante pflege, digitale gesundheit, pflege-apps datenschutz, pflege-apps für stationäre pflege, sturzrisikoanalyse, pflege-dokumentation, ganganalyse, verlaufskontrolle, pflege-apps iso 13485, ki-gestützte ganganalyse, pflege-apps in der rehabilitation, pflegebedarfsermittlung, therapieunterstützung, health, wellness & fitness, hospital & health care, information technology & services, medical & diagnostic laboratories, medical practice",'+49 30 12085471,"Outlook, Atlassian Cloud, React Redux, Hubspot, MailJet, Linkedin Login, Apache, YouTube, iTunes, WordPress.org, Google Tag Manager, Facebook Widget, Google Play, Mobile Friendly, Ubuntu, Linkedin Widget, Facebook Login (Connect), AI, Python, Open Neural Network Exchange (ONNX), NVIDIA TensorRT, PyTorch",6600000,Series A,6600000,2021-11-01,"","",69c2830115da75000189580a,8731,33911,"LINDERA is a German digital healthcare company based in Berlin, founded in 2017. The company specializes in AI-powered smartphone gait analysis technology aimed at preventing falls in older adults. As a manufacturer of medical devices, LINDERA adheres to the Medical Device Act and EU regulations, positioning itself as a leader in digital care. + +LINDERA's main offerings include the LINDERA Mobility Analysis app, which identifies and monitors fall risk factors through video analysis of gait patterns, and L.MotionLab, designed for orthopedic technology needs. This app automates insurance applications and documentation for prosthetics and orthopedic devices. LINDERA's technology also supports Remote Therapeutic Monitoring (RTM) billing, enhancing patient outcomes and reducing bureaucratic burdens in orthopedic applications. + +The company serves older adults needing fall prevention and mobility monitoring, as well as orthopedic technology providers and care insurance funds. LINDERA's innovative solutions have been recognized with the Global Digital Health Innovation Award 2025 for their effectiveness in reducing fall risks.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6962b93058268b00016ff174/picture,"","","","","","","","","" +PREVISIONZ,PREVISIONZ,Cold,"",29,information technology & services,jan@pandaloop.de,http://www.previsionz.de,http://www.linkedin.com/company/previsionz,https://www.facebook.com/PREVISIONZ-GmbH-113144656926130/,"",30 Am Schanzenberg,Saarbruecken,Saarland,Germany,66117,"30 Am Schanzenberg, Saarbruecken, Saarland, Germany, 66117","power bi, data lake, data warehouse, data management, business intelligence, azure, machine learning, artificial intelligence, blockchain, cardano, data visualization, sql, hadoop, it services & it consulting, cloud data strategy, visuelle datenerkennung, data governance, services, e-commerce, data orchestration, data reporting, big data, streaming data, datenvisualisierung, smart contracts, data analytics and management, data automation, data optimization, dezentralisierung blockchain, financial technology and cryptocurrency, data engineering, vertrieb 4.0, financial technology, business intelligence and data visualization, software development, data analytics, predictive analytics, ai applications, blockchain data extraction, blockchain data reporting, bitcoin full node, cardano smart contracts, b2b, data quality, data scalability, consulting, logistics and supply chain, datenmanagement, data integration, ki im kundenservice, data science, data strategy, datenanalyse, machine learning models, crypto analytics, data warehouse migration, data enrichment, information technology and services, blockchain analytics, crypto investment kurs, microsoft sql server, azure synapse analytics, künstliche intelligenz, power bi monitoring, data pipelines, data monitoring, data preparation, data platform, cryptocurrency data, ki-strategieentwicklung, data warehousing, blockchain api service, cloud computing, data security, cloud computing and data platforms, retail, analytics, computer systems design and related services, finance, distribution, transportation & logistics, information technology & services, consumer internet, consumers, internet, enterprise software, enterprises, computer software, finance technology, financial services, logistics & supply chain, computer & network security","","Outlook, Hubspot, Vimeo, Adobe Media Optimizer, Cedexis Radar, Apache, Mobile Friendly, WordPress.org, Sisense, Domo, Qlik Sense, Android, Remote, AI","","","","","","",69c2830115da750001895811,7375,54151,"Previsionz GmbH is a German company that specializes in data analysis platforms and artificial intelligence. They focus on creating customized data solutions to help businesses effectively utilize their data. The company offers services in Data Foundation, Data Intelligence, and Data Science, enabling clients to make informed decisions and achieve their goals. + +One of their key products is the Power BI Monitoring Tool, which assists administrators in monitoring the health of their Power BI environments. This tool helps prevent errors and resolve issues proactively. Previsionz GmbH also builds foundational data infrastructure and enhances data-driven insights through their core service areas, supporting advanced analytics and AI implementations. + +Previsionz GmbH emphasizes collaboration with clients, inviting them to discuss their projects and needs. They have successfully partnered with companies like Sailfish GmbH, where their solutions have significantly improved daily operations.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6704de9e29ca8000019f4556/picture,"","","","","","","","","" +IQstruct Engineering GmbH,IQstruct Engineering,Cold,"",12,information technology & services,jan@pandaloop.de,http://www.iqs-e.de,http://www.linkedin.com/company/iqstruct-engineering-gmbh,https://www.facebook.com/iqstructengineering,"","",Baesweiler,North Rhine-Westphalia,Germany,52499,"Baesweiler, North Rhine-Westphalia, Germany, 52499","virtuelle inbetriebnahme & industrial iot, it services & it consulting, information technology & services, fehlerdiagnose in echtzeit, cybersecurity, industrial iot, consulting, datenqualität, services, softwareentwicklung, engineering, asset administration shell, simulationssoftware, digitaler produktionsprozess, prozessautomatisierung, industrie 4.0, mqtt, b2b, digitaler zwilling, datenmanagement, computer systems design and related services, virtuelle schulung, hybrid automatisierung, digital twin simulation, interoperabilität, manufacturing, opc ua, prozessoptimierung, automatisierung, branchenspezifische anwendungen, fehlervermeidung, vibn, digital twins, edge-computing, datenanalyse, ki in produktion, echtzeitüberwachung, instandhaltung 4.0, simulationstechnologie, iiot-lösungen, sensorik, predictive maintenance, automatisierungstechnik, vr/ar integration, sicherheitskonzepte, smart factory, automatisierte tests, cloud-plattformen, industrial automation, virtuelle inbetriebnahme, mechanical or industrial engineering",'+49 24 013991030,"Outlook, Microsoft Office 365, WordPress.org, Google Tag Manager, Nginx, Google Font API, Mobile Friendly, Google Analytics, Remote, React Native, Android","","","","","","",69c282fd1e946c0001f0860e,3589,54151,"IQstruct Engineering steht für die Entwicklung und Implementierung von Industrial IoT-Lösungen, der Modellerstellung von digitalen Zwillingen sowie der Durchführung von Virtuellen Inbetriebnahmen und Anwenderschulungen. Weitere Kompetenzen liegen in der agilen Softwareentwicklung, dem IT-Projektmanagement und Engineering in der Automatisierungstechnik. Zu den Kunden gehören Konzerne sowie kleine und mittelständige Betriebe verschiedener Branchen, schwerpunktmäßig aus dem Automotive- und Automobilbereich. + +Ein motiviertes Team aus Softwareentwicklern und Projektmanagern verfügt über insgesamt mehr als 20 Jahren Erfahrung in der Konzeption, Implementierung und dem Betrieb von innovativen Web- und Cloudapplikationen sowie der Inbetriebnahme automatisierter Anlagen. Durch die Kombination beider Fachgebiete liefert IQstruct Engineering neben individuell auf die Bedürfnisse ihrer Kunden abgestimmte Softwaresysteme ganzheitliche Lösungen für die Digitalisierung komplexer Business-, Fertigungs- und Produktionsprozesse. + +Aus einer unerschöpflichen Menge an Möglichkeiten die Frage nach der optimalen Strategie für wirtschaftlichen Erfolg zu beantworten und einen Beitrag zur erfolgreichen Digitalisierung unserer Gesellschaft zu leisten – das ist unsere Motivation und ganz persönliches Ziel als IT-Unternehmen aus der Technologieregion Aachen. + +Impressum: +https://iqs-e.de/impressum/",2018,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/672fc758d2dcf10001b8cea5/picture,"","","","","","","","","" +POINT. Consulting GmbH,POINT. Consulting,Cold,"",14,information technology & services,jan@pandaloop.de,http://www.point-gmbh.com,http://www.linkedin.com/company/point-consulting-gmbh,"","",62 An der Alster,Hamburg,Hamburg,Germany,20099,"62 An der Alster, Hamburg, Hamburg, Germany, 20099","geschaeftsapplikationen, microsoft azure, digitalisierung von geschaeftsprozessen, unternehmenssoftware, datenbankentwicklung, software konzeption, it beratung, deltamaster, softwareentwicklung, power bi, business intelligence, cloud, webentwicklung, application development, mobile apps, sql server, it consulting, software development, it projektmanagement, it services & it consulting, it-projektmanagement, agile softwareentwicklung, data analytics in unternehmen, ki-lösungen, power bi reports, data warehouse, data modeling, cloud migration strategien, consulting, desktop-anwendungen, data science, power bi integration, power bi theme generator, open source llms, web apps, hybrid cloud, agile projektmethoden, it-beratung, cloud hosting, microsoft azure experten, services, desktop software, microsoft technologien, data quality management, hamburg it, computer systems design and related services, cloud computing, business software, data modeling und etl, cloud-architektur, full-stack development hamburg, ki-entwicklung, azure devops, it-transformation, reporting-lösungen, full-stack development, business analytics, cloud beratung, individuelle softwarelösungen, datenbanken, custom software, data lake, open source ki, mobile app development, reporting, open source llm framework, softwarearchitektur, cloud-lösungen, data security in ki, azure cognitive services, data warehouse design, etl-prozesse, datenanalyse, business process digitalisierung, power bi dashboard, individuelle software, data security, ki automatisierung, ai use cases in business, power bi custom themes, legacy system ablösung, datenmigration, hybrid cloud strategie, information technology and services, cloud migration, power bi themes, data analytics, legacy system replacement, projektmanagement, b2b, azure cloud, windows entwicklung, data infrastructure, agile methoden, power bi reporting, mobile app entwicklung, agile entwicklung, user experience, power bi beratung, data lake architektur, data governance in ki, data governance, ki lösungen, data quality, finance, education, analytics, information technology & services, app development, apps, management consulting, web applications, enterprise software, enterprises, computer software, computer & network security, ux, financial services",'+49 40 30373730,"Outlook, Microsoft Azure, Slack, Google Analytics, Nginx, Google Tag Manager, Android, AI","","","","","","",69c282fd1e946c0001f08619,7375,54151,"POINT. Consulting ist eine IT-Beratung mit Sitz in Hamburg. Unser Geschäft ist die Entwicklung individueller IT-Lösungen für Unternehmen in Norddeutschland mit dem Fokus auf Business Intelligence und Application Development. POINT. ist Partner von Microsoft, ORACLE und dem innovativen Front-end Entwickler Bissantz & Company. + +Mit dem Geschäftsbereich Business Intelligence unterstützen wir unsere Kunden in allen Phasen des Aufbaus einer individuellen und performanten BI / DWH Lösung. Analyse, Konzeption, Technologieberatung, Realisierung und Wartung – wir sind Partner in allen Projektphasen. Als BI Front-end setzten wir dabei auf den DeltaMaster von Bissantz, das aus unserer Sicht beste Front-end am Markt. + +Im Geschäftsbereich Application Development konzentrieren wir uns auf individuelle Softwareentwicklung mit modernsten Technologien. Hier reicht unsere Expertise von der Windows Entwicklung über die Ablösung von Legacy Systemen bis zur Webentwicklung mit noSQL-Datenbanken und den neuesten Front-end Technologien. + +Viele weitere Informationen und Projektreferenzen finden Sie auf unserer Website www.point-gmbh.com + + + + + +Impressum: + +POINT. Consulting GmbH +Rödingsmarkt 16 +20459 Hamburg + +Telefon: +49 (0)40 303 73 73 - 0 +Telefax: +49 (0)40 303 73 73 - 29 + +E-Mail: mail(at)point-gmbh.com +Internet: www.point-gmbh.com + +Vertretungsberechtigter Geschäftsführer: +Johannes Berendes + +Registergericht: Amtsgericht Norderstedt +Registernummer: HRB 3296 BB +Umsatzsteuer-Identifikationsnummer gemäß § 27 a Umsatzsteuergesetz: DE 134 888 037 + +Haftungshinweis: Trotz sorgfältiger inhaltlicher Kontrolle übernehmen wir keine Haftung für die Inhalte externer Links. Für den Inhalt der verlinkten Seiten sind ausschließlich deren Betreiber verantwortlich.",1992,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/671460ddb928a80001d684aa/picture,"","","","","","","","","" +smart IoT,smart IoT,Cold,"",37,information technology & services,jan@pandaloop.de,http://www.smart-iot.solutions,http://www.linkedin.com/company/smartiotsolutions,https://facebook.com/privacy,https://twitter.com/_smartIoT,44 Heinickestrasse,Essen,North Rhine-Westphalia,Germany,45128,"44 Heinickestrasse, Essen, North Rhine-Westphalia, Germany, 45128","smart home, customized os, embedded development, 360 security, mobile apps, smart building, smart devices, internet of things, connected agriculture, smart city, connected health, emobility, rtls, it services & it consulting, agile project management, c/c++ development, device management api, agricultural iot, ai integration in iot, iot security, embedded systems, product customization, mobile app development, bluetooth le, services, hardwareentwicklung, zigbee, custom iot products, websocket, iot-lösungen, hardware firmware design, connectivity architecture, z-wave, consulting, cloud solutions, smart home iot, api integration, sensor integration, lorawan, python django, healthcare iot, data security, scalable cloud infrastructure, information technology and services, iot platform modularity, industrial iot, api-based architectures, smart city solutions, manufacturing, web app development, firmwareentwicklung, cybersecurity, lte-m, computer systems design and related services, b2b, prompt engineering for ai, connectivity-technologien, cyber security, construction, nb-iot, iot development, healthcare, distribution, consumers, information technology & services, embedded hardware & software, hardware, software development, cloud computing, enterprise software, enterprises, computer software, computer & network security, mechanical or industrial engineering, health care, health, wellness & fitness, hospital & health care",'+49 20 185893140,"Gmail, Google Apps, Slack, IoT, Remote, AI","",Seed,0,2020-04-01,"","",69c282fd1e946c0001f0861e,7375,54151,"smart IoT GmbH is an IoT service provider based in Essen, Germany, founded in 2020. The company specializes in the end-to-end development of customized, connected products, leveraging IoT expertise that dates back to 2014. With a team of around 30 specialists, smart IoT collaborates closely with clients to create tailored solutions, ensuring that the developed products remain the intellectual property of the customers. + +The company offers a wide range of IoT solutions, including hardware and firmware development, mobile and web app development, backend and cloud development, AI integration, and cybersecurity. Their proprietary SmartCore framework enhances development efficiency by providing modular components for user management and analytics. smart IoT emphasizes innovation across various industries, such as logistics, healthcare, energy, and smart home, using agile methods to deliver future-proof products that drive digital transformation and revenue growth.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68c79cdc390d3a0001e4c65b/picture,"","","","","","","","","" +Calantic,Calantic,Cold,"",200,information technology & services,jan@pandaloop.de,http://www.calantic.com,http://www.linkedin.com/company/calantic,"","","",Berlin,Berlin,Germany,"","Berlin, Berlin, Germany","embedded software products, ai regulatory compliance, ai performance analytics, ai for cancer screening, services, ai data pseudonymization, ai radiology solutions, ai applications, ai application deployment, ai in cardiology, ai operational support, ai radiology, ai cloud platform, ai clinical tools, ai application management, ai security and compliance, medical and diagnostic laboratories, ai clinical validation, ai detection and quantification, ai in neuroradiology, ai for dose management, ai in radiology workflow, ai for breast cancer, ai for patient follow-up, regulatory compliance, pacs integration, ai for lung cancer detection, ai clinical service lines, ai for neurological imaging, cloud-hosted platform, curated ai marketplace, medical imaging ai, ai clinical decision support, healthcare, workflow integration, b2b, disease-specific ai tools, real-world ai analytics, ai in cancer screening, ai application marketplace, healthcare technology, ai application licensing, ai dose management, radiology workflow automation, ai application bundling, clinical workflow support, ai workflow optimization, information technology & services, medical & diagnostic laboratories, medical practice, hospital & health care, health care, health, wellness & fitness",'+49 8006 337237,"Akamai, CSC Corporate Domains, Amazon AWS, WordPress.org, Hubspot, Google Analytics, Linkedin Marketing Solutions, Google Dynamic Remarketing, DoubleClick Conversion, Nginx, Google Tag Manager, Mobile Friendly, DoubleClick, Vimeo","","","","","","",69c282fd1e946c0001f08621,8711,62151,"Calantic Digital Solutions, launched by Bayer in 2022, is a cloud-hosted platform that offers a marketplace of AI-enabled digital applications and tools for radiologists. It focuses on enhancing medical imaging workflows, particularly for thoracic and neurological diseases. The platform addresses challenges in radiology, such as increasing imaging volumes and radiologist shortages, by automating tasks and improving productivity. + +Calantic features a suite of AI-enabled applications designed for triaging critical findings, lesion detection, and workflow optimization. It collaborates with partners like Rad AI to integrate advanced technologies for radiology reporting and patient management. The vendor-neutral platform supports hospitals and health systems by providing scalable solutions tailored to their needs. Initially launched in the U.S. and select European countries, Calantic aims to expand further as it receives regulatory approvals.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68e8fe4fb3d9ac0001064932/picture,"","","","","","","","","" +robominds GmbH,robominds,Cold,"",19,industrial automation,jan@pandaloop.de,http://www.robominds.de,http://www.linkedin.com/company/robominds-gmbh,https://facebook.com/robomindsgmbh,"",7 Wilhelmine-Reichard-Strasse,Munich,Bavaria,Germany,80935,"7 Wilhelmine-Reichard-Strasse, Munich, Bavaria, Germany, 80935","roboter vision, ai, intralogistics, artificial intelligence, process intelligence, roboter vision & ai, automation, smart robotics, ai perception, ai learning algorithms, vision systems, ai perception algorithms, ai-driven automation, ai for depalletizing, ai for adaptive control, ai for process optimization, ai-based control, robot control software, ai for industrial robots, image recognition, robotic process automation, ai training in robotics, ai deployment, object handling, ai for automotive assembly, automotive, ai for intralogistics solutions, ai in manufacturing, ai in robotics, ai for industrial safety, sensor fusion, ai skills, ai in automotive, ai training data, robotic vision algorithms, robotic task execution, deep learning, ai-driven logistics, ai for robotic grasping, ai for quality control, ai for industrial inspection, object recognition, ai for smart warehousing, services, robotic vision, sensor integration, robotic manipulation, robotic control systems, ai for inventory management, ai-enabled robots, manufacturing, ai for warehouse picking, warehouse automation, ai perception technology, robot control platform, ai model training, ai software platform, automation software, visual perception, ai in logistics, ai for robotic assembly, ai for intralogistics, ai robotics, ai for lab automation, neural networks, ai for automotive robotics, robotic task automation, industrial automation, robotic automation, decision algorithms, object detection, 3d vision, 2d vision, robobrain, ai platform for robots, ai for robotic bin-picking, autonomous robots, logistics, ai for object detection in labs, industrial machinery manufacturing, ai for robotic vision enhancement, robot programming, edge ai, ai for real-time perception, ai for multi-object handling, ai control system, ai for parcel sorting, cloud ai services, robot perception, ai software development, ai skills development, ai in laboratories, robotic vision system, sensor-based perception, ai for smart sorting, ai for material handling, robotic sensors, ai for industrial applications, ai for sample handling, ai training, part recognition, real-time control, ai control platform, ai-based automation, ai for flexible automation, virtual simulation, ai in laboratory automation, ai for predictive maintenance, predictive maintenance, b2b, machine learning, laboratory automation, ai for complex object handling, flexible automation, industrial robots, industrial robotics, automation solutions, robobrain technology, 2d/3d vision systems, intelligent gripping, logistics automation, sample handling, bin picking, automated depalletizing, mobile robotics, smart picking systems, custom automation solutions, robotic arms integration, grippers technology, ai skills for robots, smart robotics solutions, automated lifting systems, vision algorithms, cost-efficient automation, quick start robotics package, robot intelligence, manufacturing automation, ai-based control solutions, robotic process intelligence, adaptive robotics, real-time robot interaction, human-like gripping, interdisciplinary robotics team, collaborative robotics, open interfaces for robotics, cross-compatibility with robotic elements, ai-enhanced automation, robot capabilities enhancement, dynamic assembly solutions, virtual simulation training for robots, education, distribution, transportation & logistics, information technology & services, computer vision, mechanical or industrial engineering",'+49 89 200657990,"Outlook, Amazon AWS, Webflow, Hubspot, Docker, AI, Bob, Dassault SOLIDWORKS, C#, Python, Javascript, TensorFlow, Keras, PyTorch, Visio, Git, Ning, Azure Power BI Embedded","","","","","","",69c282fd1e946c0001f08609,3581,33324,"robominds GmbH is a Munich-based robotics company founded in 2016 by Andreas Däubler and Tobias Rietzler. The company specializes in AI-driven automation solutions for industrial robots, utilizing its patented robobrain® platform. This platform enhances robots with perception and the ability to perform tasks independently, making it easier to integrate AI skills without complex programming. + +The flagship robobrain® includes a 2D/3D camera system for universal part recognition and autonomous task execution. Key solutions offered by robominds include AI depalletizing for handling goods in warehouses, automated load carrier handling, and laboratory automation with smart sample handling capabilities. The company also provides end-to-end support for implementation and customized setups, along with educational initiatives to build expertise in AI robotics. Collaborations with industry partners and educational institutions further enhance their offerings in production, logistics, and laboratory settings.",2016,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69afd3214be3d30001251097/picture,"","","","","","","","","" +i40 – the future skills company,i40 – the future skills company,Cold,"",27,e-learning,jan@pandaloop.de,http://www.i40.de,http://www.linkedin.com/company/i40-thefutureskillscompany,https://www.facebook.com/i4.0de/,https://twitter.com/i40zentrum,1 Franz-Mayer-Strasse,Regensburg,Bavaria,Germany,93053,"1 Franz-Mayer-Strasse, Regensburg, Bavaria, Germany, 93053","digital competence as a service, weiterbildung, blended learning, digital transformation training, online training, digital competence podcast, training on industry 40 & digitalization, software development, ar, reskilling, webinars speeches on digital competence, consulting on industry 40 & digitalization, elearning, future skills, digital competence book, authoring tool, research on industry 40 & digitalization, vr, upskilling, ki, ai, schulung, learning technologies, edutech, genai, training, rapid elearning, webbased training, promptengineering, digital skills, ai authoring tool, e-learning providers, award-winning instructional design, ai for leaders, learning analytics, digital enterprise technologies, education, digitalization consulting, industry 4.0, artificial intelligence, media production, digikompetenz podcast, digital learning solutions, digital skills certification, b2b, manufacturing, technology consulting, ai training, training for managers, cybersecurity 4.0, tailored digital learning, digital competence, e-learning, cybersecurity, future skills development, ar/vr training, learning content creation, learning strategy, corporate online training, digital skills assessment, industry 4.0 driver's license, industry 4.0 education, professional development, training and development, learning management system, ar/vr solutions, rapid elearning in 48 hours, digital skills training, additive manufacturing, services, digital transformation, digital competence development, customized e-learning, 3d learning worlds, ai prompt engineering, learning content in 20 languages, digital twin training, microlearning, learning content in multiple languages, corporate training, digital learning platform, employee upskilling, microlearning modules, professional and management development training, digital transformation support, consulting, interactive e-learning, generative ai, virtual training, corporate e-learning, cybersecurity training, online courses for industry, ai governance training, leadership development, e-commerce, distribution, construction, information technology & services, internet, computer software, education management, mechanical or industrial engineering, management consulting, training & development, professional training & coaching, consumer internet, consumers",'+49 941 46297780,"Cloudflare DNS, Outlook, MailChimp SPF, Microsoft Office 365, Google Play, YouTube, MailChimp, Eventbrite, Google Tag Manager, Mobile Friendly, Shutterstock, Remote, Elucidat","","","","","","",69c282fd1e946c0001f08610,8299,61143,"i40 – the future skills company is an international edutech provider focused on digital transformation and future skills training. The company believes that with the right training programs, organizations can effectively navigate the fourth industrial revolution. i40 empowers employees through customized qualification measures. + +The company offers a wide range of learning solutions, including web-based training, AR/VR solutions, e-learning systems, video-based training series, and 3D learning environments. i40 covers over 50 subject areas in more than 20 languages, addressing topics such as digital transformation, AI, sustainability, and cybersecurity. With a reach of over 750,000 learners across various industries, i40 partners with major multinational corporations to enhance enterprise-level digital upskilling. + +i40 has received several industry awards, including the eLearning Journal Award Project of the Year for 2022, 2023, and 2024, and recognition as one of the ""Top 10 Corporate Online Training Companies in Europe 2024"" by Manage HR Magazine. Dr. Philipp V. Ramin is the CEO of the company.",2015,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e98f089d5a620001abe5a6/picture,"","","","","","","","","" +Dr. Ecklebe GmbH,Dr. Ecklebe,Cold,"",23,machinery,jan@pandaloop.de,http://www.dr-ecklebe.de,http://www.linkedin.com/company/dr-ecklebe,https://www.facebook.com/profile.php,"",29 Brockenblick,Wernigerode,Saxony-Anhalt,Germany,38855,"29 Brockenblick, Wernigerode, Saxony-Anhalt, Germany, 38855","automation machinery manufacturing, custom automation solutions, electrical engineering, industrial control systems, pcs7 leitsystem, cybersecurity, big data, cloud solutions, softwareentwicklung, consulting, services, cloud infrastructure, kollaborative roboter, construction, robotics integration, plant engineering, cloud-based systems, safety controllers, prozessautomation, sonderanfertigungen, asset management, sps steuerung, embedded systems, data acquisition, data analytics, antriebstechnik, forschung & entwicklung, industrieautomation, energieinfrastruktur, industrie 4.0, project management, distribution, b2b, schaltanlagen, elektroanlagenbau, software development, plc technik, edge computing, energy management, it solutions, industrial machinery manufacturing, manufacturing, lidar safety technology, digital twin, web applications, rfid technology, siemens solution partner, logistik, retrofit automatisierter anlagen, system integration, project engineering, iot, visualization systems, pcs7 process control, mobile device software, custom software, web development, automation, smart factory, materialtracking, remote monitoring, digital solutions, enterprise software, enterprises, computer software, information technology & services, cloud computing, internet infrastructure, internet, embedded hardware & software, hardware, productivity, oil & energy, mechanical or industrial engineering",'+49 3943 56060,"Outlook, Microsoft Office 365, WordPress.org, Mobile Friendly, Apache, Google Tag Manager, Adobe Media Optimizer, Vimeo, Cedexis Radar, Remote, Google Translate, Siemens SIMATIC S7, ManageEngine Desktop Central, Azure Linux Virtual Machines, Docker","","","","","","",69c282fd1e946c0001f08616,1731,33324,"We develop individual and innovative solutions for industrial automation, plant engineering and construction and information technologies (IT). Our experiences are based on many years in business. They together with our very detailed technical know how are the daily basis of our work.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/671378df58008200017ffaae/picture,"","","","","","","","","" +FiZ Frankfurt Biotechnology Innovation Center,FiZ Frankfurt Biotechnology Innovation Center,Cold,"",12,research,jan@pandaloop.de,http://www.fiz-biotech.de,http://www.linkedin.com/company/fizbiotech,https://www.facebook.com/FIZBiotech/,https://twitter.com/fizgmbh,3 Altenhoeferallee,Frankfurt,Hesse,Germany,60438,"3 Altenhoeferallee, Frankfurt, Hesse, Germany, 60438","biotechnology, life sciences, innovationcenter, massgeschneiderte infrastruktur, branchenuebergreifende netzwerke, innovation, biopharma, biotech, biotechnology research, big data analytics, therapeutic development, health data platform, biotech r&d, precision oncology, consulting, ai in healthcare, services, biotech industry development, biotech regulatory compliance, big data solutions, government, biotech entrepreneurship, biotech policy, digital health, biotech research collaboration, data-driven diagnostics, biotech clinical trials, biotech innovation hub, research and development in the physical, engineering, and life sciences, clinical decision support, healthcare technology, biotech startups support, genomics, b2b, life sciences infrastructure, biotech automation, biotech funding, personalized medicine, german genethics, biotech ecosystem, medical diagnostics, biotech innovation, public-private partnership, biotech data security, biotech networking, next generation sequencing (ngs), healthcare, ayurgenomics, biotech digital transformation, ayurveda and biotech, biotech research, molecular diagnostics, biotech incubator, biotech business models, molecular biology databases, enterprise software, enterprises, computer software, information technology & services, health, wellness & fitness, health care, hospital & health care",'+49 69 8008650,"Microsoft Office 365, Google Analytics, Mobile Friendly, Vimeo, Apache","","","","","","",69c282fd1e946c0001f0860a,8731,54171,"FiZ Frankfurter Innovationszentrum Biotechnologie GmbH is a technology center focused on driving innovation in the biotechnology and healthcare sectors within the Frankfurt Rhein-Main region and Hesse state. Established in 2002, it operates as a public-private partnership, jointly owned by the state of Hesse, the city of Frankfurt am Main, and the Chamber of Industry and Commerce of Frankfurt am Main. + +The center aims to foster the biotechnology economy by supporting the establishment of new companies and creating qualified jobs. FiZ offers approximately 23,000 m² of laboratory and office space, designed for flexibility to accommodate various business needs. It also provides business support through initiatives and networks that promote innovation and growth for small and medium-sized enterprises in the life sciences field. Notable resident companies include BioCopy, Bruker, MBN Research Center gGmbH, and Octapharma, which contribute to the vibrant ecosystem at FiZ. Dr. Christian Garbe has been the Managing Director since its inception, bringing valuable experience from the biotechnology sector.",2002,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/672f9f518a1a4a00010b08a4/picture,"","","","","","","","","" +oh22information services GmbH,oh22information services,Cold,"",11,information technology & services,jan@pandaloop.de,http://www.oh22.is,http://www.linkedin.com/company/oh22informationservices,"","",22 Otto-Hahn-Strasse,Bad Camberg,Hesse,Germany,65520,"22 Otto-Hahn-Strasse, Bad Camberg, Hesse, Germany, 65520","power bi, data analytics, sql server integration services, microsoft azure, azure data lake, big data, data quality, master data management, microsoft sql server, sql server reporting services, software development, data reconciliation cloud services, data relevance, data pipelines, solution development, data quality tasks, cloud services, data security, data cleansing with cloud reference data, data enrichment, on-premise ai search, consulting, data integration, native vector support in sql server, information technology and services, data management, real-time data editing, data transformation, data accuracy, computer systems design and related services, cloud computing, b2b, data governance, machine learning, real-time data editing mode, azure data factory, knowledge database building, cloud-based data services, reference data services, data validation, data transformation tools, data management solutions, data standardization, cloud data services, modern search technologies, marketing operations, data quality conference 2025, microsoft gold partner, data reconciliation, data quality is not optional, data standardization in cloud, azure, data cleansing, services, enterprise software, enterprises, computer software, information technology & services, computer & network security, artificial intelligence",'+49 6434 94590,"Outlook, Microsoft Office 365, Freshdesk, Mobile Friendly, Google Font API, WordPress.org, Apache, Bootstrap Framework, Remote, Circle, Azure Analysis Services, Microsoft Fabric, Databricks, Microsoft.NET Core 3.1","","","","","","",69c282fd1e946c0001f08614,7375,54151,"Unsere Leistungen basieren auf den drei Geschäftsbereichen: Data Analytics, Solution Development und Marketing Operations. Wir nennen es smart casual datadesign. + +Als langjähriger Microsoft Partner verfügen wir über ein umfangreiches Leistungsportfolio sowie ein breites branchen- und kundenspezifisches Know-how. + +Wir sind offen, empathisch, begeisterungsfähig, authentisch und unkonventionell. + +Wir leben das Understatement. Und wir brennen für unsere Projekte. + +Wir nehmen uns nicht so wichtig – unsere Kunden und Projekte aber schon.",2012,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67245fac3202cd0001cf1fee/picture,"","","","","","","","","" +Pulse for Integrated Solutions GmbH,Pulse for Integrated Solutions,Cold,"",28,medical devices,jan@pandaloop.de,http://www.pulsegmbh.de,http://www.linkedin.com/company/pulse-for-integrated-solutions,https://www.facebook.com/Pulseremotehealth/,https://twitter.com/Pulse_mhealth,"",Unterschleissheim,Bavaria,Germany,"","Unterschleissheim, Bavaria, Germany","medical devices, software, digital signal processing, embedded systems, machine learning, medical equipment manufacturing, wearable health devices, vital signs monitoring, bluetooth spo2 device, real-time ecg analysis, mobile app for health monitoring, telemedicine services, cloud-based health data, plethysmography, fall detection, b2c, telemonitoring app, health data clustering, b2b, services, medical data security, medical device software, medical device certification, spo2 sensors, d2c, integrated alarm system, smart health device, medical devices and equipment, offline ecg analysis, healthcare iot, cuff-less blood pressure, patient data management, ecg monitoring, ai-based analysis, hospital data integration, embedded system development, health data analytics, remote patient monitoring, hospital information system integration, cloud health portal, health information technology, real-time data transmission, remote healthcare automation, mobile ecg device, ai diagnostics, telehealth platform, remote monitoring system, telemedicine devices, ai health analysis, patient vitals transmission, ai disease detection, healthcare equipment and supplies manufacturing, health informatics, mobile health solutions, ai-powered diagnostics, patient and doctor tele-monitoring, medical equipment and supplies manufacturing, medical device manufacturing, wireless health sensors, data encryption, real-time ecg alerts, healthcare, manufacturing, hospital & health care, information technology & services, embedded hardware & software, hardware, artificial intelligence, health care, health, wellness & fitness, mechanical or industrial engineering","","Outlook, GoDaddy Hosting, Microsoft Office 365, Apache, Google Analytics, Google Font API, Mobile Friendly, Remote","","","","","","",69c282fd1e946c0001f08617,3829,33911,"Pulse for Integrated Solutions GmbH is based in Munich, Germany, with operations in Unterschleißheim. The company specializes in remote patient monitoring (RPM), mobile health (mHealth), and telemedicine solutions, utilizing hardware, software, and AI-driven innovations. Founded as a pioneer in these fields, Pulse develops and manufactures medical devices and systems aimed at enhancing healthcare delivery across various settings, including ambulances, hospitals, and homecare. + +The company offers a range of products, including a mobile ECG device that transmits signals via Wi-Fi and Bluetooth, and a patented real-time ECG analysis module for immediate alerts. Their cloud-based web portal stores patient vitals and provides AI-based analysis for real-time monitoring. Pulse emphasizes quality and compliance, maintaining a state-of-the-art manufacturing facility and adhering to rigorous standards such as ISO 13485:2016 and ISO 27001:2022. They also provide software development, customer care, and comprehensive telemonitoring systems that integrate their hardware and cloud platforms.",2007,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670754de818b7b00014a1520/picture,"","","","","","","","","" +Blueforte,Blueforte,Cold,"",59,information technology & services,jan@pandaloop.de,http://www.blueforte.com,http://www.linkedin.com/company/blueforte,"","",20 Glockengiesserwall,Hamburg,Hamburg,Germany,20095,"20 Glockengiesserwall, Hamburg, Hamburg, Germany, 20095","information design, visual business intelligence, reporting, digitalisierung, performance management, big data, data warehousing, analytics, data analytics, dashboarding, business intelligence, digitale transformation, it services & it consulting, ai strategy, power bi workshops, ai use cases in business, data & ai academy, management consulting, data monitoring, data integration, power bi, data mesh architecture, ai & data leadership training, data governance workshops, services, data quality management, data & ai strategy, data culture development, data platform migration, data engineering tools, data strategy, data quality tools, power bi self-service, consulting, data visualization, data platform, data & ai innovation labs, sustainable data practices, data security, data-driven decision making, cloud data platforms, data vault modeling, data automation, data compliance, sustainable data solutions, ai solutions, data culture, data infrastructure, management consulting services, data modernization, data mesh implementation, data warehouse, data mesh, machine learning, data vault automation, information technology and services, data strategy consulting, data science, data governance, data quality, data governance frameworks, data management, machine learning models, data & ai workshops, data observability, data observability solutions, climate data solutions, data compliance standards, data transformation, b2b, data automation solutions, cloud platforms, data visualization tools, data security solutions, data operations, data analytics and ai, data consulting, data architecture, data engineering, data modeling, data warehouse modernization, finance, education, enterprise software, enterprises, computer software, information technology & services, computer & network security, artificial intelligence, financial services",'+49 40 46002880,"Salesforce, Outlook, CloudFlare Hosting, Atlassian Cloud, Slack, reCAPTCHA, Google Maps, Facebook Custom Audiences, Google Font API, Facebook Widget, Google Places, Facebook Login (Connect), Mobile Friendly, Google Tag Manager, Google Analytics, WordPress.org, Data Analytics, Remote, scikit-learn, PyTorch, TensorFlow, Jupyter, Hugging Face, LlamaIndex, Python, PowerBI Tiles, Kubernetes, Microsoft Fabric","","","","","","",69c282fd1e946c0001f08618,7375,54161,"Blueforte is a prominent data and AI consulting firm located in Hamburg, Germany. Founded in 2008, the company focuses on data analytics, business intelligence, and artificial intelligence solutions. As a trusted advisor, Blueforte is recognized as one of the most awarded consulting firms in the DACH region and holds the status of a Microsoft Solutions Partner for Data & AI. + +The firm offers services in three main areas: strategy development for data and AI, engineering of data platforms and automation solutions, and operations management for data infrastructure. Blueforte Academy provides practical training programs in Data & AI, emphasizing real-world applications and skills development. The company is committed to sustainability, partnering with organizations to support climate protection initiatives.",2008,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/686b3e58102ca2000166841a/picture,"","","","","","","","","" +Avionic Design GmbH,Avionic Design,Cold,"",63,information technology & services,jan@pandaloop.de,http://www.avionic-design.de,http://www.linkedin.com/company/avionic-design-gmbh,"","",10 Wragekamp,Hamburg,Hamburg,Germany,22397,"10 Wragekamp, Hamburg, Hamburg, Germany, 22397","multimedia, avionics, electronics manufacturing, partner of nvidia, electrical engineering, passanger control unit, display, aviation, engineering services, innovative solutions, logistics and supply chain, customized solutions, robotics, safety-critical systems, air quality sensors, system development, transportation & logistics, edge computing, supply chain management, semiconductor and other electronic component manufacturing, recycling optimization, cabin surveillance, high reliability, damage detection, infrared cameras, consulting, nvidia partnership, industrial automation, software engineering, system integration, embedded systems, smart city sensors, manufacturing, ai and robotics, industry-specific solutions, certification (iso 9001, iso 9100), automation systems, services, engine blade inspection, high-demand industries, medical devices, electronic manufacturing, full lifecycle support, product certification, aviation technology, security systems, healthcare, predictive maintenance, hardware development, product lifecycle management, iot solutions, biometric recognition, telecommunications hardware, drone control, aerospace & defense, sensor integration, software development, ai platforms, automotive electronics, traffic management, nvidia tegra, manufacturing services, damage recognition, patient infotainment, biometric sensors, custom manufacturing, embedded hardware, medical device components, sensor systems, smart city infrastructure, certified quality, aerospace electronics, b2b, distribution, information technology & services, logistics & supply chain, mechanical or industrial engineering, embedded hardware & software, hardware, hospital & health care, health care, health, wellness & fitness",'+49 4004 14088187131,"Outlook, Microsoft Office 365, Mobile Friendly, Google Maps (Non Paid Users), Google Maps, Apache, IBM Data Warehouse, AI","","","","","","",69c282fd1e946c0001f0860f,3571,33441,"Avionic Design develops and manufactures embedded devices and systems for the aviation and industrial sectors. Its core competencies are comprehensive technological solutions for multimedia processors, touchscreens and network streaming. The broad portfolio of solutions for the industry ranges from aircraft control panels, in-flight entertainment systems, cabin management and surveillance. + +Avionic Design is a leading innovator in these areas, using cutting-edge technology with the help of its high-tech partners, which is distributed by its customers, distribution or integration channels.",2001,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66d5552272a00900019358b6/picture,"","","","","","","","","" +OSTHUS - a PharmaLex company now part of Cencora,OSTHUS,Cold,"",54,information technology & services,jan@pandaloop.de,http://www.osthus.com,http://www.linkedin.com/company/osthus,"",https://twitter.com/osthus,9 Eisenbahnweg,Aachen,North Rhine-Westphalia,Germany,52068,"9 Eisenbahnweg, Aachen, North Rhine-Westphalia, Germany, 52068","big data, big anaylysis, lab informatics, machine learning, adf, application design, innovating science, rmdm, data governance, data & it strategy, data management, data science, data lake, data lakehouse, r, d data warehouse, document management system, advanced analytics, semantic search solution, knowledge graph, data visualization, data virtualization, semantic data integration, predictive modeling, it services & it consulting, enterprise software, enterprises, computer software, information technology & services, b2b, artificial intelligence",'+49 24 1943140,"Microsoft Office 365, Google Cloud Hosting, Jira, Atlassian Confluence, Slack, Remote","","","","","","",69c282fd1e946c0001f0861a,"","","OSTHUS is a consulting and system integration firm that specializes in research and development information technology for the life sciences industry. Founded in 1996 by Dr. Torsten Osthus, the company is headquartered in Aachen, Germany, with an additional office in Melbourne, Florida. As part of the PharmaLex Group and Cencora, OSTHUS employs around 68 people and generates an estimated annual revenue of $10M–$50M. + +The company offers a range of services, including data and IT strategy development, data governance, advanced analytics, and digital transformation support. OSTHUS also designs and implements customized IT solutions. Its proprietary software solutions include ZONTAL for data management, Leap Analysis for data evaluation, and Accurids for analytical capabilities. OSTHUS is recognized for its role as a framework architect for the Allotrope Foundation, advising pharmaceutical companies on IT issues and promoting best practices in data management. The firm primarily serves the pharma, biotech, and medical device industries, focusing on both small organizations and large multinational corporations.",1996,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6608f17486fb1700070c8aee/picture,"","","","","","","","","" +Cpro IoT Connect GmbH,Cpro IoT Connect,Cold,"",14,management consulting,jan@pandaloop.de,http://www.cpro-iot.de,http://www.linkedin.com/company/cpro-iot-connect-gmbh,https://www.facebook.com/CproINDUSTRY/,https://twitter.com/cpro_karriere,"",Bielefeld,North Rhine-Westphalia,Germany,"","Bielefeld, North Rhine-Westphalia, Germany","iot, industrie 40, iiot, produktionsoptimierung, digitalisierung, beratung, implementierung, sap, ptc, ar, software, business apps, business consulting & services, information technology & services, management consulting",'+49 40 69658500,"Outlook, Microsoft Office 365, Amazon SES, Hubspot, Mobile Friendly, WordPress.org, Bootstrap Framework, Apache, Linkedin Marketing Solutions, Google Dynamic Remarketing, Facebook Login (Connect), Google Tag Manager, Facebook Widget, DoubleClick Conversion, Facebook Custom Audiences, DoubleClick, Google Analytics, Adobe Media Optimizer, Google AdWords Conversion, Vimeo, Cedexis Radar, Bing Ads, Esri, IoT, Dialpad, Remote, Vincere","","","","","","",69c282fd1e946c0001f0861d,"","","Die Cpro IoT Connect ist ein auf IoT und IIoT spezialisiertes Beratungs- und Softwareentwicklungsunternehmen. Wir bieten – neben fertigen IoT Lösungspaketen – Applikationen zur Optimierung Ihrer Unternehmensprozesse. Das IoT liefert dabei die notwendigen Informationen zur Datenanalyse. In der Rolle des Integrators übernehmen wir die Verbindung und Implementierung neuester Technologien und Infrastrukturen in der Branche der fertigenden Industrie. + +Vor dem Hintergrund der Digitalisierung und Industrie 4.0 decken wir die heutigen Anforderungen unserer Kunden im Bereich IoT und IIoT umfangreich ab. Von dem Connectieren Ihres kompletten Maschinenparks mit Ihrer IT-Landschaft, dem vollständigen Vernetzen Ihrer Produktion und/oder Ihres Produktes, bis hin zur Implementierung neuester Technologien wie IoT und AR Lösungen. + +Zukunftsweisende Optimierung und Digitalisierung Ihrer Prozesse und Systeme +innerhalb der Produktion durch das IoT und IIoT! + + + +Impressum: http://www.cpro-iot.de/impressum/ +Datenschutzerklärung: http://www.cpro-iot.de/datenschutzerklaerung/ +Digital, automatisiert, vernetzt – die vierte industrielle Revolution ist bereits in vollem Gange! Um auch in Zukunft mit dem Wettbewerb mithalten zu können, ist die intelligente Vernetzung von Anlagen, Produkten, Menschen, Logistik und Kunden für heutige Fertigungsunternehmen unerlässlich. Als Spezialist für Industrie 4.0 und Internet of Things (IoT) hat die Cpro IoT Connect GmbH es sich zur Aufgabe gemacht, ihre Kunden auf diesem Weg zu unterstützen. Der Schwerpunkt des jungen Unternehmens liegt in der Beratung rund um das Thema „Digitalisierung"". Doch auch die aktive Entwicklung neuer digitaler Geschäftsprozesse nimmt einen wichtigen Platz ein. Ob Softwareprodukte zur Anbindung von Maschinen ans ERP-System oder Apps zur Digitalisierung von End-to-End-Prozessen – das Lösungsportfolio der Cpro IoT Connect hat viel zu bieten! + +Wir sind ein Unternehmen der Cpro GRUPPE.",2016,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/676a53186f058e0001b1dd92/picture,"","","","","","","","","" +PROSPER X GmbH,PROSPER X,Cold,"",52,information technology & services,jan@pandaloop.de,http://www.prosper-x.de,http://www.linkedin.com/company/prosper-x-gmbh,"","",273A Hamburger Strasse,Brunswick,Lower Saxony,Germany,38114,"273A Hamburger Strasse, Brunswick, Lower Saxony, Germany, 38114","testing, application software, embedded systems, hardware validation, embedded software, projektmanagement, prototyping, it-dienstleistungen, agiles projektmanagement, fahrzeugkommunikation, automotive manufacturing, iso 9001, hardwareentwicklung, it-dienstleister, projektsteuerung, automobilsoftware-entwicklung, information technology and services, tisax, b2b, automotive iot, automotive software, software solutions, software engineering, serienreife produkte, automobiltechnik, automotive embedded software, automatisierte softwaretests, fahrzeugdatenanalyse, engineering, iot, individuelle softwarelösungen, automatisierte tests, software-testing, project management, automotive systemintegration, it solutions, services, automobilindustrie, fahrzeugsoftware, qualitätsmanagement, funktionale sicherheit, automatisierung, softwareentwicklung, testautomatisierung, hardware-validierung, testing & technology, consulting, prototypenentwicklung, fahrzeugsoftware-tests, engineering services, funktionssicherheit, fahrzeughardware-validierung, transportation & logistics, embedded hardware & software, hardware, information technology & services, productivity","","Outlook, Microsoft Office 365, WordPress.org, Google Tag Manager, Mobile Friendly, Apache, Render, Remote, IoT","","","","","","",69c282fd1e946c0001f0860b,3711,54133,"PROSPER X GmbH is a German engineering and IT service provider based in Braunschweig, specializing in software development, embedded systems, and consulting for the automotive industry. Founded in 2007 and originally named CARLECTRA GmbH, the company rebranded to PROSPER X around 2018. It has expanded its presence with additional locations in Leipzig and Munich as of 2023 and employs approximately 49-100 people. + +The company offers a range of services, including consulting, project initiation, and implementation in vehicle development, transport, mobility, and energy sectors. Its core offerings focus on software development, validation, and testing of embedded systems and hardware, particularly for automotive applications. PROSPER X is recognized for its expertise in innovative technologies and has received accolades such as the 2024 German CEO Excellence Awards.",2007,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68e4f4e09979780001d89913/picture,"","","","","","","","","" +Arctictern Solutions GmbH,Arctictern Solutions,Cold,"",51,information technology & services,jan@pandaloop.de,http://www.arctictern.solutions,http://www.linkedin.com/company/arctictern-solutions,"","",10 Ludwig-Erhard-Allee,Karlsruhe,Baden-Wuerttemberg,Germany,76131,"10 Ludwig-Erhard-Allee, Karlsruhe, Baden-Wuerttemberg, Germany, 76131","autonomous drive, digital solutions for connected car, electric powertrains, cyber security, software development, platform customization, validation & verification, embedded software, object detection, cyber security testing, consulting, services, linux middleware, performance testing, ready-to-integrate autonomous drive solutions, driver distraction detection, wellness monitoring, ecu software integration, functional safety, data annotation, in-vehicle infotainment, b2b, software ownership, adas algorithms, deep learning for driver monitoring, driver monitoring system, deep learning, real-time performance algorithms, autonomous vehicle solutions, drowsiness detection, otas (over-the-air updates), transportation equipment manufacturing, other motor vehicle parts manufacturing, system integration testing, virtual data creation, pattern recognition for vehicles, deep learning methodologies, system integration, information technology, system performance optimization, connected vehicle, system architecture & design, automotive, android middleware, vehicle environment awareness, hmi development, ai/adas, sensor fusion, transportation_logistics, computer & network security, information technology & services, artificial intelligence, transportation/trucking/railroad",'+49 176 24299450,"Outlook, Mobile Friendly, WordPress.org, Shutterstock, Google Font API, Apache, reCAPTCHA, Android, Remote","",Merger / Acquisition,0,2023-03-01,3200000,"",69c282fd1e946c0001f0860c,3711,33639,"Arctictern Solutions GmbH is an automotive software services company based in Karlsruhe, Germany, founded in 2020. Acquired by Acsia Technologies in March 2023, the company operates delivery centers in Bangalore, Chennai, and Trivandrum, India. Inspired by the Arctic Tern bird, Arctictern Solutions emphasizes going the extra mile for its stakeholders and positions itself as a trusted partner in technology transformation within the automotive ecosystem. + +The company offers a range of technologies for connected vehicles, including in-vehicle infotainment systems with cybersecurity features, camera integration solutions, and digital information clusters that display vehicle performance. Additionally, Arctictern Solutions provides driver monitoring solutions that utilize deep learning for distraction and alertness detection, as well as solutions for connected vehicles and autonomous driving. The company specializes in end-to-end solutions for Software Defined Vehicles (SDVs), catering to automakers and Tier-1 suppliers.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6870c73e3c995a000174acf9/picture,Acsia Technologies (acsiatech.com),55eaf242f3e5bb164300008c,"","","","","","","" +itemis DE,itemis DE,Cold,"",190,information technology & services,jan@pandaloop.de,http://www.itemis.com,http://www.linkedin.com/company/itemis-de,https://www.facebook.com/ItemisAg/,https://twitter.com/itemis,8 Speicherstrasse,Dortmund,North Rhine-Westphalia,Germany,44147,"8 Speicherstrasse, Dortmund, North Rhine-Westphalia, Germany, 44147","legacy system refactoring, model based systems engineering, artificial intelligence, new work, diversity, webengineering, threat analysis & risk assessment, agilitaet, advanced engineering, recruiting, automotive space, fachkraeftemangel, training & coaching, systems engineering, ki, it solutions for highly regulated industries, inklusion, sicherheitskritische systeme, tara, enterprise application development, mbse, cybersecurity, digital engineering, defence, aerospace, it services & it consulting, cybersecurity-standards, innovationsförderung, projektmanagement, software-testing, qualitätsmanagement, software-architektur, interdisziplinäre teams, sicherheitszertifizierung automobil, projektbegleitung, services, regulatorische standards, software development, data security, risk assessment, traceability management, maßgeschneiderte systeme, digitaler zwilling, modellebasierte sicherheit, sicherheitsmanagement in verteidigung, it-beratung, forschungspartnerschaften, systemarchitektur, cybersecurity-tools, automotive cybersecurity, automatisierte tests, mlops, systemvirtualisierung, schlüsselfertige lösungen, hochskalierbare systeme, risk management, entwicklungsprozesse, automobilindustrie, system engineering, forschung & entwicklung, threat analysis and risk assessment, tool-integration, computer systems design and related services, government, software-tools, cloud solutions, model-based systems engineering, sicherheitskonzepte, automatisierte bedrohungsanalyse, ota-sicherheitslösungen, sicherheitszertifikate, systemmonitoring, prozessoptimierung, automatisierte codegenerierung für embedded systems, ai-integration, schulungen, cybersecurity management, modellebasierte entwicklung, iso/sae 21434, b2b, kundenprojekte, project management, cyber-resilienz, software-defined vehicles, automatisierte codegenerierung, software & it services, ota-updates, predictive maintenance, agile entwicklung, nachhaltige it-lösungen, innovationsmanagement, systementwicklung, softwareentwicklung, entwicklungsframeworks, kundenorientierte lösungen, embedded low-code-entwicklung, risikoanalyse, automotive & transportation, ki & ml, cloud & enterprise, consulting, automatisierung, sicherheitsanalysen, langjährige erfahrung, embedded systems, sicherheitszertifizierungen, automatisierte risikoanalyse, software-deployment, automatisierungstools, datenmanagement, modellbasiertes risiko-management, entwicklungsplattformen, devops, qualitätssicherung, software-engineering, software-tools-entwicklung, information technology & services, computer & network security, cloud computing, enterprise software, enterprises, computer software, productivity, embedded hardware & software, hardware",'+49 23 158693252,"Cloudflare DNS, Amazon SES, Gmail, Google Apps, CloudFlare Hosting, React, Slack, Hubspot, Google Maps, DoubleClick Conversion, Google Tag Manager, Linkedin Marketing Solutions, Google Font API, Google Analytics, Google Maps (Non Paid Users), Mobile Friendly, Google Dynamic Remarketing, DoubleClick, Remote, AI",780000,Other,780000,2022-09-01,25000000,"",69c282fd1e946c0001f0860d,7375,54151,"itemis AG is an independent IT consulting firm and software provider based in Dortmund, Germany. Founded in 2003, the company specializes in model-driven software development (MDSD) and offers custom software development and implementation services. itemis focuses on efficient programming methods and creates tailored tool chains for various applications, including enterprise, embedded, and mobile systems. The company has a strong presence in sectors such as automotive, aerospace, and production. + +The YAKINDU product suite is a key offering from itemis, supporting MDSD and systems engineering with tools for requirements management and application lifecycle management. itemis is also involved in significant projects within the Eclipse community, contributing to initiatives like Xtext and Xtend. The company emphasizes teamwork and innovation, aiming to provide sustainable benefits for its customers and employees. With offices in Germany, France, and Switzerland, itemis has established long-term partnerships with clients such as parcIT and Thalia, showcasing its commitment to quality and collaboration.",2003,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67d8f892fa523500019a56b7/picture,"","","","","","","","","" +ADVINTIC,ADVINTIC,Cold,"",16,information technology & services,jan@pandaloop.de,http://www.advintic.com,http://www.linkedin.com/company/advintic,https://www.facebook.com/ADVINTIC/,https://twitter.com/theme_fusion,3 Strasse des 18. Oktober,Leipzig,Saxony,Germany,04103,"3 Strasse des 18. Oktober, Leipzig, Saxony, Germany, 04103","it services & it consulting, medical imaging, digital health, healthcare software development, tele-radiology, radiology information system, tele-radiology platform, open source healthcare, dicom and hl7 standards, healthcare interoperability, healthcare it, medical workflow automation, telehealth, medical reports management, medical imaging ai, services, health data management, ai in healthcare, healthcare it solutions, open source healthcare solutions, healthcare software platform, medical data communication, predictive healthcare analytics, healthcare platform, medical imaging software, medical image analysis, healthcare technology, healthcare data integration, hospital information system, inventory management, healthcare data modeling, healthcare scalability, medical device integration, patient data management, consulting, medical imaging viewer, medical reports, business intelligence, healthcare data model, healthcare automation, computer systems design and related services, medical workflow, medical image archiving, b2b, dicom hl7 standards, medical data modeling, healthcare analytics, healthcare system scalability, healthcare digital transformation, healthcare reliability, healthcare data security, healthcare connectivity, healthcare, information technology & services, health, wellness & fitness, analytics, health care, hospital & health care",'+49 80 05556789,"Cloudflare DNS, CloudFlare Hosting, Slack, Mobile Friendly, reCAPTCHA, WordPress.org","","","","","","",69c282fd1e946c0001f08611,7375,54151,"ADVINTIC GmbH is an international software house based in Germany, founded in 2014, with roots dating back to 2003 in Egypt. The company specializes in developing IT solutions for healthcare, industry, big data, and the Internet of Things (IoT). ADVINTIC focuses on digitizing analog systems and paper-based workflows, particularly in patient and healthcare environments. + +With a team of 51-100 employees, ADVINTIC aims to shape the future of human lives through innovative technology. The company has established partnerships across the USA, Germany, the Middle East, and key universities, investing in new technologies for Healthcare IT, big data, and IoT platforms.",2015,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66fcec5795212d0001f387d1/picture,"","","","","","","","","" +blue veery GmbH,blue veery,Cold,"",19,information technology & services,jan@pandaloop.de,http://www.blue-veery.com,http://www.linkedin.com/company/blue-veery-gmbh,https://www.facebook.com/blueveery/,"",52B Gotzinger Strasse,Munich,Bavaria,Germany,81371,"52B Gotzinger Strasse, Munich, Bavaria, Germany, 81371","nearshoring, payment systeme, project management, verifon, sap partneredge, it oursourcing, big data, software developement, it services & it consulting, information technology & services, consulting, distributed systems, industry-specific software, high-performance software, software lifecycle management, app development, it consulting, custom software development, custom software, cloud solutions, computer systems design and related services, backend development, data security, b2b, it support, cloud applications, frontend development, software engineering, customer relationship management, big data applications, software solutions, healthcare software, software development, system integration, mobile applications, complex project delivery, data management, project navigation, app development for care homes, services, outsourcing, enterprise software, inventory management, web applications, productivity, enterprises, computer software, apps, management consulting, cloud computing, computer & network security, crm, sales, mobile apps",'+49 89 55064548,"Slack, WordPress.org, Mobile Friendly, Google Font API, reCAPTCHA, Apache, React Native, Android, Remote, AI","","","","","","",69c282fd1e946c0001f08613,7375,54151,"blue veery GmbH, based and founded 2015 in Munich, Germany, is a private, owner-run IT-company by Magdalena Niedziela-Drozd and Cezary Drozd. We combine almost 20 years of experience in the IT-sector and provide our clients extensive know-how and a wide business network.We operate in Germany and Poland, and offer our growing circle of customers a wide-ranging portfolio of services. Outstanding expertise in nearshoring and project management and the comprehensive knowledge of the German and Polish markets gives",2015,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67156af85ecaaf000175dec2/picture,"","","","","","","","","" +Antwerk. Fulfillment Logistics,Antwerk. Fulfillment Logistics,Cold,"",12,logistics & supply chain,jan@pandaloop.de,http://www.antwerk.eu,http://www.linkedin.com/company/antwerk,"","","",Wiesbaden,Hesse,Germany,65187,"Wiesbaden, Hesse, Germany, 65187","transportation, logistics, supply chain & storage, logistics & supply chain","","Outlook, Microsoft Office 365, Apache, OpenSSL, Mobile Friendly","","","","","","",69c282fd1e946c0001f08615,"","","ANTWERK is full-cycle logistics company which blur country borders, unite countries into a single network and creating a future of logistics.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66de77e69ccce500012da0b6/picture,"","","","","","","","","" +IMACS GmbH,IMACS,Cold,"",15,electrical/electronic manufacturing,jan@pandaloop.de,http://www.imacs-gmbh.de,http://www.linkedin.com/company/imacs-gmbh,https://www.facebook.com/pages/emBrick/1638710139688716,"",2 Alfred-Nobel-Strasse,Bingen,Rhineland-Palatinate,Germany,55411,"2 Alfred-Nobel-Strasse, Bingen, Rhineland-Palatinate, Germany, 55411","leiterplattenentwicklung und produktion, kundenspezifische embedded systeme, modulare hardware, werkzeug zu modellbasierten softwareentwicklung, appliances, electrical, & electronics manufacturing, individuelle embedded lösungen, sensor technology, services, automatisierte dokumentation, produktentwicklung, lifecycle management, data acquisition, forschung & entwicklung, technologieberatung, industrieautomation, software-driven development, projektentwicklung, b2b, modular embedded systems, kundenspezifische steuerung, sensor integration, iot integration, manufacturing, technical documentation, hardwareentwicklung, lifecycle obsolescence management, sensor and actuator control, system integration tools, actuator control, navigational, measuring, electromedical, and control instruments manufacturing, embedded steuerungssysteme, embedded control software, modular hardware components, cloud connectivity, embedded system prototyping, system development, smart control units, energy & utilities, open hardware for industry, hardware-software-wiederverwendung, software development tools, remote diagnostics, custom embedded control units, hardware reuse, process data recording, iot cloud platforms, sensor data processing, fachzeitschriften, real-time control, iot edge gateways, customer-specific development, automatisierte steuerung, automation engineering, hardware-software co-design, sensorik und aktorik, innovation projects, digital twin hosting, sicherheitszertifikate, embedded system design, automated documentation generation, software engineering, hardware prototyping, simulationswerkzeuge, iot-anbindung, industrial automation, hardware development, industry 4.0 solutions, process monitoring, hardware manufacturing, modular embedded control units, softwareentwicklung, software libraries, offene iot plattform, energy-efficient automation, systemintegration, embedded hardware components, project support, data logging, software development, control software, edge computing, embedded hardware plattform, simulation software, quality assurance, system integration, open source hardware platforms, messeauftritte, custom control systems, remote control and visualization, forschungspartner, embedded control systeme, resource consumption optimization, resource-efficient hardware design, transportation & logistics, remote monitoring, embedded system simulation, smart sensor integration, research & development, actuator control software, resource management, industrial iot, iot gateway solutions, produktzertifizierung, software reuse, electronics manufacturing, modular hardware, automation solutions, product certification, fertigungstechnologie, embedded systems, cloud-anbindung, kundenorientierte lösungen, prozessautomatisierung, innovationstransfer, nachhaltige automatisierung, embedded system certification, softwarebibliotheken, industry solutions, simulation tools, serienproduktion, model-based software development, modular control units, software-defined control systems, industrial iot protocols, ressourcenoptimierung, embedded software tools, cloud-connected embedded systems, process automation, modellbasiertes engineering, qualitätsmanagement, open source hardware, industry-specific control solutions, resource optimization, open hardware, embedded design tools, actuator technology, distribution, transportation_logistics, energy_utilities, electrical/electronic manufacturing, mechanical or industrial engineering, information technology & services, embedded hardware & software, hardware",'+49 7154 80830,"Outlook, Apache","","","","","","",69c282fd1e946c0001f0861c,3571,33451,"Seit 1994 entwickeln und produzieren wir Mess-, Steuerungs- und Automatisierungssysteme für verschiedene Branchen. Ob Einzelkomponenten oder komplette embedded Systeme; unsere Lösungen sind immer individuell und flexibel. + +Mit radCASE bieten wir neben der Hardware auch ein UML-basiertes Software-Entwicklungssystem an. Wir setzen dieses Tool selbst jeden Tag für unsere Programmierung ein und ermöglichen Entwicklern, ihre Aufgaben deutlich effizienter zu lösen. radCASE ist ein Tool von Entwicklern für Entwickler. + +Wir beschäftigen insgesamt an zwei Standorten 50 Mitarbeiter. Unser Stammsitz mit Hardware-/Software-Entwicklung, Fertigung von Mustern sowie Produktion von kleinen und mittleren Serien sowie Verwaltung befindet sich in Bingen am Rhein. +In Kornwestheim bei Stuttgart ist ein weiterer Standort mit dem Schwerpunkt Software- und Tool-Entwicklung ansässig. + +Ein großes Netzwerk von spezialisierten Partnerfirmen ergänzt unser Portfolio in verschiedenen Bereichen. +Durch den Verbund von Hard- und Softwareentwicklung können wir besonders flexibel auf Ihre Wünsche reagieren. +Von der Idee bis zur Serienfertigung profitieren Sie von unserer Erfahrung und dem Gespür für die technisch optimale Lösung.",1994,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670aec86e29ce40001500bfd/picture,"","","","","","","","","" +OHP Group,OHP Group,Cold,"",18,semiconductors,jan@pandaloop.de,http://www.ohp.de,http://www.linkedin.com/company/ohp-group,"","",16 Gutenbergstrasse,Rodgau,Hesse,Germany,63110,"16 Gutenbergstrasse, Rodgau, Hesse, Germany, 63110","fernwirktechnik, automatisierungstechnik, bahnautomatisierung, smart grid, itsecurity, stationsleittechnik, scada, eeg einspeisemanagement, kommunikationstechnik, prozessleittechnik, virtuelle kraftwerke, kritische infrastruktur, leittechnik, ezaregler, schaltschrankbau, netzleittechnik, niederspannungsschaltanlagen, renewable energy semiconductor manufacturing, netzschutztechnik, services, navigational, measuring, electromedical, and control instruments manufacturing, verkehrstechnik, fernwirk- und automatisierungstechnik, electrical equipment manufacturing, industrial automation, netzqualitätsüberwachung, construction & real estate, b2b, prowin professional, energy management, virtuelles kraftwerk, leittechniksoftware, offene kommunikation, energieversorgung, protokollkonverter mit it-security, micro sps, transportation & logistics, it-sicherheit, redispatch 2.0, zyklische sicherheitswartungen, kaskadenmanagement, elektronik- und softwareentwicklung, prowin power, government, protokollkonverter, energy & utilities, dezentrale erzeugungskontrolle, it-sicherheitsdienstleistungen, smart grid steuerung, systemtechnik, automatisierungs- und fernwirksysteme, langzeitbetrieb, prosga smart grid assistant, netzsicherheitsmanagement, eeg-einspeisemanagement, infrastruktur, fernalarmierung, distribution, clean energy & technology, environmental services, renewables & environment, semiconductors, hardware, electrical/electronic manufacturing, mechanical or industrial engineering, oil & energy",'+49 6106 849550,"Vimeo, Bootstrap Framework, Woo Commerce, Apache, WordPress.org, Google Tag Manager, MailChimp, YouTube, Mobile Friendly, Amazon Linux 2","","","","","","",69c282fd1e946c0001f08612,3571,33451,"Die OHP Firmengruppe ist Ihr starker Partner für anspruchsvolle Aufgaben im Bereich digitaler Systemlösungen für kritische Infrastruktur (KRITIS), Industrie und Verkehr. Unsere Mission ist es, durch Digitalisierung den Ressourceneinsatz zu optimieren. + +Die OHP Firmengruppe aus Rodgau ist Systemlieferant für Automatisierungs-, Fernwirk-, und Leittechnik. Wir bieten unseren Kunden Lösungen und Dienstleistungen für die Bereiche Infrastruktur, Industrie sowie Verkehr. Dabei setzen wir auf durchgängige Systemtechnik mit offenen Kommunikationsstandards für einen sicheren und wirtschaftlichen Langzeitbetrieb. Ein langjährig gewachsener und namhafter Kundenstamm bestätigt unsere Expertise. + +Qualität „Made in Rhein-Main"" – seit 1989 +Die Mitarbeiter von OHP bündeln das Know-how von über 35 Jahren Erfahrung. Hervorgegangen 1989 aus einer Entwicklungsabteilung der AEG in Seligenstadt greifen wir als eines der wenigen Unternehmen auf ein eigenentwickeltes Produktportfolio, vom Fernwirk-Automatisierungsgerät über offene Kommunikationstechnik bis hin zum Leitsystem, zurück. Unsere Lösungen stehen seit jeher für Investitionsschutz und Innovation. In jedem Fall erhalten unsere Kunden maßgeschneiderte Engineering– und Serviceleistungen.",1989,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/675fa91e42b24f0001d615ed/picture,"","","","","","","","","" +Agentur für Innovation in der Cybersicherheit GmbH (Cyberagentur),Agentur für Innovation in der Cybersicherheit,Cold,"",77,executive office,jan@pandaloop.de,http://www.cyberagentur.de,http://www.linkedin.com/company/cyberagentur,https://www.facebook.com/profile.php,"","",Halle (Saale),Saxony-Anhalt,Germany,"","Halle (Saale), Saxony-Anhalt, Germany","gehirncomputerschnittstellen, forschung, entwicklung, digitale identitaeten, schutz kritischer infrastrukturen, digitalisate, it, informatik, schluesseltechnologien, kritis, cyberresilienz, autonome intelligente systeme, innovation, cybersicherheit, bci, cyberbefaehigter staat, kuenstliche intelligenz, sicherheit, sichere systeme, cybersecurity, sichere gesellschaft, menschmaschineinteraktion, kryptologie, innovationsmanagement, wissensmanagement, data fusion, quantentechnologie, cyberresiliente gesellschaft, executive offices, it security, future technologies, research and development in the physical, engineering, and life sciences, weak signal detection, machine learning, information technology and services, artificial intelligence, cryptography, verschlüsselung, cyber defense in space, encrypted data analysis, post-quantum cryptology, brain-machine interaction, quantum technology, security innovation, cybercrime prevention, audio forensics, swarm intelligent systems, quantum sensors, ai security, government, digital sovereignty, brain-computer interfaces, generative foundation models, security in critical infrastructures, b2b, quantencomputing, künstliche intelligenz, research and development in cybersecurity, electromagnetic shielding communication, digitale souveränität, encryption algorithms, cybersecurity in difficult conditions, forensic digital copies, forschungsprojekte, schlüsseltechnologien, ai-supported analysis, biometric authentication, innovationsförderung, generative models, cyber defense, cybercrime detection, quantum processors, cybersecurity research, government agencies and defense, security infrastructure, non-profit, computer & network security, information technology & services, nonprofit organization management",'+49 1514 4150645,"Outlook, Microsoft Office 365, Microsoft Azure Hosting, Mobile Friendly, Nginx, ASP.NET, Microsoft-IIS, WordPress.org, Siemens SIMATIC S7, Microsoft Exchange Server 2003, ","","","","","","",69c282fd1e946c0001f0861f,8731,54171,"Agentur für Innovation in der Cybersicherheit GmbH, also known as Cyberagentur, is a state-owned company based in Halle (Saale), Germany. Founded in 2020, its primary role is to commission high-risk research projects in cybersecurity and key technologies to enhance national security. The Cyberagentur operates under the Federal Ministries of Defense and the Interior, focusing on identifying and financing innovative research that aims to secure Germany's technological sovereignty and digital independence. + +The Cyberagentur emphasizes interdisciplinary approaches and integrates security authorities and armed forces into its projects. It targets future-oriented themes such as data security, protection of critical infrastructures, and advancements in quantum technologies. The agency funds and manages research initiatives that contribute to long-term security solutions, collaborating with academic institutions, industry researchers, and startups across Germany and Europe. Its work supports the development of innovative cybersecurity technologies and key solutions for state actors.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e3c87b357efa0001744e22/picture,"","","","","","","","","" +Q.ANT,Q.ANT,Cold,"",78,electrical/electronic manufacturing,jan@pandaloop.de,http://www.qant.com,http://www.linkedin.com/company/qant,"","",29 Handwerkstrasse,Stuttgart,Baden-Wuerttemberg,Germany,70565,"29 Handwerkstrasse, Stuttgart, Baden-Wuerttemberg, Germany, 70565","lightsources, quantum, quantum photonic computing, laser, photonics, energyefficient ai & hpc, analog photonic comuting, quantum technology, next level of compute for ai & hpc, quantumsensing, photonic computing, ai acceleration, computers & electronics manufacturing, photonic hardware, semiconductor and other electronic component manufacturing, native processing server (nps), services, hpc workloads, lithium niobate photonics, government, neural network acceleration, scalable photonic chips, analog photonic deep learning, ai workloads, photonic processor, decentralized chip production, lena architecture, light-based computing, analog co-processing, decentralized chip fabrication, b2b, lithium niobate on insulator (lnoi), photonic chip manufacturing, deep learning, energy-efficient data centers, light computing, photonic chip scaling, tfln technology, medical diagnostics, photonic materials, manufacturing, light empowered native arithmetics, energy efficiency, photonic ai inference, analog optical computing, photonic quantum computing, photonic chips, photonic system integration, photonic chip pilot line, photonic physics simulations, high performance computing, analog photonic computing benchmarks, analog photonic processor, photonic deep-tech, energy & utilities, photonic neural network processing, digital transformation, photonic integrated circuits, photonic chip fabrication in europe, industrial automation, photonic ai accelerator, electrical/electronic manufacturing, mechanical or industrial engineering, artificial intelligence, information technology & services, environmental services, renewables & environment",'+49 711 252450,"Outlook, Microsoft Office 365, Slack, Mobile Friendly, WordPress.org, Apache, Google Tag Manager, Python, C#, Rust, Jupyter, LabVIEW, MATLAB, Analyzer, Photon, Visual-Basic-.NET, ICP, SQL, FUSION, Connect",144047100,Series A,72047100,2025-07-01,"","",69c282fd1e946c0001f08620,3674,33441,"Q.ANT is a German deep-tech scale-up based in Stuttgart, specializing in photonic processing solutions that utilize light for computation. Founded in 2018 by Michael Förtsch, the company employs between 51 and 200 people and operates a pilot production line for photonic chips in collaboration with the Institute for Microelectronics Stuttgart. Their technology is centered around the Light Empowered Native Arithmetics (LENA) architecture, which allows for efficient analog co-processing. + +The company offers a range of products, including the Native Processing Server (NPS), a photonic AI accelerator designed for advanced data processing and AI inference. Q.ANT also develops particle sensors for various applications, magnetic field sensors for human-machine interfaces, atomic gyroscopes for satellite technology, and is working on photonic quantum computing chips under the PhoQuant project. Their innovative approach enables significant computational efficiency and energy savings, positioning Q.ANT as a leader in the quantum technology space.",2018,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69afcd35736f020001648748/picture,"","","","","","","","","" +HRM Institute,HRM Institute,Cold,"",48,events services,jan@pandaloop.de,http://www.hrm.de,http://www.linkedin.com/company/institute-hrm,https://facebook.com/boerdingmesse,https://twitter.com/boerding_messe,4 Rheinkaistrasse,Mannheim,Baden-Wuerttemberg,Germany,68159,"4 Rheinkaistrasse, Mannheim, Baden-Wuerttemberg, Germany, 68159","personalwesen personalentwicklung, seminare, online marketing ecommerce, tagungen, workplace strategy, recruiting, kongresse, arbeitssicherheit corporate health, events, learning innovation, corporate fashion, international hrm, hr analytics, hr compliance, hr knowledge, human resources services, hr talent acquisition, consulting, hr podcasts, leadership in hr, hr workforce planning, hr technology, hr trend analysis, hr digital tools, hr best practice guides, hr events, learning & development, hr innovations, hr certifications, hr solutions, hr podcast episodes, hr software, hr trends, hr networking, hr employee engagement, employer branding, management consulting services, b2b, employee retention, hr automation, hr consulting, hr conferences, hr training, hr management, hr strategy, services, hr best practices, hr community, management consulting, workplace safety, hr data analytics, hr event organization, hr digitalization, hr tools, hr innovation projects",'+49 62 1401660,"Mailchimp Mandrill, Gmail, Google Apps, VueJS, WordPress.org, Google Tag Manager, Gravity Forms, Vimeo, Adform, Mobile Friendly, Shutterstock, YouTube, Nginx, reCAPTCHA, Apache","","","","","","",69c282fd1e946c0001f0861b,8742,54161,"HRM Institute operates HRM.de, a key platform for Human Resources Management in the German-speaking region. The organization emphasizes sustainable development in HR, prioritizing people and innovative solutions. + +HRM.de offers a variety of resources for HR professionals, including practical articles that provide insights and best practices, podcasts and interviews with HR experts discussing current trends, and checklists and tools designed to enhance recruiting processes and employee retention. The platform also covers HR technologies and innovations to help companies adapt to future work environments. + +Additionally, HRM Institute fosters a community for HR professionals to exchange knowledge, ask questions, and share experiences. This collaborative environment supports continuous learning and improvement in HR processes.",1998,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66eea9334d3a3300012bbe7f/picture,"","","","","","","","","" +fiveD,fiveD,Cold,"",20,information technology & services,jan@pandaloop.de,http://www.fived.ai,http://www.linkedin.com/company/fived-radar,"","",75 Paul-Gossen-Strasse,Erlangen,Bayern,Germany,91052,"75 Paul-Gossen-Strasse, Erlangen, Bayern, Germany, 91052","advanced signal processing, radar systems, automatic data labeling, radar platform design, radar dataset generation, radar simulation, antenna array design, digital twin solutions, virtual world, software development, b2b, radar data simulation, radar hardware imperfections, scenario scripting, radar failure case simulation, radar ai training pipelines, scenario creation tools, micro-doppler signature generation, signal processing workflow, automotive, ai training datasets, manufacturing, mimo layout optimization, radar system optimization, security false alarm reduction, virtual environment design, radar scenario tailoring, deep learning signal processing, semiconductor and other electronic component manufacturing, labeled dataset generation, ray tracing core, ai data generation, physics-based ray tracing, sensor modeling, radar network analysis, security screening, physics-based modeling, medical sensor data augmentation, scenario creation, industrial sensor prototyping, security, radar hardware validation, hyperrealistic radar environments, radar hardware optimization, hyperrealistic radar data, radar environment design, automated scenario labeling, services, medical radar datasets, industrial equipment, micro-doppler signatures, industrial sensor design, material database, virtual testing for automotive, automotive radar, signal processing pipeline, radar hardware definition, healthcare, edge computing for radar, information technology & services, mechanical or industrial engineering, health care, health, wellness & fitness, hospital & health care",'+49 91 319289162,"Outlook, Apache, WordPress.org, Mobile Friendly","","","","","","",69c282f90b5bce00010fce43,3571,33441,"fiveD GmbH is a software startup based in Erlangen, Germany, founded in 2024 by researchers from Friedrich-Alexander-Universität Erlangen-Nürnberg. The company specializes in hyper-realistic radar simulation, focusing on functional validation, AI training, and radar development across various industries. It operates from Paul-Gossen-Straße 75 and is supported by Rohde & Schwarz GmbH & Co. KG. + +The core offering of fiveD is the Radar Simulation Suite, which generates hyper-realistic raw radar data through a comprehensive four-step process. This includes scenario creation, radar definition, simulation using advanced physics-based ray tracing, and signal processing. The suite is designed to model complex radar effects, such as micro-Doppler signatures, which are essential for AI training and validation. + +fiveD targets multiple sectors, including transportation, automotive, medical, and industrial applications. The company aims to enhance sensor integration, optimize design processes, and improve efficiency while reducing reliance on physical prototypes. It is also a member of ASCS and ENVITED, collaborating with partners like EmpkinS to advance radar innovation.",2024,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67162dc327f2d2000170e3b5/picture,"","","","","","","","","" +Simq GmbH,Simq,Cold,"",13,medical devices,jan@pandaloop.de,http://www.simq.de,http://www.linkedin.com/company/simq,https://www.facebook.com/simqmedtech/,"",37 Am Schammacher Feld,Grafing bei Muenchen,Bayern,Germany,85567,"37 Am Schammacher Feld, Grafing bei Muenchen, Bayern, Germany, 85567","finite elemente, programing, cloud computing, in silico, automation of simulation workflows, simulation, future of medicine, software development, dental technology, ansys, mdr, dental, cae consultancy, dentistry, patientspecific simulation, digital twin, fda, medical device regulation, medical equipment manufacturing, biotechnology, dental restoration design, simq osa for sleep apnea diagnostics, dental restoration optimization, material testing, dental implant simulation, in silico medical software, regulatory compliance, ai and ml in medical software, medical equipment and supplies manufacturing, healthcare software, regulatory compliant software, finite element analysis, cloud-based simulation, b2b, simq vit for implant verification, finite element method (fem), healthcare technology, biomechanics in dentistry, virtual testing platform, material property testing, simq osp for standard implant personalization, dental industry, patient-specific modeling, cad integration, simq rpe for rapid palatal expansion, virtual test lab, machine learning, digital twin technology, consulting, error reduction in dental design, design verification, healthcare, simulation validation, dental implant performance prediction, patient-specific simulation, material optimization, automated biomechanical testing, realistic load scenarios, simulation in dental industry, simq aaa for aneurysm risk assessment, automated design check, biomechanical simulation, services, medical devices, enterprise software, enterprises, computer software, information technology & services, health care, health, wellness & fitness, hospital & health care, medical practice, artificial intelligence",'+49 8092 7005122,"Outlook, Microsoft Office 365, Hubspot, Google Font API, Apache, Vimeo, Mobile Friendly, Google Tag Manager, WordPress.org, Linkedin Marketing Solutions, Google Analytics, Circle, Node.js, Remote","","","","","","",69c282f90b5bce00010fce47,3843,33911,"Simq GmbH is a software development company and certified medical device manufacturer based in Grafing b. München, Bavaria, Germany. Founded in March 2015 as a spin-off from the CADFEM Group, Simq focuses on enhancing personalized patient care through biomechanical simulation technology. The company has been a certified software manufacturer for medical devices according to EU MDR guidelines since April 2018. + +Simq develops biomechanical simulation software, including the upcoming Simq DENTAL suite, designed for dental laboratories, milling centers, and dentists. This suite features tools for verifying the mechanical strength of dental restorations and automating CAD/CAM file analysis. Additionally, Simq VIT serves as medical implant simulation software, laying the groundwork for the dental product line. The company emphasizes realistic performance simulations to improve design testing, reduce rework rates, and enhance patient satisfaction. Simq's solutions are trusted by leading manufacturers and dental labs worldwide, and the company adheres to strict quality management standards in its product development.",2014,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6755de82b454830001f8046f/picture,"","","","","","","","","" +JSC Management- und Technologieberatung AG,JSC Management- und Technologieberatung AG,Cold,"",19,management consulting,jan@pandaloop.de,http://www.jsc.de,http://www.linkedin.com/company/jscag,"","",24 Im Pfarracker,Eltville,Hesse,Germany,65346,"24 Im Pfarracker, Eltville, Hesse, Germany, 65346","technical operations design of robust plant networks, it program mgmt, organizational streamlining, technical operations plant network design demand & capacity planning launch projectsreadiness cmo m, specification design & implementation of gxp relevant systems, adjustment of processes quality documents to regulatory requirements, information technology it strategy development & implementation, implementation of robust it governance processes, pharmacovigilance e2b stay compliant business support implementation & upgrade of it systems outso, major release changes of pv db systems, demand & capacity planning, transition from project work into daily operations, transfer mgmt, cmo mgmt, rollouts incl introduction of countryspecific solutions, it management it governance talent management master data management organizational transformation pr, set up of reporting, compliance tracking tools, pharmacovigilance processes optimization & organizational adjustments, support of launch projects readiness, signal detection, risk & contingency mgmt, business consulting & services, it governance, program management, computer systems design and related services, services, information technology and services, healthcare it, healthcare, e2b(r3) compliance, talent management, pharmacovigilance, automation and artificial intelligence, organizational transformation, implementation and upgrade of it systems, b2b, it management, it consulting, pharmacovigilance data standards, consulting, japan and china integration, master data management, it health check, management consulting, information technology & services, health care, health, wellness & fitness, hospital & health care",'+49 6123 7010,"Outlook, Microsoft Office 365, WordPress.org, Apache, Shutterstock, Mobile Friendly, AI","","","","","","",69c282f90b5bce00010fce4a,7375,54151,"✻ Our Key Facts ✻ + +● JSC is named after Gert-Dieter Jakubczik and Norbert Skubch +● Founded in 1991 +● Located in Eltville am Rhein (Rhine/Main Area) in Germany + +● Engaged more than 20 consultants – as of Aug 2019 +● Operates with multi-disciplinary, small teams +● Focused on Business and IT Consulting with scope of the pharmaceutical, chemical and CG industry + +● Independent and privately-owned company +● Supplemented by a network of partners for turnkey solutions + +__________________________________________________________________________________ + +✻ Our Key Differentiators ✻ + +● Strive for first class results – means no compromises in terms of quality of our analyses, concepts and recommendations +● Support effective implementation - don't just draw up concepts but support their effective and sustainable implementation on site +● Being a reliable partner – maintain long-term customer relations and look back on many years of successful and trustful cooperation with our clients + +__________________________________________________________________________________ + +✻ Visit us on our website to find out more ✻",1991,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66fe63b97978990001d6d5c9/picture,"","","","","","","","","" +Informationsfabrik GmbH,Informationsfabrik,Cold,"",33,information technology & services,jan@pandaloop.de,http://www.informationsfabrik.com,http://www.linkedin.com/company/informationsfabrik-gmbh,"",https://twitter.com/IN_FAB,10c Albersloher Weg,Muenster,North Rhine-Westphalia,Germany,48155,"10c Albersloher Weg, Muenster, North Rhine-Westphalia, Germany, 48155","business intelligence, data analytics, data science, big data, business analytics, artificial intelligence, machine learning, customer analytics, analytics solutions, data platforms, iot, cloud, it services & it consulting, data & platform strategy, services, financial services, information technology and services, insurance, data strategy, data governance, real-time data processing, power bi automation, mlops, consulting, data warehouse, cloud data platforms, microsoft fabric, data security and compliance, data management, event driven data architecture, banking, b2b, data quality monitoring, data security, computer systems design and related services, dataops, data engineering, data architecture, data migration, data platform automation, self-service analytics, data mesh, metadata driven development, data automation frameworks, manufacturing, power bi integration mit sap, data lakes, finance, analytics, information technology & services, enterprise software, enterprises, computer software, computer & network security, mechanical or industrial engineering",'+49 251 9199790,"CloudFlare CDN, Outlook, CloudFlare Hosting, Microsoft Office 365, React Redux, Hubspot, Slack, Mobile Friendly, Google Tag Manager, Google Analytics, Remote, IoT, Snowflake, Airtable","","","","","","",69c282f90b5bce00010fce50,7375,54151,"Die Informationsfabrik GmbH mit Sitz in Münster/Westfalen ist als IT-Dienstleister auf Data Analytics spezialisiert. Seit mehr als 20 Jahren entwickeln wir innovative Lösungen für Versicherer, Finanzdienstleister und die verarbeitende Industrie und generieren aus Daten Wertschöpfung, Vertrauen und intelligente Handlungsempfehlungen. Unsere tiefe Branchenkenntnis, neueste Data Analytics Methoden sowie modernste Technologien setzen wir in den Bereichen Data Warehouse, Data Lake, Dashboarding und Künstliche Intelligenz ein. + +Die Experten der Informationsfabrik helfen Unternehmen Mehrwerte aus Daten zu generieren, um eine umfassende 360° Sicht auf den Kunden über die gesamte Customer Journey hinweg zu entwickeln. Dabei legen wir den Fokus auf eine verantwortliche, ganzheitliche Entwicklung und Implementierung einer leistungsfähigen Lösung. + +Seit 2021 ist die Informationsfabrik Teil der X1F Gruppe und setzt damit auf ein starkes Netzwerk sich ergänzender Unternehmen. + +Datenschutz: https://www.informationsfabrik.com/datenschutz +Impressum: https://www.informationsfabrik.com/impressum",2000,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67e3c333c658680001467802/picture,"","","","","","","","","" +Metecon GmbH,Metecon,Cold,"",50,medical devices,jan@pandaloop.de,http://www.metecon.de,http://www.linkedin.com/company/metecon-gmbh,https://www.facebook.com/metecongmbh/,"","",Mannheim,Baden-Wuerttemberg,Germany,"","Mannheim, Baden-Wuerttemberg, Germany","mdr, qm, invitrodiagnostika, euverordnung, qualitaetsmanagementsystem, medical device software, beratung, invitrodiagnostic device regulation, medizinprodukte, digitalisierung, pms, qualitaetsmanagement, software, quality management, technical documentation, verifikation, medical software, digitalization of regulatory affairs, regulatory transformation, leistungsbewertung, klinische bewertung, validierung, trainee, pmpf, risikomanagement, ivdr, regulatory affairs, workshops, biological safety, medizinprodukteverordnung, pmcf, clinical affairs, testautomation, ivd, qms, risk management, projektmanagement, rims, eu mdr ivdr, postmarket surveillance, technische dokumentation, it compliance, ec chrep, validation, usability, verification, academy, medical device regulation, verifizierung, strategie, regulatory strategy, ecrep chrep services, other scientific and technical consulting services, technical file, market access, product lifecycle, professional, scientific, and technical services, b2b, manufacturing, product development, post-market surveillance, approval strategy, healthcare, cybersecurity, iso 13485, conformity assessment, clinical evaluation reports, compliance training, regulatory gap analysis, services, laboratory support, notified body support, regulatory documentation, external laboratories, clinical evaluation, performance studies, audits, verification and validation, regulatory compliance, certification support, international approval, consulting, medical devices, product registration, regulatory consulting, software validation, education, distribution, information technology & services, mechanical or industrial engineering, health care, health, wellness & fitness, hospital & health care, auditing",'+49 62 112346900,"Outlook, SparkPost, Hubspot, Active Campaign, Mobile Friendly, Apache, Google Tag Manager","","","","","","",69c282f90b5bce00010fce45,8731,54169,"Metecon GmbH is a consulting firm based in Mannheim, Germany, established in 1999. The company specializes in providing comprehensive support for medical device and in vitro diagnostic (IVD) manufacturers throughout the product lifecycle. With a team of 55-103 employees, Metecon partners with startups, SMEs, and large corporations, offering tailored project teams of regulatory compliance experts to manage projects of any size. + +Metecon's core services include regulatory resilience, market access, and compliance with EU Medical Device Regulation (MDR) and IVDR. They offer quality management, technical documentation, verification and validation, clinical affairs, regulatory affairs, post-market surveillance, and digitalization support. Their expertise ensures efficient compliance from product development to post-market phases, leveraging over 25 years of experience in quality management systems and regulatory affairs. The firm also provides representative services through its sister companies in Europe and Switzerland, enhancing its global reach in the medical devices sector.",1999,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/678b5e135735100001e7e345/picture,"","","","","","","","","" +ID GmbH & Co. KGaA,ID GmbH & Co. KGaA,Cold,"",72,information technology & services,jan@pandaloop.de,http://www.id-berlin.de,http://www.linkedin.com/company/id-gmbh-&-co.-kgaa,"",https://twitter.com/id_berlin,2 Platz vor dem Neuen Tor,Berlin,Berlin,Germany,10115,"2 Platz vor dem Neuen Tor, Berlin, Berlin, Germany, 10115","medical coding and documentation, medizinsoftware, qualitätskontrolle, id medics, regulatory compliance, medizinische terminologie, krankenhaussoftware, datenmanagement, id pharma apo, medizincontrolling, qualitätsindikatoren, medikationsmanagement, forschung, nlp, computer systems design and related services, healthcare it, semantic network, healthtech, codierung, medizinische codierung, support-software, klinische dokumentation, id pharma, id logik, id macs, b2b, datenanalyse, rule-engine, leistungsabrechnung, id efix, künstliche intelligenz, kliniksoftware, automatisierte dokumentation, erlössicherung, pharmaceutical software, gesundheits-it, healthcare software, fhir, hospital management software, medical controlling, releasemanagement, financial reporting, klinik-controlling, datenvisualisierung, services, dawimed, ki-basierte diagnostik, telemedicine, id qs bgen, emedikation, id diacos, id ccc, schnittstellenintegration, healthcare, natural language processing, artificial intelligence, information technology & services, health care information technology, health care, health, wellness & fitness, hospital & health care",'+49 30 246260,"Outlook, Microsoft Office 365, Vimeo, Google Maps, WordPress.org, Google Maps (Non Paid Users), Bootstrap Framework, Mobile Friendly, Nginx, Remote","",Other,0,2019-07-01,"","",69c282f90b5bce00010fce52,7375,54151,"ID GmbH & Co. KGaA, also known as ID Berlin, is a software company based in Berlin, founded in 1985. The company specializes in health IT solutions, focusing on medical documentation, coding, quality assurance, medical controlling, and secure drug management. With a team of 50-99 employees, ID Berlin has maintained steady growth over the years, emphasizing the philosophy of ""Medizin statt Bürokratie"" to simplify medical processes and reduce administrative burdens. + +ID Berlin offers a range of specialized software tools for clinics, practices, insurance companies, and research institutions. Key products include ID MEDICS® and ID DIACOS® PHARMA for medical documentation and secure drug management, as well as ID DIACOS® for coding diagnoses and procedures. Their services encompass coding, medical controlling, and quality assurance, with a commitment to ongoing updates and customer support. The company serves over 1,200 clinics across Germany, Austria, and Switzerland, aiming to enhance patient safety and streamline healthcare processes.",1985,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/672e7195f6fcd50001e2f5aa/picture,"","","","","","","","","" +Noxon GmbH,Noxon,Cold,"",13,medical devices,jan@pandaloop.de,http://www.noxon.io,http://www.linkedin.com/company/noxongmbh,"","",21 Lothstrasse,Munich,Bavaria,Germany,80797,"21 Lothstrasse, Munich, Bavaria, Germany, 80797","muscle signals, textile manufacturing, health tech, medical regulation, intelligent inks, continuous wear sensors, healthcare technology, telemedicine, sensor development, b2b, brain-computer interface, digital health, wearable muscle health, iot connectivity, hardware and software development, machine learning, textile-based sensors, data analytics, wearable technology, printed bionic sensing, textile integration, non-invasive sensors, app development, muscle activation management, neuroscience collaboration, medical equipment and supplies manufacturing, software development, regulatory compliance, deeptech textiles, health monitoring, medical devices, bionic sensors, muscle actuation, muscle monitoring, healthcare, manufacturing, textiles, health care information technology, health care, health, wellness & fitness, hospital & health care, information technology & services, artificial intelligence, wearable technologies, wearables, consumer goods, consumers, internet of things, consumer electronics, hardware, computer hardware, apps, mechanical or industrial engineering","","Outlook, Mobile Friendly, Google Font API, Apache, WordPress.org, Google Tag Manager, Nginx, Remote, Allegro X PCB Designer, Altium, Electron, EMC, Gem, AT&T, Backbase DFM, C#, Adobe, KeyShot, Blender, go+, Kotlin, AWS SDK for JavaScript, REST, Argon CI/CD Security, Azure DevOps Labs, Oracle Cloud Infrastructure, Datapipe","",Seed,"",2026-03-01,"","",69c282f90b5bce00010fce57,3699,33911,"Noxon GmbH is a Munich-based startup founded in 2022, emerging from the Munich University of Applied Sciences. The company specializes in printed biosensor technology that integrates electronics into textiles, creating bionic clothing designed for muscle monitoring and stimulation. This innovation aims to address the global mobility crisis, with projections indicating that 20% of the world's population may experience limited mobility by 2050. + +Noxon's core product is a printed biosensor system that utilizes intelligent inks with metallic nanoparticles or conductive polymers. These sensors are mass-printed onto textiles, resulting in cost-effective, washable electronics that can be incorporated into sportswear, prosthetics, and everyday clothing. The technology enables non-invasive, continuous muscle signal measurement and stimulation, linked to smartphones for effective muscle management. Noxon collaborates with universities and neuroscientific groups to enhance healthcare possibilities in movement and muscle health, targeting individuals with mobility challenges through innovative applications in sports, rehabilitation, and health monitoring wearables.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/671489c946df3e00019e1dcd/picture,"","","","","","","","","" +adesso – Business Line Mobile Solutions,adesso – Business Line Mobile Solutions,Cold,"",170,information technology & services,jan@pandaloop.de,http://www.adesso-mobile.de,http://www.linkedin.com/company/adesso-mobile-solutions,"","",1 Adessoplatz,Dortmund,Nordrhein-Westfalen,Germany,44269,"1 Adessoplatz, Dortmund, Nordrhein-Westfalen, Germany, 44269","mobile applikationen, iosdevelopment, androiddevelopment, mobile business, mobile consulting, uxdesign, uidesign, mobile strategy, augmented reality, appentwicklung, cross platform, digitale barrierefreiheit, kuenstliche intelligenz, extended reality, digital transformation, app-testing, retail, app migration, sichere softwareentwicklung, app-assessment, application management, app-entwicklung für branchen, native app-entwicklung, app-beratung, app-support, app-factory, consulting services, native app entwicklung, smart connected products, app-performance, app-qualitätskontrolle, information technology & services, künstliche intelligenz, app-entwicklung deutschland, consulting, information technology and services, app-assessment für business apps, app-factory für unternehmen, ki-basierte produkterkennung, testautomatisierung, barrierefreiheit, b2c, two-factor-authentifizierung in apps, computer systems design and related services, projektmanagement, app-compliance, e-commerce, b2b, cross platform-entwicklung, app assessment, ux-design, government, app-entwicklung österreich, app-testing-tools, extended reality-projekte, ui-design, spatial computing anwendungen, sicherheitssoftware, app-implementierung, app-migration, app-optimierung, app-entwicklung, app-design, app factory, agile methoden, app-consulting, ux/ui-design, app-qualitätsmanagement, mobile solutions, app-performance-optimierung, app-architektur, agile entwicklung, mobile application development, barrierefreie apps in der verwaltung, app-workshops, smart connected products entwicklung, software development, ki im after sales, digitale transformation, cross platform entwicklung, app-strategie, app-entwicklung schweiz, d2c, digitale barrierefreiheit in apps, services, healthcare, finance, education, legal, non-profit, manufacturing, distribution, consumer_goods, utilities, public_sector, smart_city, app_development, cross_platform, native_app, hybrid_app, ui_ux_design, test_automation, application_management, ai, extended_reality, barrier_free, secure_software, agile, app_assessment, app_factory, digital_transformation, mobile_solutions, app_strategy, app_quality, app_performance, app_support, app_migration, app_compliance, app_testing, industry_branches, management consulting, consumer internet, consumers, internet, mobile app development, health care, health, wellness & fitness, hospital & health care, financial services, nonprofit organization management, mechanical or industrial engineering",'+49 231 70007000,"MailJet, Microsoft Office 365, VueJS, Jira, Atlassian Confluence, Atlassian Bitbucket, Linkedin Marketing Solutions, Google Analytics, WordPress.org, Google Tag Manager, Cedexis Radar, Shutterstock, Google Dynamic Remarketing, Mobile Friendly, DoubleClick, reCAPTCHA, Adobe Media Optimizer, DoubleClick Conversion, Vimeo, Apache, Hubspot, Google Plus, Google AdSense, Bing Ads, Remote, Sisense, Looker, Snowflake, Databricks, SAP Analytics Cloud, Uipath, Domo, Alteryx","","","","","","",69c282f90b5bce00010fce40,7375,54151,"adesso mobile solutions GmbH is a full-service app development company based in Dortmund, Germany. Established in 2007, it has become a leader in mobile solutions, completing over 600 projects and generating annual revenues between €10-25 million. As a subsidiary of the adesso Group, the company employs 50-99 people and specializes in the entire value chain of mobile solutions. + +The company offers a range of services, including custom app development for iOS and Android, digital transformation consulting, process optimization, agile project management, and ongoing support for mobile applications. adesso mobile solutions focuses on industry-specific expertise and technical knowledge, ensuring that clients receive comprehensive support from the early stages of their projects. Notable clients include bofrost*, RWE, AOK Bayern, and WAGO, showcasing the company's commitment to delivering high-quality mobile solutions tailored to various industries.",2007,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69240b6bb531590001d7f658/picture,"","","","","","","","","" +HMI Project GmbH,HMI Project,Cold,"",18,design,jan@pandaloop.de,http://www.hmi-project.com,http://www.linkedin.com/company/hmi-project-gmbh,https://de-de.facebook.com/hmiproject/,https://twitter.com/hmiproject,92 Frankfurter Strasse,Wuerzburg,Bavaria,Germany,97082,"92 Frankfurter Strasse, Wuerzburg, Bavaria, Germany, 97082","softwareentwicklung, screendesign, html5, icondesign, user interface design, usability, design services, designprozess, industrial automation, industrielle hmis, manufacturing, benutzerfreundlichkeit, consulting, project management, projektmanagement, industrielle software, multilingual interfaces, services, human machine interface, benutzerzentriertes design, ux-expertise, computer systems design and related services, automatisierungstechnik, industrieautomation, benutzererfahrung, nutzungsorientierung, touch-bedienung, industrie 4.0 lösungen, industrie 4.0, prototyping, industrielle anwendungen, user experience, regulatory compliance, ux design, b2b, css, user interface, typescript, software development, react, webdesign, javascript, prototypen, bedienkonzepte, industrie softwarelösungen, responsive design, digital transformation, usability testing, interaktionsdesign, ui styleguides, design, webtechnologie, data visualisation, webtechnologien, mechanical or industrial engineering, productivity, ux, information technology & services, web design",'+49 931 45329770,"Outlook, Microsoft Office 365, Hubspot, Slack, Vimeo, Google Tag Manager, Apache, Mobile Friendly, Android, Remote, Aircall, AI","","","","",496000,"",69c282f90b5bce00010fce4b,1731,54151,"HMI Project GmbH is a design studio based in Würzburg, Germany, specializing in ergonomic Human Machine Interfaces (HMIs) and software user interfaces for industrial applications. Founded in 2011 by Markus Buberl and Christian Rudolph, the company has a team of around 20 professionals, including designers, usability experts, and developers. HMI Project focuses on user-centered design and web technology, delivering high-quality, touch-optimized solutions that integrate seamlessly into existing processes. + +The company offers a range of services, including UX/UI design consultation, user experience analysis, prototyping, interface design, and frontend development. HMI Project has developed award-winning projects for notable clients in the automation and manufacturing sectors, such as Schenck, Schneider Electric, and KraussMaffei. Their work has been recognized with multiple iF Design Awards and German Design Awards, highlighting their commitment to innovative and user-friendly design in industrial contexts.",2011,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f83f02f1830200018cedc1/picture,"","","","","","","","","" +FIS-ASP Application Service Providing und IT-Outsourcing GmbH,FIS-ASP Application Service Providing und IT-Outsourcing,Cold,"",77,information technology & services,jan@pandaloop.de,http://www.fis-asp.de,http://www.linkedin.com/company/fis-asp,"","",4 Roethleiner Weg,Grafenrheinfeld,Bavaria,Germany,97506,"4 Roethleiner Weg, Grafenrheinfeld, Bavaria, Germany, 97506","application service providing, itoutsourcing, hosting, it services & it consulting, information technology & services",'+49 972 391880,"Microsoft Office 365, Amazon SES, Hubspot, Google Tag Manager, Gravity Forms, WordPress.org, reCAPTCHA, DoubleClick, Mobile Friendly, Nginx, Shutterstock, Facebook Custom Audiences, Google Analytics, Facebook Login (Connect), Hotjar, Google Font API, Adobe Media Optimizer, Cedexis Radar, Vimeo, Bing Ads, DoubleClick Conversion, Linkedin Marketing Solutions, YouTube, Facebook Widget, Google Dynamic Remarketing, Vincere, Remote, Android","","","","","","",69c282f90b5bce00010fce4f,"","","FIS-ASP GmbH ist ein stolzes Mitglied der FIS-Gruppe mit über 850 engagierten Mitarbeitenden. Dabei ist die FIS-Gruppe einer der wenigen Anbieter, der SAP Kunden End-to-End begleitet und von der Infrastruktur über die passenden Lösungen bis hin zur Strategie kompetent berät und umfassend unterstützt. Der Schwerpunkt von FIS-ASP liegt im Managed Service, Cloud Computing, Application Delivery und IT Security. + +Wir bieten ein Rundum-sorglos-Paket für unsere Kunden und bringen komplexe IT-Systeme schnell, effizient und benutzerfreundlich in Unternehmen. Die FIS-ASP GmbH steht für Qualität, Sicherheit und Stabilität und belegt dies unter anderem durch Zertifizierungen nach DIN EN ISO 9001 und DIN ISO/IEC 27001. + +Drei moderne Rechenzentren, am Campus sowie 20 km davon entfernt, bilden die DNA der FIS-ASP GmbH. Mit modernster Technik und redundanten Systemen garantieren wir 24 Stunden am Tag und 7 Tage die Woche die Verfügbarkeit der Systeme für unsere Kunden. Über 49.000 zufriedene User und über 1.000 betreute SAP-Systeme in über 15 Branchen sprechen für sich: Die FIS-ASP GmbH ist ein zuverlässiger und kompetenter Partner, hinter der ein hochqualifiziertes Team steckt, welches mit Ausdauer, Know-how und Begeisterung ihre IT-Systeme verwaltet. + +Unser unternehmerisches Handeln ist nicht von kurzfristigem Erfolg bestimmt, sondern wir verfolgen ein nachhaltiges und langfristiges Geschäftsmodell. Wir sehen jeden Kunden als Referenzkunden an und bieten somit gleichbleibende Qualität und Leistung auf allen Ebenen. + +Datenschutzerklärung: https://www.fis-asp.de/datenschutz-linkedin/ +Impressum: https://www.fis-asp.de/impressum-2/",2001,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670b3079336c90000124c028/picture,"","","","","","","","","" +AKRA TEAM,AKRA TEAM,Cold,"",20,medical devices,jan@pandaloop.de,http://www.akrateam.com,http://www.linkedin.com/company/akra-team,"","",17A Am Penzinger Feld,Landsberg am Lech,Bavaria,Germany,86899,"17A Am Penzinger Feld, Landsberg am Lech, Bavaria, Germany, 86899","medical equipment manufacturing, eu ivdr, consulting, global regulations, medical devices, iso 14971:2019, regulatory compliance, usability, regulatory affairs, performance evaluation, eu mdr, drug-device-combination templates, healthcare, risk management, other scientific and technical consulting services, annex xvi devices, b2b, cybersecurity, vigilance system, regulatory consulting, quality management systems, udi, clinical evaluation, clinical performance studies, technical documentation, services, post-market surveillance, derogation art 97, clinical investigation, education, hospital & health care, health care, health, wellness & fitness",'+49 8191 9634784,"Outlook, Microsoft Office 365, Slack, Apache, Mobile Friendly, reCAPTCHA, WordPress.org, Remote","","","","","","",69c282f90b5bce00010fce54,8731,54169,"AKRA TEAM is a regulatory affairs consultancy based in Landsberg am Lech, Germany, founded in 2021 by Dr. Bassil Akra. The company specializes in helping stakeholders in the healthcare industry, including innovators and regulatory bodies, navigate the complexities of bringing medical devices, in-vitro diagnostics, and combination products to market in compliance with legal requirements. + +The consultancy offers a range of services, including support for EU Medical Device Regulation (MDR) and In-Vitro Diagnostic Regulation (IVDR), clinical and regulatory strategy, post-market surveillance, quality management system implementation, and technical documentation preparation. AKRA TEAM also provides tailored training programs on regulatory compliance and product lifecycle management. The company is recognized for its expertise in healthcare legislation and has collaborated with notable organizations like Medtronic and MED-EL, assisting them with compliance projects and regulatory guidance.",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68c0e971e53fad0001a27200/picture,"","","","","","","","","" +voraus robotik GmbH,voraus robotik,Cold,"",26,information technology & services,jan@pandaloop.de,http://www.vorausrobotik.com,http://www.linkedin.com/company/vorausrobotik,"","",7 Carl-Buderus-Strasse,Hanover,Lower Saxony,Germany,30455,"7 Carl-Buderus-Strasse, Hanover, Lower Saxony, Germany, 30455","software, real time, automation, industrial devops, itot merge, simulation, robotics, automated testing, embedded software products, hardware-agnostic software, custom software development, virtual commissioning, automated benchmarking, multi-robot coordination, test infrastructure, open interfaces and standards, modular automation software, reduction of integration costs, modular software platform, fieldbus integration, software development tools, devops in automation, sustainability, industrial automation platform, manufacturing, consulting, automation lifecycle management, hardware-independent software, voraus.core, ai integration in automation, predictive maintenance support, edge computing, benchmark testing, flexible deployment architecture, virtualization technology, component virtualization, it-ot convergence, services, simulation environment, simulation and testing infrastructure, devops automation, customizable automation solutions, software-driven automation, real-time control system, distribution, automation system integration, future-proof automation technology, cloud deployment, software-based motion control, it and ot integration, industry 4.0 solutions, voraus.support, high-level language programming, cloud services, high-level programming languages, automation system orchestration, industrial machinery manufacturing, b2b, containerized automation software, open source components, system design and architecture, scalable automation solutions, devops, containerized control system, automation project support, software development environment, machine learning, motion planning, machine and robot control, voraus.pioneer, digital twin for automation, virtualization of components, automation platform, multi-vendor system integration, real-time orchestration, information technology & services, mechanical or industrial engineering, environmental services, renewables & environment, cloud computing, enterprise software, enterprises, computer software, artificial intelligence",'+49 51 189810600,"Cloudflare DNS, Outlook, Microsoft Office 365, Slack, Mobile Friendly, Nginx, Apache, Google Tag Manager, WordPress.org, Remote, IoT, AI","","","","","","",69c282f90b5bce00010fce56,3571,33324,"voraus robotik GmbH is a startup based in Hannover, Germany, founded in 2022 as the successor to Yuanda Robotics. The company specializes in a hardware-agnostic software platform that integrates information technology (IT) and operational technology (OT) to enhance industrial automation. With a team of 11-50 employees, it combines modern software methods with robust OT for real-time control of automation systems. + +The company's core offerings include voraus.core, a containerized operating system that orchestrates entire automation cells, and voraus.pioneer, a Python-based development environment for programming and optimizing automation processes. Additionally, voraus robotik provides consulting and development services to support projects and integrate solutions into existing infrastructures. The platform is designed to empower a wide range of users, from machine builders to industrial companies, by reducing complexity and costs while promoting efficient automation.",2022,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69a3afbf0b89ef00014da273/picture,"","","","","","","","","" +comlet,comlet,Cold,"",76,information technology & services,jan@pandaloop.de,http://www.comlet.de,http://www.linkedin.com/company/comlet-verteilete-systeme-gmbh,"","",27 Amerikastrasse,Zweibruecken,Rhineland-Palatinate,Germany,66482,"27 Amerikastrasse, Zweibruecken, Rhineland-Palatinate, Germany, 66482","technologieberatung, connectivity, embedded engineering, security, applied ai, cloud services, testing, softwareentwicklung, testautomatisierung, digitalisierung, configuration management, embedded, kuenstliche intelligenz, hardwareentwicklung, automotive, iot, information technology and services, digital cockpit, ota update kit, connectivity solutions, manufacturing, mobile app development, security solutions, security by design, cloud integration, smart city, industrial iot, black-box-tests, data analytics, iot security, b2b, quality assurance, device management, fuzzing von eingebetteten systemen, system testing, verteilte systeme, vernetzte systeme, devops in embedded systems, traceability in software, automotive software, iot development, software development, embedded testkit, cybersecurity, continuous testing, iso 25010, software config management, data security, education, iot solutions, security in iot, embedded software, services, software automation, test automation, iso 29119-5, continuous integration für embedded, smart farming, product development, transportation & logistics, behavior-driven testing, product quality, automatisierte systemtests, data-driven testing, echtzeit-softwareentwicklung, computer systems design and related services, consulting, distribution, transportation_logistics, cloud computing, enterprise software, enterprises, computer software, information technology & services, mechanical or industrial engineering, computer & network security",'+49 633 2811100,"Outlook, Amazon SES, Docker, Remote","","","","","","",69c282f90b5bce00010fce44,7375,54151,"comlet Verteilte Systeme GmbH is a development service provider specializing in software engineering for embedded systems and the Internet of Things (IoT). The company focuses on delivering advanced technology solutions for distributed systems, showcasing expertise in embedded software development and IoT applications. + +comlet offers a wide range of services, including technology consulting to help clients determine the best tech strategies, software and hardware development for custom embedded solutions, and system integration to ensure seamless connectivity. The company also provides testing services to validate reliability and performance. Its solutions emphasize connectivity for effective device communication and digital cockpit technologies, which are likely designed for automotive applications.",2001,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68334d09f908370001844074/picture,"","","","","","","","","" +VISUS Health IT GmbH,VISUS Health IT,Cold,"",200,information technology & services,jan@pandaloop.de,http://www.visus.com,http://www.linkedin.com/company/visus-gmbh,https://facebook.com/VISUSHealthIT/,"",15 Gesundheitscampus-Sued,Bochum,North Rhine-Westphalia,Germany,44801,"15 Gesundheitscampus-Sued, Bochum, North Rhine-Westphalia, Germany, 44801","pacs, hcm, software, healthcareit, healthcare, digitalhealth, ehealth, software development, medical data compliance, medical image sharing platform, medical data support, medical data maintenance, medical data management system, medical imaging software, medical data workflow automation, medical data user interface, b2b, healthcare analytics, medical data processing, hl7 interface, medical imaging solutions, healthcare technology, healthcare software, radiology, medical data encryption, healthcare it, medical data connectivity, radiology pacs, medical data interoperability standards, medical data ai integration, medical data archiving, computer systems design and related services, radiology software, medical data sharing, medical data multi-device compatibility, medical data analysis, medical data multi-user access, medical data platform, services, medical data compliance certifications, medical data security standards, radiology workflow software, dicom integration, medical data interoperability, medical data visualization, medical data consolidation, healthcare content management, medical data customization, medical data mobile access, mammography pacs, cloud storage for medical data, medical data software, medical data scalability, medical content management system, medical data cloud integration, medical data security, medical data remote access, digital transformation, medical data reliability, enterprise pacs, medical imaging, medical data performance, medical data management, medical workflow optimization, medical data integration, medical data solutions, medical data backup, medical data retrieval, medical information management, health information technology, information technology & services, health care, health, wellness & fitness, hospital & health care",'+49 23 4936930,"Outlook, Microsoft Office 365, Slack, Salesforce, Linkedin Marketing Solutions, Mobile Friendly, Google Tag Manager, Apache, Remote, AI",260000,Other,260000,2021-04-01,20000000,"",69c282f90b5bce00010fce49,7375,54151,"VISUS Health IT GmbH is a digital health software company based in Bochum, Germany, founded in 2000. As a subsidiary of CompuGroup Medical SE & Co. KGaA since 2021, it specializes in medical image and data management solutions. The company employs around 110-200 people and generates approximately $7-22.8 million in annual revenue, with its products deployed in over 40 countries. + +The company develops JiveX solutions, which focus on radiological image data management, facility-wide medical data management, and healthcare data exchange. JiveX products are known for their high interoperability and scalability, adhering to standards like DICOM, IHE, HL7, and FHIR. Key offerings include JiveX Enterprise PACS, healthcare content management, and connectivity solutions, along with broader IT services in PACS, database management, and healthcare data security. VISUS is also a member of the Medical Imaging and Technology Alliance (MITA), contributing to advancements in medical imaging informatics.",2000,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/686f5f51b41c0100014472ea/picture,CompuGroup Medical SE & Co. KGaA (cgm.com),55921f5e7369641908cb7e00,"","","","","","","" +Meister Automation GmbH,Meister Automation,Cold,"",25,industrial automation,jan@pandaloop.de,http://www.meister-automation.de,http://www.linkedin.com/company/meister-automation-gmbh,https://www.facebook.com/MeisterAutomation,"",20 Gyula-Horn-Strasse,Wertheim am Main,Baden-Wuerttemberg,Germany,97877,"20 Gyula-Horn-Strasse, Wertheim am Main, Baden-Wuerttemberg, Germany, 97877","spsprogrammierung, betriebssicherheit, dguvpruefservice, schaltschrankbau, anlagenbau, lichtschrankenpruefung, sonderloesungen, retrofit von maschinen und anlagen, nachlaufmessung, sondermaschinenbau, regalpruefung, embedeed, entwicklung, amfe brandschutz, prüfsysteme, energy efficiency, embedded systems, industrial machinery manufacturing, retrofit, steuerungstechnik, branchenunabhängige lösungen, safety & security equipment, sonderlösungen, b2b, manufacturing, industrieelektronik, automation, projektmanagement, io-link schnittstellen, operational efficiency, antriebstechnik, industrial automation, industriesicherheit, sicherheitstechnik, risk assessment, machine learning, zertifizierung, electrical equipment & components, echtzeit-datenanalyse, project management, industrie- und prozesstechnik, automatisierung, industrie 4.0 integration, automatisierte dichtheitsprüfung, brandschutzlösungen, electrical engineering, software development, system integration, industrielle lösungen, maßgeschneiderte elektroniklösungen, additive fertigung, industrie 4.0, sensorikentwicklung, process control & automation, environmental services, renewables & environment, embedded hardware & software, hardware, mechanical or industrial engineering, artificial intelligence, information technology & services, productivity",'+49 934 2911010,"Salesforce, Outlook, Microsoft Office 365, Ubuntu, Google Analytics, Google Tag Manager, Apache, Mobile Friendly, Remote","","","","","","",69c282f90b5bce00010fce4e,3599,33324,"Meister Automation GmbH is a German engineering company located in Wertheim am Main. Founded in 1988, it specializes in custom automation solutions for mechanical engineering, industrial, and process technology. The company is known as a specialist for custom solutions in machine building, offering a wide range of services and expertise across various industries. + +The firm focuses on the development, engineering, and production of automation solutions, as well as trading in control and drive technology. It provides comprehensive support from initial ideas through implementation, ensuring tailored solutions that meet specific industry needs. Meister Automation also operates Meister Brandschutz GmbH & Co. KG, which offers innovative fire protection services and is recognized as a leading VdS-certified installer. The company collaborates with technology partners to select optimal technologies for efficient outcomes.",1988,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670c0f0e0eac6100015d0aed/picture,"","","","","","","","","" +Infraforce GmbH,Infraforce,Cold,"",17,management consulting,jan@pandaloop.de,http://www.infraforce.de,http://www.linkedin.com/company/infraforce-gmbh,https://www.facebook.com/infraforce,"",1A Gottfried-Arnold-Strasse,Giessen,Hesse,Germany,35398,"1A Gottfried-Arnold-Strasse, Giessen, Hesse, Germany, 35398","business consulting & services, cloud security, skalierbare sicherheitslösungen, it-security, exploit protection, security partnernetzwerk, intrusion prevention system, tisax, security incident management, incident response, security technologiepartner, datenschutz, security operation services, threat intelligence, iso27001, cyber insurance, information technology & services, consulting, security awareness, it-sicherheitsstandard, systemintegration, cybersecurity, security portfolio, security training, information technology and services, network security, it-sicherheitsmanagement, security support, computer systems design and related services, security testing, b2b, regulatorische compliance, cyber-risikoanalyse, firewall, security monitoring, it-sicherheitslösungen, sicherheitsarchitektur, operative cybersicherheit, access control, it-infrastruktur, data encryption, support-pakete, data protection, security dokumentation, security awareness tests, security zertifizierungen, iso27001 implementierung, herstellerunabhängige beratung, it-risikoanalyse, cyberabwehr, endpoint security, security audit, security schulungen, tisax zertifizierung, vulnerability assessment, it-sicherheitsberatung, security policy development, security tools, server security, penetration test, it-compliance, it-sicherheitszertifizierung, it-sicherheitsstandard b3s, services, system integration, management consulting",'+49 64 211669690,"Outlook, Google translate API, WordPress.org, YouTube, Apache, Mobile Friendly, Remote, AI","","","","","","",69c282f90b5bce00010fce48,7379,54151,"Infraforce und unsere Partner sind 24/7 für Sie da, damit Ihre IT-Kollegen nachts ruhig schlafen können. Wir verbinden unsere jahrelange Erfahrung im Bereich IT-Security mit dem Know-how und der sprichwörtlichen Verlässlichkeit von TÜV Hessen.",2011,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68331d758f0ac80001ec90c4/picture,"","","","","","","","","" +Spicetech GmbH,Spicetech,Cold,"",16,information technology & services,jan@pandaloop.de,http://www.spicetech.de,http://www.linkedin.com/company/spicetech-gmbh,"","",21 Gaisburgstrasse,Stuttgart,Baden-Wuerttemberg,Germany,70182,"21 Gaisburgstrasse, Stuttgart, Baden-Wuerttemberg, Germany, 70182","predictive service, softwareasaservice, legaltech, mlops, ki systeme in sicherheitskritischen anwendungen, aiasaservice, prozessoptimierung, kuenstliche intelligenz, modellierung energiewende, prognosen, verkehrswende, ladesaeulen, it services & it consulting, ladeinfrastruktur-analyse, datenvisualisierung, ki-modelleinsatz, machine learning, sql-api-transformation, product-as-a-service, smart grid technologien, energie- und lebensmittelbranche, software engineering and cloud services, sql to rest api, custom software solutions, data process automation, data analytics and insights, ki-modelle, digital transformation tools, energieverbrauchsanalyse, ki-gestützte absatzplanung, energieeffizienz, data-driven decision support, ki-gestützte simulationen, datenqualitätssicherung in der energiewende, echtzeitdaten, rest api transformation, ki-überwachung, daten-api-entwicklung, digital transformation, consulting, ki-gestützte automatisierung, ai-based forecasting, predictive analytics, software development, energiewende-tools, information technology & services, datenanalyse-tools, energieinfrastrukturplanung, data integration and automation, ki-gestützte entscheidungsfindung, ki-lizenzmodelle, cloud-based ki services, smart grid solutions, information technology and services, ki-basierte prognose, sicherheitskritische ki-systeme, automatisierte vertragsprozesse, datenmanagement, energieverbrauchsvisualisierung, cloud computing, ladeinfrastruktur planning, datenqualitätssicherung, b2b, energy grid management, ki licensing models, datenanalyse, energieinfrastruktur-optimierung, datenverarbeitung, daten-transformation in der energiebranche, energy consumption transparency, energie- und umwelttechnik, energie- und netzdatenmanagement, automatisierte datenübertragung, ki-basierte prognosemodelle, government, energie- und wissenschaftssektor, prognosemodelle, automatisierung von datenprozessen, ai model monitoring, electric vehicle charging planning, business intelligence, customer-specific digital solutions, system validation and testing, energy, custom software development, ki-validierung, cloud-computing, ki-gestützte optimierung, computer systems design and related services, datenintegration, energie- und netzmanagement, science and public sector solutions, netzplanung, energy data management, artificial intelligence, risk assessment, ki-systemprüfung, ai system validation, food & beverage industry, energy sector solutions, data security and validation, services, datenprozessautomatisierung, datenmonitoring, open-source-technologien, data management, ki-gestützte systemprüfung, lizenzbasierte software, ai in industrial applications, industry-specific ki solutions, cloud-software, distribution, transportation_logistics, energy_utilities, enterprise software, enterprises, computer software, analytics",'+49 711 93572672,"Outlook, Bootstrap Framework, Google Font API, Google Maps, WordPress.org, Google Maps (Non Paid Users), Mobile Friendly, Apache, Node.js, Remote, Aircall","","","","","","",69c282f90b5bce00010fce4c,3829,54151,"Die Spicetech GmbH ist auf die Konzeption, Entwicklung und den Betrieb von Software und AI-as-a-Service Systemen spezialisiert. Unsere Anwendungen kommen im Energie-, Lebensmittel-, Legal- und Wissenschaftssektor zum Einsatz.",2015,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/695945846b6e18000129dec3/picture,"","","","","","","","","" +C&S Computer und Software GmbH,C&S Computer und,Cold,"",17,information technology & services,jan@pandaloop.de,http://www.managingcare.de,http://www.linkedin.com/company/c-s-computer-und-software-gmbh,"","",1 Wolfsgaesschen,Augsburg,Bavaria,Germany,86153,"1 Wolfsgaesschen, Augsburg, Bavaria, Germany, 86153","behindertenhilfe, quartierkonzepte, dipa, altenhilfe, sozialwirtschaft, ehealth, jugendhilfe, caresolutions, forschung, telematik infrastruktur, gaiax, mobilehealth, offene sozialarbeit, digialisierung, digitalization, software development, digitale assistenzsysteme pflege, pflegecontrolling, pflege-apps, pflegeprozessmanagement, forschungsprojekte, kontaktlose vitalmessung, pflegequalität, research and development in healthcare, interaktive robotik in der pflege, pflege im smart living umfeld, ki-gestützte therapiesysteme, consulting, telemedicine, arbeitsentlastung pflegekräfte, sensoren und schnittstellen, pflegeinformationssysteme, pflegeorganisation, pflege-apps für demenzpatienten, information technology and services, vernetzungsplattform, data management, software für die sozialwirtschaft, social services software, computer systems design and related services, b2b, ai in der pflege, digitale pflegeplattform, gaia-x konforme pflegeplattform, sensorintegration, remote patient monitoring, healthcare software, telematikinfrastruktur, sensorbasierte vitalwertmessung, pflegequalitätssicherung, telemedizin softwarelösungen, sozialwirtschaft software, pflege- und betreuungslösungen, cloudbasierte dokumentation, pflegedokumentation, pflege in der telematikinfrastruktur, pflege- und sozialdatenmanagement, pflegeforschung, innovative präventionsmaßnahmen pflege, digitale transformation pflege, pflegeinnovation, smart care technologien, pflegepersonalentlastung, pflege 4.0, pflege- und betreuungssoftware, healthtech, pflege-it, services, forschungs- und entwicklungsplattform, healthcare, education, non-profit, information technology & services, health care information technology, health care, health, wellness & fitness, hospital & health care, nonprofit organization management",'+49 821 25820,"MailJet, Outlook, Microsoft Office 365, Vimeo, WordPress.org, Apache, Mobile Friendly, Google Font API, Azure Devops, Docker, Node.js, Circle","","","","","","",69c282f90b5bce00010fce53,8731,54151,"C&S Computer und Software GmbH is a software development company located in Augsburg, Germany, specializing in solutions for the social economy sector for over 40 years. Founded in 1985, it has become a significant player in the German-speaking region, with more than 6,000 installations. The company's mission emphasizes the integration of social responsibility with economic thinking. + +C&S provides a range of branch solutions tailored for the social economy, including care and treatment documentation, client management, billing and accounting, quality management, and controlling. Its primary product suite, C&S CareWare®, is a modular solution designed to meet various needs. Additionally, the ManagingCare Digital (MCD) platform facilitates the digitalization of care and treatment processes. C&S serves a diverse clientele, including nursing homes, outpatient care services, counseling centers, and organizations focused on youth welfare and disability services. + +The company also operates the C&S Institut, which supports research and innovation in the field, addressing challenges in social economy and digitalization. C&S is committed to continuous development and interoperability through open interfaces and telematic infrastructure solutions.",1983,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/682905965a5be3000122d68e/picture,"","","","","","","","","" +aiXtrusion GmbH,aiXtrusion,Cold,"",20,information technology & services,jan@pandaloop.de,http://www.aixtrusion.de,http://www.linkedin.com/company/aixtrusion-gmbh,"","",19 Vosswinkeler Strasse,Arnsberg,North Rhine-Westphalia,Germany,59757,"19 Vosswinkeler Strasse, Arnsberg, North Rhine-Westphalia, Germany, 59757","projektmanagement, mess und pruefsysteme, automatisierungstechnik, prozesssimulation, industrielle bildverarbeitung, embedded hardware, embedded software, informatiosnsysteme, gehaeusetechnik, it system custom software development, artificial intelligence, machine learning, elektronikfertigung, decon konfigurationswerkzeug, system-on-module, aix.pert prozessanalysesystem, embedded systems, smart home, hardwareentwicklung, manufacturing, cloud solutions, schraubenkopfauflagenerkennung, elektronikentwicklung, hardware-design, morex analyse-tool, aixtight messverfahren, cloud computing, bildverarbeitungssysteme, custom software, cloud-lösungen, services, prozessanalysesystem, prozessanalyse, serienproduktion, industrieautomation, aixcore system-on-module, client-server-architektur, automatisierte prüfsysteme, information technology & services, industrial automation, client-server-systeme, industrie 4.0, bildverarbeitung, automatisierung, kundenspezifische elektronik, cloud-computing, system integration, b2b, software engineering, elektronikdesign, sheetcoolaix, hard- und softwareentwicklung, wenverti prozesssimulation, recyclinganlagen automatisierung, kundenspezifische lösungen, softwareentwicklung, consulting, navigational, measuring, electromedical, and control instruments manufacturing, systemintegration, software development, digital transformation, mess- und prüfsysteme, simulationssoftware, embedded hardware & software, hardware, internet of things, consumers, mechanical or industrial engineering, enterprise software, enterprises, computer software",'+49 24 089299885,"Microsoft Office 365, AI",230000,Other,230000,2022-08-01,"","",69c282f90b5bce00010fce41,3571,33451,"Hard- und Softwareentwicklung aus einer Hand + +Mit mehr als 30 Jahren Erfahrung als branchenunabhängiger Entwicklungsdienstleister ist aiXtrusion der Spezialist, wenn es um kundenspezifische, ganzheitliche Hard- und Softwarelösungen aus einer Hand geht. + +Wir verstehen uns als innovative Architekten für Hard- und Software mit Blick auf die gesamte Komplexität des Engineerings. In den drei miteinander korrespondierenden Geschäftsfeldern erfüllen wir täglich mit hoher Qualität anspruchsvolle Aufgabenstellungen entlang der Wertschöpfungsketten unserer Kunden bis hin zur Serienproduktion von Elektronikprodukten.",1983,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67597e6d3b6c080001472271/picture,"","","","","","","","","" +CodeWrights GmbH,CodeWrights,Cold,"",41,information technology & services,jan@pandaloop.de,http://www.codewrights.de,http://www.linkedin.com/company/codewrights-gmbh,"",https://twitter.com/WrightsCode,12 Bahnhofplatz,Karlsruhe,Baden-Wuerttemberg,Germany,76137,"12 Bahnhofplatz, Karlsruhe, Baden-Wuerttemberg, Germany, 76137","fieldbus communication, cloud & mobility, opc ua, communication dtms development, embedded software, consulting & development services, noa, app development, fdt, iiot, padim, filedbus communication, fdt platform developments, software for device integration eddl, eddl, fdi, interpreter dtm solutions, test certification services, software development, device management, edge computing in automation, protocol bridging, automatisierungstechnik, distribution, mobile device access, software modules, mtp packages, industry standards, device health monitoring, ethernet-apl (advanced physical layer), software for industrial devices, industry interoperability standards, manufacturing, opc-ua, device identification, services, testautomatisierung, mtp, industrie 4.0, module type package (mtp), b2b, software testing, device integration, digital transformation, data security, custom software development, digital twin integration, digital transformation support, firmware development, industrial automation, cloud-lösungen, consulting, project management, automation system integration, computer systems design and related services, opc-ua companion specifications, fdt/dtm, industry interoperability, protocol support, noa (namur open architecture), softwareentwicklung, security standards iec/iso 62443, kommunikationsprotokolle, fdi technology, prozessautomatisierung, digitale transformation, custom software, construction, device diagnostics, device configuration, time-to-market acceleration, software services, fdt (field device tool), fdi (field device integration), geräteintegration, device information model, standardisierung, software module, system integration, automation solutions, ethernet-apl, iot, cloud services, device type manager (dtm), requirements engineering, cloud solutions, automation standards, pa-dim (process automation device information model), predictive maintenance, cybersecurity, cloud integration, individuelle softwarelösungen, cybersecurity in automation, tested software components, software lifecycle, apps, information technology & services, mechanical or industrial engineering, computer & network security, productivity, cloud computing, enterprise software, enterprises, computer software","","Salesforce, Outlook, Microsoft Office 365, Google Tag Manager, Mobile Friendly, Nginx, Remote","",Merger / Acquisition,0,2025-08-01,"","",69c282f90b5bce00010fce46,3825,54151,"CodeWrights is your powerful development partner for the market success of your devices in automation technology. As a reliable partner in the value chain of our customers, we develop custom software solutions for industrial companies. + +With many years of experience and extensive know-how, we support our customers in further developing their devices and quickly adapting to market requirements. As a member of the major technology associations, we have been shaping common integration technologies in the interests of our customers for over 20 years. + +At our location in Karlsruhe, we have a strong, international team of experienced software developers and not only rely on technological expertise, but also on passion and enjoyment of our work. + +We offer: Individual software solutions in the field of Mobile and Cloud Applications, Industrial Automation Software and Embedded Software. + +Whether familiar procedures or innovative paths: We are your reliable partner and consultant. + +Contact us for a non-binding consultation!",2002,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66eed37e493f7d000113496d/picture,Endress+Hauser Group (endress.com),5f40e22f660d1500012f2f0d,"","","","","","","" +ML!PA Consulting GmbH,ML!PA Consulting,Cold,"",48,information technology & services,jan@pandaloop.de,http://www.ml-pa.com,http://www.linkedin.com/company/ml-pa-consulting-gmbh,https://facebook.com/mlpaconsulting/,"",10 Fredersdorfer Strasse,Berlin,Berlin,Germany,10243,"10 Fredersdorfer Strasse, Berlin, Berlin, Germany, 10243","iot, embedded, hardware development, analytics, bi, iiot, it services & it consulting, energiewirtschaft, automatisierte datenverarbeitung, edge computing, project management, risk assessment, softwareentwicklung, hardware- und softwareentwicklung, it-infrastruktur, rostlokalisierung, zertifizierungen, e-commerce, qualitätsmanagement, serienfertigung, smart data, iot-lösungen, iot-entwicklung, cloud-backend-architektur, prototyping, fahrzeugflottenmanagement, services, iot-prototypenentwicklung, qualitätskontrolle, predictive maintenance, bahn- und schienenverkehr iot, datenvisualisierung, intelligente elektronikentwicklung, it-baukasten, datenmanagement-systeme, predictive analytics, software development, kostenreduktion in der produktion, automatisierte tests, echtzeitdaten, ce-, fcc-, atex-zertifizierung, smart products, sensorbasierte qualitätskontrolle, machine learning modelle, industrie 4.0 für hidden champions, projektmanagement, state of the art, cloud-architektur, korrosionsschutz iot, business intelligence tools, iot-plattformen, datenanalyse, innovative iot-produkte, consulting, hardwareentwicklung, smart manufacturing, cloud-backend, datenpotenzial im einzelhandel, chemische industrie, business intelligence, machine learning, big data, cloud infrastructure, echtzeitüberwachung, smarte datenlösungen, automatisierte produktionstechnologien, echtzeit-datenanalyse, digitale geschäftsmodelle, smart building iot, b2b, industrie 4.0 produkte, daten- und prozessautomatisierung, fertigung, it-sicherheit, künstliche intelligenz, digitalisierung, sicherheitszertifikate für iot-produkte, fertigungstechnologie, cloud-infrastruktur, it-dienstleistungen, maschinenbau, industrie 4.0 plattformen, datenmanagement, iot in der chemischen industrie, software-engineering, it-support, innovative technologien, datenanalyse algorithmen, logistik, projektplanung, data management, smartes frühwarnsystem, künstliche intelligenz anwendungen, technologieberatung, edge computing lösungen, digitales produktdesign, precertification, it-sicherheitszertifikate, preisautomatisierung ecommerce, produktentwicklung, sensorikentwicklung, bauindustrie, automatisierung, microsoft partner, it consulting, user experience, digital transformation, industrie 4.0, prozessautomatisierung, cloud computing, software as a service, elektrotechnik, sensorintegration, datenarchitektur, produktzertifizierung, computer systems design and related services, automatisierte produktion, finance, manufacturing, distribution, consumer_products_retail, transportation_logistics, energy_utilities, construction_real_estate, information technology & services, productivity, consumer internet, consumers, internet, enterprise software, enterprises, computer software, artificial intelligence, internet infrastructure, mechanical or industrial engineering, management consulting, ux, saas, financial services",'+49 175 9372171,"Outlook, Microsoft Office 365, Hubspot, Slack, Bootstrap Framework, WordPress.org, Mobile Friendly, Apache, Google Tag Manager, Google Analytics, Android, Remote, Circle, AI, Node.js, IoT","","","","","","",69c282f90b5bce00010fce51,7375,54151,"The L.IoT Ecosystem makes industrial products intelligent, connected and future-proof – CRA-compliant. A modular boxed platform delivering automated updates, security, development of own applications and operation without SaaS lock‑in. Customers gain digital sovereignty, reduce development risk, accelerate value creation and combine excellence across software, cybersecurity and hardware integration.",2015,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68bfd34c9b7d0e00013ad2a7/picture,"","","","","","","","","" +QUNIS GmbH,QUNIS,Cold,"",67,information technology & services,jan@pandaloop.de,http://www.qunis.de,http://www.linkedin.com/company/qunis-gmbh,https://www.facebook.com/teamqunis/,https://twitter.com/steffenvierkorn,12 Flintsbacher Strasse,Brannenburg,Bavaria,Germany,83098,"12 Flintsbacher Strasse, Brannenburg, Bavaria, Germany, 83098","data warehousing, machine learning, big data, biorganisation, data lake, bistrategie, kuenstliche intelligenz, sac, eu data act, sql server, performance management, analytics, business intelligence, datenstrategie, planung, data management, advanced analytics, microsoft azure, data governance, data mesh, dashboarding, power bi, sap analytics cloud, cloud, unternehmensberatung, consulting, bi office, sap dwc, datentransparenz, data catalog, data visualization, lakehouse, it services & it consulting, open lakehouse, retail, data mesh architecture, management consulting services, data lakehouse, management consulting, data security, data migration strategies, data strategy development, data governance frameworks, data integration, information technology and services, data quality management, data marketplace, data quality, data transformation, b2b, data science, data strategy, sap bw migration, cloud data solutions, data catalog implementation, data platform, data visualization standards, data compliance eu data act, data architecture, data marketplace monetization, data platform optimization, data compliance, services, ai, data processing, hosting, and related services, data consulting, finance, legal, artificial intelligence, information technology & services, enterprise software, enterprises, computer software, computer & network security, financial services",'+49 803 4995910,"Outlook, SparkPost, Hubspot, Linkedin Login, Facebook Login (Connect), Google Tag Manager, Vimeo, Mobile Friendly, Facebook Widget, WordPress.org, Apache, Linkedin Marketing Solutions, Linkedin Widget, Google Font API, Google Custom Search, SAP, SAP Analytics Cloud, LinkedIn Ads, Google Ads","","","","",524000,"",69c282f90b5bce00010fce3f,7375,54161,"QUNIS GmbH is a German data consulting firm established in 2013, focusing on Data & Analytics services. Known as a ""Data Consulting Manufaktur,"" QUNIS supports companies throughout the DACH region, providing end-to-end solutions from strategy development to implementation and team enablement. The firm is part of the Q-Group, which includes over 80 experts and 100 employees, with offices in Brannenburg and Frankfurt am Main. + +QUNIS offers tailored Data & Analytics solutions that cover the entire value chain. Their services include strategy and planning, implementation support, and specialized competencies in areas such as EUDR compliance, data visualization, data warehousing, and self-service BI. They utilize a range of technologies, including Microsoft, SAP, and Databricks, ensuring vendor-independent solutions. QUNIS serves a diverse clientele, from international corporations to startups, and emphasizes collaboration and efficiency in all projects.",2013,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/682a5f3d5d2d070001111655/picture,"","","","","","","","","" +celano GmbH,celano,Cold,"",30,information technology & services,jan@pandaloop.de,http://www.celano.de,http://www.linkedin.com/company/celano-gmbh,"","",6 Im Blankenfeld,Bottrop,North Rhine-Westphalia,Germany,46238,"6 Im Blankenfeld, Bottrop, North Rhine-Westphalia, Germany, 46238","optimisation, software development, industry 40, feasibility studies & analysis, sensor & signal processing, wearable solutions, project & hrmanagementsystem, scadames, logistics, requirement & targetspecific software, time account managementsystem, production processes, ai & algorithms, steel industry, automatization, warehouse management, digitalization, industrial automation, system support, manufacturing, scada / mes systems, consulting, system integration, services, report generation, data acquisition, training, industry 4.0, hardware and software consulting, process simulation, celwms warehouse management, visualization, production process optimization, application development, real-time process control, data management, cloud solutions, b2b, celfcs furnace control system, material recognition and tracking, machinery manufacturing, tailor-made software solutions, custom software development, celcap architecture, requirement analysis, automation, error message processing, celssr scheduling, distribution, transportation_logistics, information technology & services, mechanical or industrial engineering, app development, apps, cloud computing, enterprise software, enterprises, computer software",'+49 2041 779010,"WordPress.org, Apache, Mobile Friendly, Remote",410000,Other,410000,2021-11-01,"","",69c282f90b5bce00010fce42,3571,333,"As a service company in the software sector and according to our companies' vision ""Thinking the process"", we provide tailor-made solutions to our customers within the industry. celano GmbH was founded in Bottrop in October 2002. Our competent and dedicated team covers the areas computer science, mechanical engineering, electrical engineering and mathematics. Our solutions are based on the understanding of the production processes and the use of modern and reliable technologies for hardware and software. + +Besides the production processes, we aim for a digitalized world within all areas. We therefore develop software together with our customers for their support within various work stages. We believe that automation with a human-centered development process is the key to success. Accordingly, our time account-, project and HR- management system (tamplus) automates the organizational and administrative work of our customers, so that they have more time for their high-priority tasks.",2002,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6783743cd926930001d87ea0/picture,"","","","","","","","","" +BE.services GmbH,BE.services,Cold,"",14,information technology & services,jan@pandaloop.de,http://www.be-services.com,http://www.linkedin.com/company/be-services-gmbh,"","",4 An der Stadtmauer,Kempten (Allgaeu),Bayern,Germany,87435,"4 An der Stadtmauer, Kempten (Allgaeu), Bayern, Germany, 87435","elearning, education, linux, codesys, embedded software development, opcua, industrial automation software, iot, it services & it consulting, firmware development, industrial automation, control expertise, manufacturing, consulting, aiot solutions, consulting and development, system integration, services, open62541 stack, ai prototyping, motion control integration, computer systems design and related services, real-time linux, iot solutions, training, open source stacks, cloud connectivity, security consulting, real-time rt patch, distribution, time-sensitive networking, portierung auf embedded plattformen, microservices, data connectivity, professional services, matrikon flex sdk, data management, tsn/a conference, b2b, echtzeit-linux, monitoring dashboards, software development, webbasierte tools, iec 61131-3 control, opc ua, predictive maintenance, cybersecurity, codesys control extensions, d2c, control technologies iec 61131-3, embedded software, portierung auf qnx/wince, machine learning, edge aiot solutions, digital transformation, microservice architecture, linux embedded, sensor data analysis, edge ai deployment, opc ua stacks, firmware containers, e-learning, internet, information technology & services, computer software, education management, mechanical or industrial engineering, professional training & coaching, artificial intelligence",'+49 83 196069991,"Outlook, Slack, Mobile Friendly, YouTube, Apache, IoT, AI, Remote, Micro, Android, Node.js","","","","","","",69c282f90b5bce00010fce4d,3571,54151,"BE.services GmbH is a privately held company based in Kempten, Bavaria, Germany, founded in 2015. The company specializes in embedded software, automation, IoT solutions, data connectivity, and digital transformation for industrial environments. With a strong focus on client success, BE.services offers consulting, training, architecture design, integration, software development, and maintenance support. Their expertise includes working with technologies like OPC UA, CODESYS, and Linux-based firmware, particularly Torizon. + +The company has established itself as a key player in the industry by partnering with major technology providers and supporting a diverse range of clients globally. Notable collaborations include work with Cummins Power Systems and Cloud Cycle Ltd. BE.services is also a corporate member of the OPC Foundation and actively participates in initiatives to advance OPC UA technologies. With a dedicated team of specialists, BE.services is committed to delivering tailored solutions that meet the unique needs of its customers.",2015,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67c3d322781563000180b948/picture,"","","","","","","","","" +PharmaX Solutions,PharmaX Solutions,Cold,"",45,information technology & services,jan@pandaloop.de,http://www.pharmaxsolutions.com,http://www.linkedin.com/company/pharmax-solutions-gmbh,https://facebook.com/PharmaxSolutions,https://twitter.com/PharmaxSolns,10 Oststrasse,Duesseldorf,Nordrhein-Westfalen,Germany,40211,"10 Oststrasse, Duesseldorf, Nordrhein-Westfalen, Germany, 40211","erp integration, go live & hyper care support, level 2 integration, pharma 40, system integration, concept to execution, mes consulting, opc ua & packml, werum, mes strategy, gxp solutions, manufacturing analytics, project management, process harmonization, tracelink, automation, itot integration, pasx, mbr design, paperless production, it validation support, digital transformation, sap s4 hana, sap dm, manufacturing execution systems, serialisation, it services & it consulting, data security, process automation, data-driven decision making, data analytics, gxp compliance, validation in pharmaceutical systems, end-to-end serialization, data management, system configuration support, medical equipment and supplies manufacturing, pharmaceutical manufacturing, it/ot integration, automation integration, supply chain security, manufacturing execution system, supply chain management, process optimization, custom software, plc, tracelink tts, process mapping workshops, automation infrastructure, risk assessment, scada, dcs, real-time process control, automation systems, data analysis, traceability platforms, b2b, advanced analytics, pharmaceutical industry, supply chain safeguard, global expansion, industry 4.0, supply chain traceability, serialization solutions, biotech manufacturing, custom software solutions, process mapping, process control, operational efficiency, 21 cfr part 11 compliance, communication infrastructure, paper on glass process, system validation, healthcare, custom validation protocols, innovation, automation in biotech, services, serialization and traceability, consulting, level 3 b2b connections, micro focus alm validation, quality assurance, validation services, no-code reporting, regulatory compliance, regulatory standards, alarm and event monitoring, regulatory project support, client support, mes implementation, manufacturing, distribution, productivity, information technology & services, computer & network security, pharmaceuticals, medical, logistics & supply chain, health care, health, wellness & fitness, hospital & health care, mechanical or industrial engineering","","Outlook, Google Cloud Hosting, Nginx, Google Tag Manager, WordPress.org, Mobile Friendly, Google Font API, Android, React Native, Circle, Remote, AI, Workday Financial, Acumatica","","","","",3972000,"",69c282f90b5bce00010fce55,3829,33911,"PharmaX Solutions is an IT consulting firm based in Düsseldorf, Germany, founded in September 2021. The company specializes in digital transformation for the pharmaceutical and life sciences industry, providing tailored IT solutions that enhance manufacturing processes, ensure regulatory compliance, and improve efficiency. With additional offices in Malaga, Copenhagen, and Basel, PharmaX Solutions has grown to a team of around 50 multilingual experts by mid-2024. + +The firm offers a range of professional services, including MES consulting, IT/OT integration, advanced analytics, serialization solutions, and GxP compliance consulting. These services are designed to streamline processes, reduce costs, and enhance operational excellence across various stages of pharmaceutical manufacturing. PharmaX Solutions has successfully completed over 20 projects, serving more than 23 global pharmaceutical clients, and emphasizes a collaborative approach grounded in integrity and continuous improvement.",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66eeecadd0dfeb00017e7b9e/picture,"","","","","","","","","" +ACCURIDS,ACCURIDS,Cold,"",15,information technology & services,jan@pandaloop.de,http://www.accurids.com,http://www.linkedin.com/company/accurids,"","",9 Eisenbahnweg,Aachen,Nordrhein-Westfalen,Germany,52068,"9 Eisenbahnweg, Aachen, Nordrhein-Westfalen, Germany, 52068","persistent identifiers, open standards, rdf, cloud, identifier management, data integration, data mapping, legacy master data, terminology service, api harmonization, data hub, digital registry, lifescience, master data managment, graphql, knowledge graph, semantics, reference data management, ai, fair, software development, enterprise software, enterprises, computer software, information technology & services, b2b",'+49 24 194314540,"Cloudflare DNS, Amazon SES, Gmail, Google Apps, Microsoft Office 365, Grafana, React, Slack, Wordpress.com, Mobile Friendly, Nginx, Google Tag Manager, WordPress.org, AWS SDK for JavaScript, Spring Boot, Python, PostgreSQL","","","","","","",69c282f647a8220001dc13ff,"","","ACCURIDS is a German startup based in Aachen, founded in 2019. The company specializes in software solutions for Reference and Master Data Management (RMDM), focusing on the life sciences sector, particularly pharma and biotech. Its mission is to create a ""Shared Understanding for Every Thing"" by providing a digital Registry of Things that enables organizations to build sustainable data ecosystems. This approach facilitates fast and reliable access to reference and master data across distributed systems, supporting collaborative data standardization and compliance with FAIR data principles. + +The core product, the ACCURIDS Platform, is a SaaS solution designed to automate IDMP compliance and unify fragmented pharma product data into a trusted, AI-ready ""Product Data Backbone."" It features automated standardization, data contextualization, and simple integration of public reference data. The platform aims to reduce manual efforts and costs associated with data integration while enhancing interoperability across various processes in the life sciences industry. ACCURIDS also offers collaborative data standardization software and consulting services to support its clients in achieving their data management goals.",2019,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67285a76c5cccf0001009f15/picture,"","","","","","","","","" +Noah Labs,Noah Labs,Cold,"",26,hospital & health care,jan@pandaloop.de,http://www.noah-labs.com,http://www.linkedin.com/company/noah-labs,"","",16 Neue Schoenhauser Strasse,Berlin,Berlin,Germany,10178,"16 Neue Schoenhauser Strasse, Berlin, Berlin, Germany, 10178","hospitals & health care, clinical trials in cardiology, patient-centered care, chronic disease management, digital health solutions, ai diagnostics, clinical validation, digital biomarkers in cardiology, remote diagnostics, healthcare data analytics, ai in telemedicine, healthcare technology, hospitalization reduction, patient engagement, ai algorithms for cardiology, heart failure detection, voice biomarker clinical trials, ai-powered cardiac diagnostics, healthcare system efficiency, b2b, remote patient monitoring, cardiology telemonitoring, digital health, medical device certification, government, telehealth platform, ai in cardiology, medical device software, remote heart failure monitoring, healthcare innovation, speech analysis for cardiovascular health, cardiac decompensation detection, voice biomarker, ai-powered telemonitoring, healthcare equipment & supplies, ai for early cardiac decompensation, services, ai algorithms, remote voice monitoring, voice biomarker analysis, voice signal processing in healthcare, voice analysis technology, medical equipment and supplies manufacturing, healthtech, ai-driven remote monitoring, voice-based heart failure detection, ai for heart failure management, medical devices, device integration, healthcare, hospital & health care, health, wellness & fitness, information technology & services, health care","","Cloudflare DNS, Gmail, Google Apps, Microsoft Office 365, Netlify, Webflow, Hubspot, Slack, Google Tag Manager, YouTube, Mobile Friendly, Google Font API, Dropbox, Android, React Native, Gusto, Remote, AI, Linkedin Marketing Solutions, Vox Analytics",6050000,Other,2750000,2025-02-01,"","",69c282f647a8220001dc1400,3829,33911,"Noah Labs is a Berlin-based digital health startup founded in 2021, led by CEO Oliver Piepenstock and CTO Marcus Hott. The company focuses on enhancing cardiovascular care through AI-driven telemonitoring and diagnostics, aiming to help patients with chronic heart conditions lead longer, healthier lives. Noah Labs emphasizes early detection of heart failure to reduce hospital admissions and improve quality of life. + +The company offers several innovative products, including Noah Labs Ark, an AI-powered cardiovascular telemonitoring platform that integrates smart biosensors and machine learning for remote patient monitoring. Noah Labs Vox is an advanced algorithm that analyzes voice to detect early signs of cardiac decompensation, providing insights up to two weeks earlier than traditional methods. Their telemonitoring software combines these technologies with a patient mobile app for comprehensive care. + +Noah Labs collaborates with leading institutions for trials and validation, including Charité Berlin and Clinic Barcelona. The company has received investments and support from various organizations, including the German Heart Center Foundation and the American Heart Association’s Center for Health Technology and Innovation.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69592ec93f66a000012f2098/picture,"","","","","","","","","" +NFT automates GmbH,NFT automates,Cold,"",19,industrial automation,jan@pandaloop.de,http://www.nft-automates.de,http://www.linkedin.com/company/nft-automates,https://www.facebook.com/nft.automates,https://twitter.com/NFT_automates,"",Ibbenbueren,North Rhine-Westphalia,Germany,"","Ibbenbueren, North Rhine-Westphalia, Germany","schaltplanerstellung, produktionsleitsysteme, prozessleittechnik, mes, programmierung, automatisierung, virtuelle inbetriebnahme, schaltschrankbau, robotik, sps, energiemanagement, softwareentwicklung, datenmanagement, caekonstruktion, digitaler zwilling, schulung, inbetriebnahme, industrie 40, visualisierung, automation, industrieautomatisierung, digitale fabrik, fernwartung, industrie 4.0, robotikprogrammierung, prozesssimulation, visualisierungssysteme, partnernetzwerk, scada/ hmi, safety automation, consulting, industrial automation, feldgeräte, branchenlösungen, it-security, cae-konstruktion, machine learning, anlagenmodernisierung, transportation & logistics, feldbussysteme, automatisierte qualitätssicherung, sps steuerung, ki-basierte prozesssteuerung, netzwerktechnik, produktion digitalisieren, sensorik, services, automatisierte instandhaltungssysteme, digitale instandhaltung, s7 steuerung logging, ar/vr anwendungen, retrofit, augmented reality, edge computing, safety steuerung, support & wartung, robotics, data management, künstliche intelligenz, manufacturing, industrie 4.0 plattformen, ki-gestützte qualitätskontrolle, sps programmierung, anlagenüberwachung, echtzeitdaten, hmi/scada, energieeffizienz, energy & utilities, digitale zwillinge, augmented reality chatbots, datenvisualisierung, energy management, it infrastruktur, reinforcement learning, nachhaltige produktion, distribution, cyber-physische systeme, smart factory, energie management, logging analyse von steuerungsprogrammen, remote monitoring, effizienzsteigerung, software-tools, kommunikationsprotokolle, maschinenintegration, industrial machinery manufacturing, papierlose produktion, automatisierte steuerung, big data, b2b, virtuelle inbetriebnahme mit siemens simit, echtzeit-optimierung, cloud computing, datenbanken, custom software development, systemintegration, intelligente sensorik, smart maintenance, automatisierte datenfusion, prozessoptimierung, scada systeme, automatisierungstechnik, cybersecurity, netzwerksicherheit, kommunikation/ vernetzung, zukunftssicherung, automationml, cyber-physische systeme in der fertigung, datenanalyse, cyber security, produktion 4.0, intelligente robotiklösungen, ar in der produktion, simulationsmodelle, standardisierung, process optimization, digitale transformation, virtuelle schulungen & training, iot-plattformen, predictive maintenance, transportation_logistics, energy_utilities, mechanical or industrial engineering, artificial intelligence, information technology & services, oil & energy, enterprise software, enterprises, computer software, computer & network security",'+49 545 154450,"Outlook, Microsoft Office 365, Hubspot, Google Dynamic Remarketing, Google Tag Manager, DoubleClick Conversion, WordPress.org, Linkedin Marketing Solutions, DoubleClick, Apache, Mobile Friendly, Remote","","","","",7663000,"",69c282f647a8220001dc140f,3581,33324,"Zukunft wird mit NFT geschrieben. + +Wir gestalten mit unseren Kunden eine Zukunft, auf die wir uns gemeinsam freuen können - die Produktion 4.0. + +Wir konzeptionieren, programmieren und realisieren Automatisierungstechnik auf allen Ebenen der industriellen Produktion und sind der Partner, der zu Fortschritt berät und in die Zukunft begleitet. Von der Feld-/Steuerungsebene verschaffen wir Transparenz über Produktionsdaten bis zur Anbindung an die ERP-Ebene. Unser Fokus liegt in den Bereichen Datenmanagement, Automation, CAE-Konstruktion sowie Schaltschrankbau. + +Wir sind der kompetente Ansprechpartner im Bereich Produktion 4.0. Weltweit profitieren täglich viele hunderte zufriedene Kunden von unseren Ideen und Erfahrungen. + +Weitere Informationen unter: https://nft-automates.de/",1995,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6707a69830722f0001a97675/picture,"","","","","","","","","" +Nia Health GmbH,Nia Health,Cold,"",36,medical devices,jan@pandaloop.de,http://www.niahealth.ai,http://www.linkedin.com/company/nia-health,"","",28 Schlesische Strasse,Berlin,Berlin,Germany,10997,"28 Schlesische Strasse, Berlin, Berlin, Germany, 10997","eczema, psoriasis, atopic dermatitis, digitale applikation, machine learning, machine vision, neurodermitis, dtx, medical equipment manufacturing, artificial intelligence, services, medical devices, digital health app reimbursement, health insurance cooperation, patient engagement, b2b, medical apps, healthtech, patient behavior insights, real-world evidence, innovative medtech platform, digital health innovation awards, data security, gdpr compliance, clinical efficacy studies, digital therapeutics, b2c, healthcare analytics, scalable digital health platform, digital dermatology apps, medical equipment and supplies manufacturing, medical software, d2c, healthcare equipment & supplies, indication-specific solutions, digital trial tools, clinical validation, remote patient monitoring, personalized patient support, app approval as medical device, digital health solutions, dermatology, saas, healthcare, information technology & services, hospital & health care, computer & network security, computer software, health care, health, wellness & fitness",'+49 30 83797797,"Gmail, Google Apps, Linux OS, Docker, React Native, Android, IoT, Node.js, Vincere, Remote, AI, Viewpoint, Circle, Hubspot, TypeScript, PyTorch, React, Next.js, Git",4510000,Seed,3850000,2023-05-01,"","",69c282f647a8220001dc13f7,3841,33911,"Nia Health GmbH is a MedTech company based in Berlin, founded in 2019 as a spin-off from Charité Universitätsmedizin Berlin. The company specializes in AI-powered digital therapeutics and machine vision technologies aimed at managing chronic skin conditions such as atopic dermatitis, psoriasis, and acne. Nia Health develops clinical diagnosis and therapy systems that provide continuous digital support for patients, utilizing advanced technologies like computer vision and deep learning for precise documentation and treatment tracking. + +Nia Health offers several indication-specific apps, including Nia for atopic dermatitis, Sorea for psoriasis, and milderma for acne. These apps are designed to enhance patient support, automate clinical documentation, and improve interactions between patients and healthcare providers. The company also provides services such as the development of Digital Therapeutics, remote patient monitoring, and tools for digital clinical trials. Nia Health is committed to patient empowerment and has received multiple awards for its innovative solutions. It plans to expand into German-speaking countries, other EU markets, and the US.",2019,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66efde98fb533a0001500ca4/picture,"","","","","","","","","" +Simufact Engineering by Hexagon,Simufact Engineering by Hexagon,Cold,"",31,information technology & services,jan@pandaloop.de,"",http://www.linkedin.com/company/simufact-engineering-gmbh,"","",19 Tempowerkring,Hamburg,Hamburg,Germany,21079,"19 Tempowerkring, Hamburg, Hamburg, Germany, 21079","forming process simulation software, welding simulation software, additive manufacturing simulation software, process simulation software, simulation software, software development, information technology & services","","Salesforce, Route 53, Mimecast, Outlook, Microsoft Office 365, Amazon AWS","","","","","","",69c282f647a8220001dc13fa,"","","Simufact Engineering, based in Hamburg, Germany, is a global software company that specializes in process simulation solutions for the manufacturing sector, particularly in metal processing and additive manufacturing. With over 20 years of experience, the company develops user-friendly software that helps design, verify, optimize, and predict outcomes in production processes. This approach aims to save time, reduce material costs, and achieve efficient production results. + +The company offers simulation software tailored for various manufacturing practices, including metal forming, joining, heat treatment, and additive manufacturing. Key products include Simufact Forming, which simulates various metal forming processes, and Simufact Additive, designed for metal additive manufacturing. Simufact serves industries such as automotive, mechanical engineering, and aerospace, with a customer base of over 700 worldwide. The company also collaborates with partners to enhance its software capabilities, ensuring effective integration and support for innovative manufacturing methods.",1995,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6897b3e632ef480001aece5c/picture,MSC Software,5e580cdda4128d0001697e92,"","","","","","","" +codestryke GmbH,codestryke,Cold,"",13,information technology & services,jan@pandaloop.de,http://www.codestryke.com,http://www.linkedin.com/company/codestryke,"",https://twitter.com/codestryke,110 Landsberger Strasse,Munich,Bavaria,Germany,80339,"110 Landsberger Strasse, Munich, Bavaria, Germany, 80339","connectivity, internet of things, iiot, cloud, iot, edge, iot & internet of things, software development, predictive maintenance iot, datenplattformen, geräte-scan-assistent, automation, edge gateway software, energie-monitoring, predictive maintenance, geräte-integration, smart energy management, sicherheitskonzepte, iot-architektur, distribution, datenintegration, data analytics, datenanalyse, geräte-ota-upgrade, cumulocity iot, smart manufacturing, iot-sicherheitslösungen, digital transformation, automatisierungslösungen, docker, ki-lösungen, vergelink middleware, geräteüberwachung, echtzeitüberwachung, user experience, siemens mindsphere, computer systems design and related services, iot-apps, geräte-remote-konfiguration, industrie 4.0, software ag cumulocity, cloud-integration, iot-device management, smart factory, energieeffizienz kmu, iot-softwareentwicklung, services, energieverbrauchsoptimierung, industrieautomation, geräte-alarmmanagement, energieeinsparung, datenvisualisierung, iot-consulting, edge gateway, remote installation, verbindungstechnologien, industrieanlagen vernetzung, geräte-integration in cloud, application development, fernwartung, predictive analytics, iot-device wizard, sicherheitsupdates, consulting, echtzeitdaten, geräte-remote-management, ota-updates, transportation & logistics, technology consulting, data security, industrial automation, use case entwicklung, manufacturing, azure iot, kundenindividuelle lösungen, b2b, ki-gestützte analysen, government, asset management, iot-plattformen, iot use cases, machine learning, cloud & edge-technologien, remote management, siemens mindsphere integration, geräteverwaltung, system integration, geräte-management, datenvorverarbeitung, iot-data analytics, energy & utilities, edge computing, cloud plattformen, energieeffizienz, over-the-air software-updates, sps-anbindung, iot-lösungen, wartungsoptimierung, daten-templates, transportation_logistics, energy_utilities, information technology & services, ux, app development, apps, enterprise software, enterprises, computer software, management consulting, computer & network security, mechanical or industrial engineering, artificial intelligence",'+49 89 21528775,"Gmail, Google Apps, AWS SDK for JavaScript, React Redux, Slack, Apache, WordPress.org, Facebook Widget, Linkedin Marketing Solutions, Facebook Custom Audiences, Facebook Login (Connect), YouTube, Google Analytics, Google Tag Manager, Bootstrap Framework, Hotjar, Mobile Friendly, Google Font API, IoT, Node.js, Remote","","","","","","",69c282f647a8220001dc13fb,7375,54151,"codestryke GmbH is a Munich-based IoT service provider founded in 2017. The company specializes in Industrial IoT (IIoT) solutions for European machine manufacturers, industrial suppliers, and smart city applications. It supports clients from the conception and development stages through to operation, employing a skilled team of developers, solutions architects, consultants, and data scientists. + +The company offers tailored IoT platforms, applications, analyses, and AI solutions focused on industrial needs. Key products include VergeLink, a proprietary edge gateway middleware that connects IoT data from various devices, and consulting services around Software AG Cloud and Cumulocity-based IIoT solutions. codestryke collaborates with a network of partners to enhance its offerings, ensuring customized software for new business models and efficiency improvements. The company serves over 50 customers worldwide, powering more than 4.5 million machines and devices.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670ab3280cceee00011fdc3d/picture,"","","","","","","","","" +Linova Software GmbH,Linova,Cold,"",43,information technology & services,jan@pandaloop.de,http://www.linova.de,http://www.linkedin.com/company/linova-software-gmbh,"","",129 Ungererstrasse,Munich,Bavaria,Germany,80805,"129 Ungererstrasse, Munich, Bavaria, Germany, 80805","automotive, aviation, digitalisierung, digitalisierungsworkshops, kireadychecks, system development, iot, tool development, health care, vaadin, application development, ki, mobile, sensor, web, it beratung stuttgart, c, it beratung muenchen, onprem, java, software development, rag, it services & it consulting, data visualization, industrial automation, predictive analytics, cloud-lösungen, containerization, manufacturing, kubernetes, systemintegration, aerospace and defense, consulting, services, orthopädische nachbehandlung app, sensor data, computer systems design and related services, it-beratung, ai-strategie, systemarchitektur, flugzeugwartung software, sensorintegration, mobile appentwicklung, natural language processing, healthcare technology, cloud computing, digitalstrategie, data analytics, ui/ux design, digital twin, telematiklösungen, prototyping, softwareentwicklung, devops, prozessoptimierung, industrie 4.0 lösungen, consulting services, change management, user experience design, open source tools, digitale zwillinge, requirements engineering, b2b, big data, business analysis, it-consulting, custom software, datenmanagement, predictive maintenance, ki-lösungen, information technology and services, data science, machine learning, digital transformation, data security, data engineering, automation, künstliche intelligenz, automatisierung, automatisierte datenanalyse, agile entwicklung, datenwertschöpfung, ki in der industrie, automobil after-sales systeme, healthcare, distribution, health, wellness & fitness, app development, apps, information technology & services, internet, mechanical or industrial engineering, enterprise software, enterprises, computer software, artificial intelligence, management consulting, computer & network security, hospital & health care",'+49 89 45246680,"Route 53, Hubspot, Nginx, Google Analytics, WordPress.org, Apache, Google Tag Manager, Mobile Friendly, Linkedin Marketing Solutions","","","","","","",69c282f647a8220001dc1403,7375,54151,"We are a system vendor for individual software solutions and IT consulting. 
Relying on our holistic approach, we support you with your digitisation project in a practice-oriented way.",2008,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6766bde6b0700c0001cc0fee/picture,"","","","","","","","","" +Valiton GmbH,Valiton,Cold,"",34,information technology & services,jan@pandaloop.de,http://www.valiton.com,http://www.linkedin.com/company/valiton,"","",23 Arabellastrasse,Munich,Bavaria,Germany,81925,"23 Arabellastrasse, Munich, Bavaria, Germany, 81925","business performance und analytics, user experience, data architecture und engineering, ecommerce plattform, individuelle softwareentwicklung, agile coaching, testing, cloud, machine learning, it services & it consulting, devops, container orchestration, opensearch, langgraph, snowplow, on-device ai, opentable formats, retail, argocd, kubeclarity, custom software development, gitlab, cloud computing, data privacy, webanalytics, ecommerce platforms, valkey, data version control (dvc), software development, cloud consulting, opentofu, kserve, edge ai, data architecture, aws, prodiigy, services, snowflake, data pipelines, data security, model context protocol, agent2agent protocol, information technology and services, computer systems design and related services, prometheus, microservices, langchain, b2b, big data, qdrant, open tofu, data analytics, consulting, terraform fork, terraform, e-commerce, crew ai, openobserve, media and publishing, ai solutions, kubernetes, cloud services, data science, data engineering, grafana, snowplow analytics, d2c, finance, education, ux, artificial intelligence, information technology & services, enterprise software, enterprises, computer software, computer & network security, consumer internet, consumers, internet, financial services",'+1 419-473-1521,"Outlook, Microsoft Office 365, GitLab, Slack, Mobile Friendly, AI","","","","",10855000,"",69c282f647a8220001dc140a,7375,54151,"Wer wir sind + +An unseren beiden Standorten in München und Offenburg arbeiten wir mit fast 60 EntwicklerInnen, Projektmanagern und Agile-Mastern und fokussieren uns auf Data-Science, Data-Engineering und auf Softwareentwicklung im Bereich Digital Business. + +Seit unserer Gründung im Jahr 2008 haben wir als IT-Dienstleister stets das Ziel, unsere Kunden erfolgreich zu machen. Hierfür arbeiten wir mit Begeisterung und Spaß an innovativen, zuverlässigen und leistungsstarken Lösungen. + +Hilfsbereitschaft und Miteinander wird groß geschrieben, ganz nach dem Motto: „Im Team sein zu dürfen, wie man ist, und all das zu werden, was in einem steckt.""",2008,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6833da5a6bdfde00011869e5/picture,"","","","","","","","","" +Labvantage - Biomax GmbH,Labvantage,Cold,"",21,information technology & services,jan@pandaloop.de,"",http://www.linkedin.com/company/labvantage-biomax,"","",2 Robert-Koch-Strasse,Planegg,Bavaria,Germany,82152,"2 Robert-Koch-Strasse, Planegg, Bavaria, Germany, 82152","systems biology, systems medicine, brain science, health informatics, synthetic biology, life science, bioinformatics software, semantic search, semantic data integration, knowledge management, sequence analysis, precision medicine, digital health, semantic technologies, software development, biotechnology, health, wellness & fitness, information technology & services",'+49 89 8955740,"Outlook, Microsoft Office 365, Amazon AWS, Atlassian Cloud, WordPress.org, Apache, Google Tag Manager, Mobile Friendly, Google Analytics, Bootstrap Framework, Nginx, Google Font API, Vimeo, AI, Data Analytics","","","","","","",69c282f647a8220001dc13fc,"","","LabVantage-Biomax GmbH is a software company based in Planegg, near Munich, Germany. Founded in 1997, it specializes in knowledge management solutions for the biotech, pharmaceutical, agriculture, food, and chemical industries, as well as research institutes. The company employs around 50 professionals, including life scientists, data scientists, and software developers, and holds ISO 9001 and ISO 27001 certifications. + +The company emerged from the 2022 merger of LabVantage Solutions and Biomax Informatics, enhancing its capabilities in life sciences and bio-manufacturing. LabVantage-Biomax participates in over 30 multinational EU and national research projects, providing custom software solutions to thousands of daily users. Its mission is to empower organizations to overcome information silos by leveraging AI, knowledge graphs, and semantic search to turn data into actionable knowledge. The core technology platform, BioXM™, supports diverse data types and ensures adherence to FAIR data principles. The company offers a range of products, including semantic search tools, brain imaging solutions, clinical integration platforms, and custom infrastructures for various research projects.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68734e35e1b31a00016a7fa8/picture,"LabVantage Solutions, Inc (labvantage.com)",5b875940324d4436d911e946,"","","","","","","" +Evolvus Inc.,Evolvus,Cold,"",120,biotechnology,jan@pandaloop.de,http://www.evolvus.com,http://www.linkedin.com/company/evolvus,"","",3 Altenhoeferallee,Frankfurt,Hesse,Germany,60438,"3 Altenhoeferallee, Frankfurt, Hesse, Germany, 60438","data, ml, ai, drug discovery, biotechnology, pharmaceutical, clinical research, databases, research, drug development, medical, enterprise software, enterprises, computer software, information technology & services, b2b",'+91 20245 30808,"Gmail, Google Apps, Amazon AWS, Slack, Microsoft-IIS, Mobile Friendly, AI","","","","","","",69c282f647a8220001dc1402,"","","Evolvus Inc. is a healthcare and biotechnology services company founded in 2001, with its headquarters in Pune, India, and an office in Frankfurt am Main, Germany. The company employs around 100 people and operates as a private entity. + +Evolvus specializes in providing products and solutions that focus on the curation of life sciences datasets and the scouting for new data. Its services include pre-clinical drug discovery, clinical drug development, clinical research, data management, discovery informatics, data analytics, medicinal chemistry, knowledge management, drug monitoring, and medical diagnostics. The company primarily serves biotechnology and pharmaceutical companies, positioning itself as a specialized service provider in the life sciences sector. Evolvus generates approximately $17 million in revenue.",2001,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/673445521aa1590001b0677c/picture,"","","","","","","","","" +MEDtech Ingenieur GmbH,MEDtech Ingenieur,Cold,"",14,medical devices,jan@pandaloop.de,http://www.medtech-ingenieur.de,http://www.linkedin.com/company/medtech-ingenieur,https://www.facebook.com/medtechIngenieur,"",7 Am Weichselgarten,Erlangen,Bavaria,Germany,91058,"7 Am Weichselgarten, Erlangen, Bavaria, Germany, 91058","hardwareentwicklung, mechanikentwicklung, softwareentwicklung, din en 62304, embedded system, medizintechnik, en 606011, systems engineering, beratung, zephyr, testing, produktion medizintechnik, medizintechnik & embedded system, medical equipment manufacturing, ivdr, qualitätskontrolle, healthcare equipment and supplies manufacturing, produktoptimierung, elektrische sicherheit in der medizintechnik, services, regulatorische sicherheit, qualitätssicherung, hardwarelösungen, risikomanagement, medizinische sensoren, modulare technologien, emv-prüfungen für medizinprodukte, designtransfer, emv-tests, prototypenentwicklung, ce-zertifizierung, projektmanagement, software nach iec 62304, forschung & entwicklung in der medizintechnik, mechanical engineering, medizinprodukte testlab, forschung & entwicklung, medizintechnik-entwicklung, iso 13485, normkonformität, embedded software für medizinprodukte, medical technology, medizinprodukt testlab, elektronik für medizintechnik, medizinische sensorik, medizintechnik entwicklung, zulassung, b2b, prototyping, consulting, qualitätsmanagement, ce-konforme produktion, prototypenbau, testlab, system engineering, medical equipment and supplies manufacturing, nachhaltige produktentwicklung, sicherheitskritische software, produktentwicklung, iec 60601, auditvorbereitung, regulatorische anforderungen, zertifizierte prozesse, modulare architektur, risikomanagement in der medizintechnik, validierung und verifizierung, klinische validierung, medizinproduktzertifizierung, medizinische geräteentwicklung, serienfertigung, mdr, risk management, schnelle prototypenfertigung, agile entwicklung, project management, elektronikentwicklung, embedded software, medizinprodukt zulassung, software development, medical device manufacturing, prototypen für medizinprodukte, elektrische sicherheit, electronics, labortests, softwareintegration, regulatory compliance, normenrecherche, elektronikdesign, funktionstests, zertifizierungsunterstützung, electrical equipment and appliance manufacturing, zulassungsstrategie, klimatests, technische dokumentation, healthcare, manufacturing, medical devices, hospital & health care, mechanical or industrial engineering, productivity, information technology & services, computer hardware, hardware, health care, health, wellness & fitness",'+49 91 31691240,"Outlook, Hubspot, Apache, Mobile Friendly, Google Font API, Facebook Custom Audiences, WordPress.org, Remote","","","","","","",69c282f647a8220001dc140c,3829,33911,"Die MEDtech Ingenieur GmbH bringt Medizintechnik-Ideen schnell und sicher zur Marktreife – von der ersten Spezifikation bis zur CE-konformen Produkt. + +Unsere Expertise liegt in Embedded Systemen, Elektronik, Mechanik und Software für Medizinprodukte, die höchste Qualitäts- und Sicherheitsstandards erfüllen. + +Was uns auszeichnet: + +✔ Produktentwicklung & Prototyping – von der ersten Idee bis zur funktionalen Lösung +✔ MEDtech Testlab – für sichere und zuverlässige Produkte +✔ Flexible Fertigung – maßgeschneiderte Produktionslösungen für Medizintechnikunternehmen +✔ Regulatorische Sicherheit – CE-Kennzeichnung und ISO-Standards von Anfang an integriert + +Unsere Kunden profitieren von einem strukturierten Entwicklungsprozess und der Expertise der MEDtech Ingenieure, normgerechter Umsetzung, dem MEDtech Testlab zur Verifizierung und der nahtlosen Überführung in die Produktion. + +Mehr erfahren: + +🌐 https://medtech-ingenieur.de/dienstleistungen/ + +📖 https://medtech-ingenieur.de/blog/",2007,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e74e72ce2d350001c33225/picture,"","","","","","","","","" +ZeMA gGmbH,ZeMA gGmbH,Cold,"",86,research,jan@pandaloop.de,http://www.zema.de,http://www.linkedin.com/company/zema-ggmbh,"","",45 Eschbergerweg,Saarbruecken,Saarland,Germany,66121,"45 Eschbergerweg, Saarbruecken, Saarland, Germany, 66121","menschroboterkooperation, fertigungsverfahren und automatisierung, montageverfahren und automatisierung, roboter und handhabungstechnologien, toleranzmanagement, menschroboterkollaboration, menschtechnikinteraktion, montagesystemtechnik und anlagenplanung, sensorik und aktorik, research services, manufacturing, elektrische sensorik, forschungszentrum saarbrücken, digitale neurotechnologien, neuroergonomische fabrik, wasserstofftechnologien, smarte materialsysteme, sputter-deposition, kognitive assistenzsysteme, electroactive polymers, mechatronik, automatisierungstechnik, healthcare, photonische fertigungsverfahren, cybersecurity in der produktion, condition monitoring, distribution, industrial security, fluidtechnik, biomechatronik, innovative produktion, b2b, fem-simulationen, wasserstoffresistente sensorik, education, elektronikentwicklung, smarte textilien, sensorik, elastokalorics, multimodal smart sensing, fertigungstechnologien, industrial automation, künstliche intelligenz, formgedächtnislegierungen, materialforschung, services, robotics, smarte sensoren, ultrakurzpulslaser, fertigungsprozessentwicklung, automatisierte montage, sensorentechnologie, additive fertigung, robotik, multimodal data engineering, kognitive robotik, industrie 4.0, forschung & entwicklung, transportation & logistics, medizintechnik, prototypenentwicklung, funkenerosion, research and development in the physical, engineering, and life sciences, energiesparsysteme, klimaneutrale technologien, technologietransfer, montagesysteme, laser-mikromaterialbearbeitung, industrie 4.0 lösungen, industrienahes forschen, non-profit, mechanical or industrial engineering, health care, health, wellness & fitness, hospital & health care, information technology & services, nonprofit organization management",'+49 681 857870,"Microsoft Office 365, Apache, Typekit, Mobile Friendly, Multilingual, YouTube, WordPress.org, Tor","","","","","","",69c282f647a8220001dc13f9,8731,54171,"ZeMA gGmbH, located in Saarbrücken, Germany, is an application-oriented research institute and development partner established in 2009. It focuses on bridging academic research with industrial applications, emphasizing the transfer of innovative technologies to the industrial sector. ZeMA specializes in three core research areas: sensors and actuators, manufacturing and assembly processes, and Industry 4.0 applications, including human-robot collaboration. + +The organization offers a range of services in mechatronic systems, innovative production technologies, robotics, and artificial intelligence applications in production. ZeMA operates a comprehensive testbed that includes industrial halls and experimental demonstrators, facilitating hands-on research and development. It collaborates with notable academic institutions and major industrial partners such as Airbus, BMW, and Bosch, ensuring that cutting-edge research is integrated into practical applications. Additionally, ZeMA coordinates the European Digital Innovation Hub for Saarland, supporting regional SMEs and public sector entities in their digital and green transitions.",2009,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f8d3a7cfdd3f00012a0dcb/picture,"","","","","","","","","" +Ähdus Technology GmbH,Ähdus Technology,Cold,"",38,information technology & services,jan@pandaloop.de,http://www.ahdustechnology.com,http://www.linkedin.com/company/ahdus,"","",42 Robert-Bosch-Strasse,Heilbronn,Baden-Wuerttemberg,Germany,74081,"42 Robert-Bosch-Strasse, Heilbronn, Baden-Wuerttemberg, Germany, 74081","datamining, simplicity is centric to our business, worklife balance, data science, digitization, devops, machine learning, seo services, quality control, computer vision, datadriven solutions, environmentfriendly office, scrumagile development, software product development, agileculture, innovationmanagement, testautomation, agile development, data annotation, ecommerce, autnomous driving, dataannotation, app development, customer centric, amazon digital marketing, python, customer journey in datascience, custome software development, deep learning, nochild labor, it services & it consulting, ai automation tools, ai for content creation, ai for financial services, ai research, ai solutions, artificial intelligence, ai-powered apps, ai data labeling, ai data annotation, ai for content marketing, ai/ml, aws, ai model deployment, ai-driven automation, shopify development, ai for autonomous vehicles, ai for video detection, ai algorithms, ai for copywriting, ai model training, ai system deployment, big data, cybersecurity measures, ai data security, ai project management, multi-agent systems, computer systems design and related services, web development, ai for environmental monitoring, ai consulting, mechanical engineering, ai scalability, ai for retail automation, gpu processing, information technology and services, b2b, ai research conferences, ai in retail, automation, enterprise ai systems, ai for cybersecurity, ai in automotive industry, deep learning frameworks, fintech, project management, video analysis algorithms, ai in automotive, ai for e-commerce inventory, ai in e-commerce, ai, software development, predictive analytics, ai for quality control, ai for industrial applications, e-commerce, enterprise ai, ai project management tools, ai for personalized marketing, cloud platforms, automotive, ai/ml frameworks, ai for predictive maintenance, ai for supply chain optimization, ai for healthcare, automated content generation, data security, ai automation, software engineering, automotive ai, ai performance optimization, government, cloud computing, data processing, d2c, inventory management, ai for process automation, cloud infrastructure, ai for manufacturing, ai data annotation factory, ai system integration, ai cloud solutions, system integration, ai for logistics, ai-driven solutions, ai for smart assistants, medtech, custom software development, ai data annotation services, retail, inventory management apps, manufacturing, enterprise software, ai algorithm development, ai for viral content, cybersecurity, ai/ml solutions, e-commerce solutions, mobile app development, aws cloud, video analysis, user experience, ai for predictive analytics, multi-agent ai, ai content generation, ai for smart cities, gpu acceleration, services, digital transformation, ai for customer engagement, agentic ai systems, consulting, ai apps, ai for anomaly detection, cross-platform app development, agile methodology, data labeling, ui design, mvp development, automated testing, ci/cd pipelines, algorithm development, aws solutions, fast release cycles, data engineering, model training, object detection, image classification, semantic segmentation, 3d labeling, remote team collaboration, business automation, enterprise applications, mobile applications, software optimization, technology solutions, strategic partnerships, customer feedback loops, agile sprints, version control, clean code, javascript frameworks, php development, database management, ux/ui design, healthcare, finance, distribution, consumer products & retail, transportation & logistics, information technology & services, search marketing, marketing, marketing & advertising, consumer internet, consumers, internet, apps, enterprises, computer software, mechanical or industrial engineering, finance technology, financial services, productivity, computer & network security, internet infrastructure, ux, mobile apps, health care, health, wellness & fitness, hospital & health care",'+34 631 96 87 52,"Outlook, Microsoft Office 365, Hubspot, Slack, Google Font API, Google Tag Manager, Mobile Friendly, WordPress.org, Nginx, Android, IoT, Remote, AI, Apex, Google Publisher Tag (GPT), Stable Diffusion, Java EE, AWS Organizations, CallMiner Eureka, Mode, A Small Orange, AWS Trusted Advisor, Microsoft Azure Monitor, Google Cloud Platform, Terraform, Ansible, AWS CloudFormation, Docker, Kubernetes, GitHub Actions, GitLab, Jenkins, Azure Devops, Prometheus, Grafana, ELK Stack, HTML Pro, Javascript, CSS, Tailwind, jQuery, Django, AWS SDK for JavaScript, Shareworks by Morgan Stanley, ANGEL LMS, Spark, Airflow, AWS Cloud Development Kit (AWS CDK), AWS CodePipeline, REST, React Native, React, LinkedIn Recruiter, Odoo, ServiceNow, LinkedIn Sales Navigator, Apollo, ZoomInfo, Hunter, Google Sheets, Microsoft Excel, FlipHTML5, Google Analytics, Looker Studio, Meta Llama 2, Meta Llama 3, Azure Data Lake Storage, SAP Analytics Cloud, SAP, SAP CRM, Jira, Confluence, Linkedin Marketing Solutions, Spring, Spring Boot, OpenStack, Angular, Salesforce, Hive, Flutter, SAP Business Technology Platform, SentenceTransformers, DALL-E, PyTorch, TensorFlow, Python, IBM ILOG CPLEX Optimization Studio, FUSION, Datadog","","","","","","",69c282f647a8220001dc1409,7375,54151,"Ähdus Technology GmbH is a deep-tech startup founded in September 2021, with headquarters in Heilbronn, Germany, and additional locations in Islamabad, Pakistan, and Espoo, Finland. The company focuses on AI and API-first solutions, IIoT, cloud DevOps, and digital transformation across various industries, including automotive, fintech, medtech, and mechanical engineering. With a team of over 50 professionals, Ähdus Technology specializes in software development, data engineering, and mobile development. + +The company offers a diverse range of IT services, such as custom software development, web and mobile app design, e-commerce solutions, and DevOps managed services. They provide AI-driven solutions, including machine learning and intelligent automation, as well as enterprise software for digital transformation. Notable products include the Ähdus ERP App for Shopify, which integrates ERP systems with e-commerce platforms, and custom SaaS solutions tailored for business operations. + +Ähdus Technology has collaborated with significant clients, including a major German retail group and an AI services company in Munich, showcasing their expertise in implementing Microsoft CRM Dynamics 365 modules and developing custom e-commerce platforms.",2022,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69affad9238b060001f0ca82/picture,"","","","","","","","","" +MERENTIS GmbH,MERENTIS,Cold,"",38,information technology & services,jan@pandaloop.de,http://www.merentis.com,http://www.linkedin.com/company/merentis-gmbh-ipl,https://www.facebook.com/MERENTIS/,https://twitter.com/merentis_gmbh,130 Kurfuerstenallee,Bremen,Bremen,Germany,28329,"130 Kurfuerstenallee, Bremen, Bremen, Germany, 28329","produkte und loesungen, prozessoptimierung, prozessassistenz, prozessintelligenz, consulting, rpa, robotic process automation, ki, managed services, datenschutz, kuenstliche intelligenz, content services, service support, haccp, it services & it consulting, workflow automation, security management, cybersecurity, process mining, softwareentwicklung, it-infrastruktur, services, data privacy, information technology and services, business intelligence, intelligent process automation, ai and data security, data analytics, hybrid cloud, digitalisierung, automation technologies, prozessautomatisierung, b2b, ai in business, consulting services, computer systems design and related services, cloud computing, software development, automation and robotics, ai solutions, cloud-lösungen, ai security solutions, it consulting, it support, innovation management, software solutions, automation strategy, it-sicherheit, ai-powered business solutions, process optimization, process automation, data privacy compliance, business process management, künstliche intelligenz, custom software development, cyber security, data security, microsoft cloud, secure ai deployment, business process optimization, digital transformation, it infrastructure services, ai integration, distribution, transportation & logistics, information technology & services, analytics, management consulting, enterprise software, enterprises, computer software, computer & network security",'+49 42 1238040,"Outlook, Nginx, Apache, Google Analytics, Mobile Friendly, Google Tag Manager, WordPress.org, reCAPTCHA, Fusion ERP Analytics, Intel, Office365, Altium 365, DATEV Accounting","","","","",426000,"",69c282f647a8220001dc140b,7375,54151,"MERENTIS - the partner for the digitalisation of your company. Plan and realize with us the daily business processes of your company by optimizing them with intelligent and efficient solutions. +We at MERENTIS offer you competent advice to find your individual solution, implementation of this solution, as well as subsequent services and maintenance. +We are happy to accompany you as a competent partner and consultant. Starting with process analysis, through conceptual design and implementation, to the certification of a solution. +We can advise you with a broad-based team of specialists in various areas. +Our work is not done with the planning and implementation of a solution, because we continue to offer professional support beyond the implementation phase. + +MERENTIS – der Partner zur Digitalisierung ihres Unternehmens Planen und realisieren Sie mit uns die alltäglichen Geschäftsprozesse Ihres Unternehmens, durch intelligente und effiziente Lösungen, zu optimieren. +Wir von MERENTIS bieten Ihnen kompetente Beratung zur Findung Ihrer individuellen Lösung, Umsetzung und Implementierung dieser Lösung, sowie anschließende Serviceleistungen und Wartung. +Gerne begleiten wir Sie als kompetenter Partner und Berater. Angefangen bei der Prozessanalyse, über die Konzeptionierung und Realisierung, bis hin zur Zertifizierung einer Lösung. +Mit einem breit aufgestellten Team von Fachspezialisten, in verschiedenen Bereichen, beraten wir Sie gerne. +Mit der Planung und Umsetzung einer Lösung ist unsere Arbeit allerdings noch nicht getan, denn auch über die Realisierung hinaus bieten wir weiterhin professionelle Unterstützung.",1996,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67076bac93d3f500019d3b5b/picture,"","","","","","","","","" +INOSOFT AG,INOSOFT AG,Cold,"",54,information technology & services,jan@pandaloop.de,http://www.inosoft.de,http://www.linkedin.com/company/inosoft-ag,https://facebook.com/inosoft,https://twitter.com/inosoftag,15 Im Rudert,Marburg,Hesse,Germany,35043,"15 Im Rudert, Marburg, Hesse, Germany, 35043","industry 40 solutions, unified communications solutions, desktop deployment, mixed reality, augmented reality, sharepoint development solutions, software engineering, sharepoint development amp solutions, it services & it consulting, digital transformation, it consulting, ki-gestützte dokumentenverarbeitung, beratung, iot-lösungen, lab of the future-konferenz, innovation, energy & utilities, 3d-visualisierung, consulting, künstliche intelligenz, business intelligence, blockchain-anwendungen, healthcare technology, data management, backend development, data analytics, computer systems design and related services, medizintechnik, projektmanagement, cloud computing, b2b, manufacturing, sicherheitslösungen, mobile app development, softwareentwicklung, user experience design, digitalisierung im gesundheitswesen, pharma, virtual reality, ar-remote support, technology services, virtuelle labore, ar-technologie, digitale lösungen, interaktive 3d-visualisierungen, full stack development, it- und unternehmensberatung, projektumsetzung, software development, individuelle softwarelösungen, automatisierung, devops, maschinenbau, branchenkenntnisse, services, technologiekompetenz, frontend development, healthcare, energy_utilities, information technology & services, management consulting, analytics, enterprise software, enterprises, computer software, mechanical or industrial engineering, health care, health, wellness & fitness, hospital & health care",'+49 642 199150,"Route 53, Amazon SES, Outlook, JQuery 2.1.1, ASP.NET, Mobile Friendly, YouTube, Microsoft-IIS, Remote","","","","",425000,"",69c282f647a8220001dc140e,7375,54151,"We provide client-oriented IT solutions since 1993 + +Our company, with its competent staff, develops client-oriented solutions which help enterprises of all sizes and all branches of industry to optimize their business processes and thus successfully grow in the market. + +Sound, business-oriented practices as well as working hand-in-hand with all involved parties form the basis for our efforts. + + +INOSOFT at a glance +• Founded in 1993 +• Transformed into a joint-stock company in 2000 +• Not listed on the stock exchange +• Board of directors: Karin Batz and Thomas Winzer +• Specialization: IT consulting and software development +• We design, develop and maintain customized IT and software solutions using modern IT technologies. +• Winner of Microsoft Award for best Partner Solution in 2003",1993,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/672f1e6bfd99ab0001a27042/picture,"","","","","","","","","" +Comline GmbH - an IQVIA Business,Comline,Cold,"",49,information technology & services,jan@pandaloop.de,http://www.comline.de,http://www.linkedin.com/company/comline-gmbh-dortmund,"","",8 Hauert,Dortmund,North Rhine-Westphalia,Germany,44227,"8 Hauert, Dortmund, North Rhine-Westphalia, Germany, 44227","industrie und handelskammern, automatisierte bilanzanalyse, plattform, digitalisierung, ki, banken und sparkassen, dokumentenmanagement, prozessoptimierung, gkv, cloud, gesundheitsamt, hyperautomation, rpa, prozessautomatisierung, machine learning, it services & it consulting, gesundheitswesen / gkv, künstliche intelligenz, automatisierte prozesse, öffentlicher gesundheitsdienst, bpm, ehealth-lösungen, gesundheitswesen, information technology & services, branchenlösungen, industrie- und handelskammern, interoperabilität, plattformlösungen, cloud computing, verwaltungsdigitalisierung, data security, geschäftsprozessoptimierung, cybersecurity, data analytics, finanzdienstleister, cloud-computing, erechnung, medizinische datenintegration, ai, ehealth, branchenneutral, egovernment, branchenfokus auf krankenkassen, computer systems design and related services, services, finanzdienstleistungen, workflow-automatisierung, datenmanagement, api-integration, digitale transformation, automatisierte archivierung, digitale vernetzung, regelbasiertes lernen, datensicherheit, b2b, digitale infrastruktur, onlinezugangsgesetz (ozg), cloud-services, workflow automation, gdpr-konforme datenvernetzung, systemintegration, informationstechnologie, government, softwareentwicklung, healthcare technology, consulting, financial technology, healthcare, finance, artificial intelligence, enterprise software, enterprises, computer software, computer & network security, financial services, finance technology, health care, health, wellness & fitness, hospital & health care",'+49 341 2592043,"Outlook, Microsoft Office 365, SendInBlue, Mobile Friendly, Apache, WordPress.org, Nginx, Multilingual, Remote","","","","","","",69c282f647a8220001dc13f8,7375,54151,"Die Comline GmbH mit Sitz in Dortmund ist seit 2021 Teil der IQVIA-Unternehmensgruppe und beschäftigt rund 170 Mitarbeiter:innen. Als Softwareentwickler und GKV-Branchenexperte entwickelt Comline Lösungen für die digitale Transformation ihrer Kunden. Der Fokus liegt auf intelligentem Prozessdesign und digitaler Vernetzung. Automatisierte Prozesse rund um eHealth, eGovernment, eRechnung und mehr überzeugen namhafte Player aus dem Gesundheitsmarkt sowie Finanzdienstleister, Industrie- und Handelskammern und Kunden aus anderen Branchen. + +Impressum der Comline GmbH: https://www.comline.de/kontakt/impressum.html",1989,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670655b9feba730001aab78c/picture,"","","","","","","","","" +BeeBI Consulting GmbH,BeeBI Consulting,Cold,"",17,information technology & services,jan@pandaloop.de,http://www.beebi-consulting.com,http://www.linkedin.com/company/beebi-consulting,"","",7A Karolinenstrasse,Berlin,Berlin,Germany,14165,"7A Karolinenstrasse, Berlin, Berlin, Germany, 14165","data engineering data science, digitalization program management, ai automl, quantum computing, saas development, artificial intelligence, project management, data lakehouse architecture, reporting, azure services, data integration, cloud computing, predictive modelling, services, agile framework, data quality management, quantum internet, advanced analytics, ai, retail, data strategy, ux/ui design, risk management, consulting, cloud solutions, hybrid cloud, data modeling, ai and machine learning, big data, data lakehouse, scrum, data science platforms, data as a product, data security, cloud application development, business intelligence, data orchestration tools, application engineering, data fabric, data orchestration, data culture, automl, government, data analytics, data strategy roadmap, data warehouse, business consulting, machine learning, software development, data mesh, information technology and services, data science, data governance, data lake, data governance frameworks, data management, self-service reporting, computer systems design and related services, aws, data marketplace, b2b, dashboards, application development, digital transformation, nocode solutions, automl platforms, business intelligence systems, finance, distribution, transportation & logistics, information technology & services, productivity, enterprise software, enterprises, computer software, computer & network security, analytics, management consulting, app development, apps, financial services","","Outlook, WordPress.org, Google Maps, Linkedin Marketing Solutions, Mobile Friendly, Google Font API, Google Tag Manager, Bootstrap Framework, Google Maps (Non Paid Users), reCAPTCHA, Databricks, Android, React Native, Remote, AI, PowerBI Tiles","","","","","","",69c282f647a8220001dc13fd,7375,54151,"BeeBI Consulting GmbH is an IT consultancy firm based in Germany, specializing in data analytics, AI/ML, business intelligence, data engineering, quantum computing, and innovation. With a team of 51-100 employees, the company focuses on helping organizations make informed decisions by transforming complex data into actionable insights using advanced technologies. + +The firm offers a wide range of customized solutions, including data analytics, cloud development, and project management. BeeBI employs a global delivery model that combines onshore and offshore consultants, ensuring cost-effective and timely results. Their expertise extends to various industries, including retail, telecommunications, finance, shipping, insurance, and automotive. BeeBI has also participated in significant EU projects and has received awards from notable clients, showcasing their commitment to quality and innovation.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6715f223f0eaf70001f8ec15/picture,"","","","","","","","","" +Alpine Eagle,Alpine Eagle,Cold,"",35,information technology & services,jan@pandaloop.de,http://www.alpineeagle.com,http://www.linkedin.com/company/alpineeagle,"","",Prinzregentenstrasse,Munich,Bavaria,Germany,81677,"Prinzregentenstrasse, Munich, Bavaria, Germany, 81677","software development, dynamic sensor positioning, threat scenario adaptation, airborne counter-uas system, government, drone detection, high mobility defense, unmanned aerial vehicles (uav), early warning, b2b, uas detection, defensive swarm, sensor network, border security technology, border security, stand-off interception, military technology, automation, aerospace product and parts manufacturing, sensor coverage optimization, civilian asset protection, edge processing, threat detection, data fusion, swarm management, survivability, sensor fusion, contested environment operation, scalability, passive sensors, multi-platform integration, military drone defense, edge computing, air-to-air sensor network, threat scenario scalability, security & surveillance, services, redundancy and survivability, terrain exploitation detection, mobile c-uas, automation in defense, ai software, on move detection, aerospace & defense, low-flying drone detection, active sensors, complex terrain performance, system integration, drone interception, transportation & logistics, information technology & services","","Outlook, Microsoft Office 365, GoDaddy Hosting, WordPress.org, reCAPTCHA, Greenhouse.io, Mobile Friendly, Varnish, Google Font API, Greenhouse, LinkedIn Recruiter, ISO+™, Ning, Carbon, Ionic, Tor, CONTROL, Harness, Google Guava, Brocade Switches, Nasdaq eVestment™",11280000,Seed,11280000,2025-03-01,"","",69c282f647a8220001dc1401,3812,33641,"Alpine Eagle is a defense technology startup based in Munich, Germany, founded in 2023. The company focuses on airborne counter-unmanned aircraft systems (C-UAS) that detect, classify, and intercept hostile drones and unmanned aerial systems. Led by Co-Founder and CEO Jan-Hendrik Boelens, who has extensive experience in aerospace engineering, Alpine Eagle aims to provide innovative aerial defense solutions. + +The company's primary product, the Sentinel Counter-UAS System, operates entirely in the air, offering enhanced mobility and reduced blind spots compared to traditional ground-based systems. Equipped with onboard AI software and high-performance edge computing, Sentinel can manage a defensive swarm of airborne sensors and interceptors with high levels of automation. Alpine Eagle's solutions are designed for various applications, including protection for military units, critical infrastructure, and public events, as well as counter-drone operations against illicit activities. The company has demonstrated rapid market traction, achieving seven-figure revenue within its first year and conducting operational trials in Ukraine.",2023,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/696307edda368c0001494a6f/picture,"","","","","","","","","" +corvolution GmbH,corvolution,Cold,"",14,medical devices,jan@pandaloop.de,http://www.corvolution.com,http://www.linkedin.com/company/corvolution-gmbh,"","",35B Zehntwiesenstrasse,Ettlingen,Baden-Wuerttemberg,Germany,76275,"35B Zehntwiesenstrasse, Ettlingen, Baden-Wuerttemberg, Germany, 76275","medical equipment manufacturing, medical device development, medical algorithms, services, algorithms for health monitoring, health assessment tools, health checkup systems, sleep quality algorithms, remote health monitoring, healthtech, sleep monitoring, medical equipment and supplies manufacturing, balance and gait analysis, b2b, heart checkup systems, medical devices, heart, sleep, and balance diagnostics, health data analytics, health diagnostics, vital sensor technology, vital sign sensors, healthcare, sensor systems, health monitoring algorithms, balance assessment, sensor-based health solutions, medical device software, heart health monitoring, sensor technology, algorithms, heart monitoring, hospital & health care, health care, health, wellness & fitness",'+49 7243 207100,"Outlook, Slack, Mobile Friendly, Google Font API, Apache, WordPress.org, Remote","","","","","","",69c282f647a8220001dc1408,3822,33911,"Als junges und innovatives Unternehmen fokussiert sich die corvolution GmbH auf das individuelle Gesundheitsmonitoring in Deutschland. Unsere Tätigkeiten reichen von Entwicklungsdienstleistungen für etablierte Unternehmen im Bereich Medizintechnik über die Entwicklung eigener Medizinprodukte bis hin zur Durchführung medizinischer Dienstleistungen, die direkt oder über Vertriebspartner vermarktet werden.",2014,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67156b6f5ecaaf000175e132/picture,"","","","","","","","","" +iT Engineering Software Innovations GmbH,iT Engineering Software Innovations,Cold,"",15,information technology & services,jan@pandaloop.de,http://www.ite-si.de,http://www.linkedin.com/company/it-engineering-software-innovations-gmbh,"","",4 Jusistrasse,Pliezhausen,Baden-Wuerttemberg,Germany,72124,"4 Jusistrasse, Pliezhausen, Baden-Wuerttemberg, Germany, 72124","machine learning, individuelle softwareentwicklung, industrial internet of things, agiles projektmanagement, agile produktentwicklung, virtuelle inbetriebnahme, software defined manufacturing, kuenstliche intelligenz, automatisierungstechnik, softwareengineering, spsprogrammierung, opc ua, softwareentwicklung, kuenstliche intelligenz machine learning, digitaler zwilling, edge cloud computing, software development, industrial automation, manufacturing, software für produktionslinien, datenintegration, industrie 4.0 anwendungen, datenkommunikation, softwareentwicklung für maschinen, consulting, services, industrie 4.0 plattformen, fertigungssoftware, industrieautomation, datenanalyse, iiot, cloud computing, ui/ux design, software engineering, industrie 4.0, information technology, software für industrielle anwendungen, industrie 4.0 schnittstellen, software für robotik, digitale industrie, modulare software, ki-steuerung, technology consulting, software für maschinensteuerung, b2b, big data, edge & cloud computing, software für fertigung, industrial machinery manufacturing, sps-programmierung, virtuelle modellierung von anlagen, digitale transformation, steuerungstechnik, opc ua lösungen, predictive maintenance, datengetriebene geschäftsmodelle, predictive analytics in industrie, digital transformation, custom software development, industrie 4.0 software, datenreduktion, automation, automatisierung, smart manufacturing, reinforcement learning in robotik, ki in der produktion, artificial intelligence, information technology & services, mechanical or industrial engineering, enterprise software, enterprises, computer software, management consulting",'+49 7127 92310,"Outlook, Microsoft Office 365, Typekit, Mobile Friendly, Google Font API, reCAPTCHA, Google Tag Manager, Apache, WordPress.org, IoT, Remote, AI, Strato, Adobe Photoshop, Adobe InDesign, Adobe After Effects, Adobe Creative Cloud, Bevywise MQTT Broker, .NET, C#, Git, Jira, Confluence, Office365, Microsoft Exchange Server 2003, Microsoft Teams Rooms, Cisco VPN, Cisco Secure Firewall Management Center, CAT, Blazor, Python","","","","","","",69c282f647a8220001dc1405,3571,33324,"iT Engineering Software Innovations GmbH is a German software development company located in Pliezhausen. With over 20 years of experience, the company specializes in custom software solutions tailored for mechanical engineering and manufacturing industries, supporting the digital transformation associated with Industry 4.0. The team consists of around 25 specialists in various fields, including informatics, electrical engineering, and automation. + +The company offers a range of services, including custom software development, edge and cloud solutions, PLC/SPS programming, virtual commissioning, and AI applications. They focus on delivering modular and sustainable software that supports the full project lifecycle, ensuring reliability and future-oriented development. iT Engineering also provides IIoT Building Blocks, a proprietary package designed for efficient data acquisition and machine learning applications. Their commitment to innovation positions them as a valuable partner for businesses looking to enhance their industrial applications.",2000,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66eaa955b5c5eb0001d55089/picture,"","","","","","","","","" +Schönhofer Sales and Engineering GmbH,Schönhofer Sales and Engineering,Cold,"",130,information technology & services,jan@pandaloop.de,http://www.schoenhofer.de,http://www.linkedin.com/company/schoenhofer-sales-and-engeneering-gmbh,"","",92 Lindenstrasse,Siegburg,North Rhine-Westphalia,Germany,53721,"92 Lindenstrasse, Siegburg, North Rhine-Westphalia, Germany, 53721","taran suite, it consulting, systems engineering, complex event prediction, cyber defence, big data, ibm i2, it services & it consulting, maritime surveillance, real-time data analysis, business intelligence, event prediction, advanced persistent threats (apts), data mining, consulting, public sector it, data visualization, operational intelligence, real-time stream processing, b2b, illegal goods detection, sensor fusion, sensor fusion in defense, big data analytics, heterogeneous data sources, data analytics, government, hochentwickelte analytics-lösungen, cyber defense, i2 p2is, signal intelligence (sigint), computer systems design and related services, sensor data analysis, defense & security, threat detection, predictive analytics, cloud computing, data fusion, cybersecurity, data processing, it-systeme, predictive maintenance, aviation risk analysis, heterogeneous data integration, software development, risk management, security systems, container monitoring, cyber attack prevention, geospatial data analysis, services, data security, network security, event management, information technology and services, security analytics, event detection, data management platform, non-profit, transportation & logistics, information technology & services, management consulting, enterprise software, enterprises, computer software, analytics, computer & network security, events services, nonprofit organization management",'+49 2241 30990,"Microsoft Office 365, Mobile Friendly, Nginx, Bootstrap Framework, Remote, AI","","","","","","",69c282f647a8220001dc1406,7375,54151,"Die Schönhofer Sales and Engineering GmbH (SSE) ist ein führender unabhängiger Anbieter von hochentwickelten Analytics-Lösungen und IT-Systemen für öffentliche Auftraggeber, Behörden, Banken, Versicherungen und Unternehmenskunden im In- und Ausland. + + +Unsere Schwerpunktthemen sind: + + + Big Data Analytics + + + Cyber Defence + + + System Technology / Integration + + + + +Geschäftsfelder: https://www.schoenhofer.de/geschaeftsfelder/ + +Kunden/Partner: https://www.schoenhofer.de/kunden-partner/ + +Produkte: https://www.schoenhofer.de/produkte/ + +Jobs: https://www.schoenhofer.de/unternehmen/jobs/ + + +Impressum: https://www.schoenhofer.de/unternehmen/impressum/",1983,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6749995c4eb2c90001e7a2e6/picture,"","","","","","","","","" +OptByte Software Solutions,OptByte Software Solutions,Cold,"",23,information technology & services,jan@pandaloop.de,http://www.optbyte.com,http://www.linkedin.com/company/optbyte-software-solutions,https://www.facebook.com/OptByteSoftwareSolutions/,"",Georg-Glock-Strasse,Duesseldorf,Nordrhein-Westfalen,Germany,40474,"Georg-Glock-Strasse, Duesseldorf, Nordrhein-Westfalen, Germany, 40474","it services & it consulting, api integration, devops, scalable cloud solutions, devops automation, manufacturing, system modernization, marketing automation, tailored digital solutions, secure software development, it consulting, enterprise application, digital transformation, cloud migration, finance, dedicated teams, data analytics, e-commerce, microsoft azure, media & entertainment software, construction & real estate, custom software development, quality assurance, data engineering services, end-to-end software services, b2b, devops services, custom software, retail, b2c, technology consulting, retail & e-commerce apps, business intelligence, automotive, software product development, industry-specific software, agile methodologies, application modernization, healthcare, ecommerce development, manufacturing it services, amazon web services (aws), computer systems design and related services, predictive analytics, artificial intelligence, business intelligence tools, energy & utilities, qa & testing, ui/ux design, oil & gas industry software, api development, machine learning, ai & ml services, ai chatbots, mvp development, cloud solutions, services, automotive industry software, tourism app development, healthcare software solutions, software development, system integration solutions, d2c, project management, consulting, cloud computing, mobile app development, data engineering, saas, education, consumer_products_retail, energy_utilities, construction_real_estate, information technology & services, mechanical or industrial engineering, marketing & advertising, computer software, enterprise software, enterprises, management consulting, financial services, consumer internet, consumers, internet, analytics, health care, health, wellness & fitness, hospital & health care, productivity",'+91 84200 66003,"Outlook, Microsoft Azure Hosting, Zoho Books, Slack, Google Font API, Ubuntu, Bootstrap Framework, WordPress.org, Nginx, Google Tag Manager, reCAPTCHA, Mobile Friendly, AI, Remote, Microsoft.NET Core 3.1, ASP.NET","","","","","","",69c282f647a8220001dc1407,7375,54151,"OptByte Software Solutions is an India-based software outsourcing company that specializes in IT consulting and software development services. Established on September 11, 2020, it serves a diverse range of clients, from startups to Fortune 500 companies. The company is dedicated to delivering robust and scalable solutions that facilitate digital transformation and enhance business operations. + +OptByte offers a variety of services, including product development outsourcing, custom software development, IT consulting, and remote server access for quick issue resolution. The company emphasizes innovation and utilizes India's top software talent, supported by its proprietary WorkGeniusTM Proof of Work. With a focus on customer satisfaction, OptByte aims to provide tailored solutions that meet the unique needs of its clients across various industries.",2016,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6877557919531b0001e99cb9/picture,"","","","","","","","","" +D.med Software,D.med,Cold,"",28,information technology & services,jan@pandaloop.de,http://www.dmed-software.com,http://www.linkedin.com/company/d-med-software,"","",3 Klaus-Bungert-Strasse,Duesseldorf,North Rhine-Westphalia,Germany,40468,"3 Klaus-Bungert-Strasse, Duesseldorf, North Rhine-Westphalia, Germany, 40468","software development, cybersecurity, medical device, embedded applications, cloud applications, regulatory compliance, medical device software scalability, medical device firmware, medical device cybersecurity, iso 14971, b2b, data protection, healthcare, software development for medical devices, software validation, penetration testing, iso 13485, real-time health monitoring, medical device software, medical device software testing, iot security, cloud-native healthcare solutions, medical device firmware security, consulting, vulnerability testing, medical device software prototyping, risk assessment, hipaa compliance, device lifecycle management, risk management, fda regulations, medical device data analytics, threat modeling, medical device integration, medical device software updates, custom healthcare software, device interoperability, regulatory standards compliance, services, medical device software documentation, research and development in the physical, engineering, and life sciences, secure iot solutions, remote patient monitoring, iec 62304, data encryption, mdr compliance, embedded software, information technology & services, hospital & health care, health care, health, wellness & fitness, computer & network security",'+49 211 65041560,"Cloudflare DNS, Outlook, Microsoft Office 365, CloudFlare Hosting, DigitalOcean, VueJS, Slack, Hubspot, Linkedin Marketing Solutions, Google Analytics, Nginx, Mobile Friendly, Google Tag Manager, WordPress.org, Google Font API, Google Maps, Gusto, AI","","","","","","",69c282f647a8220001dc140d,3829,54171,"D.med Software specializes in providing secure and compliant software solutions for the medical device industry. The company focuses on custom healthcare software development, embedded systems, and cybersecurity, offering full product lifecycle support. With over a decade of experience, D.med Software employs a diverse team of experts, including cybersecurity professionals and software engineers, to enhance patient care through innovative technologies. + +The company offers a range of services tailored for medical devices and healthcare systems. These include custom software development for various applications, secure connectivity and cloud platforms like IoMeT Connect, and comprehensive cybersecurity measures. D.med Software also provides regulatory and quality support, ensuring compliance with industry standards. Their key products include IoMeT Connect for device-cloud integration and next-generation dialysis software modules designed for safety and reliability. D.med Software maintains long-term partnerships with market leaders in the MedTech industry, emphasizing trust in their solutions for device functionality and data security.",2015,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/675e051ad766ee0001fdb9b4/picture,"","","","","","","","","" +singularIT GmbH,singularIT,Cold,"",49,management consulting,jan@pandaloop.de,http://www.singular-it.de,http://www.linkedin.com/company/singularit-gmbh,"","",27 Inselstrasse,Leipzig,Saxony,Germany,04103,"27 Inselstrasse, Leipzig, Saxony, Germany, 04103","machine learning, itconsulting, digitale marketing strategie, data science, data analytics, prozessoptimierung, webentwicklung, business intelligence, big data, appentwicklung, strategic management services, artificial intelligence, information technology & services, analytics, enterprise software, enterprises, computer software, b2b, management consulting",'+49 341 9785210,"Route 53, Outlook, Slack, Mobile Friendly, WordPress.org, Apache, Node.js, React Native, IoT, Android, Docker, Xamarin, Remote, Linkedin Marketing Solutions, Python, PHP, Laravel, Django, Bash, Wordpress, TYPO3, Git, Azure Linux Virtual Machines, Microsoft Entra ID, Microsoft Intune Enterprise Application Management","","","","","","",69c282f647a8220001dc13fe,"","","singularIT GmbH is a software company based in Leipzig, Germany. The company specializes in executing software projects, creating software products, and providing consulting services related to software development. + +Headquartered at Inselstraße 27, singularIT GmbH is led by CEOs Felix Hammann and Dr. Mattis Hartwig. The company offers expertise in software implementation and related topics, helping businesses navigate their software needs effectively.",2015,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e35d0ab6328a0001e51eba/picture,"","","","","","","","","" +good healthcare group,good healthcare group,Cold,"",120,management consulting,jan@pandaloop.de,http://www.goodhealthcare.com,http://www.linkedin.com/company/good-healthcare-group,https://www.facebook.com/goodhealthcaregroup/,"",2 Europaplatz,Berlin,Berlin,Germany,10557,"2 Europaplatz, Berlin, Berlin, Germany, 10557","healthcare services, hybridaussendienst, patient services, enablement, patient engagement, innovation, customer centricity, intelligente voicebots, digitalisation in pharma, omnichannelstrategy, patient support, training, hybrid sales, projekt management, pharma sales, arztbetreuung, alternative vertriebsmodelle, healthcare, digitale kommunikation, project management, data intelligence, rare diseases, patientenbetreuung adhaerenz, multichannelselling, bigdataanalysen, multichannelmarketing, omnichannelsales, ki, human ai, custom gpt, commercial excellence, tandemhybridaussendienst hybrid sales, disease awareness, patientenmanagement, omnichannel excellence, strategieentwicklung, pharmavertrieb, good healthcare experience, room49, healthcareconsulting, tech intelligence, multichannel, multichannelstrategie, digital transformation, hcp communication, healthcare consulting, operational excellence, patientsupportperogramme, medicalscienceliaison, adhaerenzprogramme, hcp services, omnichannel engagement, genai, pharma marketing, pharmaaussendienst, business consulting & services, health care, health, wellness & fitness, hospital & health care, productivity, management consulting","","Salesforce, Amazon SES, Microsoft Office 365, Drupal, Microsoft Azure, Slack, Typekit, Mobile Friendly, Nginx, Vimeo, Google Maps, Google Maps (Non Paid Users), WordPress.org, Salesforce CRM Analytics","","","","","","",69c282f647a8220001dc1404,"","","The good healthcare group, based in Berlin, specializes in healthcare consulting and services for the pharmaceutical and life sciences industries. Founded in 2012, the company focuses on providing omnichannel solutions, including strategy development, healthcare professional (HCP) services, patient services, and digital transformation support. With a commitment to quality and sustainability, the company is certified to DIN EN ISO 9001 and has set climate targets verified by the Science Based Targets initiative (SBTi). + +The good healthcare group operates through a network of over 3,500 employees and six international partners, enabling them to implement strategies globally while maintaining consistent quality. Their services include omnichannel communication, medical services, patient support, and training, all designed to address the needs of various stakeholders in the healthcare sector. The company emphasizes innovative, tech-enabled projects that enhance pharmaceutical communication and market success.",2015,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6906af012a13ef00019e00ae/picture,"","","","","","","","","" +Skleo Health,Skleo Health,Cold,"",16,"health, wellness & fitness",jan@pandaloop.de,http://www.skleo.de,http://www.linkedin.com/company/skleo-health,https://www.facebook.com/profile.php,"",3 Brehmstrasse,Duesseldorf,Nordrhein-Westfalen,Germany,40239,"3 Brehmstrasse, Duesseldorf, Nordrhein-Westfalen, Germany, 40239","public health, healthtech, digital health platform, telehealth solutions, remote healthcare, health tech, healthcare platform development, access to healthcare, healthcare barriers, digital health ecosystem, healthcare solutions, healthcare, digital healthcare, healthcare digital transformation, healthcare digitalization, patient-centered healthcare, services, healthcare data security, telemedicine, b2c, healthcare services, digital health solutions, medical expertise, healthcare accessibility, preventive health checks, all other ambulatory health care services, healthcare access, healthcare startups, medical technology, healthcare accessibility for all, preventive health, digital health, medical services, healthcare app, digital prevention, healthcare technology, healthcare innovation, digital diagnostics, healthcare integration, d2c, healthcare data, healthcare software, digital health startup, health, wellness & fitness, health care, hospital & health care, health care information technology, information technology & services","","Sendgrid, Gmail, Google Apps, Google Tag Manager, Hubspot, Nginx, Mobile Friendly, Salesforce CRM Analytics, AI, VueJS, TypeScript, SQL, PostgreSQL, Docker, Git",3410000,Seed,3300000,2025-07-01,"","",69c282f21e946c0001f080ac,8099,62199,"Skleo Health is a German healthtech company focused on providing accessible, AI-powered eye screenings to detect preventable eye diseases early. Founded in March 2024, the company has quickly expanded its services to Germany's 50 largest cities, screening over 11,000 individuals and identifying more than 3,000 cases with significant medical findings. + +The company operates a decentralized screening model, bringing eye examinations to everyday locations such as opticians, pharmacies, and corporate offices. Each screening takes about six minutes and combines advanced AI analysis with validation from licensed ophthalmologists. Skleo Health is also developing a nationwide digital platform that connects patients directly with specialist eye doctors, facilitating a smooth process from detection to diagnosis and treatment. The company addresses preventable eye conditions like glaucoma, diabetic eye disease, and age-related macular degeneration, aiming to improve access to timely care.",2024,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69a4c3a61b0d7a0001e50a51/picture,"","","","","","","","","" +plus10,plus10,Cold,"",17,information technology & services,jan@pandaloop.de,http://www.plus10.de,http://www.linkedin.com/company/plus-10,"","",6 Werner-von-Siemens-Strasse,Augsburg,Bavaria,Germany,86159,"6 Werner-von-Siemens-Strasse, Augsburg, Bavaria, Germany, 86159","software, software development, automotive, prozessoptimierung, process optimization, machine learning, production optimization, pharma, medtech, gmp compliant, ai, fda compliant, smart manufacturing, optimization, produktionsoptimierung, manufacturing, ki, industry 40, consumer goods, smart solutions, automation machinery manufacturing, it services & it consulting, data-driven decision making, data analytics, mes integration, high-frequency machine data, multi-language support, process variability analysis, edge computing, trend detection, automated parameter adjustment, machine data, performance tracking, oee improvement, signal-level root cause detection, industrial machinery manufacturing, industry 4.0 solutions, production line optimization, signal analysis, automated troubleshooting guides, automation support, erp compatibility, system integration, industrial iot, b2b, cloud-based manufacturing software, smart factory, production efficiency, production line benchmarking, high-performance data infrastructure, process optimization software, performance monitoring, real-time monitoring, manufacturing software, process control, ai-powered analytics, process monitoring, industrial automation, pharmaceuticals, ai in manufacturing, on-premise deployment, production data management, alarm management, digital transformation, automated troubleshooting, downtime reduction, digital twin, root cause analysis, operator assistance, knowledge management, data visualization, high-frequency data collection, machine learning algorithms, manufacturing optimization, automated shift reports, real-time data, predictive maintenance, sps data acquisition, quality improvement, data integration, smartwatch operator support, oee optimization, healthcare, consumer_products_retail, information technology & services, artificial intelligence, mechanical or industrial engineering, consumers, medical, enterprise software, enterprises, computer software, health care, health, wellness & fitness, hospital & health care",'+49 82 178986400,"Cloudflare DNS, SendInBlue, Outlook, CloudFlare, Webflow, Adobe Media Optimizer, Vimeo, Cedexis Radar, Google Tag Manager, Mobile Friendly, Circle, AI, Remote, Linkedin Marketing Solutions, TypeScript, React, React Native, Claude","","","","","","",69c282f21e946c0001f080af,3571,33324,"plus10 GmbH is a high-tech AI spin-off from Fraunhofer IPA, focused on AI software solutions for automated manufacturing optimization. Based in Augsburg and Stuttgart, Germany, the company emerged from five years of applied research and aims to enhance productivity in highly automated production plants. By utilizing high-frequency PLC data, plus10 develops detailed machine behavior models that facilitate self-optimization, often achieving significant improvements in Overall Equipment Effectiveness (OEE) and productivity. + +The company offers a range of analytics software designed to identify issues and optimization opportunities in production lines. Key products include Shannon, which provides operational assistance to boost technical availability; Darwin, which analyzes cycle times and bottlenecks; Hopper, which minimizes rejects in injection molding; and DataCollector, a robust data infrastructure for production. plus10 also provides services such as use case evaluations and problem-solving roadmaps, tailored to various industries including pharmaceuticals, automotive, and consumer electronics.",2019,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670cec77a90bdb0001f108b9/picture,"","","","","","","","","" +Xentara,Xentara,Cold,"",22,information technology & services,jan@pandaloop.de,http://www.xentara.io,http://www.linkedin.com/company/xentara,"","",15 Steinerstrasse,Muenchen,Bayern,Germany,81369,"15 Steinerstrasse, Muenchen, Bayern, Germany, 81369","software, iot, industry 40, smart factory, digitalization, iiot, data, edge ai, physical ai, process control, realtime, automation, softwaredefined control, plc replacement, softwaredefined automation, internet of things, embedded hardware & software, smart city, software development, industrial automation platform, operational efficiency, network security, semantic data model, security model, consulting, services, open interfaces, modular control platform, nanosecond reaction times, industrial iot integration, edge data processing, multi-language ontologies, websocket communication, ai and ml integration, data aggregation, real-time control, high-speed data sharing, distribution, mqtt client, b2b, factory digitalization, industry 4.0 transformation, machine learning, edge computing, industrial machinery manufacturing, manufacturing, heterogeneous protocol support, high-precision timing, secure data exchange, multi-mesh security, model-based architecture, hierarchical data structuring, industrial data analytics, custom connector development, control system connectivity, process optimization, timing model, open industry standards, legacy system retrofit, protocol connectors, digital twin support, predictive maintenance, distributed system synchronization, opc ua server, real-time scheduler, construction & real estate, c++ interface, brownfield machine retrofit, distributed timing synchronization, data management, construction, information technology & services, artificial intelligence, mechanical or industrial engineering",'+49 89 21529620,"Cloudflare DNS, Rackspace MailGun, Outlook, Microsoft Office 365, CloudFlare Hosting, WordPress.org, Mobile Friendly, Node.js, Android, Remote, IoT, AI, ebs",880000,Seed,0,2025-05-01,"","",69c282f21e946c0001f080b9,3571,33324,"Xentara is a software-defined automation platform developed by embedded ocean, a company based near Munich, Germany. It focuses on the convergence of IT and operational technology (OT) for industrial IoT, enabling smart industries through real-time control, edge analytics, and AI integration. Xentara unifies IT and OT systems, bridging legacy industrial setups with modern technologies like AI and IoT, while offering a scalable and modular architecture that supports embedded systems and cloud platforms. + +The platform provides real-time control and programming capabilities, extensive connectivity options, and advanced analytics through AI integration. It is designed for high performance, allowing users to optimize manufacturing and intralogistics processes without the need for costly prototypes. Xentara also emphasizes security with built-in role-based access and containerization. Its services support digital transformation and operational efficiency across various industries, including manufacturing, aerospace, and automotive.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67282904cfbd1f000134eab5/picture,"","","","","","","","","" +atacama blooms,atacama blooms,Cold,"",19,information technology & services,jan@pandaloop.de,http://www.atacama-blooms.de,http://www.linkedin.com/company/atacama-blooms,"","",Hildegard-von-Bingen-Strasse,Bremen,Bremen,Germany,28359,"Hildegard-von-Bingen-Strasse, Bremen, Bremen, Germany, 28359","pflege, semantik, automatisierung, pflegesoftware, dokumentenerkennung, kuenstliche intelligenz, it services & it consulting, data security, gesundheitswesen, pflegeforschung, data management, interoperability, interprofessionelle zusammenarbeit, gesundheitsdatenvisualisierung, medical software, process optimization, pflege-management, digitale pflegeverwaltung, automatisierte assistenz, wundheilungsprognose, hebammenunterstützungssystem, ki-plattform, eu-gefördertes projekt, workflow automation, semantic technologies, b2b, ki-assistenzsysteme, pflegeprozessoptimierung, health data analytics, datenanalyse im gesundheitswesen, medical data analysis, ki-gestützte dokumentation, krankenhausmanagement, automatisierte datenextraktion, qualitätsmanagement, large language model, gesundheits-it, ki-gestützte entscheidungsunterstützung, datenschutzkonform, api-integration, dokumentenautomatisierung, patient data management, evidenzbasierte pflege, services, automatisierung in der pflege, vertrauensbildung ki-mensch schnittstelle, consulting, digitale dokumentation, digital health, healthcare software, computer systems design and related services, healthcare technology, ki-gestützte entscheidungsfindung, ki-basierte wissenssysteme, ki in der geburtshilfe, health it, pflegecontrolling, ki-gestützte software, healthcare, information technology & services, computer & network security, health, wellness & fitness, health care, hospital & health care","","Outlook, Google Cloud Hosting, Microsoft Office 365, Wix, Mobile Friendly, Varnish, Apache, Remote, Android, AWS SDK for JavaScript, Spring, Spring Boot, OpenAPI, Docker, Kubernetes, Microsoft Active Directory Federation Services, Microsoft 365, Microsoft Windows Server 2012, Intel, HELM, HAProxy, Nginx, Prometheus, Grafana, ELK Stack, Java EE, Javascript, Mag+, Oscar ECommerce, Angular","","","","","","",69c282f21e946c0001f080aa,7375,54151,"atacama blooms, ein junges Unternehmen im Technologiepark Bremen, setzt auf moderne Technologien wie Künstliche Intelligenz und Semantik und vereint Kompetenzen aus Informatik, Gesundheitswissen-schaft und -management sowie Linguistik. Damit entwickelt atacama blooms intelligente Lösungen für Leistungserbringer, Kostenträger und Software-Hersteller im eHealth-Bereich. +Mit semantischen Technologien unterstützt Nursing Intelligence die Pflege im Krankenhaus durch einem Wissensserver zur Dokumentation und Entscheidungsunterstützung. Smarte Tools verbinden Daten mit Kennzahlen zu einfach übersichtlichen Analysen für das Pflegemanagement und -Controlling. +Der AVIDOC-R übernimmt anspruchsvolle Aufgaben in automatisierten Prozessen/Workflows durch intel-ligente Micro-Functions, beispielsweise zur Digitalisierung, zur Extraktion von Informationen und zur semantischen Analyse von Dokumenten.",1998,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f3a97e10075a00018e3dcd/picture,"","","","","","","","","" +dianovi,dianovi,Cold,"",11,hospital & health care,jan@pandaloop.de,http://www.dianovi.com,http://www.linkedin.com/company/dianovi,"","","",Darmstadt,Hesse,Germany,"","Darmstadt, Hesse, Germany","hospitals & health care, klinische entscheidungsfindung, ki-gestützte medizin, ki-gestützte behandlungsempfehlungen, ki-modelle, medizinische trendanalyse, diagnostik-assistenz, patientendaten, medical devices, ki-gestützte abrechnungsprüfung, medical equipment and supplies manufacturing, effizienzsteigerung, abrechnungsoptimierung, integrierte klinikplattform, information technology, echtzeit-datenanalyse, automatisierte dokumentation, ki-basierte fehlererkennung, ki-module für krankenhäuser, ki-agenten, b2b, kliniksoftware, fehlerreduktion, diagnosevorschläge, datengetriebene assistenzsysteme, healthcare software, medizinische entscheidungsunterstützung, echtzeit-empfehlungen, medizinische software, dsgvo-konform, sicherheitsstandards, workflow-integration, abrechnungsdaten, schnittstellenintegration, ki in der notaufnahme, qualitätskontrolle in kliniken, leitlinienbasierte behandlung, ki-gestützte qualitätskontrolle, echtzeit-analyse, medizinische workflows, iso 13485, healthcare, qualitätssicherung, ki-gestützte datenanalyse in kliniken, services, abrechnungsmanagement, healthtech, ki-gestützte abrechnungsoptimierung, datenanalyse, sicherheitszertifizierung, finance, hospital & health care, health care, health, wellness & fitness, financial services","","Outlook, Google Cloud Hosting, Slack, Mobile Friendly, WordPress.org, YouTube, Google translate API, Wix, Varnish",200000,Venture (Round not Specified),200000,2023-01-01,"","",69c282f21e946c0001f080bf,3829,33911,"Dianovi is a healthcare AI startup based in Darmstadt, Germany, founded in 2023. The company develops digital assistants for emergency departments, enhancing doctors' decision-making by utilizing AI trained on thousands of patient cases alongside medical guidelines. With a team of around 10 employees, including founder Nils Bergmann, dianovi evolved from an initial symptom checker concept to focus on applications in emergency rooms through collaboration with hospitals, physicians, and insurance companies. + +Dianovi's main product is an AI-powered software platform designed for emergency department workflows. It offers decision support to improve medical quality and treatment accuracy, billing advice for economic efficiency, and seamless integration with existing hospital systems. The platform is built on custom-trained AI models and addresses challenges like overcrowding in emergency rooms. It holds ISO 13485 certification, ensuring compliance with medical AI regulations. The company aims to lead the market in emergency decision support and plans to expand into outpatient markets and pursue international growth.",2024,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68730c18e1b31a0001694942/picture,"","","","","","","","","" +navacom IT Solutions GmbH & Co. KG,navacom IT Solutions GmbH & Co. KG,Cold,"",14,information technology & services,jan@pandaloop.de,http://www.navacom.de,http://www.linkedin.com/company/navacom-it-solutions,"","","",Huerth,North Rhine-Westphalia,Germany,"","Huerth, North Rhine-Westphalia, Germany","it services & it consulting, fernwartung, it-infrastruktur, healthcare it, it-security, digital diagnostics, browserbasierte facility software, branchenspezifische hard- und software, information technology & services, healthcare software, cloud migration, it für kliniken, cloud-umgebungen, b2b, it-infrastruktur bauen, managed service, digitalisierung, teamviewer, quick connects, customer success, computer systems design and related services, it solutions, rehascan software, software development, service desk, branchenspezifische lösungen, server, netzwerk, endgeräte, facility services management, cybersecurity, reha diagnostik, patientenmanagement it, it betreiben, consulting, managed services, it betreuen, modern workspace, it consulting, it-beratung, facility management software, it-basis betrieb, it-security-team, psychosomatik diagnostik, cyber security, facility management, it-betreuung, softwareentwicklung, cloud-services, disruptive it-landschaften, services, suchtmedizin it-lösungen, healthcare, legal, management consulting, computer & network security, health care, health, wellness & fitness, hospital & health care",'+49 22 3380840,"Outlook, Mobile Friendly, Nginx, Gravity Forms, WordPress.org, Remote","","","","","","",69c282f21e946c0001f080b3,7375,54151,"Wir bauen, betreiben und betreuen IT-Lösungen für Ihr Unternehmen. + +Gemeinsam mit Ihnen skizzieren, planen und bauen wir Lösungen gemäß Ihren Bedürfnissen – immer mit dem gewünschten Ergebnis im Blick. + +Diese Lösungen betreiben wir dann möglichst geräuschlos. Dabei nutzen wir die jeweils aktuellen, besten Vorgehensweisen der Industrie. + +Um die Menschen vor der Technik kümmert sich unser Service-Team – damit sie täglich mit diesen Lösungen erfolgreich arbeiten können. Unsere Customer Success Manger sind regelmäßig bei Ihnen vor Ort, kennen Ihre Mitarbeitenden und deren Arbeitsabläufe. Sie sind Ihre Stimme bei uns. Sie sorgen dafür, dass die Lösungen auch tatsächlich im Arbeitsalltag funktionieren. Unser deutschsprachiger, interner Helpdesk kennt oft schon die Antworten auf viele Fragen Ihrer Mitarbeitenden und beantwortet sie gerne. Sollten sich Fragen zu einem Thema häufen – sei es zu Excel, Outlook oder anderen Anwendung – bieten wir ein kurzes, zielgerichtetes Training an, das dann auch tatsächlich im Alltag wirkt. + +Bauen, betreiben, betreuen – create. run. care. Nach diesem dreistufigen Prinzip ist unsere gesamte Firma aufgestellt. Menschen und Lösungen nach vorn. Die Technik muss dazu passen, nicht umgekehrt.",2005,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68661c85850bee0001c20bb2/picture,"","","","","","","","","" +ainovi,ainovi,Cold,"",25,information technology & services,jan@pandaloop.de,http://www.ainovi.de,http://www.linkedin.com/company/ainovi-gmbh,"","",Alfred-Herrhausen-Allee,Eschborn,Hessen,Germany,65760,"Alfred-Herrhausen-Allee, Eschborn, Hessen, Germany, 65760","sap bw on hana, sap bcs, abap oo, data science, data analyst, sap bw4 hana, lumira, schulungen, business analyst, sap bpc, datenbankdesign, app entwicklung, anwendungsdesign, s4 hana group reporting, sac, net entwicklung, cloud, it services & it consulting, data governance in cloud, data compliance in cloud, generative ai, data pipelines, ki-lösungen, automatisierte datenmigration, sap data products, sap konsolidierung, sap data cloud, digital transformation, software development, etl-prozesse, data science beratung, data visualization, data engineering in cloud, data engineering tools, automatisierte datenpseudonymisierung, computer systems design and related services, bi dashboards, visualisierung, data migration, data science plattform, ki in sap hana, data lakehouse architektur, ki readiness sap, predictive analytics, azure data services, rest-api datenübertragung, data mesh, services, databricks integration in sap, data monitoring, data integration, datenanonymisierung, sap consulting, data plattform, data security, data analytics tools, cloud-architekturen, automatisierte datenübertragung, data security in data lakes, data quality management, data transformation, sap data management, zero-copy data sharing, data governance, data quality, business intelligence, microsoft azure cloud, b2b, data lifecycle management, data mesh prinzipien, machine learning, data engineering, data warehouse, data analytics and data science, machine learning entwicklung, dsgvo-konforme datenanonymisierung, data privacy, sap btp, cloud computing, ki & machine learning, consulting, data modeling, data compliance, information technology and services, data orchestration, information technology & services, enterprise software, enterprises, computer software, computer & network security, analytics, artificial intelligence",'+49 61 96400111,"Cloudflare DNS, Outlook, Microsoft Office 365, Mobile Friendly, Google Tag Manager, Bootstrap Framework","","","","","","",69c282f21e946c0001f080b7,7375,54151,"Wir sind ainovi, ein progressives IT-Beratungsunternehmen mit Fokus auf Data Science, Microsoft, SAP sowie der Entwicklung und Vermarktung digitaler Produkte. Unsere Expert:innen unterstützen KMU's und DAX-Unternehmen seit 2011 bei der digitalen Transformation. + +Unsere Werte – Progressivität, Vielseitigkeit und Authentizität – bilden das Fundament unserer Arbeit. Wir sind davon überzeugt, dass nur vielseitige Teams mit unterschiedlichen Perspektiven und frischen Ideen in der Lage sein können, nachhaltige Lösungen zu bieten. + +Unser Erfolg basiert auf der Entwicklung und dem Wohlbefinden unserer Teams. Deshalb wollen wir unseren Mitarbeiter:innen ein modernes Arbeitsumfeld bieten, in dem Gemeinschaft, Technologie und menschliche Werte den Kern für Innovation bilden. + +Wir suchen ständig qualifizierte Mitarbeiter:innen. Bewirb Dich bei uns unter https://www.ainovi.de/karriere",2011,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/683bc99b85ecf30001196e76/picture,"","","","","","","","","" +CSP Group,CSP Group,Cold,"",90,information technology & services,jan@pandaloop.de,http://www.csp-sw.de,http://www.linkedin.com/company/csp-software,https://www.facebook.com/CSP.SW/,"",11 Herrenaeckerstrasse,Pilsting,Bavaria,Germany,94431,"11 Herrenaeckerstrasse, Pilsting, Bavaria, Germany, 94431","fehlervermeidung, software, industrie 50, ai, itconsulting, prozessdatenmanagement, qualitaetssicherung, industrie 40, big data, prozesspruefung, werkerfuehrung, assistenzsoftware, datenbankarchivierung, application retirement, kuenstliche intelligenz, werkzeugpruefung, qualitaetsmanagement, it services & it consulting, medizintechnik, workflow automation, fehlerprävention, industrial machinery manufacturing, werkerassistenz, produktionsplanung, compliance-unterstützung, aerospace, renewable energy, echtzeit-alarmierung, luft- und raumfahrt, datenarchivierung, disrete fertigung, systemübergreifende prozesskontrolle, prozessdokumentation, produktionsoptimierung, produktionsdaten, manufacturing, b2b, customer relationship management, rückverfolgbarkeit, software-implementierung, qualitäts- und compliance-software, remote support, qualitätssicherung, revisionssichere archivierung, project management, prozessüberwachung, ki-basierte prozessanalyse, batterieproduktion, services, automobilindustrie, revisionssichere datenhaltung, systemüberwachung, qualitätsmanagement, customer engagement, prozesskontrolle, herstellerunabhängigkeit, it-projektmanagement, softwarelösungen, software development, ki-gestützte anomalieerkennung, automatisierte qualitätskontrolle, anomalieerkennung, information technology, produktqualität, consulting, medical devices, industrie 4.0, erneuerbare energien, automotive, fertigungsindustrie, healthcare, information technology & services, enterprise software, enterprises, computer software, clean energy & technology, environmental services, renewables & environment, mechanical or industrial engineering, crm, sales, productivity, hospital & health care, health care, health, wellness & fitness",'+49 9953 300612,"Outlook, Microsoft Office 365, Hubspot, Mobile Friendly, Apache, Google Tag Manager, Vimeo, Adobe Media Optimizer, Cedexis Radar, Remote, React Native, IQMS, Shop Floor Data Collection (SFDC), SQS-TEST - Professional Suite, SAP Supplier Relationship Management, Microsoft Windows Server 2012, Debian, Ubuntu, Oracle Analytics Cloud, CAT, Docker, Podman, Microsoft Entra ID, Confluence, Jira, Torque, AWS SDK for JavaScript, React, SQL, Microsoft 365, Microsoft Exchange Online, SharePoint, Connect, Tor, Microsoft Active Directory Federation Services, Microsoft Advanced Group Policy Management, AWS Trusted Advisor, Admin, Splunk, Grafana, Nagios, checkmk, Kubernetes, Azure Devops, Ansible, Apache Tomcat, C#, Microsoft PowerShell, Zopim","","","","","","",69c282f21e946c0001f080bd,3829,33324,"CSP GmbH & Co. KG is a German software company founded in 1991 and based in Großköllnbach. The company specializes in customized software solutions for the manufacturing industry, focusing on quality assurance and database archiving. CSP is recognized for its innovative tools that help clients meet high-quality standards and implement zero-defect strategies. + +CSP offers a range of services, including consulting, installation, training, support, and maintenance. Their software solutions enhance efficiency and compliance in manufacturing processes. Notable products include systems for quality assurance, database archiving, and worker guidance, which provide step-by-step instructions to optimize production and reduce errors. CSP serves a global clientele, including well-known companies like Mercedes Benz and Knorr-Bremse, and is committed to community engagement through local sponsorships.",1991,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670daaf7d749d40001bd52ab/picture,"","","","","","","","","" +Key Ward,Key Ward,Cold,"",13,information technology & services,jan@pandaloop.de,http://www.keyward.io,http://www.linkedin.com/company/keyward,"","",76 Rheinsberger Strasse,Berlin,Berlin,Germany,10115,"76 Rheinsberger Strasse, Berlin, Berlin, Germany, 10115","software development, automated data pipelines, energy & utilities, data management, ai for aerospace engineering, reduced order models, ai model benchmarking, cloud data management, no-code ai platform, ai-driven optimization, ai-ready datasets, manufacturing, cad data processing, b2b, collaborative engineering, computer systems design and related services, test data management, environmental impact reporting, predictive analytics, engineering data management, data extraction and transformation, data correlation and pattern recognition, ai adoption in engineering, physics simulation acceleration, ai in additive manufacturing, machine learning models, multi-source data handling, multi-disciplinary design, dataops for engineers, machine learning, ai for automotive design, deep learning, api integration, data visualization, sustainable product design, cfd data analysis, design optimization, deep learning models, automated data processing, workflow automation, predictive engineering models, ai in engineering, simulation data analysis, generative ai for design, automated post-processing, data quality control, services, design space exploration, ai model training, energy_utilities, information technology & services, mechanical or industrial engineering, enterprise software, enterprises, computer software, artificial intelligence",'+49 172 0694641,"Gmail, Google Apps, Amazon AWS, Webflow, Slack, Google Tag Manager, Mobile Friendly, Linkedin Marketing Solutions, Hotjar, Data Analytics, Remote, AI",1130000,Seed,1100000,2024-09-01,"","",69c282f21e946c0001f080a9,7375,54151,"Key Ward is a Berlin-based deep-tech company founded by engineers from the automotive and aerospace sectors. The company specializes in Computer-Aided Engineering (CAE) and Generative AI, providing a no-code SaaS platform that accelerates physics simulations and optimizes engineering designs. This innovative platform allows teams to manage complex data and integrate AI without requiring coding or data science expertise. + +Key Ward's platform features automatic data pipelines for data extraction and preparation, advanced analytics for simulations, and AI-driven predictions that significantly enhance efficiency. It reduces the time for physics simulations by up to 10,000 times, cuts costs, and shortens design cycles dramatically. The company targets high-impact industries such as aerospace, automotive, medical devices, and renewable energy, focusing on improving operational performance and driving innovation across various engineering applications.",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66dcf48a796709000190549f/picture,"","","","","","","","","" +Thryve,Thryve,Cold,"",37,information technology & services,jan@pandaloop.de,http://www.thryve.health,http://www.linkedin.com/company/thryvehealth,"","",25 Schleiermacherstrasse,Berlin,Berlin,Germany,10961,"25 Schleiermacherstrasse, Berlin, Berlin, Germany, 10961","software platform, smartwatch apps, digital health, wearable integration, pattern recognition, wearable api, wearable insights, data analysis, outcome tracking, health assistance, health screening, sensor fusion, mhealth solution development, healthcare api, it services & it consulting, gdpr hipaa iso compliance, health data for chronic disease management, government, health data visualization, healthcare data management, services, data security and compliance, health data analytics, computer systems design and related services, health data models, health data sources integration, healthcare technology, health data for digital therapeutics, healthcare data compliance, digital health solutions, wearable device compatibility, operational efficiency in healthcare, health data analytics platform, health data privacy technology, health data integration, wearable device connectivity, b2b, health data from 500+ devices, health data for insurers, health data for wellness programs, medical devices, real-time data access, data privacy and security, personalized preventive care, real-time health data, data harmonization, data security standards, health data algorithm customization, predictive health insights, scalable healthcare solutions, api for wearables, health data standardization, health data harmonization, health data security, health data for clinical trials, health data sources, remote patient monitoring data, health data source integration, healthcare, health, wellness & fitness, information technology & services, data analytics, hospital & health care, health care",'+49 30 123,"Cloudflare DNS, Gmail, Google Apps, CloudFlare Hosting, Zendesk, Atlassian Cloud, Google Font API, reCAPTCHA, Hotjar, WordPress.org, Mobile Friendly, Google Tag Manager, Optimonk, IoT, Docker, Remote, Android, Circle, AI, AWS SDK for JavaScript, Spring, Python, React, Next.js, RabbitMQ, MySQL, Redis, MongoDB, Kubernetes",8360000,Series A,4400000,2024-08-01,"","",69c282f21e946c0001f080ae,8731,54151,"Thryve is a Berlin-based digital health company founded in 2016, specializing in wearable health data integration through a secure API platform. The company transforms fragmented data from wearables and health apps into standardized insights, promoting proactive well-being and personalized preventive care. Thryve emphasizes privacy and data security, ensuring compliance with GDPR, HIPAA, and ISO standards. + +The company offers a unified healthcare API that integrates with over 500 wearables and ecosystems, providing seamless access to health data. Its real-time analytics engine identifies trends and personalizes care, supporting various health management needs. Thryve collaborates with leading European organizations, serving over 50 million users globally, including insurers, digital therapeutics, healthcare providers, and public health institutions.",2016,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69a51853c45c040001ff42f4/picture,"","","","","","","","","" +infraView GmbH,infraView,Cold,"",67,information technology & services,jan@pandaloop.de,http://www.infraview.net,http://www.linkedin.com/company/infraview-gmbh-a-deutsche-bahn-company,"","",8 Parcusstrasse,Mainz,Rhineland-Palatinate,Germany,55116,"8 Parcusstrasse, Mainz, Rhineland-Palatinate, Germany, 55116","continous track monitoring, asset intelligence, asset management, iot platform, predictive maintenance, vehicle data bus logger, railways, data analytics, user experience, software development, condition monitoring, checkpoints, custom software, compliance, fahrzeugmanagement, transportation equipment manufacturing, eisenbahnsoftware, edge computing, sicherheitsüberwachung, fernwartung, vorausschauende instandhaltung, iot-plattform, cloud services, digital transformation, data protection, iot in der bahn, ml-modelle, digitale überwachung, datenplattform, level crossing monitoring, government, zustandsüberwachung, cloud-lösungen, consulting, electrical equipment, appliance, and component manufacturing, datensicherheit, digitale baustellenmanagement, software publishing, datenanalyse, kubernetes, data security, automatisierte fehlererkennung, baufortschrittsmonitoring, bahnbrückeninspektion, bahnübergangssicherheit, b2b, bauplanung, signaltechnik-diagnose, bahnenergie-management, machine learning, fleet management, schieneninfrastruktur-analyse, cloud computing, fernüberwachung, bahninfrastruktur, software engineering, instandhaltung, bahnüberwachung, softwarelösungen, process optimization, energieeffizienz, information technology and services, sensorik, services, ki-gestützte diagnose, on-premise, network security, bahnbrückenüberwachung, ki videoanalyse bahn, railroad rolling stock manufacturing, api-integration, operational efficiency, hardwareintegration, distribution, transportation & logistics, energy & utilities, ux, information technology & services, transportation/trucking/railroad, enterprise software, enterprises, computer software, computer & network security, artificial intelligence",'+49 61 314894862,"Route 53, Outlook, Atlassian Cloud, Python, Hubspot, Mobile Friendly, WordPress.org, Nginx, Wordpress.com","","","","","","",69c282f21e946c0001f080b8,4899,33651,"infraView GmbH is an IT company based in Mainz, Germany, and a subsidiary of Deutsche Bahn (DB Group). Founded in 2011, the company specializes in software-based diagnostics, IoT platforms, and digital solutions tailored for the rail sector. Their offerings include infrastructure monitoring, predictive maintenance, vehicle fleet management, and construction digitization. With a team of approximately 43-59 employees, infraView generates an estimated annual revenue of $7.4-7.7 million. + +The company operates one of the world's largest IoT platforms, monitoring over 40,000 infrastructure assets and vehicles. Key products include the DIANA diagnostics platform, which connects more than 20,000 switches to enhance operational efficiency. infraView provides a comprehensive range of services, including hardware, software, installation, and support, available as SaaS or on-premise. Their focus on customer-oriented business lines, such as Data Analytics & AI and Systems Engineering & Operations, positions them as a leader in digital transformation for the rail industry.",2011,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/686f431a946c0900015d2d5f/picture,DB Engineering & Consulting (db-engineering-consulting.com),5ed350124356d40001e5946c,"","","","","","","" +gemineers GmbH,gemineers,Cold,"",29,machinery,jan@pandaloop.de,http://www.gemineers.com,http://www.linkedin.com/company/gemineers,"","",17 Steinbachstrasse,Aachen,North Rhine-Westphalia,Germany,52074,"17 Steinbachstrasse, Aachen, North Rhine-Westphalia, Germany, 52074","digital twin, manufacturing, software, quality inspection, predictive quality, datadriven quality evaluation, machinery manufacturing, oee tracking, tool management, traceability, services, digital twin platform, automated workflows, quality assurance, plug-and-play, b2b, predictive maintenance, data processing, digital product passports, real-time data, machine monitoring, multi-site synchronization, high-frequency data, manufacturing data, data acquisition, process optimization, process control, industrial machinery manufacturing, industrial automation, industry 4.0, mechanical or industrial engineering, information technology & services",'+49 24 14095000,"Cloudflare DNS, Outlook, Microsoft Office 365, Wix, Mobile Friendly, Varnish, IoT, Render, Remote","",Seed,0,2023-06-01,"","",69c282f21e946c0001f080bb,3531,33324,"gemineers GmbH is a deep-tech startup based in Aachen, Germany, specializing in digital twin technology for manufacturing. Founded in 2021 as a spin-off from Fraunhofer IPT and RWTH Aachen University, the company has grown to around 25 employees who combine expertise in machining and IT. By 2025, gemineers aims to operate over 50 systems worldwide. + +The company offers a comprehensive digital twin platform designed for CNC machining, which includes data acquisition, processing, and delivery. This platform provides real-time data from machines and sensors, creating precise digital twins of manufacturing processes. It features a user-friendly web-based dashboard for centralized management and integrates with various machinery for compatibility. The platform delivers significant operational improvements, including reduced measurement efforts in quality assurance and optimized machining processes. gemineers serves over 30 customers across industries such as aerospace, mold & die, and medical.",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6720ab243faedc0001fde0cd/picture,"","","","","","","","","" +Industrial Analytics IA GmbH,Industrial Analytics IA,Cold,"",21,information technology & services,jan@pandaloop.de,http://www.industrial-analytics.io,http://www.linkedin.com/company/industrial-analytics-berlin,"",https://twitter.com/induanalytics,59-61 Erkelenzdamm,Berlin,Berlin,Germany,10999,"59-61 Erkelenzdamm, Berlin, Berlin, Germany, 10999","physicsbasedmodels, energy optimization, iot, machine learning, internet of things, digital transformation of industries, operational efficiency, hvac analytics, turbomachinery, analytics, iiot, digital transformation, hybrid ai, signalanalysis, predictive maintenance, compressors, artificial intelligence, condition monitoring, it services & it consulting, manufacturing, industrial processes, analytics tools, data-driven decisions, manufacturing data, process optimization, production analytics, production data, services, industrial analytics, industrial data solutions, data visualization, industrial process optimization, management consulting services, industrial automation, industrial insights, b2b, manufacturing analytics, manufacturing data analysis, data analysis, manufacturing insights, information technology & services, mechanical or industrial engineering, data analytics",'+49 30 12082087,"Route 53, Outlook, Microsoft Office 365, Android, Linux OS, Docker, IoT, Remote, AI",1380000,Merger / Acquisition,0,2022-08-01,3000000,"",69c282f21e946c0001f080a8,7374,54161,"Industrial Analytics IA GmbH is a Berlin-based AI-IoT startup founded in 2017. The company specializes in engineer-driven AI solutions aimed at optimizing industrial and commercial facilities for efficiency, reliability, sustainability, energy savings, and predictive maintenance. With a team of 19-21 employees, it generates approximately $2 million in revenue and collaborates with institutions like the Hasso Plattner Institute. + +The flagship product, ACE (Analytics Core Element), is a containerized SaaS platform that integrates with existing operations for real-time monitoring and analytics. Key offerings include PredictACE, which uses hybrid AI for predictive maintenance, and EnergyACE, which optimizes HVAC energy consumption. The company’s solutions support various applications, including remote monitoring, data integration, and process automation, delivering measurable benefits such as energy efficiency gains and cost reductions across multiple sectors, including HVAC, renewable energy, and greentech.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67170b86e11690000183d1f8/picture,Infineon Technologies (infineon.com),5ed3369e86e41200010dc42f,"","","","","","","" +DIGITIUM Unternehmensberatung GmbH,DIGITIUM Unternehmensberatung,Cold,"",12,information technology & services,jan@pandaloop.de,http://www.digitium.de,http://www.linkedin.com/company/digitium-unternehmensberatung-gmbh,"","",11 Am Koelner Weg,Cologne,North Rhine-Westphalia,Germany,50765,"11 Am Koelner Weg, Cologne, North Rhine-Westphalia, Germany, 50765","machine learning, handel, datenplattform, big data, beratung, innovation, kuenstliche intelligenz, ki, it services & it consulting, unstrukturierte daten, unsupervised learning, ai integration, consulting, e-commerce, services, retail, data engineering, data optimization, netzwerk von artikelbeziehungen, automatisierte datenaufbereitung, a/b-testing von sortimentsänderungen, digitalstrategie, open source tools, data processing, data pipelines, data analytics, mathematische modelle, data-driven solutions, warenkorbanalyse, prototyping, it-beratung, b2b, sortimentsplanung, data insights, computer systems design and related services, cloud computing, software development, data quality, clustering, data transformation, data modeling, datenanalyse, open standards, kundenindividuelle sortimente, skalierung, customer behavior analysis, prototypenentwicklung, data science, data security, datenpotenziale, information technology and services, data visualization, data management, data infrastructure, data architecture, education, distribution, artificial intelligence, information technology & services, enterprise software, enterprises, computer software, consumer internet, consumers, internet, computer & network security",'+49 1515 4038841,"Outlook, Microsoft Office 365, Active Campaign, WordPress.org, Apache, Mobile Friendly, AI, Airflow, dbt, Snowflake, Kubernetes, Google Cloud Platform, Google Cloud, Microsoft Azure, Python","","","","","","",69c282f21e946c0001f080b1,7375,54151,"Wir sind eine innovationsorientierte IT-Beratung, spezialisiert auf das Potenzial von Daten und daraus resultierendem Wissen und Intelligenz. + +In unserem Zentrum steht die Frage, wie Organisationen adaptiver werden und optimal agieren können. + +Hierfür beleuchten wir das gesamte Spektrum vom strategischen Konzept einer intelligenten Organisation bis zur Implementierung fortschrittlicher KI- und ML-Services. + +Unsere Stärke liegt in der Kombination aus Methodik, tiefer mathematischer und analytischer Expertise, Umsetzungskompetenz und fundiertem Verständnis für fachliche Prozesse in Logistik und Handel. Diese Kombination ermöglicht uns die Lösung komplexer Herausforderungen: + +- Geschäftspotenziale nutzen +- Datenbasierte Expertise aufbauen +- Versteckte Potenziale in Daten finden und nutzen +- ML/KI-basierte Lösungen entwickeln und als Intelligenzbausteine in ihrer Organisation verankern +- Fallstricke in Strategie und Umsetzung vermeiden. + +Gekaufte Standard-KI ist ein guter Start. Echte Wettbewerbsvorteile haben Unternehmen mit ihrer eigenen KI. In dieser spiegelt sich die Individualität ihrer Organisation und Prozesse. Die eigene KI ermöglicht adaptives Handeln. + +In enger Zusammenarbeit mit unseren Kunden erfassen wir spezifische Anforderungen und erarbeiten individuelle Lösungen. + +Wie dürfen wir Sie unterstützen?",2018,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66debff09af12f000132606c/picture,"","","","","","","","","" +medicalvalues GmbH,medicalvalues,Cold,"",31,information technology & services,jan@pandaloop.de,http://www.medicalvalues.de,http://www.linkedin.com/company/medicalvalues,"","",18 Haid-und-Neu-Strasse,Karlsruhe,Baden-Wuerttemberg,Germany,76131,"18 Haid-und-Neu-Strasse, Karlsruhe, Baden-Wuerttemberg, Germany, 76131","it services & it consulting, integrated diagnostics, clinical pathway customization, health information technology, diagnostic pathway management, snomed ct mapping, diagnostic ai research, medical knowledge base, medical data enrichment, clinical decision support, healthcare equipment & supplies, medical and diagnostic laboratories, laboratory intelligence, b2b, machine learning, loinc standardization, medical laboratories, services, data harmonization, data mapping, diagnostic algorithms, diagnostic pathways, healthcare analytics, data standardization, automated data enrichment, medical diagnostics, ai-powered diagnostics, fhir api, ai diagnostics, healthcare, information technology & services, medical & diagnostic laboratories, medical practice, hospital & health care, artificial intelligence, health care, health, wellness & fitness",'+49 163 2545289,"Route 53, Rackspace MailGun, Outlook, Microsoft Office 365, Mobile Friendly, Vimeo, Google Tag Manager, Google Analytics, WordPress.org, Nginx, Xamarin, Node.js, Android, React Native, Remote, AI","","","","","","",69c282f21e946c0001f080b4,8731,62151,"medicalvalues GmbH is a medical software company based in Karlsruhe, Germany, founded in 2021. The company develops an AI-based diagnostic intelligence platform aimed at enhancing clinical decision-making for physicians. Their vision focuses on improving patient outcomes by connecting various elements in clinical pathways. + +The platform offers modular solutions for diagnostics in laboratory and clinical settings. It features four integrated modules that include customizable diagnostic decision support systems and data management tools. Key functionalities include medical insights, intelligent validation, patient-specific diagnostic suggestions, and specialty-specific lab ordering. The platform utilizes SNOMED CT terminology for interoperability and employs a hybrid architecture to ensure data protection while facilitating knowledge sharing. + +medicalvalues serves a wide range of healthcare domains, including analytics, chronic disease management, and clinical documentation. The company supports healthcare providers, insurance companies, medical software vendors, and pharmaceutical companies. With a focus on improving diagnostic quality, especially for complex and rare diseases, medicalvalues emphasizes fast implementation and integration with industry standards.",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e5d18eeae4890001b7414a/picture,"","","","","","","","","" +TIQ Solutions GmbH,TIQ Solutions,Cold,"",18,information technology & services,jan@pandaloop.de,http://www.tiq-solutions.de,http://www.linkedin.com/company/tiq-solutions-gmbh,https://facebook.com/pages/TIQ-Solutions-Datenqualitat-Datenmanagement/117816011584835,https://twitter.com/TIQSolutions,84 Weissenfelser Strasse,Leipzig,Saxony,Germany,04229,"84 Weissenfelser Strasse, Leipzig, Saxony, Germany, 04229","data mining, interaktive analyse, qlik extensions, adhoc reporting, advanced analytics, it consulting, qlik implemantation, big data, graph analytics, qlik, data visualization, data analytics, selfservicebi, business intelligence, predictive analytics, software development, esg-reporting, logistics, data science & ki, dokumentenverarbeitung ki, computer vision, qlik sense, legal ki, data governance, automatisierte produktionskontrolle, retrieval-augmented generation, ai & data governance, co2-bilanzierung, ki-agenten entwicklung, netzinfrastruktur ki, qlik migration, data modellierung, data infrastructure, manufacturing, qlik sense automatisierung, künstliche intelligenz, ki-agenten, data & ai, data plattform, data science, data vault modellierung, data engineering, traceability, computer systems design and related services, data pipeline optimization, b2b, data analytics and business intelligence, data consulting, data maturity check, cloudera, graph data, data infrastruktur, condition monitoring, services, energie ki, data automation, ai readiness check, data culture, data integration, data strategy, predictive maintenance, power bi, data management, data quality management, microsoft power bi, smart manufacturing, forecasting, information technology and services, consulting, microstrategy, web scraping, social listening analytics, logistics ki, data science and machine learning, managed services, data security, deep learning, cloudera provisionierung, finance, legal, distribution, enterprise software, enterprises, computer software, information technology & services, management consulting, analytics, artificial intelligence, mechanical or industrial engineering, computer & network security, financial services",'+49 341 35590300,"Outlook, Apache, Google Tag Manager, WordPress.org, Mobile Friendly, reCAPTCHA, Remote, PowerBI Tiles, Qlik Sense, Tableau","","","","",9000,"",69c282f21e946c0001f080b6,7375,54151,"Unsere Mission ist es, dass datenbasierte Entscheidungen zum Selbstverständnis werden. Wir bieten erstklassige Expertise und Best Practices im Umgang mit Daten, um Ihre Kosten zu senken, Ihren Umsatz zu maximieren und Wettbewerbsvorteile zu generieren. + +Wir unterstützen Sie, wie sie große als auch kleine Datenbestände intelligent analysieren, visualisieren und daraus Erkenntnisse gewinnen können. Dazu vermitteln wir in unseren Kernbereichen Big Data, Business Intelligence und Advanced Analytics methodische Konzepte, Technologien und Architekturen, die auf den speziellen Anwendungsfall passen – angefangen mit einer Use-Case-Beratung über die Projektrealisierung bis hin zur Implementierung der entwickelten Lösung in Ihr Produktivsystem. + + +It is our mission to make data-based decisions a matter of course. We offer world-class expertise and best practices in managing your data to reduce your costs, maximize your revenue, and generate competitive advantage. + +We provide vendor-independent consulting and development services in the field of data management. Our key areas are Big Data, Business Intelligence and Advanced Analytics. We pursue a holistic approach by providing our customers with analysis of their requirements, development of IT Solutions, implementation and on-going operational support.",2004,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6713f20d435a330001f9fd98/picture,"","","","","","","","","" +ADVISORI FTC GmbH,ADVISORI FTC,Cold,"",68,information technology & services,jan@pandaloop.de,http://www.advisori.de,http://www.linkedin.com/company/advisori-ftc-gmbh,https://www.facebook.com/ADVISORI-FTC-GmbH-125040334977449/,"",44 Kaiserstrasse,Frankfurt,Hesse,Germany,60329,"44 Kaiserstrasse, Frankfurt, Hesse, Germany, 60329","itaudit, meldewesen, vsnfd, cyber risk, information security, digital transformation, dora, itcompliance, data science, audit, eu ai act, kistrategie, big data, software engineering, digital process management, kikompetenz, risikomanagement, cloud, nis2, kigovernance, it services & it consulting, it risk assessment, regtech, data privacy, regulatory change management, cloud security, regulation compliance, it consulting, vulnerability management, regulatory risk analytics, regulatory impact assessment, management consulting services, cyber resilience, nist cybersecurity framework, business continuity, risk quantification, explainable ai in compliance, incident response, regulatory breach detection, it governance, automated compliance, regulatory reporting automation, consulting, regtech solutions, artificial intelligence, business intelligence, cybersecurity strategy, cybersecurity, cyber security, business resilience, security architecture, data management, regulatory reporting, data analytics, regulatory analytics, cyber threat detection, cyber risk management, cloud risk management, regulatory compliance, b2b, predictive maintenance, data governance, cloud compliance, security monitoring, security testing, ai in security, regulatory standards, regulatory technology, ai-driven compliance monitoring, data protection, regulatory data management, regulatory compliance dashboards, regulatory process automation, regulatory data visualization, it audit, automated risk assessment, risk management, automated compliance workflows, risk assessment, it audit tools, cloud risk assessment tools, compliance, software development, cybersecurity audit automation, regulatory framework, regulatory data analytics, nis2 directive, dora compliance, iso 27001, operational efficiency, services, healthcare, finance, legal, computer & network security, information technology & services, enterprise software, enterprises, computer software, management consulting, analytics, health care, health, wellness & fitness, hospital & health care, financial services",'+49 69 91311301,"Route 53, Outlook, Microsoft Office 365, Amazon AWS, Nginx, WordPress.org, Google Tag Manager, Mobile Friendly, Apache, Google Analytics","","","","","","",69c282f21e946c0001f080a7,7375,54161,"ADVISORI FTC GmbH is a German consulting firm that specializes in digital transformation, information security, and risk management for enterprises. With over 11 years of experience in the banking sector, the company has a team of more than 120 specialized consultants and has successfully completed over 540 projects. + +The firm offers a range of services, including AI implementation strategies, digital strategy consulting, data management, and software development. In information security, ADVISORI FTC provides cybersecurity strategies, identity and access management, and incident response services. Their risk management services cover enterprise risk management and financial risk assessments. Additionally, the company has expertise in regulatory reporting and data quality assurance, ensuring compliance and operational resilience for its clients. + +ADVISORI FTC emphasizes a partnership approach, focusing on delivering measurable business value through strategic foresight and practical implementation. Notable clients include Bosch, Festo, Siemens, and Klöckner & Co.",2014,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68427f124f4c900001b7db4a/picture,"","","","","","","","","" +onoff GmbH,onoff,Cold,"",32,machinery,jan@pandaloop.de,http://www.onoff-gmbh.com,http://www.linkedin.com/company/onoffgmbh,"","",6 Niels-Bohr-Strasse,Wunstorf,Lower Saxony,Germany,31515,"6 Niels-Bohr-Strasse, Wunstorf, Lower Saxony, Germany, 31515","automation machinery manufacturing, zone 2 ex-schaltanlagen, schaltanlagenbau, automation services, sicherheitskonzepte, elektrische anlagenprüfung, fertigungstechnologien, feldverkabelung, schaltanlagenfertigung, anlagenplanung, standortdienstleister, hochflexible produktion, automatisierungssysteme, kundenindividuelle lösungen, qualifizierung, schaltschrankbau, process industry, automatisierungsdienstleistungen, wartung, msr-technik, service und wartung, e- und msr-montage, electrical equipment & components, projektplanung, sicherheits- und steuerungstechnik, geräteintegrierter brandschutz, sicherheits- und prozessüberwachung, projektmanagement, motors and generators, realisierung komplexer anlagen, brandschutz, hardware-engineering, qualitätskontrolle, sicherheitsstandards, process control, manufacturing, modulares automatisierungssystem, normen und richtlinien, environmental monitoring system, inbetriebnahme, kundenorientierter service, automatisierungsplanung, automatisches meldesystem, automatisierung in der pharma- und chemiebranche, ems montage, b2b, mechanical or industrial engineering",'+49 5031 96860,"Outlook, Microsoft Office 365, MailJet, Gmail, Google Apps, Mobile Friendly, WordPress.org, Apache, Google Tag Manager","","","","","","",69c282f21e946c0001f080ad,3621,"","As a system-independent partner for automation and IT, we develop precisely customized solutions for process automation, digitalization and artificial intelligence. Our sector focus is on pharmaceuticals, foods, chemicals, water/wastewater and natural gas. However, our customized, future-oriented solutions are also increasingly in demand in other sectors, such as retail. + +More than 180 employees work at eight different locations in Germany and abroad, successfully implementing local customer projects in the context of Industry 4.0. Our vision is to tap into potentials that make processes not only more efficient but also safer, cheaper and easier to operate. In doing so, we bring no less than 30 years of expertise and experience to the table. Two core areas form the heart of our company: onoff engineering gmbh and onoff it-solutions gmbh.",1988,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/672020045552160001d95e0e/picture,SpiraTec AG (spiratec.com),5da2811ff5d44200015b2752,"","","","","","","" +German Association of Healthcare IT Vendors – bvitg e.V.,German Association of Healthcare IT Vendors – bvitg e.V,Cold,"",42,information technology & services,jan@pandaloop.de,http://www.bvitg.de,http://www.linkedin.com/company/bvitg,"",https://twitter.com/bvitg_berlin,56 Markgrafenstrasse,Berlin,Berlin,Germany,10117,"56 Markgrafenstrasse, Berlin, Berlin, Germany, 10117","ehealth, gesundheitsit, telematikinfrastruktur, gesundheitswesen, kuenstliche intelligenz, gdag, elektronische patientenakte, gesundheit, telemedizin, itsicherheit, interoperabilitaet, datenschutz, it, digitalisierung, it services & it consulting, healthcare standards, healthcare it security, healthcare event organization, healthcare it market growth, interoperability, healthcare companies, health it solutions, telemedicine, healthcare it policy advocacy, healthcare market, healthtech, healthcare software, healthcare data management, healthcare cloud solutions, healthcare cybersecurity, healthcare innovation, healthcare digital transformation, b2b, healthcare it, healthcare it solutions, healthcare it networking events, healthcare systems, healthcare technology, healthcare policy, healthcare policy advocacy, ai healthcare applications, healthcare digital platforms, services, healthcare digital standards, healthcare digital health platforms, healthcare it startups, healthcare it compliance, interoperability standards, healthcare policy influence, health data interoperability, digital health, healthcare stakeholders, healthcare telematics infrastructure, healthcare providers, consulting, healthcare digital health solutions, healthcare member services, healthcare solutions development, healthcare industry events, computer systems design and related services, healthcare digital tools, healthcare digital ecosystem, gdpr compliance, healthcare services, digital health conferences, healthcare it advocacy, healthcare it industry association, healthcare networking, electronic health records, healthcare it policy, healthcare it collaboration, healthcare digital infrastructure, healthcare solutions, healthcare collaboration, healthcare digital infrastructure development, health data security, healthcare digitalization, healthcare it member services, healthcare associations, healthcare industry, healthcare infrastructure, healthcare, healthcare it innovation hubs, healthcare events, health it, telematics infrastructure, patient information systems, data protection, digital health solutions, membership association, healthcare it services, clinical data management, patient-centered services, electronic patient records, telehealth solutions, digital health transformation, healthcare communication systems, medical software, data privacy in healthcare, healthcare platforms, health informatics, e-health applications, healthcare regulations, patient engagement solutions, pharmacy management systems, medical data analytics, health information exchange, healthcare technology solutions, integrated care systems, healthcare project groups, collaboration in healthcare, healthcare advocacy, telematics applications, health it networking, healthcare data governance, digital patient records, health it membership, cloud healthcare solutions, artificial intelligence in healthcare, patient data security, medical informatics, health it training, healthcare research, health it trends, healthcare memberships, telemedicine services, health information governance, information technology & services, health care information technology, health care, health, wellness & fitness, hospital & health care",'+49 30 206225820,"Outlook, iTunes, WordPress.org, Nginx, Mobile Friendly, Ruby On Rails, Apache, Google Play, AI","","","","","","",69c282f21e946c0001f080b0,7375,54151,"The German Association of Healthcare IT Vendors, known as bvitg e.V., is a trade association that represents leading IT providers in the healthcare sector in Germany. The organization advocates for advancements in digitalization, eHealth, and IT security within patient care. It actively engages in policy discussions and hosts events, including the ""bvitg Politischer Abend 2025"" focused on digital public services in rural areas, and participates in major conferences like DMEA 2026. + +bvitg produces research and guidelines to enhance healthcare IT. Notable publications include the eHealth Efficiency Study, which analyzes the benefits of eHealth, and the IT Security Concept Guideline, which outlines a framework for IT security in healthcare digitalization. The association also organizes events such as the DMEA nova Award and DMEA sparks Award, fostering innovation and collaboration among its members. Through its initiatives, bvitg supports the collective representation of its members in the healthcare IT landscape.",1995,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69862fb607ff720001125aa2/picture,"","","","","","","","","" +Dataciders ixto GmbH,Dataciders ixto,Cold,"",26,information technology & services,jan@pandaloop.de,http://www.ixto.de,http://www.linkedin.com/company/ixto-gmbh,https://facebook.com/ixtogmbh,https://twitter.com/ixto_GmbH,204 Bundesallee,Berlin,Berlin,Germany,10717,"204 Bundesallee, Berlin, Berlin, Germany, 10717","business intelligence consulting, iot, microsoft bi, data science, microsoft business intelligence, data analytics, sql 2012, industrie 40, cloud, microsoft business intelligence business intelligence consulting microsoft bi sql 2012 data analytics, it services & it consulting, cloud computing, business intelligence tools, data security solutions, data management, bi solutions, smart living services, data science applications, smart energy management, green energy solutions, computer systems design and related services, data services, data platform, data pipelines, data reporting systems, künstliche intelligenz, data management platforms, data transformation processes, data-driven strategies, data strategy consulting, data project management, project management, climate data analytics, cloud solutions, data analysis software, data strategy, data tools, business intelligence, co2 emission prediction, environmental data analysis, consulting, data processing, data security, data governance, data analysis techniques, data engineering services, predictive modeling, data analysis, artificial intelligence, data engineering, data platform development, data infrastructure, energy efficiency optimization, data integration, b2b, data transformation, data & analytics, predictive analytics, software development, data governance frameworks, data quality management, smart home data integration, sustainable energy solutions, data solutions, data analytics platforms, renewable energy forecasting, data projects, information technology and services, services, data modeling, data warehousing, ai, data architecture design, data reporting, data visualization tools, energy management, machine learning, data consulting, data consulting services, cloud-lösungen, data insights, data visualization, data-driven decision making, big data, data optimization, ai solutions, data integration tools, data quality, data architecture, energy & utilities, information technology & services, enterprise software, enterprises, computer software, productivity, analytics, computer & network security, oil & energy",'+49 30 27874070,"Outlook, Microsoft Office 365, Apache, WordPress.org, Mobile Friendly, Facebook Comments","","","","",397000,"",69c282f21e946c0001f080bc,7375,54151,"Wir als ixto Dataciders sind darauf spezialisiert, branchenübergreifend unternehmensweit modernste Innovationen in den Bereichen Data & Analytics, Data Science, Big Data, Business Intelligence, Künstlicher Intelligenz, Cloud und Industrie 4.0 wertsteigernd auf die Geschäftswelt unserer Kunden zu übertragen. Unsere jahrzehntelange Kompetenz in der Entwicklung datenbasierter End-to-End-Lösungen wirkt sowohl in Konzernen als auch mittelständischen Unternehmen darauf hin, dass niemand mehr schlechte Entscheidungen treffen muss. + +Zu unseren Beratern zählen erfahrene Data Scientists, Entwickler und Projektmanager. Wir bieten fachliches und technisches Know-How, Prozessverständnis und langjährige Erfahrung aus erfolgreichen Projekten.",2003,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6872d247e1b31a00016842a2/picture,"","","","","","","","","" +GT-ARC,GT-ARC,Cold,"",20,information technology & services,jan@pandaloop.de,http://www.gt-arc.com,http://www.linkedin.com/company/gt-arc,"","",7 Ernst-Reuter-Platz,Berlin,Berlin,Germany,10587,"7 Ernst-Reuter-Platz, Berlin, Berlin, Germany, 10587","internet of things, cybersecurity, machine learning, information & communication technologies, it services & it consulting, ai middleware, digital transformation, ai development tools, innovation framework, open innovation labs for ai, health technology, research, distributed autonomous systems, health and energy applications, data security, innovation, ai middleware for iot, multi-disciplinary research, information technology & services, smart cities, research and development in the physical, engineering, and life sciences, artificial intelligence, explainable ai in healthcare, information technology and services, healthcare technology, real-time data processing, data analytics, network security, distributed data platforms for mobility, autonomous vehicles, cloud computing, b2b, autonomous systems, predictive maintenance, resilient 5g architectures, ict platforms, ict research, data-driven applications, mobility solutions, open ran security, research and development, iot integration, iot, self-* properties, german-turkish cooperation, autonomous vehicle perception, public good ai applications, mobility and transport, energy efficiency, network vulnerability monitoring, smart city data management, software development, container-based security, energy technology, ai explainability, cyberattack detection algorithms, ai in energy grids, telecommunications, smart city solutions, services, big data, system integration, healthcare, education, non-profit, transportation & logistics, energy & utilities, computer & network security, enterprise software, enterprises, computer software, research & development, environmental services, renewables & environment, health care, health, wellness & fitness, hospital & health care, nonprofit organization management",'+49 30 31474003,"Slack, Apache, Google Font API, Mobile Friendly, Ubuntu, WordPress.org","","","","","","",69c282f21e946c0001f080be,8731,54171,"GT-ARC's mission is to take a leading role in creating ICT-based innovation through German-Turkish cooperation by (i) bringing the bright minds of the two countries together to design and develop core technologies for future innovative solutions, (ii) providing a framework for joint projects, staff mobility, idea exchange, and value creation among relevant stakeholders. + +GT ARC gGmbH, located in Berlin, is supported by the German Federal Ministry of Education and Research.",2012,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67084f176b874d00017c62af/picture,"","","","","","","","","" +Hertie Institute for AI in Brain Health,Hertie Institute for AI in Brain Health,Cold,"",25,research,jan@pandaloop.de,http://www.hertie.ai,http://www.linkedin.com/company/hertie-institute-for-ai-in-brain-health,"","",6 Maria-von-Linden-Strasse,Tuebingen,Baden-Wuerttemberg,Germany,72076,"6 Maria-von-Linden-Strasse, Tuebingen, Baden-Wuerttemberg, Germany, 72076","neuroscience, ml, ai, ai in healthcare, data science, research services, high-performance computing, early diagnosis, neurodegenerative diseases, convolutional neural networks, neuroinformatics tools, predictive analytics, causal inference, mental health, predictive modeling, mechanistic modeling, neuroimaging, genetic data analysis, research and development in the physical, engineering, and life sciences, brain disease detection, artificial intelligence, clinical decision support, neuroimaging analysis, transformers, data visualization, neural circuit simulation, deep learning, b2b, machine learning, neural modeling, biomedical data, brain health assessment, education, ai in brain health, neuroinformatics, clinical data, neuroethics in ai, multimodal datasets, ai in psychiatry, neural data visualization, brain disease prediction, medical ai, explainable ai, ai for ophthalmology, brain network analysis, personalized neurology, disease prevention, ophthalmology, healthcare, neuroethics, clinical ai methods, multimodal data integration, ai-driven neurodiagnostics, robustness, computer vision, services, neural activity, interpretability, biotechnology, information technology & services, enterprise software, enterprises, computer software, hospital & health care, health care, health, wellness & fitness","","Amazon AWS, Google Analytics Ecommerce Tracking, Mobile Friendly, Apache, Google Tag Manager","","","","","","",69c282f21e946c0001f080ab,8731,54171,"The Hertie Institute for AI in Brain Health (Hertie AI) is a research institution at the University of Tübingen, Germany. It focuses on using artificial intelligence and machine learning to enhance the early diagnosis, prediction, and prevention of nervous system diseases. Established by the Hertie Foundation, it is the first institute in Germany to integrate AI with neuroscience for brain health, utilizing large datasets from both research and clinical practice. + +Hertie AI is organized into two main research departments: Data Science and Machine Learning. It conducts research in various areas, including machine learning for medical diagnostics, neuronal modeling, and precision brain science. The institute collaborates with clinical partners in neurology and ophthalmology to test its findings in real-world settings. It also supports early-career researchers and hosts events to foster collaboration and knowledge sharing within the scientific community.",2023,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66dfe933b85d9500011fcd2e/picture,"","","","","","","","","" +custo med GmbH,custo med,Cold,"",33,medical devices,jan@pandaloop.de,http://www.customed.de,http://www.linkedin.com/company/custo-med-gmbh,"","",2 Maria-Merian-Strasse,Ottobrunn,Bavaria,Germany,85521,"2 Maria-Merian-Strasse, Ottobrunn, Bavaria, Germany, 85521","medical devices, telemedicine, healthcare information technology, cardiology, medical equipment manufacturing, hospital & health care, health care information technology, health care, health, wellness & fitness, medical",'+49 89 7109800,"Apache, Mobile Friendly, OpenSSL, Remote","","","","","","",69c282f21e946c0001f080b2,"","","custo med GmbH is a German medical technology company founded in 1982, with roots dating back to 1979. Headquartered in Ottobrunn near Munich, the company specializes in developing, producing, marketing, and servicing innovative system solutions for cardiopulmonary diagnostics. With a workforce of around 80 employees, custo med has established itself as a market leader in Germany for computer-aided diagnosis systems in this field. + +The company offers a range of medical products and software, including ECG technology, Holter ECG, and solutions for pulmonary diagnostics, anesthesia, and patient monitoring. Its core product, the 'custo diagnostic' system, is a modular platform that supports all cardiopulmonary examinations for various healthcare settings. custo med emphasizes quality management and has long-term partnerships with distributors in over 40 countries, ensuring professional support and tailored solutions for hospitals, clinics, and rehabilitation centers.",1979,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/687d59035cba7100015c7d93/picture,"","","","","","","","","" +ERGON Datenprojekte GmbH,ERGON Datenprojekte,Cold,"",38,information technology & services,jan@pandaloop.de,http://www.ergonweb.de,http://www.linkedin.com/company/ergon-datenprojekte-gmbh,"","",2 Glockengiesserwall,Hamburg,Hamburg,Germany,20095,"2 Glockengiesserwall, Hamburg, Hamburg, Germany, 20095","synapse, microsoft, svelte, projectmanagement, data, development, c, sql server, powerbi, azure, databricks, fabric, datafactory, vue, it services & it consulting, data visualization, data warehouse, data-driven decisions, data strategy consulting, power bi, azure data factory, consulting, erp, cloud consulting, data warehouse solutions, cloud migration, azure cloud, azure data platform, services, computer systems design and related services, crm, salesforce, cloud architecture, cloud native development, business intelligence, cloud computing, data vault, data analytics, azure cloud native applications, data lake, data integration, devops, power bi reporting, sap, data analytics and business intelligence, data management, cloud native applications, cloud solutions, b2b, big data, software development, information technology and services, azure data lake, azure cloud migration, machine learning, azure cloud services, azure synapse analytics, data security, data engineering, azure synapse, data governance, data strategy assessment, azure data lake storage, data analysis, microsoft technologies, project managment, information technology & services, sales, enterprise software, enterprises, computer software, analytics, artificial intelligence, computer & network security",'+49 40 8537720,"Outlook, Microsoft Office 365, Google Dynamic Remarketing, DoubleClick, Google Tag Manager, Facebook Comments, Apache, WordPress.org, Mobile Friendly, DoubleClick Conversion","","","","","","",69c282f21e946c0001f080b5,7375,54151,"ERGON Datenprojekte GmbH is an IT services company based in Hamburg, founded in 1998. The company specializes in custom software development, data management, and project management, primarily utilizing Microsoft technologies. It serves national and international B2B clients, focusing on large enterprises since 2003. + +With a commitment to high-quality IT services, ERGON offers solutions in development, data management, and project management. Their key offerings include custom enterprise software development using .NET, Azure, and SQL Server. The company prides itself on a family-oriented culture, emphasizing honest interactions and employee satisfaction, reflected in their high ratings for team cohesion and work-life balance. ERGON is a Microsoft Solutions Partner and has established partnerships with Databricks and the Software-Allianz Hamburg.",1998,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6728a9ab1b91e20001905404/picture,"","","","","","","","","" +LABMaiTE GmbH,LABMaiTE,Cold,"",11,research,jan@pandaloop.de,http://www.labmaite.com,http://www.linkedin.com/company/labmaite,"","","",Freiburg,Baden-Wuerttemberg,Germany,"","Freiburg, Baden-Wuerttemberg, Germany","artificial intelligence, cancer research, automated experiments, scientific discovery, aidriven bioprocess development, celloptimization, biotechnology, machine learning, microbial fermentation, cell culture, smart bioprocess optimization, culture media, experiment design, biotechnology research, biotechnology innovation, cell imaging, data insights, neurodegenerative drug screening, b2b, computer vision, ai model development, microbioreactor automation, reproducibility enhancement, optical data analysis, experiment speed-up, data-driven research, growth data analysis, bioprocessing, media optimization, fully automated microbioreactor, bioprocess optimization, media optimization algorithms, biotech research tools, biotech process standardization, cancer research solutions, ai solutions, automation systems, cell characterization, ai image analysis, healthcare, label-free image analysis, experimental automation, custom automation, ai-based cell tracking, real-time monitoring, biotech automation, bioprocess control systems, ai-driven experiment planning, bioprocess engineering, automated microbioreactor, deep learning, experimental design, services, consulting, bioprocess data integration, research and development, research and development in the physical, engineering, and life sciences, pharmaceuticals, laboratory automation, research acceleration, cost reduction, manufacturing, information technology & services, health care, health, wellness & fitness, hospital & health care, research & development, medical, mechanical or industrial engineering",'+49 163 8807010,"Gmail, Google Apps, Apache, WordPress.org, Mobile Friendly, AI, Remote, Android, IoT","","","","","","",69c282f21e946c0001f080ba,3829,54171,"LABMaiTE – Accelerating the Evolution of Bioprocess Development + +Biology is entering a new era of intelligence. Driven by automation, data, and AI, the way we design and engineer biological systems is evolving faster than ever. At LABMaiTE, we bridge the gap between data and discovery. Originating from the University of Freiburg and backed by the Mertelsmann Foundation, our mission is to accelerate bioprocess and cancer research through Artificial Intelligence. + +LABMaiTE is an innovation driven SME specializing in advanced AI and machine learning technologies for bioprocess development. Our proprietary algorithms and automated data processing overcome the limitations of classical Design of Experiments, enabling research teams to transition from empirical trial and error to informed, data driven decision-making. + +Our solutions empower scientists and biotech innovators to accelerate research, optimize processes, and unlock the full potential of their experiments. With a strong R&D foundation and an interdisciplinary team of biologists, data scientists, and lab automation engineers, LABMaiTE is uniquely positioned in the biotech industry. Coupled with advanced technology and a proven track record of delivering superior biological and economic outcomes, we provide tailored experimental planning, expert support, and structured data quality improvements to biopharma and biotech partners worldwide. + +Transforming data into discovery — faster, smarter, and scalable",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670c7da1a4e94f000192e868/picture,"","","","","","","","","" +accantec group - part of x1F,accantec group,Cold,"",59,information technology & services,jan@pandaloop.de,http://www.accantec.de,http://www.linkedin.com/company/accantec,https://www.facebook.com/accantec/,https://www.twitter.com/accantec,17 Alstertor,Hamburg,Hamburg,Germany,20095,"17 Alstertor, Hamburg, Hamburg, Germany, 20095","metadatenmanagement, analyse amp statistik, crm marketing, sas, sac, datenqualitaetsmanagement, analyse statistik, data analytics, tm1, sap hana, risikomanagement, data science, projektmanagement, controling amp finance, technische implementation, microsoft bi stack, controling finance, sap bw, power bi, big data, business intelligence, cognos bi, business analytics, azure, workshops amp training, it softwareberatung, crm amp marketing, datenvisualisierung, tableau, cloud, workshops training, it amp softwareberatung, data security, management consulting services, bi architecture review, data management, artificial intelligence, data storage, data strategy, managed services, reporting, data governance, data processing, real-time analytics, data platform, information technology and services, b2b, aws, analytics architecture, data-driven decisions, data orchestration, sap bi, managed services bi, cloud architecture review, sap, services, bi app development, consulting, bi assessment services, cloud bi, data modeling, sap erp financials, management consulting, data quality, software validation, data integration, machine learning, finance, enterprise software, enterprises, computer software, information technology & services, analytics, computer & network security, financial services",'+49 40 6759590,"Microsoft Office 365, Outlook, Nginx, Mobile Friendly, Remote, IBM Cognos Analytics, SAP, SAS Enterprise Guide, Tableau, Cognos TM1, Microsoft Azure Monitor, AWS Trusted Advisor, Google Cloud, Microsoft Application Insights, Aruba Wireless Access Points, Google, SAP BW/4HANA, SAP Analytics Cloud, SAP BusinessObjects Business Intelligence (BI), SAP S/4HANA, Gem, Python, R, SQL, Terraform, Ansible, GitLab, GitHub Actions, Azure Devops, Docker, Kubernetes, Prometheus, Grafana, Cognos Planning Analytics, Databricks, Delta Lake, Azure Synapse, Azure Data Factory, pandas, PySpark, PowerBI Tiles, Microsoft Fabric, Telligent","",Merger / Acquisition,0,2025-07-01,347000,"",69c282ee1cba2c0001f20f30,7375,54161,"The accantec group is a technology-independent IT consulting firm based in Hamburg, Germany, with over 20 years of experience. The company specializes in Business Intelligence (BI), Data Science, Cloud BI, and Managed Services. It was acquired by the X1F Group in July 2025 to enhance its capabilities in data, cloud, and AI. With additional offices in Frankfurt am Main, Cologne, Heidelberg, and Berlin, accantec employs over 70 BI experts and serves more than 100 clients, particularly in regulated industries. + +Accantec offers a wide range of services, including architecture design, advanced analytics, data warehousing, and cloud platform development on AWS, Google Cloud, and Azure. The firm also provides managed services and consulting in BI, SAP, and BI app development. Their focus is on customized IT solutions that support trend recognition, performance evaluation, and precise forecasting, leveraging technologies from leading vendors like SAP, Microsoft, and IBM. The company emphasizes long-term customer relationships, averaging over 10 years, and prioritizes customer satisfaction in sectors such as banking, insurance, pharmaceuticals, and healthcare.",2002,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69b12e9e8009040001b27dd6/picture,"","","","","","","","","" +Hypros,Hypros,Cold,"",24,information technology & services,jan@pandaloop.de,http://www.hypros.de,http://www.linkedin.com/company/hypros,https://www.facebook.com/HyprosInnovation,https://twitter.com/Theme_Fusion,11 Heinrich-Mann-Strasse,Stralsund,Mecklenburg-Vorpommern,Germany,18435,"11 Heinrich-Mann-Strasse, Stralsund, Mecklenburg-Vorpommern, Germany, 18435","assetmanagement, rtls, patientensicherheit, echtzeitortung, alarmmanagement, sensordaten, temperaturueberwachung, livesensorik, navigation, haendehygiene, diebstahlsicherung, it system custom software development, medical equipment and supplies manufacturing, facility management, medical device manufacturing, temperaturüberwachung, digitale transformation, predictive analytics, temperaturkontrolle in sensiblen bereichen, echtzeitdaten, healthcare equipment and supplies manufacturing, risk management, infektionsprävention, klinikinfrastruktur, automatisierte bettenaufbereitung, b2b, effizienzsteigerung, asset management, sensor data monitoring, modulare lösungen, automatisierte benachrichtigungen, ressourcenmanagement, alarm management, datenanalyse, digital transformation, health information technology, patientenmonitoring, intelligente notfallprozesse, services, iot solutions, consulting, sensorintegration im klinikbetrieb, patient safety, bettenmanagement, healthcare technology, interoperable systeme, government, automatisierte hygieneüberwachung, healthcare, information technology & services, enterprise software, enterprises, computer software, health care, health, wellness & fitness, hospital & health care",'+49 451 58548372,"Cloudflare DNS, Outlook, Apple Pay, Mobile Friendly, AI, IoT","",Venture (Round not Specified),0,2024-10-01,"","",69c282ee1cba2c0001f20f33,3825,33911,"Hypros is a German healthcare technology company that focuses on IoT and AI solutions for hospitals and medical facilities. Established in 2015 as a spin-off from the University of Applied Sciences Stralsund, Hypros is headquartered in Lübeck, Germany. The company became part of GWA Hygiene in April 2024, enhancing its position in the healthcare sector. + +Hypros provides modular and interoperable IoT solutions aimed at improving efficiency and safety in medical environments. Their offerings include asset tracking and real-time location services, which help manage over 30,000 assets in healthcare facilities. They also focus on infection prevention through automated monitoring, sensor data analysis for process optimization, patient monitoring solutions, and temperature surveillance for sensitive areas. Hypros is supported by notable investors, including Dräger, MIG Capital AG, and High-Tech Gründerfonds.",2015,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66d3cf4f2f7a840001d15e74/picture,"","","","","","","","","" +Simba n³ GmbH,Simba n³,Cold,"",13,information technology & services,jan@pandaloop.de,http://www.nhochdrei.de,http://www.linkedin.com/company/simbanhochdrei,"","",42 Dr.-Friedrichs-Strasse,Oelsnitz,Saxony,Germany,08606,"42 Dr.-Friedrichs-Strasse, Oelsnitz, Saxony, Germany, 08606","datenanalyse, softwareentwicklung, bisoftware, data infrastructure & analytics, data visualization, industrial automation, manufacturing, government, consulting, services, reha management, financial technology, computer systems design and related services, financial services, business intelligence, real estate, energy & utilities, data analytics, process automation, data integration, predictive maintenance industrie 4.0, datawarehousebuilder, healthcare software, b2b, big data, data fusion, predictive maintenance, information technology and services, healthcare, ai in medicine, kv abrechnung optimierung, semantic enrichment, big data labor analysis, data automation, data analysis, labor big data analysis, finance, construction & real estate, information technology & services, mechanical or industrial engineering, finance technology, analytics, enterprise software, enterprises, computer software, health care, health, wellness & fitness, hospital & health care",'+49 37 42172240,"Outlook, Sophos, Hubspot, Slack, Mobile Friendly, Apache, Google Tag Manager, Remote","","","","","","",69c282ee1cba2c0001f20f3c,7375,54151,"Wir helfen unseren Kunden, den Wert ihrer Daten zu erkennen und optimal zu nutzen. + +Die Visualisierung von Datenmustern und –zusammenhängen nahezu in Echtzeit bietet tiefere Einblicke in die Unternehmensprozesse und ermöglicht bessere und schnellere Entscheidungen. + +Unsere Lösungen und Data Science Services bilden die komplette Wertschöpfung rund um interne und externe Daten ab. Dies beginnt bei der Sammlung und Integration von Daten bis hin zu deren Analyse, Visualisierung und Automatisierung.",1998,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6755c5c940ec17000124a848/picture,"","","","","","","","","" +Deep Safety GmbH,Deep Safety,Cold,"",19,mechanical or industrial engineering,jan@pandaloop.de,http://www.deepsafety.ai,http://www.linkedin.com/company/deepsafety,"",https://twitter.com/deepsafety1,46 Rheinstrasse,Berlin,Berlin,Germany,12161,"46 Rheinstrasse, Berlin, Berlin, Germany, 12161","computer vision, selfdriving cars, safe machine learning, iso 21448, safety, autonomous driving, deep learning, machine learning, functional safety, point cloud, safe ai, ai, construction machinery, medtech, adas, iso 26262, research, object classification, lidar, kuenstliche intelligenz, agtech, aerospace & defense, robotics, nominal performance, ai safety, autonomous vehicles, anomaly detection, object detection, artificial intelligence, sotif, ki, spatial ai, delivery robots, robotics engineering, environment perception, safety certification, bayesian deep learning, cost-effective lidar, sensor fusion, real-time processing, lidar-like sensor, camera-based ranging, 3d point cloud, 3d sensor, sensor technology, autonomous driving safety, defense robotics, ai in robotics, automotive, synthetic data generation, behavior prediction, b2b, ai for robotics, aerospace ai, government, ai in aerospace, safety-critical ai, slam and mapping, ai for agriculture, cost-efficient 3d sensing, ai for environment mapping, computer systems design and related services, transportation & logistics, lidar alternative, ai in automotive, autonomous navigation, software development, ai for vru detection, lidar replacement, services, aerospace, high-resolution 3d, information technology & services, mechanical or industrial engineering",'+49 30 235905120,"Gmail, Google Apps, Microsoft Office 365, Google Tag Manager, Mobile Friendly, DoubleClick, DoubleClick Conversion, Adobe Media Optimizer, Google Dynamic Remarketing, Cedexis Radar, Google Analytics, Vimeo, Squarespace ECommerce, Typekit, Android, IoT, Circle, React Native","",Venture (Round not Specified),0,2025-03-01,"","",69c282ee1cba2c0001f20f41,3812,54151,"deepsafety is an AI safety company founded out of TomTom's Autonomous Driving R&D. Our product AiDAR™ is a camera-only 3D perception system for safety-critical applications. AiDAR™ powers humanoid robots in warehouses, production, and defense.",2019,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68240a266ac5b500017db758/picture,"","","","","","","","","" +qtec services GmbH,qtec services,Cold,"",87,medical devices,jan@pandaloop.de,http://www.qtec-group.com,http://www.linkedin.com/company/qtec-services-gmbh,"","",27 Curtiusstrasse,Luebeck,Schleswig-Holstein,Germany,23568,"27 Curtiusstrasse, Luebeck, Schleswig-Holstein, Germany, 23568","medical equipment manufacturing, regulatory affairs, clinical evaluation, artificial intelligence, ce marking, quality management, risk management, technical documentation, regulatory updates europe, verification & validation, medical equipment and supplies manufacturing, medical device compliance, cybersecurity, consulting, services, mdr & ivdr, design control, requirements engineering, b2b, ai in medical devices, regulatory compliance, qms software validation, healthcare, medical devices, quality management system, post-market clinical follow-up, post-market surveillance, sterilisation, market access strategies, education, legal, manufacturing, hospital & health care, information technology & services, health care, health, wellness & fitness, mechanical or industrial engineering",'+49 451 80850360,"Outlook, Slack, Nginx, Google Tag Manager, Mobile Friendly, WordPress.org, reCAPTCHA, Circle, Quartic","","","","","","",69c282ee1cba2c0001f20f31,8731,33911,"qtec services GmbH is a German company based in Lübeck, Schleswig-Holstein, that specializes in regulatory, quality, and clinical support services for medical device manufacturers and in vitro diagnostics (IVDs). Founded in 2003, the company is part of the qtec Group and employs around 80-100 experts. They provide tailored consulting to help clients navigate compliance with EU Medical Device Regulation (MDR) and international standards throughout the product lifecycle. + +The company offers a range of services, including regulatory affairs support, quality management audits, design control, clinical evaluations, and training through the qtec Academy. With a strong focus on patient well-being, qtec has successfully managed over 5,000 projects for more than 350 international customers across 100 countries, contributing to annual sales of up to €85 billion. Their mission is to ensure the delivery of safe and effective medical products through expertise in quality management and regulatory affairs.",2003,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68c5e8566120500001da3b19/picture,"","","","","","","","","" +Contiamo,Contiamo,Cold,"",21,information technology & services,jan@pandaloop.de,http://www.contiamo.com,http://www.linkedin.com/company/contiamo,https://www.facebook.com/contiamo,https://twitter.com/contiamo,21 Winterfeldtstrasse,Berlin,Berlin,Germany,10781,"21 Winterfeldtstrasse, Berlin, Berlin, Germany, 10781","machine learning, big data, data selfexploration, data engineering, visualization, api, business intelligence, data integration, open source, artificial intelligence, saas, advanced analytics, analytics, ai, large language models, enterprise software, software, information technology, it services & it consulting, ai consulting, ai in municipal housing, ai-powered chatbots, data management, real estate, natural language processing, ai implementation, logistics, ai-driven content creation, ai product development, ai-based customer response tools, retail, government, generative ai, data-driven decision making, data infrastructure, client collaboration, predictive analytics, ai for retail, telecommunications, ai for supply chain optimization, custom ai solutions, public sector, ai for load forecasting, trust-based relationships, business transformation, data pipeline orchestration, digital transformation, cloud integration, ai for real estate, open-source contribution, ai product design, data infrastructure building, services, ai for energy sector, industry-specific ai, multi-industry ai solutions, data security, operational efficiency, computer systems design and related services, ai strategy, b2b, ai training and support, data analytics, consulting, data & ai solutions, ai for logistics, ai project lifecycle, ai model development, ai governance, data science, process automation, scalable systems, energy, transportation_logistics, energy_utilities, real_estate, information technology & services, enterprises, computer software, computer & network security",'+49 30 692010290,"Route 53, Amazon SES, Gmail, Google Apps, Amazon AWS, CloudFlare, Webflow, Slack, Google Tag Manager, Mobile Friendly, Data Analytics, Android, Remote, AI, Kubernetes, Python, PostgreSQL, Snowflake, Fastapi, OpenTelemetry, Google AlloyDB for PostgreSQL, Amazon Simple Queue Service (SQS), Apache Kafka, Airflow, OpenAPI",220000,Other,"",2019-09-01,1000000,"",69c282ee1cba2c0001f20f34,7375,54151,"Contiamo is a Berlin-based B2B software company and consultancy that specializes in data platforms and AI strategies. Founded over 12 years ago, the company focuses on helping businesses create interactive, data-driven tools and solve complex challenges. With a team of 11-50 employees, Contiamo has completed over 300 projects for more than 100 clients, emphasizing long-term partnerships and open-source solutions. + +The company offers a range of services throughout the project lifecycle, including strategy development, solution design, and implementation. Their expertise covers areas such as data science, generative AI, and data governance. Contiamo also provides a flexible data platform that enables businesses to build custom data-driven applications and automations. They are committed to enhancing efficiency and decision-making for their clients across various industries, including energy.",2013,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/690f05cda605c20001cf41d7/picture,"","","","","","","","","" +Lachmann & Rink GmbH,Lachmann & Rink,Cold,"",62,information technology & services,jan@pandaloop.de,http://www.lachmann-rink.de,http://www.linkedin.com/company/lachmannrink,https://www.facebook.com/lachmannrink,"",129 Hommeswiese,Freudenberg,Nordrhein-Westfalen,Germany,57258,"129 Hommeswiese, Freudenberg, Nordrhein-Westfalen, Germany, 57258","software, hmi, beratung, smart industry, bedienelemente, ar, smart product, opc ua, industrie 40, industriesoftware, digitalisierung, digitaler zwilling, bigdata, genai, hardware, smart factory, vr, smart machine, ki, individualsoftware, software development, embedded linux entwicklung, datengetriebene fertigung, industrie 4.0 lösungen, industrie-softwareimplementierung, embedded systems, iiot-plattform, computer systems design and related services, information technology & services, datenvisualisierung, realtime systeme, industrie 4.0 innovation, fertigungstechnik, ki-gestützte industrieanwendungen, datenanalyse, it- und ot-integration, embedded linux, webtechnologien in der industrie, ki in der fertigung, ki-boost für industrie, automatisierungslösungen industrie, predictive maintenance, industrie-softwareberatung, produktionsoptimierung, multiprozess-realtime systeme linux, industrielle softwarelösungen, smart systems, b2b, manufacturing, edge computing industrie, automatisierungstechnik software, industrie-software, self-optimizing maschinen, self-learning produktionsleitsysteme, software für maschinensteuerung, maschinenvernetzung, industrial automation, industrie-it-lösungen, multiprozess-realtime systeme, schnittstellenentwicklung, industrie 4.0 software, industrie 4.0 beratung, industrieautomation, hardwareentwicklung industrie, augmented reality in der industrie, industrie 4.0 standards, custom software, maßgeschneiderte industrie-software, schnittstellenintegration, software für produktion, industrie 4.0 implementierung, services, industrietaugliche software, industrie 4.0 technologien, realtime linux systeme, automatisierung, cloud-integration industrie, softwareentwicklung, intelligente maschinensteuerung, industrie-softwareentwicklung, datenanalyse in der produktion, consulting, industrie 4.0 plattformen, industrie 4.0, datenanalyse live in der produktion, ki in der industrie, digitale transformation, embedded hardware & software, mechanical or industrial engineering",'+49 2734 28170,"Outlook, Hubspot, Mobile Friendly, YouTube, Google Tag Manager, TYPO3, Apache, Remote, C#","","","","","","",69c282ee1cba2c0001f20f37,3571,54151,"Lachmann & Rink GmbH is a family-owned software development company based in Freudenberg, Germany, established in 1984. With over 40 years of experience, it has become the largest software service provider in Südwestfalen, serving more than 100 customers across approximately 50 industries. The company employs over 140 skilled developers who focus on creating industry-specific software solutions, drawing from a wealth of knowledge and over 500 use cases. + +The company specializes in Smart Industrial Solutions, offering a range of services including custom software and hardware development, embedded software development, and consulting for digital transformation. Lachmann & Rink is committed to quality management, holding ISO 9001:2015 certification since 1998. It emphasizes sustainability and innovation, with initiatives like ""Lachmann & Rink goes GREEN"" and partnerships for AI-enhanced solutions. The company is recognized as a Top Company and continues to evolve its offerings to meet the needs of modern industrial challenges.",1983,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/675f594cb5dc1c0001c6b8aa/picture,"","","","","","","","","" +Smart Mechatronics GmbH,Smart Mechatronics,Cold,"",110,information technology & services,jan@pandaloop.de,http://www.smartmechatronics.de,http://www.linkedin.com/company/smart-mechatronics-gmbh,https://facebook.com/smartmechatronics,"",85 Emil-Figge-Strasse,Dortmund,North Rhine-Westphalia,Germany,44227,"85 Emil-Figge-Strasse, Dortmund, North Rhine-Westphalia, Germany, 44227","internet of things, simulation, softwareentwicklung, elektronikentwicklung, modellbildung, regelungstechnik, embedded computing, smart building, systems engineering, softwaretechnik, connectivity, hardware, functional safety, automotive, cyber resilience act, requirement engineering, iot, testautomation, embedded linux, model based software, hardwaretechnik, beratung, embedded systems, projektmanagement, cybersecurity, smart home, software development, engineering, low energy & energy harvesting, model based engineering, computer systems design and related services, sicherheitsnormen, consulting, b2b, normkonforme entwicklung, safety by design, cybersecurity engineering, systementwicklung, automatisierte testsysteme, iec 60730-1 absicherung, qualitätsmanagement, rtos & firmware, sicherheitszertifizierung, smart home & smart building, human machine interface, maßgeschneiderte lösungen, smart fridge entwicklung, open-source-linuxentwicklung, services, elektronikabsicherung propangas, medizintechnik, entwicklungspartner, iso 9001:2015, iso 26262 prozessberatung, technologieberatung, testsysteme in der entwicklung, branchenkenntnis, healthcare, manufacturing, embedded hardware & software, consumers, information technology & services, health care, health, wellness & fitness, hospital & health care, mechanical or industrial engineering","","Outlook, Docker, Micro, AI, Linkedin Marketing Solutions, Python, Rust, Bash, Yocto, Android, Salesforce CRM Analytics, C#, Zephyr",520000,Other,520000,2021-04-01,"","",69c282ee1cba2c0001f20f3e,3571,54151,"Smart Mechatronics GmbH is a German engineering firm established in 2008, focusing on intelligent, networked systems for various industries, including Automotive, Smart Home & Smart Building, and medical technology. Headquartered in Dortmund, with additional locations in Büren, Köln, and München, the company employs over 130 people and has successfully completed more than 750 projects. + +The firm offers comprehensive engineering services as a development partner, including technical consulting, conception, development, testing, and process implementation. Their expertise covers embedded systems, user interface design, and holistic consulting to ensure project success. Smart Mechatronics specializes in creating custom-tailored embedded systems that meet high safety and quality standards, particularly in demanding applications. The company is part of the UNITY Innovation Alliance, which focuses on digitalizing business models and services. They also prioritize employee development and well-being through initiatives like the Smart Academy and work-life balance programs.",2008,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/687df5940934230001bab877/picture,"","","","","","","","","" +HMS Analytical Software | Consulting & End-to-End Solutions for Data Science & Analytics,HMS Analytical,Cold,"",140,information technology & services,jan@pandaloop.de,http://www.analytical-software.de,http://www.linkedin.com/company/hmsanalyticalsoftware,"","",29 Gruene Meile,Heidelberg,Baden-Wuerttemberg,Germany,69115,"29 Gruene Meile, Heidelberg, Baden-Wuerttemberg, Germany, 69115","application, life science, machine learning, cloud computing, big data, validation qualification, consulting, analytical software, software engineering, microsoft software, artificial intelligence, platform, sas software, data science, croservices, model, open source software, operations security, data analytics, business intelligence, statistical programming & biostatistics, it services & it consulting, information technology & services, enterprise software, enterprises, computer software, b2b, analytics",'+49 6221 60510,"Microsoft Azure Hosting, Google Tag Manager, Linkedin Marketing Solutions, Typekit, YouTube, Mobile Friendly, Nginx, WordPress.org, Google Font API, Wordpress, AI, dbt, PowerBI Tiles, Tableau","","","","","","",69c282ee1cba2c0001f20f42,"","","HMS Analytical Software GmbH is a full-service partner based in Heidelberg, Germany, specializing in custom software solutions and data science services. Founded in 1989, the company has over 35 years of experience and operates independently with around 170 employees across various locations. HMS focuses on delivering innovative, scalable, and secure applications that help clients achieve their business objectives through data-driven solutions. + +The company offers a wide range of services throughout the software application lifecycle, including ideation and consulting, prototyping and development, deployment and operations, and project management. HMS has expertise in generative AI, SAS migration, and data science and analytics, and collaborates with leading software providers like SAS, Microsoft, and Revolution Analytics. They are committed to employee development, providing training opportunities to enhance both technical and soft skills. + +HMS values sustainable growth and independence, ensuring long-term relationships with clients. The company is known for its professional communication and flexible project execution, contributing to a 100% recommendation rate from clients.",1989,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6875e710c14e6400018cbe7a/picture,"","","","","","","","","" +Rex Automatisierungstechnik GmbH,Rex Automatisierungstechnik,Cold,"",15,machinery,jan@pandaloop.de,http://www.rex-at.de,http://www.linkedin.com/company/rex-automatisierungstechnik-gmbh,"","",36 Fichtenweg,Erfurt,Thuringia,Germany,99098,"36 Fichtenweg, Erfurt, Thuringia, Germany, 99098","programmierung, hardwareplanung, data analytics, schaltschrankbau, maschinenbau, digitaler zwilling, anlagenbau, automatisierung, steuerungs und antriebstechnik, automation machinery manufacturing, factoryware virtual replica, engineering, systemintegration, digital transformation, manufacturing, vernetzte mensch-maschine-schnittstellen, software development, custom software, iiot-systeme, smart service, consulting, b2b, schlüsselfertige automatisierungssysteme, industrial machinery manufacturing, elektroplanung, lifecycle-management, energy management, industrial automation, digitalisierung, automatisierungslösungen, maschinensicherheit, digitale zwillinge, system integration, logistics, dynamische software-module, objektorientierte programmierung in der automatisierung, no-code-plc-framework, process optimization, bildverarbeitung in der logistik, antriebsauslegung, hardware engineering, data management, industrie 4.0-lösungen, hmi-entwicklung, predictive maintenance, automation, services, construction, electrical engineering, kollisionskontrolle, automation engineering, robotics, softwareentwicklung, retrofit, factoryware data analytics, maschinenautomatisierung, maschinen- und anlagenbau, education, non-profit, distribution, mechanical or industrial engineering, information technology & services, oil & energy, nonprofit organization management",'+49 362 0395910,"Outlook, Shutterstock, Mobile Friendly, Nginx","","","","","","",69c282ee1cba2c0001f20f2f,3546,33324,"🤖 Wir erwecken Maschinen zum Leben. +Seit über 30 Jahren entwickeln wir bei Rex Automatisierungstechnik Lösungen, die Menschen, Maschinen und Daten intelligent verbinden. Effizient, nachhaltig und mit Leidenschaft für Technik. ⚙️💡 + +Als Systemintegrator im Maschinen- und Anlagenbau begleiten wir unsere Kunden von der Planung bis zur virtuellen Inbetriebnahme. Mit unserer Software Virtual Replica entsteht ein Digitaler Zwilling, mit dem Maschinen schon vor dem Bau getestet werden können. Das spart Zeit, senkt Kosten und erhöht die Qualität. 💻🚀 + +Mit unserem Retrofit-Ansatz modernisieren wir bestehende Anlagen durch neue Steuerungs- und Antriebstechnik sowie digitale Nachrüstungen. So machen wir Maschinen fit für Industrie 4.0 und schaffen nachhaltigen Mehrwert. 🌱⚙️ + +Ein weiterer Schwerpunkt liegt im Schaltschrankbau. Als UL-gelisteter Hersteller (UL File E233027) fertigen wir individuelle Schaltschränke nach internationalen Standards. Präzision, Sicherheit und geprüfte Qualität nach DIN EN ISO 9001:2015 sind für uns selbstverständlich.🔧 + +Unsere Vision: Digitale Automation als Schlüssel für eine nachhaltige Zukunft. Wir glauben an Technologie, die effizient und verantwortungsvoll eingesetzt wird, um Prozesse zu verbessern, Energie zu sparen und Erfolg langfristig zu sichern. 🌍 + +Seit 2012 sind wir Teil der Eckelmann Gruppe, einem starken Netzwerk, das mittelständische Unternehmen auf ihrem Weg in die digitale Zukunft begleitet. Unser Team aus Ingenieuren, Technikern und Softwareentwicklern lebt Automatisierung mit Erfahrung und Innovationsgeist. 🚀 + +💬 Vernetzen wir uns! +🌐 www.rex-at.de |📍 Erfurt | Mitglied der Eckelmann Gruppe + +Impressum: +Rex Automatisierungstechnik GmbH +Fichtenweg 36 +99098 Erfurt +Deutschland + +Tel.: +49 (0) 36203 / 9591 - 0 + +E-Mail: info@rex-at.de + +Geschäftsführung: +Lars Agricola + +Registergericht: +Amtsgericht Jena HRB 109802 + +Ust.-Idnr.: +DE 191264402",1990,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/672c9342b4f20000014a2430/picture,"","","","","","","","","" +BIVAL Gruppe,BIVAL Gruppe,Cold,"",13,information technology & services,jan@pandaloop.de,http://www.bival.de,http://www.linkedin.com/company/bival-gmbh,https://www.facebook.com/bivalbi,"",1 Levelingstrasse,Ingolstadt,Bavaria,Germany,85049,"1 Levelingstrasse, Ingolstadt, Bavaria, Germany, 85049","database development, datamining, projektmanagement, schulungen tableau, software engineering, datengestuetzte prognosen, predictive analytics, datenmodellierung, data science, datenanalyse, ki agenten, business intelligence, artificial intelligence, ki telefonisten, prototyping, ai, data mining, advanced analytics, kuenstliche intelligenz, ki, voice agent, it services & it consulting, ai consulting, cloud solutions, model benchmarking, knowledge building in time series, ai in audio processing, data discovery, data management, data modeling, standardized time series analysis tools, noise model enhancement, künstliche intelligenz, machine learning, statistical analysis, data science apps, rare background noise detection, government, cloud computing, application development, data labeling quality evaluation, ai beratung, data infrastructure, data analysis, data-driven decisions, deep learning, data projects, data cleaning, software development, data optimization, data architecture, services, nlp, data strategy, data visualization, data security, information technology and services, operational efficiency, data warehousing, feature extraction algorithms, computer systems design and related services, b2b, audio data analysis, consulting, data analytics, data consulting, statistische analyse, data integration, time series analysis, train-the-trainer ai courses, data modernization, data engineering, finance, education, information technology & services, enterprise software, enterprises, computer software, analytics, app development, apps, natural language processing, computer & network security, financial services",'+49 841 13307900,"Google Cloud Hosting, Outlook, Varnish, Mobile Friendly, Wix, Remote, Deel, AI","","","","","","",69c282ee1cba2c0001f20f39,7371,54151,"Wir helfen Unternehmern endlich von KI zu profitieren. Mehr Umsatz, mehr Profit und spürbare Entlastung!",2012,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6779a0e427bfd000012b9aa7/picture,"","","","","","","","","" +committance AG,committance AG,Cold,"",15,information technology & services,jan@pandaloop.de,http://www.committance.com,http://www.linkedin.com/company/committance-ag,"","",9a Koblenzer Strasse,Montabaur,Rhineland-Palatinate,Germany,56410,"9a Koblenzer Strasse, Montabaur, Rhineland-Palatinate, Germany, 56410","projektmanagement, information retrieval, cloud, requirements engineering, webentwicklung, itconsulting & softwareentwicklung, itconsulting, softwareentwicklung, ki, data science, saas, machine learning, business intelligence, it services & it consulting, datenanalyse, social media analytics, predictive analytics, data security, web intelligence, consulting services, data warehousing, social media data analysis, web structure mining, consulting, künstliche intelligenz, artificial intelligence, data integration, scraping and crawling, information technology and services, it-consulting, data management, data visualization, data analytics, data transformation, computer systems design and related services, cloud computing, b2b, data governance, systementwicklung, web content mining, agile methoden, reinforcement learning, data architecture, data-driven decision making, natural language processing, data mining, data compliance, software development, services, big data, data quality, computer software, information technology & services, analytics, enterprise software, enterprises, computer & network security, management consulting",'+49 2602 919270,"Microsoft Office 365, Apache, Mobile Friendly, Remote, React Native, Docker","","","","","","",69c282ee1cba2c0001f20f06,7371,54151,"committance AG is a German IT services company located in Montabaur. The company specializes in customized data analytics and intelligence solutions, focusing on technical, business, and strategic consulting. With a team of 11-20 employees, committance AG generates annual revenue between $1M and $5M. + +The company offers a range of services centered on data-driven technologies. Their expertise includes big data advisory and implementation, business intelligence consulting, and data warehousing solutions. They also provide web intelligence services, which involve custom crawling and analysis of public data from the internet and social networks. Additionally, committance AG integrates social media analytics into its broader intelligence offerings. The company employs agile methodologies to ensure flexible and iterative project delivery, supporting businesses in effectively managing their data challenges from consulting to deployment.",2008,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6838262cdea6880001d774c6/picture,"","","","","","","","","" +Fujikura Technology Europe,Fujikura Technology Europe,Cold,"",28,information technology & services,jan@pandaloop.de,http://www.fujikura-technology.com,http://www.linkedin.com/company/fujikura-technology-europe,"","","",Frankfurt,Hesse,Germany,60311,"Frankfurt, Hesse, Germany, 60311","radar, predictive maintenance, 5g, ki, it services & it consulting, automotive radar systems, border surveillance radars, custom software solutions, sensor hardware, transportation & logistics, consulting, system integration, künstliche intelligenz, drones and uav radars, data security, manufacturing, autonomous vehicle radars, b2b, oilspill detection radar, edge computing, real-time data analysis, navigational, measuring, electromedical, and control instruments manufacturing, predictive maintenance solutions, services, ai algorithms, government, wide surface monitoring sar, softwareentwicklung, radarsysteme, machine condition monitoring, sensorik, photonics-based radar, predictive analytics, ai in industrial applications, maschinenüberwachung, radarsystem technology, data processing, weather-resistant radar, environmental disaster monitoring, environmental monitoring, safety and security radars, maritime security radars, automotive radar, on-the-edge verarbeitung, remote monitoring, weather condition resilience, radartechnologien, georeferenced imaging, sensor-based anomaly detection, anomalieerkennung, high-resolution radar, energy & utilities, distribution, transportation_logistics, energy_utilities, information technology & services, computer & network security, mechanical or industrial engineering, enterprise software, enterprises, computer software","","Outlook, Gravity Forms, WordPress.org, Google Tag Manager, reCAPTCHA, Nginx, Mobile Friendly, Android, Remote","","","","","","",69c282ee1cba2c0001f20f2c,3812,33451,"Fujikura Technology Europe GmbH is a subsidiary of Fujikura Ltd., a Japanese technology group founded in 1885. Established in 2018 in Frankfurt am Main, Germany, the company focuses on developing and marketing innovative solutions across various industries. Its core areas include software, artificial intelligence, radar technologies, and sensors. + +The company has expanded internationally, establishing subsidiaries in Switzerland and Turkey to enhance its development efforts. Fujikura Technology Europe is a full member of the HyCologne hydrogen network, where it applies its expertise in artificial intelligence and software to improve energy supply systems. The company is dedicated to creating reliable solutions that ensure transparency and predictability in its operations.",2018,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67154ba37e2049000190cca9/picture,"","","","","","","","","" +Berata GmbH,Berata,Cold,"",41,research,jan@pandaloop.de,http://www.berata.de,http://www.linkedin.com/company/berata,https://www.facebook.com/beratagmbh/,"",1 Mies-van-der-Rohe-Strasse,Munich,Bavaria,Germany,80807,"1 Mies-van-der-Rohe-Strasse, Munich, Bavaria, Germany, 80807","embedded systems, embedded cybersecurity, iot, emobility, embedded software, functional safety, system engineering, edge computing, research services, predictive maintenance, cloud computing, sensor fusion for defense, automation, real-time data, information technology & services, military embedded systems, b2b, intelligent asset management, defense & security, digital twin, computer systems design and related services, system integration, smart sensors, iot solutions, government, software development, data analytics, disruptive technologies, sensor fusion, cybersecurity, cloud infrastructure, disaster response iot, cloud security, secure communication systems, iot platforms, hardware & software architecture, cybersecurity concepts, consulting, data processing, critical infrastructure security, real-time control systems, data security, automotive, unmanned systems, hardware architecture, iot & asset management, autonomous vehicles, advanced driver assistance systems, services, transportation_logistics, embedded hardware & software, hardware, enterprise software, enterprises, computer software, internet infrastructure, internet, computer & network security","","Outlook, Mobile Friendly, Apache, Facebook Widget, Facebook Login (Connect), Google Tag Manager, WordPress.org, IoT, Android, Remote, AI, Node.js, SharePoint, AWS Identity and Access Management (IAM), Microsoft Active Directory Federation Services, Zuken, Altium Designer, Quip, CR-8000 Design Force, DoubleClick","","","","","","",69c282ee1cba2c0001f20f35,7375,54151,"Berata GmbH is an engineering company dedicated to developing innovative solutions for the future. With a focus on ""Engineering the Future,"" Berata leverages its technological expertise across several key sectors, including automotive, IoT asset management, and defense and mechatronics. + +The company specializes in embedded systems, IT and cloud infrastructure, and Internet of Things (IoT) solutions. Berata designs flexible and secure IT infrastructure, particularly for security-critical sectors like public administration and defense. It operates in rapidly growing markets, with significant projections for the embedded systems and IoT sectors in the coming years.",2019,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69071bcab5165a0001f4344c/picture,"","","","","","","","","" +BDiM.AI,BDiM.AI,Cold,"",14,information technology & services,jan@pandaloop.de,http://www.bdim.ai,http://www.linkedin.com/company/bdim-ai,"","",1 Schloss Lindich,Hechingen,Baden-Wuerttemberg,Germany,72379,"1 Schloss Lindich, Hechingen, Baden-Wuerttemberg, Germany, 72379","software development, predictive maintenance, datenvisualisierung, smart manufacturing, cloud computing, neuronale netze, data management, automatisierte prozessüberwachung, operational efficiency, sensoren für fertigung, automatisierung in der fertigung, prozessoptimierung, industrie 4.0 lösungen, sensorintegration, virtuelle qualitätskontrolle, prozessstabilität, ki-modelle, echtzeit-maschinendatenanalyse, automatisierte werkstückprüfung, machine learning modelle, automatisierungstechnologie, produktionsdatenanalyse, industrial equipment, manufacturing, datenintegration, b2b, fehlererkennung, datenmanagement, datengetriebene produktion, predictive analytics, maschinendatenanalyse, data analytics, prozessoptimierung durch ki, digital transformation, ki-gestützte qualitätskontrolle, fehleranalyse, datengetriebene fertigung, maschinendaten, produktionsdaten, industrial machinery manufacturing, echtzeit-überwachung, automatisierte qualitätskontrolle, fehlerdiagnose, digitale transformation, werkzeugverschleiß, process optimization, ki in der industrie, machine learning, autonome qualitätskontrolle, produktionsmonitoring, ki-modelle für fertigung, datenanalyse in der fertigung, predictive quality, deep learning, cloud-basierte datenverarbeitung, ki-basierte prozessanalyse, intelligente sensorfusion, anomalieerkennung in echtzeit, qualitätssicherung, industrial automation, big data, ki-gestützte fehlerdiagnose, industrie 4.0, intelligente fertigungssysteme, prozessdatenaufzeichnung, anomalieerkennung, ki in der fertigungsautomatisierung, artificial intelligence, automatisierte inspektion, prozessdaten, prozessdatenmanagement, ki-basierte fehlererkennung, virtuelle messsysteme, services, information technology & services, enterprise software, enterprises, computer software, mechanical or industrial engineering",'+49 74 719699775,"Outlook, Google Cloud Hosting, Mobile Friendly, Wix, Varnish, go+, SQL, AI","",Seed,0,2024-11-01,"","",69c282ee1cba2c0001f20f2d,3571,33324,"BDiM (Big Data in Manufacturing GmbH) is a German startup founded in 2019, based in Leinfelden-Echterdingen. The company focuses on developing artificial intelligence solutions tailored for the manufacturing sector, particularly emphasizing Industry 4.0 integration. + +Their main product, AiDAN, is a cloud-based solution suite designed for real-time analysis of CNC machines. AiDAN offers comprehensive monitoring of workpieces, integrating seamlessly with existing manufacturing controls and legacy systems. Key features include automated quality documentation, intelligent oversight to reduce scrap, enhanced process transparency, and machine learning-driven insights to optimize production cycles. BDiM has received notable industry awards, such as the Industrie-4.0-Award Baden-Württemberg and the Dr.-Rudolf-Eberle-Preis, recognizing their innovative contributions to manufacturing technology.",2019,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/687a0016a33f2a0001da319b/picture,"","","","","","","","","" +aiomatic,aiomatic,Cold,"",29,information technology & services,jan@pandaloop.de,http://www.ai-omatic.com,http://www.linkedin.com/company/aiomatic,"","",9 Kleine Johannisstrasse,Hamburg,Hamburg,Germany,20457,"9 Kleine Johannisstrasse, Hamburg, Hamburg, Germany, 20457","software, predictive maintenance, industrie 40, kuenstliche intelligenz, it, vorrausschauende wartung, sensordaten, big data, machine learning, b2b, saas, industrie, it services & it consulting, skalierbarkeit, automatisierte warnmeldungen, predict paket, ki-gestützte wartung, sensorik, automatisierte wartungsplanung, ausfallkostenrechner, predictive analytics saas, datenintegration, maschinenanalyse, ki-basierte prognosen, fehlerfrüherkennung, maschinenüberwachung, sensoren, ki-gestützte fehlererkennung, anomalieerkennung, distribution, benutzerfreundliches dashboard, datenvisualisierung, datenanalyse-tools, ki-training, datenqualitätssicherung, proaktive wartung, sensoren für rotierende maschinen, fehlerdiagnose, datenmanagement, sensorintegration, industrie 4.0, maschinenzustand, ki-software, process optimization, material handling equipment manufacturing, operational efficiency, echtzeitüberwachung, predictive maintenance use cases, it-integration, retrofit & predict, echtzeit-datenanalyse, retrofit & predict paket, digital transformation, fehlerprävention, maschinenzustandsüberwachung, ki-modelle, consulting, it infrastructure, datenqualität, sicherheitsarchitektur, artificial intelligence, fehlerursachenvisualisierung, industrie 4.0 industrie, maschinenzustandsindex, manufacturing, maschinenpark-management, skalierbare saas-lösung, maschinenlebensdauer verlängern, api-schnittstellen, wartungsoptimierung, plug & play lösung, predictive analytics, automatisierte alarmierung, predictive maintenance plattform, wartungsplanung optimieren, cloud software, maschinendatenanalyse, datenbasierte entscheidungsfindung, plug & play sensoren, industrie 4.0 lösungen, smart maintenance, data security, ki-gestützte wartungsplanung, datenqualitätssicherung bei maschinen, cloud-infrastruktur, predictive maintenance für rotierende maschinen, automatisierte fehlerdiagnose, ki-basierte fehlerprognose, condition monitoring, echtzeit-überwachung, industrieautomation, maschinenmanagement, services, predict index, information technology & services, enterprise software, enterprises, computer software, mechanical or industrial engineering, computer & network security",'+49 40 226597370,"Cloudflare DNS, Outlook, Microsoft Office 365, DoubleClick, Wix, Google Tag Manager, Google Dynamic Remarketing, Hubspot, DoubleClick Conversion, Mobile Friendly, Varnish, IoT, Docker, Remote, AI",3000000,Seed,2200000,2024-01-01,"","",69c282ee1cba2c0001f20f32,3829,33392,"ai-omatic solutions GmbH, based in Hamburg, Germany, specializes in AI-powered predictive maintenance software. The company focuses on early detection of machine faults to maximize uptime, prevent unplanned breakdowns, and reduce maintenance costs. Their scalable solution integrates with systems like SAP, providing reliable machine monitoring and smooth onboarding for users. + +ai-omatic serves mid-sized production firms and large corporations across various sectors, including pharmaceuticals, energy, food, manufacturing, automotive, and machine engineering. Their primary product analyzes machine data to predict faults in advance, helping clients avoid costly downtime. The software features early fault detection, performance optimization, and a digital maintenance assistant for effective monitoring.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/697b7f206953b90001a3b88c/picture,"","","","","","","","","" +STW - Sensor-Technik Wiedemann GmbH,STW,Cold,"",170,machinery,jan@pandaloop.de,http://www.stw-mobile-machines.com,http://www.linkedin.com/company/sensor-technik-wiedemann-gmbh,https://www.facebook.com/sensortechnik,"",6 Am Baerenwald,Kaufbeuren,Bayern,Germany,87600,"6 Am Baerenwald, Kaufbeuren, Bayern, Germany, 87600","digitalisierung, integration, digitalization, automation, vernetzung, automatisierung, elektrifizierung, automation machinery manufacturing",'+49 834 195050,"Microsoft Office 365, Google Analytics, Apache, Mobile Friendly, Google Tag Manager, Remote, Circle","","","","",79000000,"",69c282ee1cba2c0001f20f38,"","","STW - Sensor-Technik Wiedemann GmbH is a family-owned company based in Kaufbeuren, Germany, with over 35 years of experience in electronic products, systems, and software solutions. The company specializes in the digitalization, automation, and control of mobile machines, focusing on energy-efficient and environmentally responsible production. STW supports a diverse range of customers, from medium-sized firms to large OEMs, by engineering and integrating innovative technologies that enhance machine performance and safety. + +The company offers a wide portfolio of products tailored for mobile machinery applications. This includes mobile controls for automation, connectivity gateways for machine-to-X communication, sensors for data acquisition, and human-machine interfaces for user-friendly operation. STW also provides power distribution and battery management systems to support e-mobility. Their services encompass full engineering partnerships, assisting clients from development to integration, ensuring optimal performance in automated and autonomous setups.",1985,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69a65faf48da410001a1056d/picture,"","","","","","","","","" +LPDG Lehmann + Pioneers Digital Group,LPDG Lehmann + Pioneers Digital Group,Cold,"",45,management consulting,jan@pandaloop.de,"",http://www.linkedin.com/company/lpdg-lehmann-pioneers-digital-gmbh,"","",25 Nikolaus-Otto-Strasse,Leinfelden-Echterdingen,Baden-Wuerttemberg,Germany,70771,"25 Nikolaus-Otto-Strasse, Leinfelden-Echterdingen, Baden-Wuerttemberg, Germany, 70771","process intelligence, systemintegration, digitale business transformation, data science, business analytics, bi a strategy & governance, business intelligence, managed services, big data, sap bi analytics, robotic process automation, prozessberatung, business consulting & services, information technology & services, analytics, enterprise software, enterprises, computer software, b2b, management consulting","","MuleSoft Anypoint, SAP, Jira, Confluence","","","","","","",69c282ee1cba2c0001f20f3a,"","","LPDG Lehmann + Pioneers Digital GmbH is a management consulting firm based in Echterdingen, Germany. Founded in 2019, the company specializes in data-driven solutions, focusing on Business Intelligence and Analytics (BI+A), digital transformation, and system integration. With a team of 1-50 employees, LPDG aims to empower organizations by providing sustainable business solutions through insights derived from data. + +The firm offers a range of services, including strategy and governance for BI+A, Big Data, Data Science, and Robotic Process Automation (RPA). LPDG also emphasizes a collaborative approach to deliver value through process intelligence and automation. As part of the Minol-ZENNER Group, LPDG benefits from a global presence, enhancing its capabilities in driving digital transformation across various sectors.",2018,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6844100129c51b0001c3e498/picture,"","","","","","","","","" +digisaar,digisaar,Cold,"",12,information technology & services,jan@pandaloop.de,http://www.digisaar.saarland,http://www.linkedin.com/company/digisaar,"","",17 Am Andelsberg,Sankt Ingbert,Saarland,Germany,66386,"17 Am Andelsberg, Sankt Ingbert, Saarland, Germany, 66386","it services & it consulting, web development, iot, technology consulting, software engineering, software services, system optimization, b2b, internet of things, tech consulting, computer systems design and related services, multilingual software, iot solutions, software development, digital transformation, performance engineering, custom software development, software engineering services, multilingual support, consulting, technology services, performance optimization, iot integration, software solutions, information technology and services, cloud-based software, services, performance tuning, information technology & services, management consulting","","Outlook, Nginx, Mobile Friendly, WordPress.org, Remote","","","","","","",69c282ee1cba2c0001f20f3b,7371,54151,digisaar UG ist ein Digitalisierungs- und Softwaredienstleister,2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670b2fb8336c90000124bc4e/picture,"","","","","","","","","" +JAVAPRO,JAVAPRO,Cold,"",11,publishing,jan@pandaloop.de,http://www.javapro.io,http://www.linkedin.com/company/javapro,"","","",Erbendorf,Bavaria,Germany,"","Erbendorf, Bavaria, Germany","jvm languages, ide tools, java, cloud native, testing quality, architecture, agile, cloud, ci cd, serverless, java enterprise, javascript, performance, big data, container, webdevelopment, devops, internet of things, core java, security, culture, mobile development, serverside java, microservices, book & periodical publishing, ci/cd, java security worms, testcontainers, cloud computing, api & frameworks, services, ai & ml, data analytics, software engineering, java records, java architecture patterns, information technology, open source, distributed tracing, java development, b2b, java programming, computer software, information, testing, web development, enterprise software, enterprises, information technology & services, media","","Route 53, Outlook, Microsoft Office 365, SendInBlue, BugHerd, Facebook Widget, reCAPTCHA, Facebook Login (Connect), WordPress.org, Google Tag Manager, Apache, Mobile Friendly, IoT, Data Storage, Android","","","","","","",69c282ee1cba2c0001f20f2e,7375,51,"JAVAPRO is a magazine and online resource platform focused on professional Java programming and development. It covers a wide range of topics, including Core Java, libraries, frameworks, architecture, microservices, and cloud-native applications. The platform emphasizes practical and advanced Java subjects such as Reactive Streams, Java EE/Jakarta EE evolution, and data processing with tools like Apache Kafka and Spark. + +In addition to magazine issues and blog posts, JAVAPRO offers videos and articles on various aspects of serverside Java, web development, and APIs. The platform also highlights frameworks like Spring Boot and Micronaut, as well as historical milestones in Java's evolution. After a hiatus, JAVAPRO returned in 2024, celebrating ten years of contributions to the Java community, including the JCON event and training opportunities like MicroStream courses.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f0950b4ae32b0001a85c6d/picture,"","","","","","","","","" +Ultra Tendency,Ultra Tendency,Cold,"",100,information technology & services,jan@pandaloop.de,http://www.ultratendency.com,http://www.linkedin.com/company/ultra-tendency,https://www.facebook.com/Ultra-Tendency-GmbH-226234464584441/,https://twitter.com/ultratendency,16 Schleinufer,Magdeburg,Saxony-Anhalt,Germany,39104,"16 Schleinufer, Magdeburg, Saxony-Anhalt, Germany, 39104","big data, scala, python, hadoop, apache kafka, aws, apache nifi, hive, cloud, data streaming, azure, kubernetes, apache hbase, grafana, apache spark, java, cloudera, sentry, it services & it consulting, microservices, consulting, containerization, managed services, data architecture, open source community, open source software, iot, data analytics platforms, dataops, source code contributions, apache zeppelin, apache yetus, information technology and services, cloud architecture, data mesh, data quality, apache bahir, dual lambda streaming architecture, apache spark summit, data analytics, cloud data solutions, large language models - llms, power bi, apache community meetups, computer systems design and related services, data systems development, spark, streaming technologies, data security, ai & ml platforms, data integration, data platform development, data-driven applications, apache hbase commitment, b2b, apache knox, terraform, streaming, data engineering, cloud technologies, iot solutions, open-source community involvement, apache ambari, software development, cloud services, open source contributions, apache ranger, data migration, apache projects, open source in enterprise, apache avro, ansible, mlops, data governance, services, hbase, apache sentry, cloud computing, digital transformation, data processing and hosting, open source software building, data pipeline automation, data modernization, apache ozone, finance, education, enterprise software, enterprises, computer software, information technology & services, computer & network security, financial services",'+49 89 208046609,"Outlook, Microsoft Office 365, Microsoft Azure Hosting, Atlassian Cloud, Netlify, Slack, Salesforce, Mobile Friendly, Google Tag Manager, Linkedin Marketing Solutions, YouTube, Remote, Ansible, Terraform, Cisco Unified Intelligence Center, Apache Kafka, Databricks Lakehouse Platform, Spark, Delta Lake, Unity Catalog, Photon, Olo, Flow, Python, Scala, MLflow, scikit-learn, pandas, Apache Spark, Databricks, Microsoft Azure, Amazon Web Services (AWS), Google Cloud Platform, PySpark, GitHub Actions, Azure Devops, Tor, Mode","","","","","","",69c282ee1cba2c0001f20f3f,7375,54151,"Ultra Tendency is an international IT system integrator and consultancy firm founded in 2010, originating from the Institute of Distributed Systems at Magdeburg University in Germany. The company specializes in Big Data, Microservices, Streaming, Cloud Computing, IoT, and AI, providing innovative, data-driven solutions for global enterprises. With a presence in five countries, including the United States and Japan, Ultra Tendency emphasizes high-quality software engineering and adheres to various certifications for security and operations. + +The company offers a range of tailored IT solutions, including consulting and strategy for Big Data and digital transformation, development and implementation of microservices and cloud migration, and operations and training through its UT Academy. Ultra Tendency focuses on precise requirements gathering and iterative Agile development, ensuring high standards in quality assurance and secure deployment. Its mission is to help organizations leverage data for the digital transformation of products and processes.",2010,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68747e00f208290001851f69/picture,"","","","","","","","","" +TZM GmbH,TZM,Cold,"",34,information technology & services,jan@pandaloop.de,http://www.tzm.de,http://www.linkedin.com/company/tzm-gmbh,"","",41 Davidstrasse,Goeppingen,Baden-Wuerttemberg,Germany,73033,"41 Davidstrasse, Goeppingen, Baden-Wuerttemberg, Germany, 73033","embedded systems, medical connectivity, medizintechnik, softwareentwicklung, automobiltechnik, software engineering, automatisierung, industrie 40, test und pruefsysteme, software development, patientendatenmanagement, figma, medizinische gerätehersteller, universal medical gateway (umg), testautomatisierung, .net, services, medizinische alarmsysteme, medizinprodukt klasse iib, web-anwendungen, app-entwicklung, medizintechnik softwareentwicklung, sicherheitsstandards, geräteintegration, systemintegration, testplanung, medizinsoftware nach iec 62304, sicherheitszertifizierte medizintechnik, mockups mit figma, konnektivitätslösungen für op und intensivstationen, b2b, gerätevernetzung, regulatorische compliance, patientenversorgung verbessern, datenübertragung, c#, regulatorische konformität, medizinische softwarelösungen, software projektmanagement, maßgeschneiderte softwarelösungen, datenübersetzung medizinischer geräte, medizinische schnittstellen, software für kliniken, iso 13485, ui/ux design, deployment auf webservern, medizinische datenübertragung, medical equipment and supplies manufacturing, plattformunabhängige apps, qualitätssicherung, automatisierte tests, anforderungsmanagement, konnektivität medizinischer geräte, iso 13485 zertifiziert, applikationssoftware, consulting, app store veröffentlichung, cloud-basierte lösungen, geräteintegration in kis und pdms, embedded software, kliniksoftware, medizinische geräte vernetzung, healthcare, embedded hardware & software, hardware, information technology & services, health care, health, wellness & fitness, hospital & health care",'+49 7161 50230,"Outlook, Microsoft Office 365, Apache, WordPress.org, Google Font API, Mobile Friendly, Bootstrap Framework","","","","","","",69c282ee1cba2c0001f20f40,3829,33911,"TZM - Mehr als Engineering +Seit mehr als 25 Jahren bietet die TZM GmbH professionelle Engineering-Leistungen für Kunden aus der Medizinbranche an. Ob Software direkt oder Beratungsleistungen zum Thema - unser Team aus hervorragend ausgebildeten Ingenieuren und Fachkräften entwickelt für Sie innovative und fachgerechte Lösungen. +Software ist heute einer der wichtigsten Erfolgsfaktoren in Unternehmen. Professionelle Softwarelösungen sichern den Unternehmenserfolg und bieten Wettbewerbsvorteile. TZM entwickelt maßgeschneiderte Software-Anwendungen für unterschiedlichste Branchen und Ansprüche. In enger Zusammenarbeit mit unseren Kunden entstehen individuelle Lösungen, die genau auf Ihren Bedarf abgestimmt sind.",1991,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66dd8505f7ae0d0001bc80a6/picture,"","","","","","","","","" +SpiraTec AG,SpiraTec AG,Cold,"",170,machinery,jan@pandaloop.de,http://www.spiratec.com,http://www.linkedin.com/company/spiratec-ag-official,"","",7 An der Hofweide,Speyer,Rheinland-Pfalz,Germany,67346,"7 An der Hofweide, Speyer, Rheinland-Pfalz, Germany, 67346","process engineering, civil engineering, digitalization, it, robotics, automation, piping engineering, epcm, hvac, automation machinery manufacturing, automation solutions, mixed-reality im industrieumfeld, fertigungsdatenmanagement, cyber security check, ot-plattform & virtualisierung, schnittstellen im produktionsumfeld, virtuelle inbetriebnahme, netzwerkarchitektur & design, robotics services, it / ot system connectivity, automation engineering, cyber security, manufacturing operations, augmented reality, smart factory, data enrichment im digital twin, engineering services, it / ot system integration, digital twin, consulting, betriebsdatenerfassung, serialisierung, data analytics, qualifizierung gamp, process automation, augmented reality lösungen, alarmmanagement, systemmigration, cloud computing, predictive maintenance, sicherheitsbewertung, anlagensimulation, engineering, digital twin engineering, artificial intelligence, individual-softwareentwicklung, industrial engineering, industrie x.0, b2b, serialisierung (epedigree, track & trace), webdashboards & reporting, services, iot plattform, digital transformation, validierung & qualifizierung, data historian, fahrerlose transportsysteme (fts), smart data connectivity, datenarchivierung, predictive analytics in produktion, industrie x.0 reifegradanalyse, performance management solutions, it design, cloud & iot, system integration, barcode rfid, systemintegration, digital assets, kpi-oee-spc auswertungen, data management, energy & utilities, readiness for digital transformation, industrie 4.0, mobile endgeräte im produktionsumfeld, smart data im produktionsprozess, manufacturing, datenbank-systeme, mechanical or industrial engineering, information technology & services, computer & network security, enterprise software, enterprises, computer software",'+49 623 2919060,"Outlook, Microsoft Office 365, MailJet, Gmail, Google Apps, Amazon SES, WordPress.org, Google Tag Manager, Typekit, Mobile Friendly, Apache, Linkedin Marketing Solutions, Remote, Micro, Android, AI, Brocade Switches, Lucanet, Homestead, Wider Planet, Siemens SIMATIC S7, SIMATIC WinCC, Siemens Opcenter, Agilent SLIMS, Veeva Vault PromoMats, Cisco VPN, Juniper Networks SRX-Series Firewalls, Oracle Virtualization, VLAN, Siemens SIMATIC PCS 7, PriceGrabber, Honeywell MES, Cisco Secure Firewall Management Center, AVEVA Historian, CAESAR II, The PI System, AC500 PLC, DeltaV, IBM SPSS Modeler","","","","",1290000,"",69c282ee1cba2c0001f20f43,8711,54133,"SpiraTec AG is an industrial engineering and solutions company based in Speyer, Germany, specializing in the process industry. Founded in 2007, it focuses on digital transformation, automation, and IT solutions. With over 650 employees across more than 40 locations in Europe and the USA, SpiraTec has established itself as a key player in its field. + +The company offers a wide range of services, including industrial engineering and design, IT solutions, automation, and robotics. Its expertise spans process engineering, system integration, manufacturing operations systems, and cybersecurity. SpiraTec serves various industries, such as biopharma, food and beverages, chemical, and mechanical engineering, working with global market leaders and renowned clients. + +SpiraTec is recognized as one of the top companies in the process and manufacturing industry, reflecting its strong market position and commitment to delivering comprehensive solutions to its customers.",2007,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/695aebd3e2b95300015db16e/picture,"","","","","","","","","" +TWT Health GmbH,TWT Health,Cold,"",36,information technology & services,jan@pandaloop.de,http://www.twt-health.de,"",https://facebook.com/xmachina.gmbh,https://twitter.com/xmachinaehealth,6 Im Schuhmachergewann,Heidelberg,Baden-Wuerttemberg,Germany,69123,"6 Im Schuhmachergewann, Heidelberg, Baden-Wuerttemberg, Germany, 69123","qualitaetsmanagementsystem, din en iso 13485, software als medizinprodukt, software as a medical device, medizinische apps, medical apps, medical software services, healthcare ebusiness, datenschutz und sicherheit, data protection & security, medical devices, quality management system, qms, it services & it consulting, regulatory consulting, healthcare digitalization, medical device software, health software & apps, iso 13485, diga, dual-track agile, agile methodology, iso 27001, services, product lifecycle management, healthcare digital marketing, digital health projects, mdr compliance, risk management, medical device regulation, consulting, regulatory affairs, medical software lifecycle, medical software testing, data security, quality assurance, patient data security, open source content management, online-plattformen, agile development, health it, regulatory compliance, samd, softwareentwicklung, healthcare software, software as medical device, healthcare apps, digital healthcare solutions, diga reimbursement, medical software quality management, cybersecurity, healthcare, medical software certification, diga requirements, computer systems design and related services, b2b, usability testing, post-market surveillance, medical software, hospital & health care, information technology & services, computer & network security, health care, health, wellness & fitness",'+49 211 6016010,"Gmail, Google Apps, MailChimp SPF, Pardot, Microsoft Office 365, Mailchimp Mandrill, OneTrust, Slack, Hubspot, Jira, Atlassian Confluence, Atlassian Cloud, GitLab, Google Tag Manager, Apache, Mobile Friendly, Etracker, TYPO3, Nginx, Remote","","","","","","",69c282ee1cba2c0001f20f36,8731,54151,"TWT Health accompanies you in your digital transformation! +As your partner for sustainable e-health solutions, standard-compliant software products, convincing user experience and reliable managed services, we support you wherever you need us: From consulting to creation, from development to operation and maintenance. + +Medical Software, Medical Apps & DiGAs – TWT Digital Health realizes software projects as medical devices and supports you in all phases of the product lifecycle – from the idea to market and beyond to operations and maintenance. TWT Digital Health is your experienced partner for medical software and website services as well as regulatory consulting. ⚕💉📲 + +Certified according to DIN EN ISO 13485 - we accompany your software project throughout all product life cycle phases, taking into account the regulatory requirements for medical devices. + +📞 +49 6221 8220 0 +📧 digital.health@twt-dh.de +🌐 www.twt-digital-health.de + +Why not follow us also on other platforms? +Twitter: https://twitter.com/TWTDigiHealth +Slideshare: https://www.slideshare.net/TWT_Digital_Health +Instagram: https://www.instagram.com/twtdigitalhealth/ +Facebook: https://www.facebook.com/twtdigitalhealth/",1997,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/65d32efc5960860001886c3f/picture,"","","","","","","","","" +Mixed Mode GmbH,Mixed Mode,Cold,"",61,"",jan@pandaloop.de,http://www.mixed-mode.de,"","","",17 Lochhamer Schlag,Graefelfing,Bavaria,Germany,82166,"17 Lochhamer Schlag, Graefelfing, Bavaria, Germany, 82166","heterogeneous multiprocessing, data analysis, linux build systems, real-time systems, hil testing, cybersecurity, industry applications, cyber-physical systems security, embedded linux, smart grid security, automated testing, microservices, software development, data visualization, security standards, blockchain, information technology and services, healthcare, computer systems design and related services, iot, automotive hsm firmware, energy, system modeling, security, openamp, medtech, industrial automation, medical device security, energy & utilities, predictive analytics, test automation, services, ai/ki, continuous delivery, software test & quality, hardware security modules, continuous integration, software engineering, automation, data security, iso 26262, iec 62443, autonomous vehicle software, edge computing, b2b, predictive maintenance, software refactoring, cryptography, machine learning, industrial automation software, embedded systems, secure boot, manufacturing, requirement engineering, real-time data processing, custom software solutions, automotive, fpgas, sensor data processing, predictive analytics in manufacturing, agile development, iot security frameworks, cloud computing, consulting, aerospace, transportation & logistics, energy trading blockchain, cloud solutions, secure update, education, data analytics, information technology & services, health care, health, wellness & fitness, hospital & health care, mechanical or industrial engineering, enterprise software, enterprises, computer software, computer & network security, artificial intelligence, embedded hardware & software, hardware",'+49 89 89868150,"Outlook, Microsoft Office 365, Hubspot, Vimeo, Mobile Friendly, Google Tag Manager, Apache, Nginx, WordPress.org, reCAPTCHA, Docker, Remote, Node.js, React Native, IoT, Android, Xamarin","","","","","","",69c282ee1cba2c0001f20f3d,7375,54151,"EMBEDDED SYSTEMS & SOFTWARE + +Seit über 25 Jahren unterstützt Mixed Mode seine Kunden erfolgreich bei der Entwicklung von Embedded Systems und Software. Dies beinhaltet neben der professionellen Entwicklungsdienstleistung auch Technologie- und Prozessberatung, um anspruchsvolle Projekte in hoher Qualität zu realisieren – gemäß dem Leitspruch technik.mensch.leidenschaft. + +Ob Sie eine Lösung benötigen, die nach Ihren Anforderungen konzipiert ist, qualifizierte Experten für Ihr Team suchen oder innovative Ideen und Technologien für Ihre Produkte brauchen – greifen Sie auf unser komplettes Wissensspektrum zurück. + +Beste Qualität und höchste Kundenzufriedenheit bilden die Basis für eine langfristige Zusammenarbeit. Unsere Kunden sind Global Player aus allen Schlüsselbranchen. Sie schätzen uns als zuverlässigen und innovativen Partner. + +IMPRESSUM + +Mixed Mode GmbH +an Ingenics company +Lochhamer Schlag 21 +82166 Gräfelfing bei München + +Tel.: 089/8 98 68-200 +Fax: 089/8 98 68-222 + +E-Mail: sales@mixed-mode.de +www.mixed-mode.de + +Geschäftsführer: +Christopher Seemann +Helmut Süßmuth + +Handelsregister: Amtsgericht München HRB 130778 +Umsatzsteuer-Identifikationsnummer: DE 169313208",1994,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6472c1d773780b0001269cca/picture,"","","","","","","","","" +MCS Data Labs GmbH,MCS Data Labs,Cold,"",11,information technology & services,jan@pandaloop.de,http://www.mcs-datalabs.com,http://www.linkedin.com/company/mcs-data-labs-gmbh,https://facebook.com/MCSDatalabs,"",42 Hubertusallee,Berlin,Berlin,Germany,14193,"42 Hubertusallee, Berlin, Berlin, Germany, 14193","data encryption, software development, ai healthcare analytics, digital health analytics, health monitoring platform, health, data inclusion, healthcare application, healthcare, ai, it services & it consulting, health data compliance, white-box transparency, big data, personalized medicine, sensor integration, healthtech, health data transparency, biometric and environmental data, b2b, predictive analytics, personalized health insights, cloud data storage, healthcare research tools, privacy and data sovereignty, environmental data monitoring, custom hardware integration, real-time data processing, data privacy and security, secure data access, health data analytics, modular health ecosystems, health research platform, healthcare technology, sensors, personalized health monitoring, non-invasive biometric monitoring, consulting, wearable sensors, data security, customizable health platform, ai in clinical trials, biometric signal processing, government, ecg, ppg, eda sensors, cloud infrastructure, ai algorithms for health, healthcare innovation, health monitoring ecosystem, medical devices, cloud computing, biometric data analysis, clinical research support, clinical trial support, healthcare ai algorithms, system integration, sensor fusion technology, ai-driven health interventions, information technology & services, ai-powered health technology, data visualization, environmental health sensors, real-time biometric data, data analytics, iot, services, digital health, research and development, wearable technology, biometric sensors, remote patient monitoring, medical equipment and supplies manufacturing, healthcare software, b2c, legal, health care, health, wellness & fitness, hospital & health care, enterprise software, enterprises, computer software, hardware, computer & network security, internet infrastructure, internet, research & development, wearable technologies, wearables, consumer goods, consumers, internet of things, consumer electronics, computer hardware",'+49 160 91370729,"Outlook, DigitalOcean, Slack, reCAPTCHA, Google Tag Manager, Mobile Friendly, WordPress.org, Apache, Data Analytics, Android, IoT",10000,Other,10000,2018-06-01,"","",69c282e547a8220001dc12f4,3829,33911,"We are dedicated to developing cutting-edge projects that improve human health. +Our team of experts combines technology and data analysis to create innovative solutions +that address the most pressing health challenges of our time. + +SmarKo Health® is our award-winning sensor- and application-based technology +focusing on the needs of patients and medical experts in the area of remote diagnosis and treatment.",2013,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f7d55f7490dc0001defe59/picture,"","","","","","","","","" +Spleenlab,Spleenlab,Cold,"",41,information technology & services,jan@pandaloop.de,http://www.spleenlab.ai,http://www.linkedin.com/company/spleenlab,"","",18 Hauptstrasse,Saalburg-Ebersdorf,Thuringia,Germany,07929,"18 Hauptstrasse, Saalburg-Ebersdorf, Thuringia, Germany, 07929","software development, sensor blockage detection, multi-object detection, industrial machinery manufacturing, edge ai, precise landing, collision avoidance, vertical clearance, sensor calibration, freespace occupancy grids, transportation and logistics, industrial manufacturing, autonomous navigation, environmental understanding, aerospace and defense, gps-denied navigation, robotics and automation, sensor fusion, ai perception software, perception algorithms, visual inertial odometry, object re-identification, slam, localization, multi-modal sensor calibration, terrain-following, b2b, transportation & logistics, information technology & services",'+49 366 51563912,"Gmail, Google Apps, Google Cloud Hosting, MailJet, Varnish, Mobile Friendly, WordPress.org, Apache, Android, Remote, AI, Azure Linux Virtual Machines, Salesforce CRM Analytics, AWS Lambda, FUSION, iPerceptions, Ning, Segment",1100000,Merger / Acquisition,0,2025-10-01,"","",69c282e547a8220001dc12f7,3812,33324,"Spleenlab GmbH is an AI perception software company based in Jena, Germany, founded in April 2018. The company focuses on enhancing safety and artificial intelligence in autonomous systems, developing advanced software for robots, drones, and autonomous vehicles. Their primary product, VISIONAIRY®, is a comprehensive AI suite that includes modules for sensor fusion, spatial detection, object detection, navigation, and localization. This software is designed to work with various hardware platforms, ensuring efficient performance with minimal integration effort. + +Spleenlab serves a diverse customer base across industries such as defense, automotive, aerospace, and robotics. Notable clients include agricultural equipment manufacturers, UAV operators, and the German Armed Forces. The company has experienced significant growth, expanding its team and capabilities, and has achieved key milestones like international patent protection and funding rounds. In a recent development, Spleenlab was acquired by Quantum Systems, further enhancing its resources and expertise in AI technology.",2018,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/695c9d49c70528000161acb3/picture,"","","","","","","","","" +Wearable Technologies AG,Wearable Technologies AG,Cold,"",14,wireless,jan@pandaloop.de,http://www.wearable-technologies.com,http://www.linkedin.com/company/wearable-technologies-ag,"",https://twitter.com/WearableTech,26 Madeleine-Ruoff-Strasse,Herrsching,Bavaria,Germany,82211,"26 Madeleine-Ruoff-Strasse, Herrsching, Bavaria, Germany, 82211","networking, wearable technologies, event, marketing, consulting, innovation competitions, conference, newschannel, business matching, wireless services, market trends, wearables ecosystem, industry trend analysis, industry partnerships, market insights, convention and trade show organizers, industry insights, healthcare technology, industry network, product development, consulting services, industry knowledge sharing, wearable industry events, wearable innovation support, technology conferences, industry collaboration, innovation support, industry conferences, wearable technology, event management, wearable tech community, industry growth, industry growth acceleration, consumer electronics, industry expertise, technology innovation, global wearable conferences, business networking, wearable tech ecosystem development, industry networking events, medical devices, services, wearable tech ecosystem, event organization, wearable tech insights, industrial automation, business acceleration, networking events, health tech, industry ecosystem, networking opportunities, market expansion, market analysis, industry insights sharing, trade shows, industry research and analysis, business development, market intelligence, b2b, global industry leader, wearable industry platform, digital health, market strategy, industry players, market development platform, technology trends, technology events, industry evolution, market development, market knowledge, market research, wearables, consumer goods, consumers, internet of things, hardware, computer hardware, telecommunications, management consulting, events services, hospital & health care, mechanical or industrial engineering, health, wellness & fitness, information technology & services",'+49 8152 998860,"Cloudflare DNS, Outlook, MailChimp SPF, Microsoft Office 365, Woo Commerce Memberships, Webflow, Slack, Google Tag Manager, Piwik, WordPress.org, Woo Commerce, Bootstrap Framework, Typekit, Mobile Friendly, reCAPTCHA, YouTube, Google Font API, Vimeo, AI",3015000,Other,940000,2020-09-01,10000000,"",69c282e547a8220001dc1305,7389,56192,"Wearable Technologies AG (WT) is a leading platform for innovation and market development in the wearable technology sector, established in 2006. Headquartered in Germany, with a presence in the US, the company has created a vast ecosystem of over 30,000 companies, including market leaders, startups, and Fortune 500 firms. WT is led by CEO Christian Stammel, who has extensive experience in IoT and wearables. + +The company specializes in consulting and business development, offering market insights and strategies for clients in the wearables industry. WT organizes international conferences, tradeshows, and masterclasses to foster collaboration within the ecosystem. Additionally, it runs the WT | Innovation World Cup, an annual competition that helps emerging wearable companies gain recognition and business opportunities. Through its networking initiatives, WT connects clients with key players in the value chain, providing trend analysis and facilitating partnerships for technology advancement.",2006,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6874e39b6e00e40001420be6/picture,"","","","","","","","","" +softgate,softgate,Cold,"",67,information technology & services,jan@pandaloop.de,http://www.soft-gate.de,http://www.linkedin.com/company/softgate,"",https://twitter.com/softgate_gmbh,43 Allee am Roethelheimpark,Erlangen,Bavaria,Germany,91052,"43 Allee am Roethelheimpark, Erlangen, Bavaria, Germany, 91052","image processing amp service software, informationmanagement, predictive maintenance, hl7, rpa, embedded systems, dicom, bpm, document capture amp management, database solutions, image processing service software, document capture management, medical solutions, software development, real time operating systems, firmware, iso 13485, software engineering, dicom hl7 ieee 11073 sdc, services, automatisierung, ieee 11073 sdc standard, dicom schnittstellen, medizinische bildverarbeitung, image processing, cyber security zertifikate, iso 9001, process automation, consulting, cloud solutions, embedded software, automatisierte rechnungsverarbeitung, gui entwicklung, systemintegration, iot plattformen, projektmanagement, connectivity standards, digital business, bildverarbeitung, qualitätssoftware, digitale mitarbeiterakte, sicherheitszertifikate, softwareentwicklung, digital business solutions, healthcare software, robotics, data analytics, regulatorische anforderungen, motion control, echtzeitsysteme, datenmanagement, agile entwicklung, hl7 integration, computer systems design and related services, b2b, sicherheitskritische software, industrial automation, schnittstellenentwicklung, robotic process automation, revisionssichere archivierung, medizintechnik, connectivity, cyber security, cloud integration, industrie, prozessautomatisierung, healthcare, manufacturing, embedded hardware & software, hardware, information technology & services, cloud computing, enterprise software, enterprises, computer software, mechanical or industrial engineering, computer & network security, health care, health, wellness & fitness, hospital & health care",'+49 9131 812700,"Outlook, Typekit, WordPress.org, YouTube, Google Font API, reCAPTCHA, Mobile Friendly, Google Tag Manager, React Native, Android, Remote, C#, Salesforce CRM Analytics, Wider Planet, IoT, Azure Power BI Embedded","","","","","","",69c282e547a8220001dc12ef,3829,54151,"softgate GmbH is a certified software development and technical service provider based in Erlangen, Germany. Founded in 1992, the company specializes in custom software solutions and digitalization for sectors such as medical technology, industry, automotive, and digital business. With a team of approximately 70-100 employees, softgate emphasizes agile processes and close collaboration with clients, operating under the motto ""software.together."" + +The company offers a wide range of services, including embedded software development, cyber security, application development, and digital transformation solutions. Their expertise extends to regulated environments, particularly in medical technology. Notable products include DICOMconnect for medical imaging integration and solutions for Smart Device Communication. softgate serves a diverse clientele, including global corporations, medium-sized companies, startups, and public authorities, focusing on markets in Germany, Switzerland, and China.",1992,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6878887bddaa6f00015b88f6/picture,"","","","","","","","","" +scieneers GmbH,scieneers,Cold,"",44,information technology & services,jan@pandaloop.de,http://www.scieneers.de,http://www.linkedin.com/company/scieneers,"","","",Karlsruhe,Baden-Wuerttemberg,Germany,"","Karlsruhe, Baden-Wuerttemberg, Germany","python, data science, analytics in production, machine learning, data engineering, sql server data platform, google cloud platform, azure data platform, power bi platform, aws, it services & it consulting, ai chatbots, etl processes, knowledge graph embeddings, big data, data integration, data infrastructure, deep learning, predictive maintenance, natural language processing, data lakes, services, ai for energy sector, generative ai, data analytics and data science, multimodal data processing, data warehousing, large language models, data pipelines, computer systems design and related services, cloud computing, data visualization, data fusion, data modeling, rag systems, model deployment, data monitoring, consulting, cloud data solutions, artificial intelligence, business intelligence, temporal fusion transformer, transformer models, data privacy platforms, data products, power bi, data governance, anomaly detection wind turbines, software development, data security, real-time analytics, b2b, chat with your data, data management, open source algorithms, government, data platforms, information technology and services, data analysis, predictive analytics, education, non-profit, information technology & services, enterprise software, enterprises, computer software, analytics, computer & network security, data analytics, nonprofit organization management","","Gmail, Google Apps, Microsoft Office 365, Hubspot, Mobile Friendly, Nginx, Google Tag Manager, WordPress.org, Google Font API, Android, Webmail, Node.js, Micro, React Native, Elixir, Qlik Sense, AI, Scala, Javascript, TypeScript, React, HTML Pro, CSS, Azure Synapse Analytics, Databricks, Azure Logic Apps, Azure Data Lake Analytics, Azure Cosmos DB, SQL, DAX, PowerBI Tiles, Azure Devops, Python, Weaviate, Power BI Documenter, Azure Analysis Services, AWS Analytics, Google Cloud","","","","","","",69c282e547a8220001dc12f2,7375,54151,"Aus Daten gewinnen wir Erkenntnisse und schaffen aus ihnen Werte. Für unsere Kunden, die Gesellschaft und uns selbst. Wir bieten unsere Expertise für Ihr Daten-Projekt. + +Wir wollen aus Daten in jeglicher Form Mehrwert für unsere Kunden und die Gesellschaft generieren. Vom klassischen Kennzahlensystem über die Anwendung mathematischer und statistischer Verfahren und des maschinellen Lernens bis hin zum automatisierten Text-, Bild- und Sprachverständnis mit künstlicher Intelligenz heben wir für Sie die Potenziale der Digitalisierung. +Durch enge Vernetzung zur Forschung wollen wir mit modernsten Technologien komplexe analytische Probleme lösen und skalierbare Datenprodukte beim Kunden in Produktion bringen. + +Zu jeder Aufgabe gibt es ein perfektes Team. Entscheidend ist, dass sich die Fähigkeiten optimal ergänzen. Nach dieser Überzeugung besetzen wir Projekte in ganz Deutschland. Wir arbeiten verteilt und eng vernetzt. Ob im Home-Office oder vor Ort bei unseren Kunden und an eigenen Standorten. + +Sprechen Sie uns an. +Oder besuchen Sie uns auf www.scieneers.de","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/687ba08e4c104f000176c5df/picture,"","","","","","","","","" +Helmholtz AI,Helmholtz AI,Cold,"",41,research,jan@pandaloop.de,http://www.helmholtz.ai,http://www.linkedin.com/company/helmholtz-ai,"",https://twitter.com/helmholtz_ai/,1 Ingolstaedter Landstrasse,Oberschleissheim,Bavaria,Germany,85764,"1 Ingolstaedter Landstrasse, Oberschleissheim, Bavaria, Germany, 85764",research services,"","Outlook, Microsoft Office 365, Nginx, Mobile Friendly, AI, Python, Phaser, Act!, SAP S/4HANA, SAP SuccessFactors, Docker, Podman, Kubernetes, EFI","","","","","","",69c282e547a8220001dc12f5,"","","Helmholtz AI is the Helmholtz Artificial Intelligence Cooperation Unit, designed to enhance scientific research across the Helmholtz Association. It focuses on developing and distributing applied AI methods that align with the association's unique research questions and datasets. The unit fosters collaboration among scientists from various centers, promoting transdisciplinary research and maximizing the impact of their work in applied AI. + +Helmholtz AI offers a variety of services aimed at researchers within the Helmholtz Association. These include AI consulting through a voucher system, access to computing resources like HAICORE for GPU computing, and support for AI-driven research initiatives. The unit also provides tools and methods tailored to different research fields, along with high-performance computing access to facilitate innovative projects. Its collaborative efforts extend to both internal Helmholtz centers and external partners, including businesses involved in co-financed AI and HPC projects.",2019,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66dd8e7bdd69a10001083f8c/picture,"","","","","","","","","" +"DASU - Transferzentrum für Digitalisierung, Analytics & Data Science Ulm",DASU,Cold,"",16,research,jan@pandaloop.de,http://www.dasu.digital,http://www.linkedin.com/company/dasu-transferzentrum-f%c3%bcr-digitalisierung-analytics-data-science-ulm,"","","",Ulm,Baden-Wuerttemberg,Germany,89073,"Ulm, Baden-Wuerttemberg, Germany, 89073","research services, schulungen & weiterbildungen, ki-gestützte sprachverarbeitung, ki-gestützte sprach- und bildanalyse, data security, ki in der medizin, wissenschaft trifft wirtschaft, objekterkennung, ki-gestützte bildbearbeitung, netzwerkbildung, wirtschaft 4.0, ki-lab, digitaler wandel, generative ki, ki-implementierung, forschung & entwicklung, unternehmensnetzwerk, digitales ökosystem, ki-gestützte diagnostik, data science, ki-anwendungen in der wirtschaft, kooperationen, technologieentwicklung, ki-gestützte kunstgenerierung, forschungsnetzwerk, anwendungsorientiert, unternehmensentwicklung, forschungsförderung, ki-gestützte planungsplattformen, ki-gestützte objekterkennung in bildern, energiesparprojekte, innovationsprojekte, workshops, netzwerk, wissensvermittlung, kooperationen mit hochschulen, interdisziplinäre forschung, wissenstransfer, data analytics, ki in der produktion, digitalisierung in unternehmen, digitalisierung in kmu, technologietransfer, ki-gestützte textgenerierung, ki-gestützte diagnostik in der medizin, lokale ki-implementierung, kmu-förderung, ki-basierte energiesparlösungen, ki-gestützte prozessoptimierung, ki in der energiewirtschaft, b2b, digital lab, fördermittel, generative ki für kunst und design, datenanalyse, digitalisierung, wissenschafts-wirtschaft-transfer, praxisnahe lösungen, ki-gestützte entscheidungsfindung, veranstaltungen, beratung & workshops, energiesparen mit ki, fördermittelakquise, schulungen, transformationsprozess, wissenschaftliche expertise, objekterkennung in bildern, technologieberatung, services, unternehmensberatung, research and development in the physical, engineering, and life sciences, forschungsnetzwerk ulm, datenbasierte entscheidungsfindung, datenschutz, ki-gestützte bildanalyse, analytics, datenmanagement, data management, interdisziplinär, datengetriebene innovationen, fördermittelberatung, predictive analytics, wirtschaftsregion ulm, datenbasiert, ki-gestützte innovationen, ki-gestützte datenanalyse, consulting, ki-chatbot für firmenwissen, digital transformation, machine learning, datenanalyse-tools, ki-anwendungen, ki-campus, künstliche intelligenz, ki-workshop, forschung & innovation, region ulm, business consulting, ki-gestützte energiesparsysteme, ki-gestützte energiemanagementsysteme, transferzentrum, digitalisierungslösungen, ki-gestützte automatisierung, datenschutzkonforme ki-lösungen, objekterkennung in röntgenbildern, kmu-unterstützung, ki-gestützte lösungen, ki-chatbot, forschungskompetenzen, ki-gestützte bild- und spracherkennung, wissenschaftlicher austausch, ki-gestützte prozesse, generative ki in kunst & kultur, wissenschaft trifft praxis, ki-lösungen, innovation, forschungsprojekte, regionale wirtschaft, innovationsförderung, veranstaltungen & termine, wissenschaftliche beratung, healthcare, education, legal, non-profit, manufacturing, distribution, construction, computer & network security, information technology & services, enterprise software, enterprises, computer software, artificial intelligence, management consulting, health care, health, wellness & fitness, hospital & health care, nonprofit organization management, mechanical or industrial engineering","","Outlook, Microsoft Office 365, SendInBlue, Apache, WordPress.org, Mobile Friendly, Google Tag Manager","","","","","","",69c282e547a8220001dc12fc,8731,54171,"Daten – Wissen – Zukunft. Unsere Zukunft ist geprägt durch die digitale Transformation. Big Data, Künstliche Intelligenz, Machine Learning und Datenanalyse sind Herausforderung und Chance zugleich – für Unternehmen, aber auch die Gesellschaft als Ganzes. Daten werden zu Wissen und Wissen entscheidet über Erfolg. Das DASU ist eine 2021 gegründete Stiftung mit der Mission, den Wissenstransfer und das Netzwerk zwischen Wissenschaft und den Unternehmen der gesamten Region und darüber hinaus zu stärken sowie dadurch Ressourcen zu bündeln und neu zu nutzen. + +Das DASU wird in der Förderperiode 2021 - 2027 mit 3,9 Mio. Euro aus dem EFRE und 980 000 Euro aus dem Ministerium für Wirtschaft, Arbeit und Tourismus des Landes Baden-Württemberg gefördert. +Mit den Fördergeldern wird eine zentrale Anlaufstelle für kleine und mittlere Unternehmen (KMU) für Fragen der Digitalisierung, Datenwissenschaften und Datenanalyse aufgebaut. Das Angebot soll neben einem aktiven und breit aufgestellten Technologietransfer von der Wissenschaft in die Wirtschaft auch grundlegende Sensibilisierungs- und Informationsformate zum Abbau von Hürden im Transformationsprozess umfassen. Zu Letzterem gehört auch, mit Hilfe eines Digitalisierungslabors („Digital Lab"") innovative Data Science- und KI-Lösungen darzustellen und erfahrbar zu machen.",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66d6b8f36106c500019cedc7/picture,"","","","","","","","","" +prenode,prenode,Cold,"",24,information technology & services,jan@pandaloop.de,http://www.prenode.de,http://www.linkedin.com/company/prenode,"",https://twitter.com/prenode_ai,"",Karlsruhe,Baden-Wuerttemberg,Germany,"","Karlsruhe, Baden-Wuerttemberg, Germany","artificial intelligence, machinespecific ai, industrial ai, machine learning, data science, federated learning, it services & it consulting, cloud-infrastruktur, potentialanalyse, information technology & services, cybersecurity, consulting, softwareentwicklung, services, data engineering, edge ai, cloud migration, ki-gestützte qualitätskontrolle, ki-gestützte anwendungen, data analytics, predictive analytics für maschinen, iot-lösungen, industrie 4.0, vorausschauende wartung, qualitätssicherung, b2b, asset monitoring, computer systems design and related services, cloud computing, workshop & schulungen, edge computing, dezentrale datenmodelle, data governance, manufacturing, prozessoptimierung, automatisierung, mlops, ki-basierte features für industrieanlagen, daten & ki, sicherheitslösungen, ki-gestützte asset-optimierung, automatisierte fehlererkennung, dezentralisiertes lernen, ki-interface für unternehmen, datenanalyse, iot, dezentrale ki, ki-softwareentwicklung, proof of concept, predictive maintenance, ki in der fertigung, edge ai in der produktion, remote monitoring, cloud-edge-infrastruktur, industrial automation, education, enterprise software, enterprises, computer software, mechanical or industrial engineering","","Cloudflare DNS, Gmail, Google Apps, Mobile Friendly, Google Tag Manager, IoT, Android, AI, Databricks, Azure Data Factory, Azure Data Lake Storage, Azure Machine Learning, Azure IoT Hub, Terraform, Kubernetes, Pipedrive, Canva, Figma, Adobe Creative Suite, Microsoft PowerPoint, Webflow, Linkedin Marketing Solutions, Azure Data Lake Analytics, Microsoft Azure Monitor, AWS Trusted Advisor","","","","","","",69c282e547a8220001dc12ff,3825,54151,"prenode GmbH is a German technology company that specializes in AI and Industrial Internet of Things (IIoT) solutions for the industrial sector. Founded in 2018 as a spin-off from the Karlsruhe Institute of Technology, the company is headquartered in Karlsruhe, Baden-Württemberg. With a team of 11-50 employees, prenode focuses on decentralized machine learning to optimize processes, enhance machine efficiency, and provide data-driven features such as predictive maintenance and quality assurance. + +The company develops customized, on-premise AI and IIoT solutions, including its core software mlx, which enables robust machine learning services while ensuring data privacy. Key offerings include AI-based analytical models for remote monitoring, on-premise AI interfaces using large language models, and consulting services to identify high-ROI Industry 4.0 use cases. Prenode collaborates with notable partners like IBM, TRUMPF, and WEISSER, and has received multiple awards for its innovative contributions to the AI landscape in Germany.",2018,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6710d0c0abfa850001b85d38/picture,"","","","","","","","","" +Kite IT GmbH,Kite IT,Cold,"",45,medical devices,jan@pandaloop.de,http://www.kiteit.de,http://www.linkedin.com/company/kite-it-gmbh,"","",1 Julius-Hatry-Strasse,Mannheim,Baden-Wuerttemberg,Germany,68163,"1 Julius-Hatry-Strasse, Mannheim, Baden-Wuerttemberg, Germany, 68163","digitalisierung, consulting, automation, medizintechnik, entwicklung, coaching, systemintegration, cloud computing, medizintechnik innovationen, robotics, automatisierte validierung, regulatory compliance, ki-gestützte software, software engineering, maßgeschneiderte software, forschung und entwicklung, computer systems design and related services, digital transformation, research and development, hardware testing, process optimization, medizintechnik innovation, it infrastructure, projektmanagement, automatisierungslösungen, forschungsprojekte, technologieberatung, medizintechnikbranche, künstliche intelligenz, medizinsoftware, software, regulatorische compliance, ki-gestützte systeme, healthcare it, industrie 4.0 lösungen, regulatorische unterstützung, project management, technology consulting, medical technology, automatisierung, prozessautomatisierung, medical devices & equipment, softwareagentur, validierung, technologieentwicklung, validierung & qualifizierung, it consulting, inventurliste mit security assessments, artificial intelligence, it-sicherheit, predictive maintenance, custom software, teamarbeit, risk management, hardware-tests, medizinische software, cloud services, prozessoptimierung, b2b, qualitätsmanagement, medtech change veranstaltungen, medizintechnik softwareentwicklung, software development, electrical engineering, computer vision, gewebeunterscheidung durch clustering-algorithmen, healthtech, qualitätsstandards, kundenorientierte lösungen, projektmanagement im pharma-umfeld, it-sicherheitsbewertungen, ki-algorithmen, softwareentwicklung, innovative technologien, services, it-consulting, forschung, system integration, healthcare technology, forschung & entwicklung, medizintechnik lösungen, machine learning, risk assessment, industrie 4.0, ki-unterstütztes rhetorik- und gestik-training, medical devices, healthcare, enterprise software, enterprises, computer software, information technology & services, mechanical or industrial engineering, research & development, productivity, management consulting, hospital & health care, health care, health, wellness & fitness",'+49 621 8775480,"Gmail, Google Apps, Mobile Friendly, WordPress.org, Ruby On Rails, Remote, Robot Framework, Salesforce CRM Analytics, Figma, Jira, Scrum Do, HTML Pro, TypeScript, CSS, Rockwell Automation, Siemens SIMATIC S7, Bitbucket, C#, Check Point CloudGuard Harmony Connect (CloudGuard Connect), CMake, GNU Make, Jenkins, JFrog Artifactory, Python, Rust, Yocto","","","","","","",69c282e547a8220001dc1303,8731,54151,"Kite IT GmbH is a German software agency that specializes in creating customized digital solutions for the healthcare and medical technology sectors. With over 80 professionals and more than five years of experience, the company focuses on enhancing daily workflows and meeting user needs through innovative software development. Kite IT values collaboration and team spirit, fostering a creative environment among its members. + +The company offers tailored software solutions, including its proprietary product, myTalkmaster, which provides AI-supported training for rhetoric and gestures. Kite IT also develops software for Industry 4.0, ensuring transparency and control over IT and operational technology systems. Their services encompass business development, project management, technical consulting, and support for employer branding and recruiting.",2019,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66de91ae32d3000001220d3f/picture,"","","","","","","","","" +InfAI - Institute for Applied Informatics,InfAI,Cold,"",160,information technology & services,jan@pandaloop.de,http://www.infai.org,http://www.linkedin.com/company/infai,"",https://twitter.com/InfAI_eV,9 Goerdelerring,Leipzig,Saxony,Germany,04109,"9 Goerdelerring, Leipzig, Saxony, Germany, 04109","it services & it consulting, machine learning, knowledge transfer, smart farming, data analytics, iot, big data, smart city solutions, semantic web, research institute, smart energy, consulting, iot integration, research and development in the physical, engineering, and life sciences, ict research, workshops and symposia, research conferences, industry projects, data science, software development, digital humanities, linked data technologies, energy management systems, information technology and services, applied informatics, data privacy, speech technology, services, energy systems, higher education, non-profit research organizations, ai in industry, software products, data integration, research funding, research competence centers, research infrastructure, digital transformation, cultural data science, knowledge graphs, open data initiatives, data-driven innovation, health technology, semantic technologies, academic-industry partnership, big data analytics, ai development, sensor data processing, data privacy and security, applied research, life sciences data analysis, research and development in computer science, technology transfer, data management, industry collaboration, natural language processing, linked data, international collaboration, research funding programs, artificial intelligence, enterprise systems, b2b, healthcare, education, non-profit, information technology & services, enterprise software, enterprises, computer software, education management, health care, health, wellness & fitness, hospital & health care, nonprofit organization management",'+49 341 2290370,"Outlook, VueJS, Jira, Atlassian Confluence, React Redux, GitLab, Slack, WordPress.org, Mobile Friendly, Apache, Shutterstock, Ubuntu, AI, CallMiner Eureka, Azure Data Lake Storage","","","","","","",69c282e547a8220001dc12fe,7375,54171,"The Institute for Applied Informatics (InfAI) e.V. is a non-profit research institute based in Leipzig, Germany, established in 2006. It focuses on advancing research in computer science, business informatics, data technologies, and artificial intelligence. Affiliated with the University of Leipzig, InfAI has become one of the university's largest research entities, employing over 160 staff members and securing significant third-party funding. + +InfAI specializes in areas such as Big Data, AI, IoT, and linked data, with applications in logistics, health, smart cities, and more. The institute develops technologies through national and international projects, collaborating with industry partners to create practical solutions. InfAI also offers consulting services for technology integration and process design. Its key competence centers focus on efficient technology integration, semantic data solutions, and sustainable energy management, among others. InfAI actively participates in initiatives to promote digital technologies for small and medium-sized enterprises.",2006,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67141ed8082c36000148b688/picture,"","","","","","","","","" +AI Guild,AI Guild,Cold,"",170,information technology & services,jan@pandaloop.de,http://www.theguild.ai,http://www.linkedin.com/company/ai-guild,"","",114A Friedrichstrasse,Berlin,Berlin,Germany,10117,"114A Friedrichstrasse, Berlin, Berlin, Germany, 10117","business intelligence, deep leaning, mlops, machine learning, data science, nlp, computer vision, dataops, data analytics, python, data visualization, sql, data engineering, analytics, software development, b2b, industry events, data solutions, data industry events, consulting, technical competence, data infrastructure, data training, data practitioner standards, data ethics, professional, scientific, and technical services, deep learning, data deployment scaling, data impact to society, career development, data competency profiles, data careers, services, analytics engineering, data-driven decision making, data use case evaluation, data consulting, data society, european data community, data infrastructure scaling, data career ladder, computer systems design and related services, information technology and services, data impact, prompt engineering, data use cases, data practitioner community, data workshops, use case deployment, data industry, data networking, information technology & services, artificial intelligence, natural language processing",'+49 173 5284186,"Gmail, Google Apps, Wix, Google Analytics, Hotjar, Mobile Friendly, Google Tag Manager, Varnish, Data Analytics, Remote","","","","",34000000,"",69c282e547a8220001dc1304,7375,54151,"The AI Guild is a prominent practitioner community in Europe focused on data and artificial intelligence. With over 2,800 members, it serves as a professional network for specialists in various AI and data-related fields, including analytics engineering, data science, machine learning, and natural language processing. + +The organization offers a range of services to its members, including community networking opportunities, career development coaching, and support for evaluating and deploying AI use cases. Members can access exclusive professional opportunities such as freelance gigs and consulting requests. The AI Guild also hosts community events where practitioners can discuss industry challenges and emerging methods. + +The AI Guild collaborates with major companies across different sectors, helping them enhance their data capabilities and connect with AI experts. Members typically have 2 to 20 years of experience, and the community emphasizes high standards of technical competence and ethical behavior.",2019,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6760818c60a1f80001fa4213/picture,"","","","","","","","","" +m2hycon GmbH,m2hycon,Cold,"",11,information technology & services,jan@pandaloop.de,http://www.m2hycon.de,http://www.linkedin.com/company/m2hycon,"","",19 Deichstrasse,Hamburg,Hamburg,Germany,20459,"19 Deichstrasse, Hamburg, Hamburg, Germany, 20459","ai, data strategy, data science, mathematische optimierung, mathematische simulation, it services & it consulting, model deployment, anwendungsbetrieb, data security, microservices, cloud computing, scenario simulation, route optimization, custom ai solutions, predictive maintenance, machine learning, künstliche intelligenz in unternehmen, pytorch, demand forecasting, automated data cleaning, ai-strategie, retail, zeitreihenanalyse, data engineering, innovationsmanagement, software development, ai in logistics, information technology and services, data pipelines, azure, kpi dashboards, data governance, management consulting, python, digitalisierung, b2b, big data, supply chain analytics, data analytics and data science, mathematical modeling, cloud architecture, real-time analytics, distribution, smart scheduling, ai in production, manufacturing, organizational integration, computer systems design and related services, business optimization, numpy, big data technologien, data analytics, data quality, pandas, generative ki, ai in customer service, smart algorithms, algorithmen, document recognition, data-driven decision making, hadoop, software entwicklung, google cloud, change management, prozessoptimierung, services, automatisierung, vertrieb & marketing, supply chain optimization, deep learning, künstliche intelligenz, predictive analytics, nachhaltigkeit in it, process automation, spark, consulting, kubernetes, algorithm development, produktentwicklung, digital twin, ci/cd, quality control algorithms, kundenorientierte lösungen, projektmanagement, logistik & distribution, aws, anomaly detection, containerization, mathematics in business, devops, tensorflow, datenbanken, transport planning, innovative data solutions, keras, time series features, inventory optimization, information technology & services, computer & network security, enterprise software, enterprises, computer software, artificial intelligence, mechanical or industrial engineering",'+49 40 36939739,"Gmail, Google Apps, Microsoft Office 365, Google Maps, WordPress.org, Google Tag Manager, Mobile Friendly, Google Font API, Apache, Remote, AI, Android, React Native, Node.js","","","","","","",69c282e547a8220001dc12f1,7375,54151,"m2hycon is a strategic partner for sustainable success in the data-driven world for all companies looking for AI solutions that work in the real world and create real added value. Our expertise covers all mathematical disciplines, be it artificial intelligence, data science, machine learning or optimization. We help our clients from the initial idea through strategic planning to full implementation and beyond. Whether it is a custom solution or an off-the-shelf AI solution, we provide support throughout the process to ensure our clients make the best decision for their individual needs. + +We understand that the success of a project goes far beyond development. That's why we offer comprehensive support that drives AI projects holistically. Whether it's efficiently processing large amounts of data, integrating with existing IT systems, or developing user-friendly interfaces, we make sure that AI projects work on paper and in practice. Our goal is to ensure that every solution works seamlessly and is successful in the long term. + +With m2hycon, our customers have a partner who understands their challenges and works with them to develop customized solutions. Together we turn visions into reality and bring AI projects to a successful conclusion. Let's data science!",2018,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e793ae0c1be6000123e015/picture,"","","","","","","","","" +_fbeta GmbH,_fbeta,Cold,"",44,management consulting,jan@pandaloop.de,http://www.fbeta.de,http://www.linkedin.com/company/fbeta-gmbh,"","",31 Akazienstrasse,Berlin,Berlin,Germany,10823,"31 Akazienstrasse, Berlin, Berlin, Germany, 10823","change, strategie, projektrettung, it, projektmanagement, gesundheitswesen, ehealth, gkv, business consulting & services, digital care models, cloud computing, diga & dipa, health data interoperability, ki-sicherheitsframework, ki-gestützte versorgung, regulatory compliance, ki-gestützte versorgungseffizienz, ki & llm, healthcare transformation, epa integration, fhir standards, health data cloud solutions, digital health, regulatory frameworks, b2b, ai & machine learning, health data exchange platforms, ki-gestützte therapie, ki-gestützte prozessoptimierung, ki-gestützte versorgungsketten, healthcare technology, management consulting services, health data cloud, government, telematikinfrastruktur, health information exchange, digital transformation, health it architecture, ki-gestützte patientenbetreuung, cloud infrastructure, market access, confidential computing, consulting, ki-gestützte versorgungssicherheit, healthcare, patient data management, interoperability, data security, agentic ai, ki-gestützte versorgungstransparenz, ki-gestützte diagnostik, data privacy, health ecosystem, health system innovation, digital health applications, health data security, ki-gestützte datenanalyse, ki-gestützte entscheidungsfindung, ki-gestützte automatisierung, ai in healthcare, services, management consulting, enterprise software, enterprises, computer software, information technology & services, health, wellness & fitness, internet infrastructure, internet, health care, hospital & health care, computer & network security",'+49 30 61076916,"Outlook, Mobile Friendly, Google Tag Manager, WordPress.org, Apache","","","","","","",69c282e547a8220001dc12fa,8731,54161,"_fbeta GmbH is a consulting firm based in Berlin, established in 2014. The company specializes in health, digitalization, and transformation services tailored for the German healthcare sector. With a team of 34-38 employees, it is led by managing directors Karsten Knöppler and Dr. Kai-Uwe Morgenstern. The firm focuses on providing comprehensive support for healthcare innovators, addressing challenges such as demographic changes and workforce shortages through digital solutions and networking. + +The services offered by _fbeta GmbH include consulting on research, digitalization, and transformation processes in healthcare, as well as product development and market integration. They provide support for the DiGA Fast Track process, which accelerates the approval of Digital Health Applications in Germany. The company also engages in regional health initiatives aimed at creating smart health regions. Additionally, _fbeta develops analytical tools like the _fbeta DiGA Analyzer to track market dynamics and inform strategic decisions. The firm fosters a culture of personal responsibility and growth, seeking talent across various experience levels in healthcare and IT.",2014,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66ebb001490b0d0001dc70fd/picture,"","","","","","","","","" +FUSE-AI,FUSE-AI,Cold,"",17,information technology & services,jan@pandaloop.de,http://www.fuse-ai.de,http://www.linkedin.com/company/fuse-ai,"",https://twitter.com/themiszelos,48 Grosser Burstah,Hamburg,Hamburg,Germany,20457,"48 Grosser Burstah, Hamburg, Hamburg, Germany, 20457","kisoftware radiologie, kuenstliche intelligenz diagnose, saas, cloud based, medizinische bilderkennung, ai based software, intelligent image recognition, kuenstliche intelligenz mrt, ai in radiology, prostate segmentation, ki in der radiologie, kuenstliche intelligenz radiologie, kisoftware medizin, kuenstliche intelligenz medizin, intelligente bilderkennung, prostata segmentierung, deep learning in healthcare, classification, kibasierte software, segmentation, radiology, software development, pi-rads v2.1 workflow, plug-in integration, ki-gestützte prostatakrebsdiagnostik, artificial intelligence, medizinische ki-lösungen, volumenbestimmung, dicom-konform, bilddatenanalyse, klinische studien, ki für multiparametrische mrt, prostatakrebsdiagnostik, prostatakrebs, plug-in lösung, prostate.carcinoma.ai, ki in der urogenitalmedizin, voxel-genaue volumenbestimmung, dicom standard, bildverarbeitung, klinische validierung, ki-gestützte diagnostik, healthcare, mri-analyse, ki in der onkologie, ki-gestützte radiologie, pi-rads workflow, medizinische bildgebung, läsionsklassifikation, services, computer systems design and related services, automatisierte volumenmessung, reproduzierbarkeit, automatisierte volumenanalyse, ki-integration in pacs, automatisierte lessionensegmentierung, radiolog:innen unterstützung, mrt-gestützte diagnostik, klinisch validierte ki, objektive zweitmeinung, bilddatenmanagement, ki-software, ki-gestützte klassifikation, bildanalysebeschleunigung, radiologie-software, automatisierte segmentierung, effizienzsteigerung, radiologische diagnostik, automatisierte bildanalyse, deep learning, b2b, ki-gestützte workflow-optimierung, effizienz in der radiologie, ki-basierte tumorklassifikation, government, ki-gestützte bildsegmentierung in der radiologie, medical imaging, zertifizierte ki-produkte, bildsegmentierung, distribution, computer software, information technology & services, health care, health, wellness & fitness, hospital & health care",'+49 40 4503180,"Outlook, Microsoft Office 365, Mobile Friendly, Typekit, Google Font API, Google Maps, Squarespace ECommerce, AI, Azure Linux Virtual Machines, Python, C#, Git, Siemens MRI",1200000,Venture (Round not Specified),1200000,2025-10-01,"","",69c282e547a8220001dc1302,8099,54151,"FUSE-AI is a Hamburg-based eHealth startup specializing in clinically validated AI software for radiology. The company focuses on analyzing MRI images to assist radiologists in diagnosing cancer, particularly prostate cancer. FUSE-AI aims to expand its diagnostic assistance AI to 44 countries worldwide, addressing challenges in the medical field such as increasing patient volumes and staff shortages. + +The company offers AI solutions that integrate as plug-ins into existing PACS or reporting systems. Its first certified product, Prostate.Carcinoma.ai, enhances the PI-RADS v2.1 workflow for prostate cancer analysis, providing benefits like faster analysis times and improved accuracy. FUSE-AI also develops robotic automation for medical workflows, collaborating with Universität der Bundeswehr Hamburg on advanced technologies such as machine learning and computer vision. The company is actively participating in international events and programs to support its growth and market entry, including partnerships with notable institutions like the Cleveland Clinic and Kantonsspital Aarau.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6884ece9f5c33a000179bc56/picture,"","","","","","","","","" +BAYOOMED,BAYOOMED,Cold,"",43,medical devices,jan@pandaloop.de,http://www.bayoomed.com,http://www.linkedin.com/company/bayoomed,"","",5 Europaplatz,Darmstadt,Hesse,Germany,64293,"5 Europaplatz, Darmstadt, Hesse, Germany, 64293","dipa, medical software, medical apps, cybersecurity, digital health, regulatory affairs, risk management, isms, cloudbased solution, iso 13485, ai for medtech, diga, requirements engineering, dtx, iso 27001, medical equipment manufacturing, connectivity, secure connectivity, regulatory documentation, micro consulting, validation & prüfung, health data integration, embedded software, healthcare equipment & supplies, digital health platform, cloud solutions, consulting, services, patient data management, fda-compliant solutions, digital health ecosystem, user experience, medical app development, regulatory compliant software, inverkehrbringung, medical device lifecycle management, life sciences, healthtech, post-market surveillance, research and development in the physical, engineering, and life sciences, b2b, digital biomarkers, digital health solutions, patient-centered design, medical device lifecycle, medical device connectivity, medical devices, patient data privacy, epa-anbindung, clinical evaluation, health data analytics, medical software development, interoperability, regulatory compliance, healthcare platform, medtech, mio-mapping, quality management, gesundheitsid integration, healthtech innovation, ehealth applications, regulatory strategy, pharmaceuticals, mdr-compliant software, data security, bsi-certified cybersecurity, regulatory standards, medical device software, ai, healthcare, health, wellness & fitness, information technology & services, hospital & health care, cloud computing, enterprise software, enterprises, computer software, ux, medical, computer & network security, health care",'+49 615 186180,"Cloudflare DNS, Outlook, Microsoft Office 365, CloudFlare Hosting, reCAPTCHA, Google Dynamic Remarketing, Google AdWords Conversion, Mobile Friendly, WordPress.org, Google Tag Manager, DoubleClick, DoubleClick Conversion, Google AdSense, Shutterstock, Node.js, React Native, Android, IoT, AI, Microsoft PowerPoint, AMP, IBM Tivoli Access Manager, PHP, C#, Magento, Microsoft Hyper-V Server, Microsoft Azure Monitor, AWS Trusted Advisor, Microsoft Active Directory Federation Services, Microsoft Exchange Server 2003, Azure Devops, Office365, Veeam Backup & Replication, PRTG Network Monitor, Juniper Networks SRX-Series Firewalls, AWS SDK for JavaScript, Kiosked, Drupal, Progress Sitefinity, SiteCore, IBM Mainframe, VueJS, TypeScript, SQL, Flutter, Python, Angular, React, FlipHTML5, Oracle XML DB, NTENT, Salesforce CRM Analytics, n8n","","","","","","",69c282e547a8220001dc1306,3829,54171,"BAYOOMED GmbH is a prominent European medical software engineering company based in Darmstadt, Germany. It specializes in developing regulatory-compliant digital healthcare solutions for the pharmaceutical, medtech, and life sciences sectors. As part of BAYOONET AG, BAYOOMED combines medical expertise with software development to create patient-centered applications, impacting hundreds of thousands of patients worldwide. + +The company offers a wide range of services, including software development for mobile and desktop applications, platforms for digital health technologies, and quality and regulatory services. BAYOOMED supports the entire product lifecycle, from consulting and requirements engineering to post-market surveillance. It adheres to various international standards and employs agile development methods, ensuring high-quality solutions tailored to the needs of its clients. With a dedicated team and extensive experience, BAYOOMED is committed to advancing digital health technologies.",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/691714a8b5741f0001a29603/picture,BAYOONET AG (bayoo.net),54a11b2569702d8cccbd1900,"","","","","","","" +Ingenics Digital GmbH,Ingenics Digital,Cold,"",130,"",jan@pandaloop.de,"","",https://www.facebook.com/IngenicsDigitalGmbH/,"",17 Lochhamer Schlag,Graefelfing,Bavaria,Germany,82166,"17 Lochhamer Schlag, Graefelfing, Bavaria, Germany, 82166","",'+49 89 89868150,"Outlook, Microsoft Office 365, Apache, Vimeo, Facebook Custom Audiences, Facebook Login (Connect), WordPress.org, Google Tag Manager, Nginx, Linkedin Marketing Solutions, Mobile Friendly, Facebook Widget, reCAPTCHA, Remote, Node.js, , Docker, React Native, IoT, Android, Basis, Python, Flutter, Xamarin","","","","","","",69c282e547a8220001dc12f3,"","","Ingenics Digital GmbH is a German software engineering company based in Gräfelfing, near Munich. As a subsidiary of the Ingenics Group, it specializes in digitalization solutions, embedded systems, and custom software development. With a workforce of approximately 200 to 293 employees, the company generates revenue around $16.1 million and has over 35 years of experience in software and technological consulting. + +The company offers a range of services, including custom software solutions that connect sensors to the cloud, consulting for embedded systems, and technological consulting for digital transformation. Ingenics Digital utilizes technologies such as TYPO3, PostgreSQL, Docker, and Red Hat to create efficient and innovative products. It collaborates with Infineon Technologies as a design partner, focusing on embedded systems projects. Ingenics Digital supports various industries, helping clients enhance their operational and digital transformation efforts.",1988,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/681873409ef5c10001b10b3d/picture,Ingenics AG (ingenics.com),61e03125bdacda00dab8267d,"","","","","","","" +Enari GmbH,Enari,Cold,"",13,information technology & services,jan@pandaloop.de,http://www.enari.com,http://www.linkedin.com/company/enarigmbh,"","",28 Dieselstrasse,Garching,Bavaria,Germany,85748,"28 Dieselstrasse, Garching, Bavaria, Germany, 85748","motion profiling, medtech, edge computing, ias, human in the loop, tactile internet, iot, cloud, sports, 5g, surftech, azure, machine learning, aws, data frameworks, embedded sensortech, data analysis, lightweight structures, data science, it services & it consulting, data pipeline automation, distribution, data analytics, automotive, data security, ai deployment, data mesh infrastructure, services, data modernization, data assessment, data engineering, data roi analysis, data products in data mesh, data project feasibility, data automation, hybrid cloud solutions, data transformation, data management, model retraining cycles, construction & real estate, data infrastructure, artificial intelligence, business intelligence, transportation & logistics, bi dashboards, data consulting, embedded ai solutions, data warehouse consulting, etl processes, manufacturing, workflow automation, b2b, automation, mlops, compliance, energy & utilities, devops, data platform, data governance, big data, scalable data solutions, banking & finance, consumer goods & retail, data infrastructure in hybrid environments, data visualization, data-driven decision making, data quality, cloud solutions, data strategy, data integration, data architecture, data pipelines, consulting, retail, ai model deployment, predictive analytics, management consulting services, cloud infrastructure, data roi framework, finance, consumer_products_retail, transportation_logistics, energy_utilities, construction_real_estate, information technology & services, computer & network security, analytics, mechanical or industrial engineering, enterprise software, enterprises, computer software, cloud computing, internet infrastructure, internet, financial services",'+49 89 37457632,"Outlook, Microsoft Office 365, Atlassian Cloud, Slack, Active Campaign, DoubleClick, Mobile Friendly, Typekit, Nginx, Google Font API, DoubleClick Conversion, reCAPTCHA, Google Tag Manager, WordPress.org, Google Dynamic Remarketing","","","","","","",69c282e547a8220001dc12f6,7375,54161,Enari develops motion profiling and anticipation solutions for multiple industries like sports and medtech.,2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f782ea6ce80100013c5799/picture,"","","","","","","","","" +REMATIQ,REMATIQ,Cold,"",17,information technology & services,jan@pandaloop.de,http://www.rematiq.com,http://www.linkedin.com/company/rematiq,"","",8 Diedenhofer Strasse,Berlin,Berlin,Germany,10405,"8 Diedenhofer Strasse, Berlin, Berlin, Germany, 10405","software development, information technology & services",'+49 491 75980,"Gmail, Outlook, Google Apps, Microsoft Office 365, Amazon AWS, Slack, Google Tag Manager, Mobile Friendly, Linkedin Marketing Solutions",5940000,Seed,5940000,2025-04-01,"","",69c282e547a8220001dc12f8,"","","REMATIQ is a Berlin-based platform founded in 2023 that leverages AI to automate product compliance for medical technology (MedTech) companies. The company was established by David Boutellier and Florian Scherer, who recognized the challenges posed by fragmented regulatory requirements. REMATIQ aims to streamline development processes, significantly reducing documentation efforts by up to 90% and allowing engineers to focus on innovation. + +The platform analyzes global regulatory documents, such as U.S. FDA and EU MDR guidelines, and translates them into structured, actionable requirements. This integration helps companies enhance their development workflows, reduce non-compliance risks, and accelerate the delivery of medical solutions like wound care devices and CT scanners. REMATIQ targets the life sciences and manufacturing sectors, positioning compliance as a strategic advantage for faster global expansion. The company is backed by a €5.4 million Seed round and is focused on enhancing its AI capabilities and expanding its team.",2023,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69a940dd87af9900016a13d2/picture,"","","","","","","","","" +synvert Datadrivers,synvert Datadrivers,Cold,"",40,information technology & services,jan@pandaloop.de,http://www.datadrivers.de,http://www.linkedin.com/company/datadrivers-gmbh,"","",8 Teilfeld,Hamburg,Hamburg,Germany,20459,"8 Teilfeld, Hamburg, Hamburg, Germany, 20459","data driven infrastructure, modern business intelligence, technologieberatung, big data, entwicklung, smart data, business intelligence, devops, it strategie, elasticsearch, datenbanken, data warehousing, hadoop, it services & it consulting, b2b, cloud native apps, acceleratehr, retail, data architecture, industrials, health & life science, ai & bi, consulting, data architecture & modeling, mlops, digital transformation, devops & operations, dwinsurance, cloud accelerators, cloud platforms, data quality, data fabric, data lakehouse, machine learning, multi-cloud, cloud enablement, cloud security & compliance, data mesh, data analytics, mlops accelerator, consumer goods & retail, banking, ai &ml, data strategy, ecosystem partners, cloud security, data modeling, ai implementation, accelerators, cloud data management, energy & resources, data governance, real-time data ingestion, ai gateway, data warehouse, computer systems design and related services, real-time data, data engineering, data lake, data discovery & visualization, ai use cases, data platforms, services, insurance, cloud data, genai, snowflake data mesh accelerator, sap buisness datacloud, project management, cloud-native development, sap hana, data & ai projects, data security, cloud strategy, healthcare, finance, consumer_products_retail, energy_utilities, enterprise software, enterprises, computer software, information technology & services, analytics, artificial intelligence, financial services, venture capital, venture capital & private equity, productivity, computer & network security, health care, health, wellness & fitness, hospital & health care",'+49 40 36090571,"Outlook, Mimecast, Microsoft Office 365, Salesforce, Hubspot, Slack, Nginx, Mobile Friendly, WordPress.org, Google Tag Manager, YouTube, Google Font API, Google Maps (Non Paid Users), Google Maps, Apache, Node.js, Xamarin, Android, React Native, Remote, AI, Micro, Qlik Sense, Data Analytics, Ab Initio, Snowflake","","","","","","",69c282e547a8220001dc12fd,7375,54151,"🌐 Willkommen bei Synvert Datadrivers! + +Über uns: Wir sind ein wachsendes Consulting-Unternehmen aus Hamburg, das sich auf Business Intelligence, Big Data, datengetriebene Infrastrukturen, Data Analytics und Technologieberatung spezialisiert hat. Unser 360°-Service umfasst die gesamte Bandbreite von der Konzeption über die Umsetzung bis hin zum Service Delivery-Prozess. Darüber hinaus bieten wir nichtfunktionale Disziplinen wie Projektmanagement und Ressourcen- sowie Kapazitätsmanagement an. + +Als Teil der Synvert-Gruppe haben wir Zugang zu einem umfangreichen Netzwerk von über 450 qualifizierten Beratern, die erfolgreich über 1000 Projekte für mehr als 250 zufriedene Kunden in Europa durchgeführt haben. Unsere Partnerschaft ermöglicht es uns, ein breites Spektrum an Fähigkeiten und Technologien zu nutzen, um maßgeschneiderte Lösungen für die einzigartigen Bedürfnisse unserer Kunden bereitzustellen. + +Unsere Mission: Bei Synvert Datadrivers stehen Qualität, Innovation und Kundenzufriedenheit im Mittelpunkt unserer Mission. Wir streben danach, branchenführende Beratungs- und Technologielösungen anzubieten, die unseren Kunden einen nachhaltigen Wettbewerbsvorteil verschaffen. + +Wie können wir helfen: Unsere erfahrenen Mitarbeiter verfügen über langjährige Expertise in verschiedenen Branchen, darunter E-Commerce, Transport, Verlagswesen, Pharmazie, Online-/Mobile-Marketing, Adnetworks und Direktmarketing. Wir setzen auf maßgeschneiderte Lösungen, um unseren Kunden dabei zu helfen, ihre Geschäftsziele effektiv zu erreichen. + +📞 Kontaktieren Sie uns: Haben Sie Fragen oder möchten Sie mehr über unsere Dienstleistungen erfahren? Zögern Sie nicht, uns zu kontaktieren! Sie erreichen uns unter: + +Email: contact@datadrivers.de + +Telefon: +49 40 360 905 71 + +Adresse: Mittelweg 161 · 20148 Hamburg + +Wir freuen uns darauf, mit Ihnen zusammenzuarbeiten und Ihr Unternehmen voranzubringen.",2015,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/683c3e6d2479c1000134152d/picture,"","","","","","","","","" +Ebenbuild,Ebenbuild,Cold,"",27,information technology & services,jan@pandaloop.de,http://www.ebenbuild.com,http://www.linkedin.com/company/ebenbuild,"",https://twitter.com/ebenbuild,"",Munich,Bavaria,Germany,"","Munich, Bavaria, Germany","clinical decision support, simulation, respiratory, drug delivery, in silico trials, digital twin, software development, biomechanical modeling, patient-specific modeling, biotechnology, healthcare innovation, medical devices, ventilator-induced lung damage prevention, lung physiology, inhalation device optimization, medical ai, personalized health intelligence, lung disease progression tracking, services, pulmonary drug delivery, personalized medicine, ai/ml, digital lung twins, biomechanics, research and development in the physical, engineering, and life sciences, high-performance computing, healthcare analytics, predictive analytics, regulatory science, ai in intensive care, ai-driven diagnostics, lung modeling, medical research, ards modeling, personalized respiratory treatment, predictive modeling, respiratory therapy optimization, pharmaceuticals, biomedical engineering, digital twin technology, medical device simulation, b2b, respiratory diseases, biomechanical lung assessment, healthcare technology, drug delivery simulation, risk assessment, ai-powered in silico trials, in silico drug trials, healthcare, information technology & services, hospital & health care, enterprise software, enterprises, computer software, medical, health care, health, wellness & fitness",'+49 89 21525477,"Outlook, Slack, Mobile Friendly, Nginx, Bootstrap Framework, Remote, Snowflake, TypeScript, React, Next.js",6210000,Other,2560000,2025-07-01,6400000,"",69c282e547a8220001dc1300,8731,54171,"Ebenbuild is a digital health technology company based in Munich, Germany, founded in 2019. The company specializes in developing digital twin platforms that create personalized simulation models of the lungs. By utilizing physics-based simulations, artificial intelligence, and data science, Ebenbuild supports clinical decision-making, optimizes drug delivery, and advances treatments for respiratory diseases. + +The core offering of Ebenbuild is its digital twin platform, which generates patient-specific computational models from sources like CT scans. This platform aids in clinical decision support by providing personalized predictions for mechanical ventilation in conditions such as acute respiratory distress syndrome (ARDS). It also facilitates drug development through in silico trials, enhancing the delivery of inhaled therapies and tracking disease progression. Ebenbuild collaborates with various academic and medical institutions to further its mission of improving patient outcomes through predictive, personalized medicine.",2019,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69a50bc9ac4bfb0001f6aa6d/picture,"","","","","","","","","" +TUM Chair of AI in Healthcare and Medicine,TUM Chair of AI in Healthcare and Medicine,Cold,"",20,higher education,jan@pandaloop.de,http://www.aim-lab.io,http://www.linkedin.com/company/tum-aim-lab,"","",25 Einsteinstrasse,Munich,Bavaria,Germany,81675,"25 Einsteinstrasse, Munich, Bavaria, Germany, 81675","computer vision, robust ai models, biomarker discovery, brain development ai, ai for traumatic brain injury, healthcare analytics, ai for dementia diagnosis, medical data privacy, medical and diagnostic laboratories, ai for mri and ct, generative models in medical imaging, cardiovascular ai, clinical workflow integration, biomedical data analysis, machine learning, medical image analysis, federated learning, medical diagnostics, ai in healthcare, digital health, personalized medicine, privacy-preserving ai, disease prediction, diffusion models in mri, interpretable ai, multimodal data integration, deep learning, neuroradiology, neurodevelopment imaging, inverse problems in imaging, ai for stroke detection, medical imaging, multi-modal cardiac mri, cancer diagnostics ai, healthcare, artificial intelligence, information technology & services, medical & diagnostic laboratories, medical practice, hospital & health care, health, wellness & fitness, health care","","Cloudflare DNS, CloudFlare Hosting, Varnish, Mobile Friendly","","","","","","",69c282e547a8220001dc1307,8099,62151,"The TUM Chair of AI in Healthcare and Medicine at the Technical University of Munich focuses on advancing algorithms and methods for analyzing biomedical data through data science, artificial intelligence (AI), and machine learning (ML). Its mission is to conduct foundational research that translates into clinical applications, ultimately enhancing medical care and benefiting patients. + +Key research areas include the early detection, prediction, and diagnosis of diseases, as well as personalized interventions and therapies. The chair also explores the identification of new biomarkers and therapeutic targets, emphasizing secure and interpretable AI approaches. A significant focus is placed on medical imaging and radiology, particularly in neuroradiology and the detection of cardiovascular diseases and cancer. + +The team consists of experts from various fields, including computer science, engineering, and medicine, who collaborate to drive innovative AI/ML solutions for healthcare. The chair actively engages with the community through platforms like LinkedIn and Bluesky.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68be69694621dd00013736fa/picture,"","","","","","","","","" +INWT Statistics GmbH,INWT Statistics,Cold,"",13,management consulting,jan@pandaloop.de,http://www.inwt-statistics.de,http://www.linkedin.com/company/inwt-statistics,"",https://twitter.com/inwt_statistics,8 Hauptstrasse,Berlin,Berlin,Germany,10827,"8 Hauptstrasse, Berlin, Berlin, Germany, 10827","machine learning, predictive analytics, data science, data analysis, r, statistical analysis, consulting, data analytics, training, statistical modeling, python, data amp analytics, business consulting & services, ml prototyping, data visualization, etl, data engineering, cloud computing, kubernetes, data security, docker, data science beratung, model compression, data products, uncertainty quantification, cloud services, data lakes, model reproducibility, information technology & services, open source llms, multi-gpu finetuning, monitoring, apis, legacy code refactoring, predictive maintenance, computer systems design and related services, natural language processing, b2b, tabular data prediction, model speed optimization, software development, fraud detection, devops, foundation models, dashboards, aws, large language models, mvp development, relational databases, data warehouses, explainable ai, services, mlops, azure, artificial intelligence, enterprise software, enterprises, computer software, management consulting, computer & network security","","Route 53, Gmail, Google Apps, Amazon AWS, Slack, Mobile Friendly, Remote, Data Analytics","","","","","","",69c282e547a8220001dc12f0,7375,54151,"INWT Statistics is a fast growing data and analytics company. Since 2011 we have been developing custom solutions that help our clients get the most from their valuable data. As one of the first companies specializing in data science, data analytics consulting, and predictive analytics, we are pioneers and committed practitioners: Our mission is to make the world simpler and more understandable for you. INWT Statistics consists of a diverse and passionate team of highly specialized professionals. We combine extensive, hands-on expertise in statistics with the latest scientific methods in informatics, psychology, physics, mathematics, and economics. Honesty, integrity, and adherence to the highest standards are the hallmarks of how we work and how we serve our clients. In numerical terms, our 15 employees have – combined – 85 years of experience, 162 successfully completed projects, 6 PhDs, expertise in 10 scientific fields, and some 190,000 lines of code under their belts.",2011,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/672dd90569e8d90001142445/picture,"","","","","","","","","" +infologistix GmbH,infologistix,Cold,"",20,information technology & services,jan@pandaloop.de,http://www.infologistix.de,http://www.linkedin.com/company/infologistix-gmbh,"","",4 Parkring,Garching,Bavaria,Germany,85748,"4 Parkring, Garching, Bavaria, Germany, 85748","data governance, business intelligence, data warehouse, etl, ki, data system automation, open source kubernetes operators, data lake architecture, data performance optimization, informatica, data quality management, pseudonymized test data generation, kubernetes security, data vault, data lake, devops, data integration, market price forecasting strommarkt, data profiling, hybrid cloud data integration, automated data testing, multi-cluster architecture, data platform development, data science, financial data analytics, energy and utilities, data quality, data system development, deep learning, hybrid cloud, services, ibm, natural language processing, data impact analysis, data analytics, bi-infrastruktur, regulatory compliance data systems, etl/elt, regulatory compliance, b2b, information technology and services, machine learning, data modernization, data lineage, data security, data monitoring, ai, government, suse, consulting, open source foundation, computer systems design and related services, financial services, cloud native data platforms, data platform for financial industry, data lineage tracking, data quality profiling in cloud, data management, data pipeline automation, cloud security, banking, cloud native architecture, microsoft, cloud data warehousing, insurance data platform, data migration, microservices architecture, containerisierung, data automation, kubernetes, open source software, banking data warehouse, insurance, confluent, kritis-security, nlp web crawlers for knowledge generation, secure by design, cloud engineering, advanced analytics, data optimization, data engineering, finance, energy & utilities, analytics, information technology & services, enterprise software, enterprises, computer software, artificial intelligence, computer & network security",'+49 160 6068092,"Outlook, Microsoft Office 365, Nginx, WordPress.org, Mobile Friendly, Data Analytics, Remote","","","","","","",69c282e547a8220001dc12f9,7375,54151,"infologistix GmbH is your partner for Data- and Information Management. +We service and support IT operations and IT processes on the subjects +• data management and handling of data (Data Governance, Data Quality) +• information needs and information seeking (data modeling, data processing, ETL, Analytics) +• Information Management (DQM Data Quality Management, Metadata Management, Reporting) +• Definition and operation of organizational structures for BI (BICC, Chief Data Officer CDO) +We stand for holistic and sustainable information solutions, from small and medium-sized businesses to large corporations. Individual and optimal advice of experience and expertise - that sets us apart.",2013,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6715fc3397bc8b0001a2c6e7/picture,"","","","","","","","","" +xbird GmbH,xbird,Cold,"",50,information technology & services,jan@pandaloop.de,http://www.xbird.io,http://www.linkedin.com/company/xbird,https://www.facebook.com/xbirdhealth/,https://twitter.com/xbirdhealth,36 Lobeckstrasse,Berlin,Berlin,Germany,10969,"36 Lobeckstrasse, Berlin, Berlin, Germany, 10969","data analysis healthcare prevention wearables mobile data, wearables, healthcare, artificial intelligence, data analysis, digital health, mobile data, prevention, mobile, big data, information technology, deep information technology, enterprise software, software, it services & it consulting, diabetes management ai, digital health solutions, real-time health event prediction, personalized therapy support, behavior analysis, sensor data processing, healthcare technology, real-time health monitoring, ai-powered healthcare, ai for chronic disease support, data security, behavioral pattern analysis in diabetes, personalized health notifications, remote patient monitoring, certified medical infrastructure, medical device certification, sensor data from smartphones and wearables, machine learning models, machine learning, medical-grade behavior recognition, d2c, offices of all other health practitioners, services, sensor data analytics, hypoglycemia prediction, patient data protection, medical ai, mobile app integration, behavior-based therapy adjustment, patient activity monitoring, b2c, behavior pattern detection, health event detection, behavior recognition, medical devices, deep learning, wearable device data, consumer goods, consumers, health care, health, wellness & fitness, hospital & health care, information technology & services, data analytics, internet, enterprises, computer software, b2b, computer & network security",'+49 30 54905335,"Gmail, Google Apps, Amazon AWS, Google Cloud Hosting, Google Analytics, Mobile Friendly, Google Tag Manager, Google Font API, Docker, IoT, AI","",Merger / Acquisition,0,2022-01-01,2000000,"",69c282e547a8220001dc12fb,8731,62139,"xbird GmbH is a Berlin-based medical AI company founded in 2015. The company specializes in developing software solutions that predict health risks, personalize therapies, and support diabetes management. By utilizing data from smartphones, wearables, and medical devices, xbird aims to enhance health outcomes for individuals, particularly those with Type 2 diabetes. + +The company employs proprietary machine learning algorithms to analyze real-time data, creating individualized behavioral profiles and predicting health risks. Their platform offers holistic diabetes care by integrating various health metrics, ensuring high accuracy and medical-grade certification. xbird's mission is to provide accessible digital solutions for chronic conditions, contributing to a vision of a healthier future. Following its acquisition by Glooko, xbird's team has integrated into Glooko's ecosystem, which serves over 3 million users across 29 countries.",2015,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e76d9124bdfd0001639a27/picture,Glooko (glooko.com),54a11da369702da4257c1901,"","","","","","","" +4K ANALYTICS,4K ANALYTICS,Cold,"",37,information technology & services,jan@pandaloop.de,http://www.4k-analytics.de,http://www.linkedin.com/company/4k-analytics,"","",6A Puschstrasse,Leipzig,Saxony,Germany,04103,"6A Puschstrasse, Leipzig, Saxony, Germany, 04103","softwareentwicklung, it, bi, healthcare, software, krankenkassen, analytik, it services, analysesoftware, kuenstliche intelligenz, advanced analytics, ki, business intelligence, gesundheitswesen, digitalisierung, morbirsa grouper, krankenhaus, it services & it consulting, deep learning, datenvisualisierungstools, dateninfrastruktur, r, ki-gestützte risikoanalyse, services, data lakes, datenmodelle, datenvisualisierung, echtzeit-bi-lösung, data security, apis, data analytics, machine learning, ki-entwicklung, powerbi, tableau, healthcare technology, qlik sense, datenmodellierung, cloud computing, entscheidungsunterstützung, operational bi, ki-algorithmen, zertifizierung ki-modelle, healthtech, datenanalyse-frameworks, information technology, data science, datenmanagement, b2b, ki-basierte entscheidungsfindung, it-infrastrukturen, etl-prozesse, automatisierung, gesundheitsdatenanalyse, sql, it-consulting, data pipelines, bi-cockpits, data warehousing, ki-gestützte prognosen, ki-gestützte prozessoptimierung, data governance, data engineering, datenverarbeitung, data scientist, datenstrategie, automatisierte berichte, echtzeit-analysen, trendanalyse, ki-gestützte automatisierung, consulting, bi-software, data architect, entscheidungssysteme, datenplattformen, projektmanagement, python, ki-plattform gesundheitswesen, gesundheitsdaten, datenanalytik, zertifizierung von ki-modellen, computer systems design and related services, java, datenstrukturen, dashboards, digital health, datenintegration, ki-as-a-service, ki-modelle, ki-plattform, ki-gestützte entscheidungsmodelle, health care, health, wellness & fitness, hospital & health care, information technology & services, analytics, artificial intelligence, computer & network security, enterprise software, enterprises, computer software",'+49 341 9919850,"Outlook, Mobile Friendly, WordPress.org, Apache, Databricks, Looker, Snowflake, Microsoft Excel","","","","","","",69c282e547a8220001dc1301,8731,54151,"4K Analytics GmbH is a software company based in Leipzig, Germany. The company focuses on developing, marketing, licensing, and distributing process standards and software, along with providing consulting services. It operates primarily in the field of software development, particularly in business intelligence and analytics. + +Led by Michael Fiedler, who has extensive experience in the industry, 4K Analytics emphasizes custom software solutions tailored to analytics and business intelligence needs. The company is registered under Leipzig HRB 34389 and is associated with INNO3.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67065630df11760001c4a246/picture,"","","","","","","","","" +CIB Group,CIB Group,Cold,"",92,information technology & services,jan@pandaloop.de,http://www.cib.de,http://www.linkedin.com/company/cib,https://facebook.com/pages/CIB/125365270825269,https://twitter.com/CIBsoftwareGmbH,6A Elektrastrasse,Munich,Bavaria,Germany,81925,"6A Elektrastrasse, Munich, Bavaria, Germany, 81925","document management systems, pdf brewer, it consulting, module, custom computer software development, ai machine learning, it, compression, document lifecycle management solutions, mobile applications, financial industry solutions, document lifecycle management, deep learning, libreoffice, ai, web development, cib, bpm, digitalization, it software development, bespoke software development, it engineering, mvp development, efectivity, document output management, ai amp machine learning, it services & it consulting, accessibility technology, ai-powered data extraction, automation, process automation, b2b, dark processing automation, ai for financial document processing, information technology and services, computer systems design and related services, digital transformation tools, automatisierung, anonymization, modular software solutions, entity recognition, ai algorithms, b2c, dokumentenmanagement, automatisierte kommunikation, business process automation, industrial automation, business process management, federated learning for data privacy, standard software modules, ai-driven process optimization, classification, künstliche intelligenz, software development, public administration, services, barrier-free pdf creation, digital communication automation, ki-gestützte digitalisierung, modulare software, artificial intelligence, semantic search, ai in public administration, consulting, mobile document scanning, cloud-based software, digitalisierung, document management software, financial services, prozessautomatisierung, ai-supported digitalization, government, natural language processing, softwarelösungen, regulatory compliance automation, ai-based document classification, document processing platform, cloud services, integrable software solutions, regulatory compliance, process optimization, ai models training, ocr data extraction, semantic search with llms, finance, legal, information technology & services, management consulting, mobile apps, mechanical or industrial engineering, cloud computing, enterprise software, enterprises, computer software",'+34 828 12 88 20,"Outlook, Amazon AWS, Google Analytics, WordPress.org, Shutterstock, OpenSSL, DoubleClick, DoubleClick Conversion, Apache, Mobile Friendly, Cedexis Radar, Google AdWords Conversion, Adobe Media Optimizer, Google Dynamic Remarketing, Vimeo, Google Tag Manager, Google AdSense, Remote","","","","",5702000,"",69c28396f1a618001924bc89,7375,54151,"CIB Group is a technology and software engineering company based in Munich, Germany, founded in 1989. The company specializes in document lifecycle management, document output management, digitalization, process automation, and AI-supported solutions. With over 150 experts across 12 locations in Europe, CIB Group operates through several subsidiaries, including CIB software GmbH and CIB consulting GmbH, providing customer-centric technology services. + +CIB offers IT consultancy, software engineering, and advanced technology services focused on AI-supported digitalization for efficient document management. Their notable products include CIB Kammerportal, a digital self-service portal for German bar associations that streamlines administrative tasks. The company serves various sectors, including finance, insurance, and public administration, delivering tailored automation solutions to meet their clients' needs. CIB Group emphasizes flexible work models and supports open-source initiatives, contributing to the technology community.",1989,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/696335085e6cf600014258fb/picture,"","","","","","","","","" +Peec AI,Peec AI,Cold,"",57,information technology & services,jan@pandaloop.de,http://www.peec.ai,http://www.linkedin.com/company/peec-ai,"","","",Berlin,Berlin,Germany,"","Berlin, Berlin, Germany","generative engine optimization, generative engine optimization & geo, software development, ai search for agencies, ai search platform for saas, data analytics, ai search growth tracking, ai search automation, ai search for marketing agencies, ai search competitor analysis, ai search reporting, ai search for small businesses, ai search for content marketing, sentiment analysis, ai search for digital marketing, ai search platform for brands, ai search analytics, digital transformation, digital marketing, ai search model tracking, ai search citations, ai search content gaps, ai-driven discoverability, ai search platform for brand management, ai search trend analysis, ai search metrics, ai search visibility, ai search ranking, ai search strategy, ai search for source citations, ai search platform for marketing teams, b2b, ai search data visualization, ai search data analysis, ai search growth, ai search for enterprises, ai search prompt analysis, ai search platform for pr, ai search for brands, marketing and advertising, ai search for brand visibility, ai search dashboards, search trend analysis, brand sentiment analysis, ai search for saas, ai search for e-commerce brands, ai search platform for digital marketing, ai search platform for seo, ai search api, ai search platform, services, ai search sentiment, competitor benchmarking, ai search for seo optimization, geo, ai search for marketing, brand mentions, ai search platform for content creators, ai search for online brands, brand visibility, ai search performance tracking, ai search for pr, ai search for saas companies, ai search insights dashboard, ai search data export, content optimization, ai search analytics tools, ai search reporting tools, ai search platform integration, ai search platform for e-commerce, ai search content strategy, ai search for trend analysis, ai search insights, ai search platform for agencies, ai search source tracking, search metrics, ai search platforms, e-commerce, ai search competitor benchmarking, ai search performance, ai search trend monitoring, ai search visibility tracking, management consulting services, ai search source citation analysis, source citations, ai search integration, ai search marketing tools, ai search for brand management, ai search for content creators, ai search ranking improvement, ai search tools, ai search source identification, information technology, ai search for seo, ai search metrics tracking, ai search for competitor analysis, ai search for content optimization, ai search platform for marketing, ai search for startups, search performance metrics, ai search monitoring, ai search for pr strategies, ai search mentions, ai search optimization, ai search for e-commerce, marketing teams, brand performance, track performance, improve visibility, ai language models, benchmark competitors, analyze trends, visibility scores, source identification, competitive edge, marketing outreach, analyze ai platforms, seo optimization, data-driven decisions, llm optimization, performance tracking, industry insights, visibility trends, multi-platform comparison, external source ranking, brand visibility analysis, progress tracking, performance measurements, alert notifications, temporal analysis, ai search results, visibility benchmarking, insight generation, marketing intelligence, client reporting, user-friendly interface, pricing transparency, team collaboration, agency support, prompt analysis, goal setting, targeted advertising, real-time analytics, user engagement, strategic insights, market leadership, ai-driven decisions, client services, cross-platform performance, beta testing, information technology & services, marketing & advertising, consumer internet, consumers, internet","","Cloudflare DNS, Gmail, Google Apps, Microsoft Office 365, Amazon AWS, Hubspot, Mobile Friendly, Google Tag Manager, YouTube, Apollo, Clearbit, n8n, Zapier, TypeScript, React, Tailwind, CSS, HTML Pro, Firebase, Figma, Google Cloud Platform, Google Cloud Functions, Google Cloud Tasks, Tor, PostgreSQL, Elasticsearch, RabbitMQ, Stripe, Looker, Sequence Monitor SPF, Linkedin Marketing Solutions, Box, Google AlloyDB for PostgreSQL, Google Cloud BigQuery, Hugging Face, IBM ILOG CPLEX Optimization Studio, NumPy, Open Neural Network Exchange (ONNX), pandas, Python, PyTorch, SQL, TensorFlow, Claude, Gemini, Lexity, Meta Llama 3, OpenAI, REST",25520000,Series A,19800000,2025-11-01,"","",69c28396f1a618001924bc8c,7375,54161,"Peec AI is an AI-powered analytics platform based in Berlin, Germany, founded in 2025. The company specializes in helping marketing teams track and optimize brand visibility across AI search engines. Since its launch in February 2025, Peec AI has onboarded over 1,300 brands and agencies, achieving more than $4 million in annual recurring revenue and growing by over 300 customers each month. + +The platform offers services such as Brand Visibility Tracking, Competitive Benchmarking, and Source Tracking, all designed to enhance brand performance in AI-driven search environments. It supports monitoring across multiple AI platforms, including ChatGPT and Gemini, and features a user-friendly interface with flexible timeline analysis. Peec AI has raised $29 million in capital and ranks in the top 1% of startups by growth metrics, serving a diverse clientele that includes notable brands like Chanel and TUI.",2025,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69aca1b68363870001062612/picture,"","","","","","","","","" +MONDAY.ROCKS GmbH,MONDAY.ROCKS,Cold,"",23,information technology & services,jan@pandaloop.de,http://www.monday.rocks,http://www.linkedin.com/company/monday-rocks,"","",3 Kesselstrasse,Duesseldorf,Nordrhein-Westfalen,Germany,40221,"3 Kesselstrasse, Duesseldorf, Nordrhein-Westfalen, Germany, 40221","high performance teams, hybride teams, transformation, teampotenzial, teamfuehrung, change management, agile teams, fuehrungskraefteentwicklung, teamarchitektur, teamproduktivitaet, digitale team optimierung, teameffektivitaet, teamentwicklung, teamaufstellung, sinnentschluesselung, employee engagement, veraenderungsmanagement, werteorientierte fuehrung, high performing teams, remote teams, teambildung, teamanalyse, software development, ki-gestützte konfliktprävention, team-analysen, ki-chat, führungskräfteentwicklung, deutsche teamdatenbank, information technology and services, ki-assistent, veränderungsprozesse, teamoptimierung, datengestützte teamoptimierung, wissenschaftliche teamanalysen, leadership coaching, digitales change-tool, mitarbeitermotivation, leadership tools, benchmark-vergleich, management consulting services, organisationsentwicklung, change-management, benchmarking, teamdatenbank, ki-basierte risikoerkennung, leadership development, transformationsbegleitung, datenbasierte empfehlungen, hr-technologie, teampotenzialanalyse, human resources, personalentwicklung, remote team management, services, consulting, ki-gestützte change-begleitung, wissenschaftliche teamforschung, kontinuierliches team-monitoring, b2b, ki-assistenz, teampulse checks, agile führung, datenanalyse, ki-gestützte teamführung, risikoerkennung, echtzeit-feedback, management consulting, ki-gestützte leadership-entwicklung, führungskräfte-coaching, change-burnout, saas, information technology & services, professional training & coaching, computer software",'+49 211 15843325,"MailJet, Outlook, Microsoft Office 365, Dropbox, Hubspot, Active Campaign, Hotjar, DoubleClick, Linkedin Marketing Solutions, Mobile Friendly, Nginx, WordPress.org, DoubleClick Conversion, Google Analytics, Google Tag Manager, Google Dynamic Remarketing, AI, Node.js, Microsoft PowerPoint",1100000,Angel,1100000,2021-04-01,"","",69c28396f1a618001924bc8b,8742,54161,"MONDAY.ROCKS GmbH is a software company based in Düsseldorf, Germany, founded in 2018. The company specializes in an AI-powered SaaS platform designed for team leadership, analysis, and change management. It utilizes Germany's largest team database, which includes data from over 5,000 teams, to provide insights and support for organizations undergoing transformations. + +The main product, MONDAY.ROCKS, is an AI assistant app that offers evidence-based recommendations for improving team collaboration and managing change. Key features include benchmarking against a large dataset, AI-supported insights for managers, and personal coaching from certified consultants. The platform is designed to enhance personnel development, facilitate M&A team integration, and promote high-performance teamwork. MONDAY.ROCKS has been successfully implemented across various industries, including energy, banking, and health insurance, helping organizations unlock their teams' potential and drive growth.",2018,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6754c807e2cd6c000122b3b1/picture,"","","","","","","","","" +hiqs GmbH,hiqs,Cold,"",30,information technology & services,jan@pandaloop.de,http://www.hiqs.de,http://www.linkedin.com/company/hiqs-gmbh,"","","",Heilbronn,Baden-Wuerttemberg,Germany,"","Heilbronn, Baden-Wuerttemberg, Germany","blockchain, ki, microservices, softwareentwicklung, anwendungsentwicklung & softwareentwicklung, anwendungsentwicklung, cloud, cicd, workflow automation, d2c, cybersecurity, predictive analytics, consulting, devops, e-commerce, services, retail, cloud solutions, ai for contract analysis, information technology and services, ai in finance, ai-driven automation, government, artificial intelligence, ai for customer service, user experience, ai for price estimation, it-consulting, enterprise software, open-source technologies, ai in manufacturing, ai for product documentation, b2b, ai in business, computer systems design and related services, cloud computing, machine learning, software development, industry-specific ai, ai solutions, manufacturing, software modernization, ai for document analysis, automatisierung, ai for knowledge management, business software, ai for business processes, process automation, software engineering, custom software, financial services, natural language processing, künstliche intelligenz, custom software development, ai in govtech, data security, workflow optimization, business process optimization, digital transformation, ai use cases, ai, finance, information technology & services, enterprises, computer software, consumer internet, consumers, internet, ux, mechanical or industrial engineering, computer & network security",'+49 7131 2041060,"Outlook, Microsoft Office 365, Apache, Mobile Friendly, WordPress.org, React Native, Android, Remote, VueJS, Angular, go+, AWS SDK for JavaScript, SQL","","","","","","",69c28396f1a618001924bc90,7375,54151,"Unsere Motivation: Erstklassige Software mit höchstmöglicher Qualität und Nachhaltigkeit zu schaffen. +Diese Leidenschaft transportieren die IT-Experten der hiqs zu unseren Kunden. Deshalb vertrauen uns deutschlandweit Kunden bei der Umsetzung von innovativen IT-Projekten.",2014,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69a4f7956297ad00012799f9/picture,"","","","","","","","","" +Plato,Plato,Cold,"",29,information technology & services,jan@pandaloop.de,http://www.platoapp.ai,http://www.linkedin.com/company/platoapp,"","",13 Rosenthaler Strasse,Berlin,Berlin,Germany,10119,"13 Rosenthaler Strasse, Berlin, Berlin, Germany, 10119","software development, customer retention, business intelligence, ki-analysen, cross-selling, vertriebsdatenmanagement, automatisierte angebotserstellung, sales intelligence, ki-basierte empfehlungen, proaktiver vertrieb, services, vertriebs-performance, kundenmanagement, customer engagement, kundenbindung, vertriebsoptimierung, vertriebssoftware, vertriebsanalyse, transportation & logistics, vertriebsworkflow, umsatzsteigerung, ki-software, automatisierte angebote, kunden- und produktdatenmanagement, kundenentwicklung, workflow automation, vertriebsstrategie, automatisierung, erp-integration, industrial machinery and equipment merchant wholesalers, up-selling, prozessautomatisierung, vertriebsmanagement, vertriebsberichte, datengetriebene empfehlungen, predictive analytics, distribution, information technology, b2b vertrieb, churn alerts, vertriebsplanung, datenvisualisierung, effizienzsteigerung, b2b, vertriebs-chatbot, datenintegration, vertriebssteuerung, erp-add-on, großhandel, datenanalyse, data analytics, transportation_logistics, information technology & services, analytics, enterprise software, enterprises, computer software",'+49 1516 4715066,"Cloudflare DNS, Route 53, Amazon SES, Gmail, Google Apps, Amazon AWS, Hubspot, Mobile Friendly, PySpark, SQL, Python, Databricks, scikit-learn, OpenAI, Simplicity Lite, Scipy, AWS Trusted Advisor, Terraform, GitHub Actions, MLflow, Spark, Intercom, Figma, TypeScript, React, Vitess, Google AlloyDB for PostgreSQL, Linkedin Marketing Solutions, CallMiner Eureka, Salesforce CRM Analytics, dbt, Vercel, Linear, Delta Lake",21000000,Seed,14500000,2026-02-01,"","",69c28396f1a618001924bc8f,7375,42383,"Plato is a Berlin-based AI software company founded in 2023, dedicated to creating a growth platform for B2B wholesale distributors. The company focuses on AI-powered ERP automation and sales intelligence tools, aiming to enhance efficiency and scalability in the $53 trillion global wholesale sector. Led by CEO Benedikt Nolte and co-founders Matthias Heinrich and Oliver Birch, Plato collaborates with distributors, universities, and industry experts to tackle challenges like labor shortages and digital transformation. + +Plato's core offering is an AI-based ERP automation platform that integrates with existing systems. It provides sales intelligence and recommendations for cross-selling and upselling, automates routine tasks to save time, and offers analytics to optimize inventory and productivity. The platform is designed for flexibility and scalability, operating as a SaaS API that requires no IT maintenance. With a focus on measurable outcomes, Plato aims to help distribution sellers increase revenue and improve their competitive edge.",2023,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69b250b3ef39770001ec824b/picture,"","","","","","","","","" +Excubate Corporate Startups,Excubate Corporate Startups,Cold,"",22,management consulting,jan@pandaloop.de,http://www.excubate.de,http://www.linkedin.com/company/excubate-corporate-startups,https://facebook.com/excubate,https://twitter.com/excubate,93 Dillenburger Strasse,Cologne,North Rhine-Westphalia,Germany,51103,"93 Dillenburger Strasse, Cologne, North Rhine-Westphalia, Germany, 51103","monetization, company building, innovation consulting, product management, corporate venture, digital innovation, business model development, design thinking, change management, company builder, innovation hub, digital portfolio management, corporate reinvention, portfolio management, intrapreneurship, objectives key results, culture building, innovation strategy, disruption, consulting, service innovation, business model innovation, corporate transformation, business validation, agile innovation, crossindustry, corporate startup campus, digital ventures, okr, strategy consulting, hybrid coach, information technology, scaleup, agile & startup methods, business transformation, excubation, intrapreneurship program, ideation workshop, digital transformation, people development, business development, innovation training, management consulting, customer experience management, operating model, pricing strategies, scrum master, trend & technology scouting, hackathon, startup scouting, business model okr, business consulting & services, strategic consulting, b2b",'+49 221 45580332,"Outlook, SparkPost, Hubspot, Zendesk, Google Tag Manager, WordPress.org, Gravity Forms, Mobile Friendly, Nginx, AI","","","","","","",69c28396f1a618001924bc8d,"","","Excubate Corporate Startups, based in Cologne, Germany, is a management consultancy and corporate venture builder established in 2015. The company specializes in digital transformation, business model innovation, and the creation of corporate startups by integrating corporate and startup methodologies. With a team of 26-38 employees, Excubate focuses on driving sustainable digital transformation from strategy to implementation. + +The company operates in four main areas: strategy, process, organization, and culture. It defines and implements digital transformation agendas, ideates and builds sustainable innovations, designs digital labs, and enhances digital literacy through workforce training. Excubate also offers management consulting, serves as a corporate venture builder, and provides training through its Excubate Academy, focusing on agile innovation and project delivery.",2015,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/682954e0b8b18b00014e8c5c/picture,"","","","","","","","","" +Bosch Industry Consulting,Bosch Industry Consulting,Cold,"",40,management consulting,jan@pandaloop.de,http://www.bosch-engineering-production-services.com,http://www.linkedin.com/company/bosch-industry-consulting,"","",358 Heilbronner Strasse,Stuttgart,Baden-Wuerttemberg,Germany,70469,"358 Heilbronner Strasse, Stuttgart, Baden-Wuerttemberg, Germany, 70469","material flow simulation, logistics engineering, engineering services, manufacturing, lean, process optimization, industry 40, industrial consulting, process design, business consulting & services, industry 4.0, consulting, ai in manufacturing, digital twin, machine learning, process improvement, additive manufacturing center, selective laser melting (slm), simulation, data analytics, industry 4.0 kick-starter program, value stream analysis, logistics optimization, robotics, manufacturing process optimization, production planning, master data generation, industrial automation, product development, automation tools, digital engineering, smart factories, mass digitization, sensor integration, automated quality control, digital twin technology, b2b, automation, visual object recognition, automated product photography, smart manufacturing, big data analytics, cyber-physical systems, customer relationship management, digitalization solutions, logistics, training data for neural networks, factory restructuring, remote monitoring, additive manufacturing, manufacturing support, services, research and development, quality management, digital transformation, project management, predictive maintenance, inventory management, material flow simulation videos, fused deposition modeling (fdm), lean manufacturing, mass digitization of spare parts, distribution, construction, information technology & services, mechanical or industrial engineering, management consulting, artificial intelligence, enterprise software, enterprises, computer software, crm, sales, research & development, productivity","","Outlook, Microsoft Azure Hosting, VueJS, Atlassian Cloud, SignalR, Mapbox, MongoDB, MailJet, Slack, Amazon SES, Salesforce, Mobile Friendly, ON24, Google Tag Manager, Multilingual, Vimeo, Cedexis Radar, iTunes, AppDynamics, Twitter Advertising, Facebook Custom Audiences, Google Analytics Ecommerce Tracking, Facebook Login (Connect), Facebook Widget, Google Maps, Adobe Media Optimizer, Google Analytics, React, SmartRecruiters, Remote","","","","","","",69c28396f1a618001924bc86,3531,54133,"Bosch Engineering and Production Services is a global provider of engineering and manufacturing services with over 60 years of experience. The company specializes in research and development, process optimization, production, and logistics. With a team of over 240 experts, Bosch focuses on understanding client needs and delivering practical solutions through hands-on support and collaboration. + +The company offers a range of customized consulting services across various manufacturing domains. Their expertise includes Simultaneous Engineering, which manages project interfaces from strategy to realization, and Factory Planning, which organizes new or rescheduled production areas. Additionally, Bosch provides Digital and Industry 4.0 Solutions, utilizing advanced technologies such as Big Data Analytics, AI, and augmented reality to enhance manufacturing processes.",1956,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67541c1fe2cd6c00011f2ce5/picture,"","","","","","","","","" +bloog,bloog,Cold,"",24,information technology & services,jan@pandaloop.de,http://www.bloog.consulting,http://www.linkedin.com/company/bloog-gmbh,"","",10 Kleine Johannisstrasse,Hamburg,Hamburg,Germany,20457,"10 Kleine Johannisstrasse, Hamburg, Hamburg, Germany, 20457","agile, business process modelling, project management, transformation, sme, enterprise architecture, it strategy, ecommerce, digital transformation, innovation, logistics, business development, change managmenet, lean, digitalisation, consulting, project steering, product owner, strategy, product development, kmu, change management, requirements analysis, it services & it consulting, digital impact, technology consulting, management consulting, sustainable solutions, digital culture change, collaborative work, future thinking, unternehmensberatung, kundenorientierung, digital products, b2b, digitale transformation, sustainable digitalization, digital ethics, long-term client support, nachhaltigkeit, innovative strategien, agile methodologies, information technology and services, value-driven consulting, partnership approach, digital impact for society, transformative digital strategies, strategy consulting, transformative strategies, digital mindset, digital leadership, management consulting services, future-oriented solutions, customized solutions, services, human-centered design, strategic consulting, government, business transformation, digitalization in ngos, digital innovation, nonprofit organization management, digital ecosystems, digital empowerment, non-profit, productivity, e-commerce, consumer internet, consumers, internet, information technology & services","","Outlook, Microsoft Office 365, Apache, Mobile Friendly, Remote, AI","","","","","","",69c28396f1a618001924bc87,8742,54161,"bloog Consulting is a consulting firm that specializes in digital transformation with a focus on a human-centered approach. The firm supports companies, government agencies, and NGOs in developing digital products and strategies. Co-founded by Stefan Wiech, bloog Consulting emphasizes empathy and user-friendly solutions, aiming to create sustainable digital transformation journeys across various industries. + +The firm offers advisory and support services in digital transformation, including strategy development and digital product creation. They address technical challenges through a team of experts, promoting adaptability and flexibility. Key areas of focus include human-centered digitalization and sustainable solutions, helping clients harness technology for a competitive advantage.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/673985fd8d41ea000180e389/picture,"","","","","","","","","" +The Quality Group GmbH (TQG),The Quality Group,Cold,"",39,information technology & services,jan@pandaloop.de,http://www.tqg.de,http://www.linkedin.com/company/the-quality-group-gmbh,https://facebook.com/Team-Quality-Group-RSV-Tailfingen-1400686903529807/,"",1 Konrad-Zuse-Platz,Boeblingen,Baden-Wuerttemberg,Germany,71034,"1 Konrad-Zuse-Platz, Boeblingen, Baden-Wuerttemberg, Germany, 71034","aktenund vorgangsmanagement, plattform, legal tech, beteiligungsmanagement, contract management, consulting, risk management, enterprise information management, businessapp platform, managed cloud services, business process managment, risikomanagement, vertragsmanagement, vertragsakte, compliance excellence, advisory, dokumentenmanagement, corporate housekeeping, eakte, ai contract search, legal entity management, hosting, governance risk compliance, businessapp cloud platform, workflows, ki vertragsmanagement, contract management software, blockchain, legal services, data protection, workflow automation, enterprise software, automated processes, services, software publishing, computer systems design and related services, smart contracts, supply chain management, legal compliance, blockchain integration, knowledge management, cloud services, document assembly, whistleblower system, network lifecycle management, third-party integration, regulatory compliance, b2b, workflow optimization, legal tech automation, enterprise content management, automated contract analysis, information technology and services, sustainability program, digital transformation, digital aktenmanagement, digital platform, lottery solutions, ai solutions, e-signature, document management, ai contract creation, legal process management, cloud saas, compliance management, legal, information technology & services, enterprises, computer software, logistics & supply chain, cloud computing",'+49 70 31306974100,"Liferay, Apache, Mobile Friendly, YouTube, Bootstrap Framework, Wistia, Ubuntu, Nginx, SAP, AWS Identity and Access Management (IAM)","",Merger / Acquisition,0,2022-05-01,14420000,"",69c28396f1a618001924bc88,7375,54151,"The Quality Group GmbH (TQG) is a German consulting firm established in 1985, with its headquarters in Böblingen and additional offices in Hamburg and Elmshorn. The company specializes in digitalization solutions and offers the TQG businessApp cloud platform, which optimizes various business processes including contract management, compliance, data protection, and audit management. + +TQG prides itself on being a dynamic medium-sized company with a strong focus on customer satisfaction and innovation. With a team of over 100 experienced consultants and process experts, TQG has successfully completed more than 400 projects over its 30+ years of operation. The company emphasizes a regional approach, providing tailored consulting services for business process optimization and digital transformation to medium-sized and large enterprises.",1985,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6821808520e4d000016d9fb3/picture,CVC (cvc.com),56daf45bf3e5bb704a006d0e,"","","","","","","" +Jamie,Jamie,Cold,"",30,information technology & services,jan@pandaloop.de,http://www.meetjamie.ai,http://www.linkedin.com/company/meetjamie-ai,"",https://twitter.com/meetjamie_ai,"",Berlin,Berlin,Germany,"","Berlin, Berlin, Germany","technology, information & internet, data security, secure data handling, meeting summaries in multiple languages, meeting insights, software development, multi-language support, meeting risk identification, ai-powered meeting notes, natural language processing, project management, meeting platform compatibility, meeting notes sharing, meeting insights extraction, meeting ai assistant, meeting decision tracking, business software, information technology and services, meeting automation, meeting organization, gdpr compliant, meeting collaboration, b2b, meeting data security, meeting follow-up tasks, customer engagement, meeting transcription accuracy, meeting note sharing, meeting summaries, meeting action items, sales enablement, meeting recording, meeting note customization, speaker recognition, meeting management, meeting note search, services, meeting organization tool, meeting productivity tools, meeting productivity, meeting transcription, actionable insights, meeting analysis, meeting follow-up automation, in-person meeting notes, productivity enhancement, meeting notes templates, ai note taker, computer systems design and related services, meeting platform integration, automated note-taking, information technology & services, computer & network security, artificial intelligence, productivity","","Cloudflare DNS, Amazon SES, Gmail, Google Apps, Facebook Widget, Facebook Custom Audiences, Facebook Login (Connect), YouTube, Dropbox, Google Tag Manager, Google Font API, Mobile Friendly, Mixpanel, Android, Node.js, Google Workspace, Micro, React Native, Data Analytics, Deel, Circle, Phoenix, Remote, AI","",Seed,0,2024-11-01,1500000,"",69c28396f1a618001924bc8a,7375,54151,"Jamie is a privacy-first AI-powered meeting assistant founded in 2022 in Cologne, Germany. The company, operating as JAMIE AI LIMITED, focuses on enhancing business productivity by providing high-quality transcripts, summaries, and action items from online, hybrid, or in-person meetings without the need for a bot to join calls. Jamie's software runs on macOS, Windows, and in browsers, seamlessly integrating with platforms like Zoom, Microsoft Teams, and Google Meet. + +The core features include bot-free transcription with speaker recognition, AI-generated summaries, and action items, all supporting over 99 languages. Jamie also offers an AI chatbot for querying past meetings and integrates with tools like Notion and Google Docs. Data is processed securely on EU servers, ensuring GDPR compliance. Jamie serves individuals and organizations of all sizes, particularly business professionals in hybrid environments, helping them save time and improve meeting management.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69a7cfee91f360000160fb35/picture,"","","","","","","","","" +AZOLA,AZOLA,Cold,"",27,information technology & services,jan@pandaloop.de,http://www.azola.consulting,http://www.linkedin.com/company/azoladotnet,"","",47 Noerdliche Muenchner Strasse,Gruenwald,Bavaria,Germany,82031,"47 Noerdliche Muenchner Strasse, Gruenwald, Bavaria, Germany, 82031","implementations, it operations optimization, digital transformation, migrations, change management, analytics, digitalization, it software trainings, strategy, information security, digital, it project management, cloud solutions, kpi frameworks, information technology, cybersecurity, real estate, risk analysis, project management, construction & real estate, iso/iec 27001, digital business models, innovation, process optimization, management consulting services, data protection, business intelligence, financial services, it infrastructure, it service management, it strategy, energy & utilities, digital strategy, services, finance, carve-in/out projects, organizational change management, operational efficiency, it operations, it consulting, it migration, b2b, automotive, consulting, it merger & acquisition consulting, chemicals, it migration & implementation, it governance, technology consulting, energy, information technology & services, computer & network security, cloud computing, enterprise software, enterprises, computer software, productivity, marketing, marketing & advertising, management consulting","","Outlook, Microsoft Office 365, Apache, WordPress.org, Mobile Friendly","","","","","","",69c28396f1a618001924bc8e,8742,54161,"We uncover digital territories and transform the way businesses operate. AZOLA is a team of expert technology and innovation explorers committed to delivering tailored agile solutions and create lasting change. + +Let's connect to see how we can navigate your digital transformation journey with our expertise in: + • IT Project Management + • Digital & IT Strategy + • IT Migration & Implementation + • Organizational Change Management + • Information Security + • IT Operations & Optimization + +We're driven by our values of: +People-First • Responsibility • Appreciation • Freedom • Curiosity • AZOLove + +[WE'RE HIRING] +Looking to set your sails towards a future in IT? Send us a PM! We're looking for digital explorers from all backgrounds and areas of expertise. Let's discuss how AZOLA can give you a chance to make a real difference for businesses, plus reap our pretty neat team perks. Take a peek on our Instagram: @azola.consulting",2015,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e60b5975629c00012937f8/picture,"","","","","","","","","" diff --git a/leadfinder/data/apollo-psiorila.csv b/leadfinder/data/apollo-psiorila.csv new file mode 100644 index 0000000..72bcceb --- /dev/null +++ b/leadfinder/data/apollo-psiorila.csv @@ -0,0 +1,2978 @@ +Company Name,Company Name for Emails,Account Stage,Lists,# Employees,Industry,Account Owner,Website,Company Linkedin Url,Facebook Url,Twitter Url,Company Street,Company City,Company State,Company Country,Company Postal Code,Company Address,Keywords,Company Phone,Technologies,Total Funding,Latest Funding,Latest Funding Amount,Last Raised At,Annual Revenue,Number of Retail Locations,Apollo Account Id,SIC Codes,NAICS Codes,Short Description,Founded Year,Logo Url,Subsidiary of,Subsidiary of (Organization ID),Primary Intent Topic,Primary Intent Score,Secondary Intent Topic,Secondary Intent Score,Prerequisite: Determine Research Guidelines,Prerequisite: Research Target Company,Qualify Account +KTC-Karlsruhe Technology Consulting GmbH,KTC-Karlsruhe Technology Consulting,Cold,"",14,information technology & services,jan@pandaloop.de,http://www.ktc.de,http://www.linkedin.com/company/ktc-karlsruhe-technology-consulting-gmbh,https://facebook.com/KTC.GmbH,https://twitter.com/ktc_gmbh,1 Augartenstrasse,Karlsruhe,Baden-Wuerttemberg,Germany,76137,"1 Augartenstrasse, Karlsruhe, Baden-Wuerttemberg, Germany, 76137","last planner system, beratung, azure, lean management, erp und finance, digitalisierung, enterpriseapplicationintegration, lean construction, produktionsplanung, powerbi, lps, unternehmensberatung, software development, projektmanagement, business process management, d365bc, business central, it services & it consulting, information technology & services",'+49 721 1611750,"Outlook, Microsoft Office 365, Hubspot, reCAPTCHA, WordPress.org, Nginx, Mobile Friendly, Livestorm, Remote, , AI, Render, Circle",260000,Other,260000,2015-03-01,21000,"",69c281ea9b64ae0001e00f30,7380,"","The KTC-Karlsruhe Technology Consulting GmbH, based in Karlsruhe, offers competent and reliable consulting and custom software development solutions. +We specialize in the optimization and automation of business processes, as well as the integration of these into your IT infrastructure.",2008,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/676f82d6e7b7b200012643dc/picture,"","","","","","","","","" +TOP TECHNOLOGIES CONSULTING GmbH,TOP TECHNOLOGIES CONSULTING,Cold,"",52,information technology & services,jan@pandaloop.de,http://www.toptechnologies.de,http://www.linkedin.com/company/toptechnologiesconsulting-gmbh,"","","",Halstenbek,Schleswig-Holstein,Germany,"","Halstenbek, Schleswig-Holstein, Germany","sam, itsm, development, iam, governance, scrum, devops, cloud, migrationtransformation, idm, data life cycle, risk & compliance, irm, workplace, banking, public sector, financial services, finance, it-servicemanagement, it-sicherheitskonzepte, it-optimierung, it-asset-management-tools, b2b, it-architektur, it-security-management, it-services-beratung, it-services-implementierung, it-management, software development, it-projektleitung, it-asset-compliance, it-implementierung, consulting, it-beratung, migration und transformation, it infrastructure services, it-infrastruktur, cloud computing, it-strategie, identity management, it-asset-management-software, it-projektmanagement, it-consulting, it-transformation, migration, it-asset-optimierung, sourcing-strategien, it-asset-management-lösungen, it-sicherheitsmanagement, transformation, computer systems design and related services, information technology and services, cloud-infrastruktur, automatisierung, it-asset-transformation, it-compliance, it-sourcing-strategien, projektmanagement, servicenow, it-security, it-services-optimierung, identity & access management, it-architekturdesign, it-services-management, it-asset-management-systeme, it consulting and support, it-asset-management, it-asset-management-prozesse, cybersecurity, it-services, services, it-sourcing, it-servicemanagement nach itil, softwareentwicklung, cloud-services, governance, risk and compliance, it-asset-strategie, information technology & services, enterprise software, enterprises, computer software, privacy",'+49 4101 6019200,"Outlook, Microsoft Office 365, WordPress.org, Mobile Friendly, Apache, Shutterstock, Nginx, Remote, Microsoft Application Insights, CyberArk, Jira, Confluence, Microsoft PowerPoint, Microsoft Excel, Microsoft Endpoint Configuration Manager (MECM), EMC, Windows 10 IoT Core Services, Windows 11, Office365, TUNE, BlackBerry Unified Endpoint Manager, Azure Active Directory B2C, Azure AD Notifications, Microsoft Advanced Group Policy Management, Microsoft PowerShell, Toolkit, LogRhythm SIEM, Microsoft SQL Server Reporting Services","","","","","","",69c281ea9b64ae0001e00f38,7379,54151,"TOP TECHNOLOGIES CONSULTING GmbH is an owner-managed consulting company based in the Hamburg and Hanover metropolitan region. We emerged in 2004 from agens consulting GmbH - a long-established German consulting firm in the finance and insurance industry. As a consulting company with a sure eye on innovations and information technologies, we transform your visions into solutions with quality. Due to the intensive and cooperative collaboration with our customers, our team has developed high competences in the field of IT consulting.",2004,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6822cd73f0cef9000170b458/picture,"","","","","","","","","" +exciting AG,exciting AG,Cold,"",110,information services,jan@pandaloop.de,http://www.exciting.de,http://www.linkedin.com/company/exciting-ag,https://www.facebook.com/exciting.de,"",38A Dornhofstrasse,Neu-Isenburg,Hesse,Germany,63263,"38A Dornhofstrasse, Neu-Isenburg, Hesse, Germany, 63263","helpdesk, customersupport, backofficearbeiten, vertriebsunterstuetzung, betreuung von onlineshops, kundenservice, dialogcenter, callcenter, kundenbetreuung, system integration, utilities, ticket management, redundancy in multiple countries, custom software solutions, pci-dss compliance, data security, customer service, collection agencies, business process outsourcing, financial services, voice logging, inbound outbound calls, personalwesen lösungen, it services, eskalationsmanagement, non-profit organizations, social media support, knowledge base, distribution, rechnungswesen, retail, b2c, 24/7 kundenservice, multilingual support, european languages support, b2b, iso9001 certified, multichannel kundenservice, payroll processing, hr solutions, social media management, customer satisfaction optimization, telecommunications, e-commerce, d2c, services, finance, non-profit, energy & utilities, computer & network security, information technology & services, nonprofit organization management, consumer internet, consumers, internet",'+49 6102 20820,"Outlook, Microsoft Office 365, Apache, Mobile Friendly, Bootstrap Framework","","","","","","",69c281ea9b64ae0001e00f3c,7389,56144,"Die exciting AG hat sich auf die Abbildung und Gestaltung von hochwertigen DialogCenter und ServiceCenter-Prozesse spezialisiert. +Dabei steht immer der Mensch im Vordergrund: Sie als unser Kunde und damit Ihre Kunden und natürlich unsere Mitarbeiter. +Durch diese Einstellung konnten wir uns mit den Erfahrungen der vergangenen 16 Jahre im Segment hochwertiger und nachhaltiger Dienstleistungen plazieren und gehören heute zu den führenden Anbietern im Bereich ganzheitlicher Vertriebsunterstützung. +Dabei greifen wir nicht nur auf den Bereich der DialogCenter-Maßnahmen zu, sondern sind auch in der Lage, durch unseren eigenen Akademiebereich komplette Lösungen bis hin zu Personalentwicklungsmaßnahmen anzubieten.",2015,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/671441b8b108940001b625d0/picture,"","","","","","","","","" +bartolome röder AG,bartolome röder AG,Cold,"",15,information technology & services,jan@pandaloop.de,http://www.br-ag.com,http://www.linkedin.com/company/bartolome-r%c3%b6der-ag,"","","",Munich,Bavaria,Germany,"","Munich, Bavaria, Germany","business central & sap s4hana, it services & it consulting, consulting, microsoft dynamics 365 business central, management consulting, it project management, information technology and services, process analysis, it consulting, business process management, mobile solutions, real-time process control, change management support, erp consulting, custom software development, partner portal integration, cloud solutions, digital process automation, digital workflow, sap s/4hana, it strategy, smart shopping solutions, process optimization, enterprise resource planning, scalable platform, supply chain management, b2b, sap s/4hana migration, management consulting services, business intelligence, central workflow controller, microsoft dynamics, customer relationship management, it solutions, payment processing, process standardization, automated payment processing, software development, system integration, business central implementation, multi-partner marketplaces, business process consulting, marketplace process automation, workflow automation, erp systems, services, digital strategy, enterprise software, e4m engine, digital transformation, project management, multi-channel communication, change management, digital marketplace management, analytics, sap consulting, e-commerce, finance, distribution, information technology & services, cloud computing, enterprises, computer software, logistics & supply chain, crm, sales, marketing, marketing & advertising, productivity, consumer internet, consumers, internet, financial services",'+49 89 21111848,"Outlook, Slack, Apache, Typekit, Bootstrap Framework, WordPress.org, Mobile Friendly, Google Tag Manager, QuickBooks","","","","","","",69c281ea9b64ae0001e00f2d,8742,54161,"Verlässliche ERP-Beratung mit unternehmerischem Blick. + +Die bartolome röder AG begleitet Unternehmen seit über 25 Jahren bei der Digitalisierung und Weiterentwicklung ihrer Geschäftsprozesse. + +Wir denken ERP nicht als IT-Projekt, sondern als Teil Ihrer unternehmerischen Entwicklung – strategisch, wirtschaftlich und technologisch fundiert. + +Ob mit Microsoft Dynamics 365 Business Central oder SAP S/4HANA: Wir entwickeln Lösungen, die sich nahtlos integrieren, wartungsarm betreiben lassen und langfristig tragen. + +Engineering trust. Enabling transformation.",2000,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/687bad3ec732cd0001bdbddd/picture,"","","","","","","","","" +T4D Consulting GmbH,T4D Consulting,Cold,"",14,management consulting,jan@pandaloop.de,http://www.t4d.de,http://www.linkedin.com/company/t4d-consulting-gmbh,"","",Steinkopfstrasse,Bad Nauheim,Hessen,Germany,61231,"Steinkopfstrasse, Bad Nauheim, Hessen, Germany, 61231","business consulting & services, ot security transformation, security architecture design, risk assessment, data analytics, incident management, data-driven process improvement, data protection, digital infrastructure scaling, digital future, operational technology security, incident response, technology roadmap, cyber resilience, research and development, digital innovation, computer systems design and related services, it support, disaster recovery, security compliance frameworks, resilience, cybersecurity maturity model, security assessment, b2b, industrial cybersecurity, it project execution, it infrastructure, industrial network security, digital strategy, project management, technology assessment, operational continuity, automation integration, it risk assessment, technology deployment, business growth, ai integration, workflow optimization, technology adoption strategies, global network modernization, implementation management, data-driven insights, performance metrics, network modernization, governance development, maturity model, cybersecurity strategy, cloud security, performance management, security solutions, security monitoring, cyber risk management, security audits, management consulting, continuous improvement, regulatory compliance, it security, system integration, threat detection, it compliance, security architecture, workflow automation, it governance, rollout management, security frameworks, manufacturing, technology consulting, cloud solutions, cloud migration, operational efficiency, compliance management, cybersecurity, enterprise architecture, compliance auditing, large-scale cybersecurity projects, security controls, process optimization, services, digital transformation, training and user adoption, security policies, risk management, ot security, security governance frameworks, disaster recovery planning, technology rollout planning, client collaboration, consulting, it transformation, strategy design, change management, research & development, information technology & services, marketing, marketing & advertising, productivity, computer & network security, mechanical or industrial engineering, cloud computing, enterprise software, enterprises, computer software","","Outlook, Microsoft Office 365, Amazon AWS, Mobile Friendly, Google Tag Manager","","","","","","",69c281ea9b64ae0001e00f31,7375,54151,"We manage your Digital Transformation! + +Our comprehensive Transformation Management and Advisory Services leverage advanced Technologies to prepare Businesses for the Digital Future. + +Our Services: +- Digital Transformation Advisory & Management +- Cybersecurity Strategy & Implementation +- Intelligent Process Optimization +- Solution Implementation + +We prioritize collaboration, working closely with our clients to understand specific needs and challenges. + +We are looking forward to work with you!",2024,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/678c4a6e798b0100012a04e3/picture,"","","","","","","","","" +FINNOFLEET BMI GmbH,FINNOFLEET BMI,Cold,"",60,information technology & services,jan@pandaloop.de,http://www.bminformatik.de,http://www.linkedin.com/company/finnofleet-bmi-gmbh,"","",20 Rotenhofer Weg,Melsdorf,Schleswig-Holstein,Germany,24109,"20 Rotenhofer Weg, Melsdorf, Schleswig-Holstein, Germany, 24109","software development, it-dienstleister, versicherungssoftware, softwareengineering, it-beratung, business intelligence, api-entwicklung, forschung & entwicklung, devops, ki-gestützte risikoanalyse, reinforcement learning, data science, fachliche beratung, automatisierte gutachten, automatisierung, agile entwicklung, sicherheitsarchitektur, ki-transfer-hub sh, finanzdienstleister, information technology & services, risk assessment, cloud-computing, datenintegration, deep learning, services, automatisierte tests, autoencoder-architektur, ki-basierte beratung, natural language processing, cloud computing, testautomatisierung, data analytics, saas, ki-modelle, business process management, b2b, it-architektur, semantische bildanalyse, digital transformation, custom software development, ki-workshop, customer relationship management, innovationsmanagement, predictive analytics, bipro-standards, ki in der finanzbranche, data protection, consulting, project management, automatisierungstools, förderkredit-software, cloud-services, computer systems design and related services, financial services, förderkreditmanagement, regressions-tests, softwareentwicklung, microservices, softwarearchitektur, continuous delivery, kundenmanagement, banking, softwarelösungen, it-infrastruktur, ki-kompetenz, fintech, large language models (llms), kundenorientierte lösungen, ki-forschung in schleswig-holstein, ki-modelle für betrugserkennung, digitalisierung, process optimization, insurance, datenanalyse, sicherheitsstandards, software engineering, container-technologie, ki-assistenzsysteme, modulare software, modulare systeme, bankensoftware, schnittstellenmanagement, geschäftsprozessautomatisierung, automatisierte kreditprozesse, automation, künstliche intelligenz, versicherungsmathematische gutachten, cloud-architektur, versicherungsmanagement, finance, distribution, analytics, artificial intelligence, enterprise software, enterprises, computer software, crm, sales, productivity, finance technology",'+49 43 404040,"Outlook, Microsoft Office 365, Nginx, Mobile Friendly, WordPress.org, Apache, AI, IoT","",Merger / Acquisition,0,2015-12-01,"","",69c281ea9b64ae0001e00f33,7375,54151,"Die FINNOFLEET Gruppe gestaltet mit über 400 Expert:innen und mehr als 30 Jahren Branchenerfahrung die Zukunft der FinTech-Branche. Mehr als 500 Kund:innen vertrauen auf unsere modernen Softwarelösungen zur Automatisierung und Digitalisierung ihrer Geschäftsprozesse – in der Cloud, hybrid oder on-premise. + +Die FINNOFLEET BMI GmbH ist seit über 30 Jahren IT-Dienstleister, Berater und Produkthersteller für Banken, Versicherungsunternehmen und Finanzdienstleister. Im Bankensegment liegt der Schwerpunkt auf dem Aktivgeschäft: Mit einer leistungsfähigen Anwendung unterstützen wir die Beratung und Bearbeitung sämtlicher Kredit- und Fördermittelprogramme – vollintegriert in die Systemlandschaft eines Kreditinstituts. +Im Versicherungsbereich bieten wir Lösungen für die Komposit-Bestandsführung, Komponenten für Vertriebsplattformen sowie Speziallösungen im bAV-Segment.",1994,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/696b77ddcae1e200014ebe56/picture,Main Capital Partners (main.nl),60f403f6ce494f000190cfba,"","","","","","","" +findic (a zeb group company),findic,Cold,"",81,financial services,jan@pandaloop.de,http://www.findic.de,http://www.linkedin.com/company/findic-gmbh,"","",20 Kurze Muehren,Hamburg,Hamburg,Germany,20095,"20 Kurze Muehren, Hamburg, Hamburg, Germany, 20095","business analyse, test und qualitaetssicherung, design und implementierung, digital transformation, financial markets, mainframe support, project management, ai-driven process automation, it consulting, data science and data analytics, technical integration, data transfer, financial services, test management, unstructured data extraction, dashboarding, application development, robotic process automation, security concepts implementation, consulting, ai solutions, information technology, it security management, legacy system modernization, data management, data visualization, data analytics, regulatory reporting, data quality assurance, computer systems design and related services, regulatory compliance, b2b, data science, data governance, data infrastructure design, it architecture design, application lifecycle management, process optimization in finance, crisp-ml(q) methodology, regulatory and compliance support, it security compliance, process automation, data architecture, process optimization, data-driven decision making, agile and waterfall methods, custom software development, business integration, mainframe migration, integration management, application lifecycle quality, services, system integration, it infrastructure, finance, productivity, information technology & services, management consulting, app development, apps, software development",'+49 69 719153330,"Outlook, Microsoft Office 365, Mobile Friendly, Multilingual, reCAPTCHA, Remote","","","","","","",69c281ea9b64ae0001e00f35,7375,54151,"findic, a subsidiary of the zeb group, is an IT consulting firm based in Hamburg, Germany, specializing in the financial services sector. Founded in 2005, the company provides advisory and technical support to financial institutions throughout the entire project lifecycle, from conception to implementation and maintenance. With a team of approximately 67-86 professionals, findic focuses on bridging business and IT needs through a range of expertise, including business analysis, project management, IT architecture, and data specialization. + +The firm offers tailored IT consulting services that encompass the development and maintenance of IT solutions, business and technical integration, and quality assurance measures. findic employs technologies such as JavaScript, HTML, and GitHub to deliver solutions for banks and insurance companies. Its services are designed to address customer-relevant topics and ensure effective implementation in the financial services industry.",2005,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69b3c97d8ef3990001ed6285/picture,"","","","","","","","","" +grandega GmbH,grandega,Cold,"",41,management consulting,jan@pandaloop.de,http://www.grandega.de,http://www.linkedin.com/company/grandega,https://www.facebook.com/grandega,"",11 Rahmannstrasse,Eschborn,Hesse,Germany,65760,"11 Rahmannstrasse, Eschborn, Hesse, Germany, 65760","management und technologieberatung, projektmanagement, digitale transformation, concept testing, innovationsmanagement, innovation technology design, business analysis, transformation, change management, ittransformation, agile lean, leadership, finance, businesstransformation, produzierende industrie, project excellence, change organisation, project portfolio management, bankenbranche, finanzwirtschaft und versicherungswesen, immobilien und bauwirtschaft, konsumgueter, itsourcing vendormanagement, offentlicher sektor, transformation assurance, business consulting & services, financial services, management consulting","","SendInBlue, Outlook, Apache, Mobile Friendly, WordPress.org, Google Tag Manager","","","","","","",69c281ea9b64ae0001e00f37,"","","grandega GmbH is a consulting firm based in Eschborn, Hessen, Germany. The company specializes in advising and supporting businesses in utilizing resource information through information and communication technology. Founded as a limited liability company, grandega GmbH has a team of approximately 37 employees. + +The firm offers consulting services focused on helping other companies effectively use information technology applications. With expertise in business consulting, grandega GmbH aims to enhance the operational efficiency of its clients. The company has experience working with the Reconstruction Credit Institute (Kreditanstalt für Wiederaufbau), showcasing its capability in the consulting sector.",2016,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6714b73610a76200010c2361/picture,"","","","","","","","","" +Edaf GmbH,Edaf,Cold,"",13,information technology & services,jan@pandaloop.de,http://www.edaftech.com,http://www.linkedin.com/company/edaf-gmbh,"","",36 Otto-Lilienthal-Strasse,Boeblingen,Baden-Wuerttemberg,Germany,71034,"36 Otto-Lilienthal-Strasse, Boeblingen, Baden-Wuerttemberg, Germany, 71034","microsoft dynamics & microsoft dynamics 365 business central, software development, digital transformation, medium-sized business solutions, erp, cost-effective solutions, project consultancy, business process automation, erp system customization, erp award-winning systems, erp for food industry, innovation, customer support, support services, erp user base, consulting, information technology and services, erp award winner, erp systems, high performance, high performance applications, mobile app performance, erp user interface, computer systems design and related services, b2b, microsoft support, microsoft dynamics nav germany, user-friendly design, field application support, erp project management, customer satisfaction, technology consultancy, country version, mobile solutions, erp for traders, innovative solutions, erp solutions, digital transformation support, services, erp training, microsoft dynamics nav, information technology & services","","Outlook, Microsoft Office 365, Microsoft Azure Hosting, Mobile Friendly, ASP.NET, Microsoft-IIS, Microsoft Sql Server","","","","","","",69c281ea9b64ae0001e00f3b,7375,54151,"Edaf GmbH entwickelt und implementiert seit 13 Jahren maßgeschneiderte ERP Lösung Food4BC für Lebensmittel Groß- und Einzelhandel Branche basierend auf Microsoft Dynamics 365 Business Central (ehemals Dynamics NAV/Navision). + +Vorteile für Mitarbeitende +- unbefristeter Vertrag +- ständige Weiterbildung +- attraktive Sozialleistungen +- flache Hierarchien +- moderner Arbeitsplatz (keine Großraumbüros, höhenverstellbarer Schreibtisch) +- kostenloses Obst und Getränke +- regelmäßige Teamevents",2008,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6872c3dcb4010d00017ff8a0/picture,"","","","","","","","","" +Miragon,Miragon,Cold,"",15,information technology & services,jan@pandaloop.de,http://www.miragon.io,http://www.linkedin.com/company/miragon-io,"","","",Augsburg,Bavaria,Germany,"","Augsburg, Bavaria, Germany","bpm, business process management, business process automation, typescript, camunda, react, java, spring boot, software development, it services & it consulting, digital transformation, workflow automation, project management, workflow engine, bpmn-to-code, process mining, wardley mapping, consulting services, bpmn, legacy system integration, consulting, information technology and services, systemintegration, low-code plattform, computer systems design and related services, b2b, government, open source development, process automation, process optimization, bpm consulting, automatisierungslösungen, cloud solutions, compliance, it-architektur, devops, process modeling, business rules, services, system integration, information technology & services, productivity, management consulting, cloud computing, enterprise software, enterprises, computer software",'+49 172 8198461,"Cloudflare DNS, Outlook, Microsoft Office 365, Amazon AWS, Google Cloud Hosting, Netlify, Slack, Google Analytics, Mobile Friendly, Remote, React Native, Android, Deel, Circle, Camunda, Spring Boot, React, TypeScript, AWS SDK for JavaScript","","","","","","",69c281ea9b64ae0001e00f3f,7375,54151,"Als digitale Wegbereiter glauben wir daran, dass nachhaltiger Erfolg durch kontinuierliche Innovation und Anpassung erreicht wird. Unsere Mission ist es, Unternehmen zu befähigen, in einer sich ständig verändernden digitalen Landschaft zu agieren und zu wachsen.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67344733e34a120001bc7eca/picture,"","","","","","","","","" +Semper Prospera,Semper Prospera,Cold,"",15,management consulting,jan@pandaloop.de,http://www.semper-prospera.de,http://www.linkedin.com/company/semper-prospera,"","",61 Lichtenauer Weg,Giessen,Hessen,Germany,35396,"61 Lichtenauer Weg, Giessen, Hessen, Germany, 35396","projektmanagement, change management, operating model, projektmanagement & unternehmensberatung, strategieberatung, supply chain management, beratung, consulting, dienstleistung, software development, unternehmensberatung, marketing, customer experience, scrum, business consulting & services, data analytics, digital customer journey, supply chain optimization, digital workplace transformation, modern work concepts, digital strategy, ai-driven business models, resilient supply chains, agile methodology, information technology and services, services, digital ecosystems, business strategy, marketing automation, business services, ai solutions, automation tools, it infrastructure, government, technology consulting, process optimization, digital transformation, cloud computing, data-driven decision making, b2b, customer experience enhancement, innovation management, business consulting, smart process automation, next-generation operating models, management consulting, software engineering, it consulting, end-to-end supply chain management, customer relationship management, innovation, management consulting services, logistics & supply chain, information technology & services, marketing & advertising, saas, computer software, enterprise software, enterprises, crm, sales","","Outlook, Gravity Forms, Mobile Friendly, WordPress.org, Apache, Remote, Jenkins, GitLab, Oracle XML DB, Docker, Kubernetes, Red Hat OpenShift, Amazon Associates, HELM, Argocd, Elasticsearch, Apache Kafka, Keycloak, Puppet, Ansible, Microsoft PowerShell, Git, Gradle, PostgreSQL","","","","","","",69c281ea9b64ae0001e00f40,8742,54161,"Semper Prospera GmbH is a management and technology consulting firm located in Gießen, Hessen, Germany. The company specializes in providing tailored business advisory and software development services to help organizations achieve their strategic goals. With an annual turnover between 2-10 million euros, Semper Prospera emphasizes a partnership-based approach, ensuring transparent collaboration with clients for effective project execution. + +The firm offers a range of services, including business strategy development, technology consulting, change management, process and project management, custom software development, and supply chain management. Semper Prospera is dedicated to facilitating organizational transformation and optimizing operations to meet market demands. The company maintains a daily consulting rate of 600 euros and has received positive feedback from employees, with 100% of surveyed staff recommending it as an employer.",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6703276d6ac411000196bf74/picture,"","","","","","","","","" +SCIIL AG,SCIIL AG,Cold,"",24,information technology & services,jan@pandaloop.de,http://www.sciil.com,http://www.linkedin.com/company/sciil-ag,"","",83 Marktstrasse,Neuwied,Rhineland-Palatinate,Germany,56564,"83 Marktstrasse, Neuwied, Rhineland-Palatinate, Germany, 56564","product development, production quality, supplier quality, caq, shopfloor management, pa, lpa, mobile audits, mes, prozessoptimierung, management tools, it services & it consulting, process automation, electronics manufacturing, custom industry-specific solutions, visual inspection software, production monitoring, ai defect detection, quality assurance software, manufacturing analytics, real-time kpi dashboards, smart factory solutions, green audit for manufacturing, process optimization, mobile audit apps, process monitoring tools, industrial machinery manufacturing, industrial software solutions, iiot solutions, manufacturing process control, process audit automation, production process digitalization, smart factory data analytics, poka yoke verification, workflow automation, manufacturing, b2b, production planning support, automated error recognition, manufacturing data security, industrial automation integration, industry 4.0, automated defect detection, manufacturing software, manufacturing traceability software, process control, industrial automation, ai defect detection system, process data analysis, data visualization dashboards, services, custom software development, system integration interfaces, production data collection, mobile process audits, quality management, quality assurance, data integration, machine learning in manufacturing, information technology & services, mechanical or industrial engineering, enterprise software, enterprises, computer software",'+49 263 1999880,"Outlook, Microsoft Azure Hosting, Microsoft Azure, Slack, Remote, AI","","","","","","",69c281ea9b64ae0001e00f2e,3571,33324,"With our innovative software solutions, you can control, manage, and improve your manufacturing processes, including quality and shop floor management. SCIIL Software is positioned below ERP systems and above automation technology. With the help of flexible and widely implemented interfaces, the SCIIL application can be integrated into the existing system landscape or built autonomously. + +SCIIL MES Software allows the capture and evaluation of various parameters such as quality, machine, and operational data, as well as process or logistics data. This makes processes and key performance indicators even more transparent and enables optimization. + +Rely on our many years of experience and expertise in the IT business, and choose standardized or customized solutions depending on your requirements to make your work even easier. + +The company was founded in 1999 with a focus on IT services and software development in the CAQ field. Since 2004, the company has been operating successfully as SCIIL AG (a privately held AG with headquarters in Neuwied/Rhein). It has subsidiaries in Kaunas, Lithuania, and Gran Canaria, Spain, as well as a branch office in the USA and other global local representatives. + +With over 50 employees worldwide and a multitude of collaborations with fixed partners and freelance employees, we enable a global strategy, roll-outs, and support. SCIIL installations can be found all over the world - in almost all European countries (e.g., Germany, France, England, Spain, Italy, Austria, Hungary, Romania, Slovakia, Czech Republic, Poland, Lithuania) as well as overseas (e.g., China, Australia, India, Mexico, Japan, or the USA). + +For more information, you can visit the following links: +https://de.sciil.com/datenschutzerklaerung.html +https://www.sciil.com/download/impressum.html",2005,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67286e4a35e88d00018cd95a/picture,"","","","","","","","","" +Rewion,Rewion,Cold,"",39,information technology & services,jan@pandaloop.de,http://www.rewion.com,http://www.linkedin.com/company/rewion,"","",6 Fichtenweg,Murr,Baden-Wuerttemberg,Germany,71711,"6 Fichtenweg, Murr, Baden-Wuerttemberg, Germany, 71711","it security, sap beratung, it services, it infrastruktur, digitalisierung, m365, public cloud, projektmanagement, new work, change management, it governance, itstrategie, cloud transformation, modern workplace, souveraenitaet, ki, it beratung, google workspace, it services & it consulting, information technology & services, cloud optimization, cloud-strategie, services, it-assessment, it-optimierung, it-compliance-management, it-assessment-tools, business intelligence, it management, sustainable cloud, b2b, computer systems design and related services, fernwartung, sap-beratung, it-security frameworks, cloud souveränität, energieeffizienz in rechenzentren, digitale transformation, it-architekturdesign, whitepapers, it-modernisierungskonzepte, sustainable it, it-compliance-check, cybersecurity, it-infrastruktur, green it, it-security, cloud migration, cloud security, webinare, ki-beratung, it-governance-frameworks, it-management, cloud computing, open source it-lösungen, it-operations, data governance, it-risiko-management, it consulting, it-implementierung, it-compliance-beratung, it-services, it-transformation, it-service-management, sicherheitskonzepte, zero trust security, it-workshops für nachhaltigkeit, managed it services, it-strategie, consulting, governance, it-sicherheitsarchitektur, herstellerunabhängige cloud-beratung, compliance, it-sicherheitsaudit, it-workshops, project management, it-beratung, herstellerunabhängige beratung, it-architektur, automatisierung, it-compliance, it-strategieentwicklung, eu-datenschutzkonformität, it-governance, data security, it-managementsysteme, nachhaltige it, it-architekturplanung, it-support, it-risiko, it-sicherheitsmanagement, it-kostenoptimierung, sap consulting, it-modernisierung, nachhaltige it-strategien, consulting services, cloud-optimierung, it-architektur-design, workshops, risk management, cloud-sicherheitskonzepte, it-risikoanalyse, it-risikobewertung, cloud consulting, computer & network security, analytics, enterprise software, enterprises, computer software, management consulting, productivity",'+49 714 41609800,"Cloudflare DNS, Outlook, CloudFlare Hosting, Slack, reCAPTCHA, WordPress.org, Hubspot, Google Tag Manager, Google AdWords Conversion, Linkedin Marketing Solutions, Vimeo, DoubleClick, Google Font API, Mobile Friendly, Nginx, Android","","","","","","",69c281ea9b64ae0001e00f2f,7371,54151,"REWION is an independent IT consulting and services company based in Germany, with a presence in Switzerland. The company specializes in cloud and digital transformation consulting, providing tailored IT solutions that align with the specific needs of businesses. REWION emphasizes a partnership approach, focusing on trust, customer orientation, and sustainability. + +The company offers a wide range of services, including cloud and transformation consulting, IT infrastructure services, security services, and artificial intelligence support. They also provide training programs to help staff effectively manage IT resources. REWION works with small to medium-sized enterprises and larger organizations, ensuring that their solutions are vendor-neutral and based on client needs. Their collaboration with technology providers, such as STACKIT, enhances their ability to deliver secure and scalable cloud platforms.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/690890942527c50001c44002/picture,"","","","","","","","","" +ADIGO,ADIGO,Cold,"",27,information technology & services,jan@pandaloop.de,http://www.adigo.eu,http://www.linkedin.com/company/adigo-gmbh,"","",1 Heidelberger Strasse,Dresden,Saxony,Germany,01189,"1 Heidelberger Strasse, Dresden, Saxony, Germany, 01189","microsoft, anlagenbau, business central, erp, mittelstand, projektfertigung, automotive, crm, projektdienstleister, produktion, it services & it consulting, projektabrechnung, real-time data, financial management, automatisierung, project efficiency, crm-integration, project workflow automation, resource utilization, enterprise software, project monitoring, project success, document management, services, skalierbarkeit, midmarket erp, project scope control, microsoft certified, microsoft dynamics 365, project collaboration, erp migration, cloud-erp, erp implementation, erp modules, automation, project transparency, consulting services, erp consulting, power platform, construction, project resource allocation, project task management, project-oriented erp, project scheduling, project deadline management, projektkalkulation, b2b, prozessoptimierung, project reporting dashboards, project risk management, information technology and services, branchenspezifisch, crm integration, project cost control, projektsteuerung, dokumentenmanagement, kmu, project documentation, erp software, project data analytics, security standards, it support, project control, workflow automation, projektcontrolling, process optimization, resource optimization, zeiterfassung, resource planning, project tracking, power apps, computer systems design and related services, project execution, erp-implementierung, consulting, scalability, cloud erp, project profitability, industry-specific solutions, saas, customer management, kundenmanagement, digital transformation, project management, integrated erp, projektmanagement, it-dienstleister, power bi, projektakte, mobile erp, finanzmanagement, business intelligence, software development, sme erp, fertigung, custom software, manufacturing, project reporting, project calculation, project documentation management, ressourcenplanung, project planning, beratungsunternehmen, sales, enterprises, computer software, information technology & services, management consulting, productivity, analytics, mechanical or industrial engineering",'+49 351 31413200,"Outlook, Google Tag Manager, WordPress.org, Mobile Friendly, Apache, ","","","","","","",69c281ea9b64ae0001e00f2b,7375,54151,"ADIGO ist darauf spezialisiert, die Chancen der Digitalisierung für ihre Kunden nachhaltig nutzbar zu machen. Mit einem Fokus auf Technologie, Strategie und Kultur bietet ADIGO maßgeschneiderte ERP-Lösungen, um Unternehmen in der digitalen Welt erfolgreich und zukunftssicher zu machen.",2023,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66ed2be5b97beb0001d87fd3/picture,"","","","","","","","","" +Aigentiq,Aigentiq,Cold,"",11,information technology & services,jan@pandaloop.de,http://www.aigentiq.com,http://www.linkedin.com/company/aigentiq-com,"","",65 Invalidenstrasse,Berlin,Berlin,Germany,10557,"65 Invalidenstrasse, Berlin, Berlin, Germany, 10557","collaborative ai agents, agentic ai platform, ai product transformation strategy, ai agents for patient onboarding, api integration tool use, ai ermcrmitsm connectivity, agentic orchestration workflow automation, ai outcomebased pricing, enterprise ai implementation, agentic rag knowledge management, ai governance compliance, ai agents for customer service partner service, ai product strategy, ai agents multiagent systems, preparation for agenttoagent economy, agentic ai, autonomous customer service, software development, information technology & services",'+49 30 62939191,"Route 53, Outlook, Microsoft Office 365, Amazon AWS, Google Tag Manager, Mobile Friendly, Linkedin Marketing Solutions","","","","","","",69c281ea9b64ae0001e00f39,"","","Aigentiq is a technology consulting and advisory firm dedicated to helping organizations manage their technology landscape effectively. With decades of experience in enterprise IT and digital transformation, Aigentiq serves as a strategic partner to its clients. + +The company offers a range of services, including trusted advisor roles, hands-on partner engagement, and fractional CTO services. Aigentiq emphasizes pragmatic, high-impact outcomes, focusing on areas such as infrastructure, AI, and automation. Their approach aims to help businesses gain a strategic advantage while navigating the complexities of modern technology. + +Aigentiq operates in multiple regions, including Australia and the United Kingdom, and is recognized as a NetApp Partner, collaborating with leading enterprise infrastructure technology providers.",2025,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69ad5592ce92d80001022da0/picture,"","","","","","","","","" +awisto business solutions GmbH,awisto business solutions,Cold,"",13,information technology & services,jan@pandaloop.de,http://www.awisto.de,http://www.linkedin.com/company/awisto,https://facebook.com/awisto.de,https://twitter.com/awisto1,4 Mittlerer Pfad,Stuttgart,Baden-Wuerttemberg,Germany,70499,"4 Mittlerer Pfad, Stuttgart, Baden-Wuerttemberg, Germany, 70499","pharma kosmetik, microsoft dynamics 365, digitale transformation, cloud, officeintegration, awisto health care, mobile crm, branchenloesung fuer den industriellen handel vertrieb, power bi, field service, branchenloesung fuer den industriellen handel amp vertrieb, crm, microsoft goldpartner, tourenplanung, branchenloesung fuer medizintechnik, it dienstleistung, servicemanagement, branchenloesung fuer it amp dienstleistung, branchenloesung fuer pharma, microsoft dynamics crm, loesungen fuer den mittelstand, digitalisierung, awisto trainingsolution, office 365, mobile apps, addons, pflege betreuung, pharma amp kosmetik, branchenloesung social, branchenloesung fuer it dienstleistung, it amp dienstleistung, industriehandel, medizintechnik, awisto officeintegration, schnittstellen, prozessoptimierung, unternehmensplattform, sales, enterprise software, enterprises, computer software, information technology & services, b2b",'+49 71 14905340,"Outlook, Microsoft Office 365, WordPress.org, Mobile Friendly, Microsoft Sql Server, React Native, Android, Remote, Reviews, AI, Acumatica, , Azure Devops, Sage 300, ","","","","",3567000,"",69c281ea9b64ae0001e00f3d,7380,"","Pure CRM Passion + +Als CRM-Spezialist und Microsoft Goldkompetenzpartner bietet awisto auf Basis von Microsoft Dynamics™ CRM eigene Branchenlösungen sowie intelligente Produkte für den Mittelstand an. awisto Lösungen werden je nach Bedarf individuell auf den Kunden zugeschnitten - für maximale Flexibilität und Effizienz im Vertrieb, Marketing und Service! + +awisto Branchenlösungen: +- Medizintechnik +- Pharma +- Social +- Industrieller Handel & Vertrieb +- IT- & Dienstleistung + +awisto Lösungen: +- awisto e-Marketing +- awisto Schulungsverwaltung +- awisto Projektmanagement + +awisto Add-ons: +- awisto OfficeIntegration +- awisto ContactSync +- awisto CTI-Integration +- awisto Fax-Integration +- awisto Drag&Drop + +Ein erfolgreiches CRM besteht aus der optimalen Zusammensetzung von Beratung und dem Einsatz von Branchenlösungen. Unser Anspruch ist es, Sie mit unserer Qualität, Erfahrung und Innovation zu überzeugen und nachhaltig zufriedenzustellen. Lassen Sie uns Herausforderungen gemeinsam meistern! Weitere Informationen finden Sie auf unserer Website www.awisto.de. + +Haben Sie Fragen? Interessiert Sie ein bestimmtes Thema oder ein bestimmter Prozess besonders? Dann lernen Sie uns kennen! Wir beraten Sie gerne. Vereinbaren Sie einfach einen unverbindlichen Termin unter +49 (711) 6204374 – 0 oder über vertrieb@awisto.de +Wir freuen uns auf Sie!",2004,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/673a8a9c4229960001d7273d/picture,"","","","","","","","","" +Applied Methods GmbH,Applied Methods,Cold,"",19,information technology & services,jan@pandaloop.de,http://www.appliedmethods.biz,http://www.linkedin.com/company/applied-methods,"","",7 Muenchner Strasse,Kirchseeon,Bavaria,Germany,85614,"7 Muenchner Strasse, Kirchseeon, Bavaria, Germany, 85614","api development, business process automation, e-commerce plattform, workflow automation, consulting, customer experience, system integration, erp, services, cloud migration, business consulting, portale, computer systems design and related services, cloud computing, marketing automation, multichannel support, data analytics, software engineering, prototyping, softwareentwicklung, e-commerce architektur, user experience design, sicherheitsintegration, api-management, cloud solutions, crm integration, b2b, digital strategy, workflow management, personalwesen portale, software development, business software, digitale transformation, it infrastructure, custom software, e-commerce, it-infrastruktur, business integration, dxp, kundenspezifische software, interne kommunikationstools, information technology and services, horizontal portal, cloud integration, custom software development, digital transformation, cloud api management, content management, business process optimization, api-integration, digital experience platform, portale für produktion, it consulting, customer engagement, customer relationship management, unternehmensportal, omnichannel support, management consulting, enterprise software, enterprises, computer software, information technology & services, marketing & advertising, saas, marketing, consumer internet, consumers, internet, crm, sales",'+49 176 65033085,"Outlook, Microsoft Office 365, DigitalOcean, Intershop, Mobile Friendly, Nginx, Google Tag Manager, Xt-commerce","","","","","","",69c281ea9b64ae0001e00f3e,7375,54151,AppliedMethods GmbH is a reliable IT partner in development of business critical IT solutions with a primary focus on software and related IT infrastructure.,"",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f3e6cdae7e5f0001cce71c/picture,"","","","","","","","","" +TRUUCO,TRUUCO,Cold,"",63,information technology & services,jan@pandaloop.de,http://www.truuco.de,http://www.linkedin.com/company/truuco,"","","",Frankfurt,Hesse,Germany,"","Frankfurt, Hesse, Germany","data driven sales, vertriebsmanagement, banking, impulsmanagement, smart data, data science, data driven marketing, it services & it consulting, business intelligence, rollenbasierte einführung, bankenberatung, vertriebs-content-automatisierung, lead generation, omnikanalvertrieb, churn prediction, omnichannel marketing, kundensegmentierung, content management, rollenübergreifende enablement-programme, rollenübergreifende schulungen, digital transformation, sales enablement, automatisierung, datengetriebener vertrieb, predictive analytics, fintech, vertriebssteuerung, next best action, kundenanalyse-tools, kanalpräferenzen, services, schulungsangebote, kundenanalyse, automatisierte kampagnen, intuitive nutzeroberflächen, ki-gestützte modelle, kundenabwanderungserkennung, smart data modelle, data-driven banking, smart data affinitäten, kundenbindung, vertriebsoptimierung, b2b, automatisierte content-ausspielung, customer retention, vertriebsautomatisierung in banken, customer engagement, kundenpotenzialanalyse, kundenansprache, vertriebsautomatisierung, banking innovation, omnikanalplattform, banken enablement, financial transactions processing, reserve, and clearinghouse activities, consulting, financial services, impulsmanager, finance, information technology & services, analytics, marketing & advertising, sales, enterprise software, enterprises, computer software, finance technology","","Amazon CloudFront, Outlook, Amazon Elastic Load Balancer, Microsoft Office 365, Amazon AWS, SQL, BASE","","","","","","",69c281ea9b64ae0001e00f41,7375,52232,"TRUUCO is a specialized partner for data-driven solutions within the Genossenschaftliche FinanzGruppe, a German cooperative banking network. Based in Frankfurt am Main, the company focuses on enhancing banking operations by connecting people, ideas, and technologies through smart data. TRUUCO is committed to the principle of collaboration, believing that collective efforts can achieve more than individual ones. + +The company offers smart services that include tailored smart data models, intelligent deployment tools, and user-friendly applications. These services are designed to support data-driven customer management, making banks more resilient and improving consulting and sales outcomes. TRUUCO's core offerings consist of smart data models and use cases that integrate analytical tools for effective data processing in banking, aimed at enhancing customer engagement and optimizing sales. The company primarily serves the Genossenschaftliche FinanzGruppe, including Volksbanken, by facilitating their transition to data-driven operations.",2023,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67156a7ccd12180001b2fa81/picture,"","","","","","","","","" +Systema Datentechnik GmbH,Systema Datentechnik,Cold,"",68,information technology & services,jan@pandaloop.de,http://www.systema-online.de,http://www.linkedin.com/company/systema-datentechnik,"","",7 Baberowweg,Potsdam,Brandenburg,Germany,14482,"7 Baberowweg, Potsdam, Brandenburg, Germany, 14482","it services & it consulting, zugangskontrolle, penetration testing, firewall-schutz, cloud security, soc, kritis-it-lösungen, nis2 directive, b2b, computer systems design and related services, threat intelligence, data center, cybersecurity, data management, hybride cloud, penetration tests, fernüberwachung, security policy, security training, security operation center, cloud-sicherheitslösungen, incident response, iso 27001-zertifizierung, schwachstellenmanagement, vulnerability management, risk assessment, iso 27001, multicloud management, regulatory compliance, information technology and services, zero trust, network infrastructure, security architecture, network security, vorfallmanagement, data privacy in critical sectors, data center services, access control, siem/soar-technologie, cyber defense, cybersecurity für kritische infrastrukturen, compliance mit bsi-grundschutz, cloud solutions, cyber threat hunting, rechenzentrum, virtualisierung, compliance-beratung, managed services, ics penetration testing, cyber forensics, it-security, industrial control system security, backup-lösungen, physical access penetration test, security orchestration, it consulting, cloud-infrastruktur, firewall management, security monitoring, kritis-security, security operations, zero trust architektur, multicloud-management, network and data security, cloud computing, cyber-resilienz, network monitoring, security consulting, virtualization, soar, threat detection, endpoint protection, remote monitoring, security frameworks, security incident simulation, automated incident response, cyber resilience day, government, backup & recovery, data security, security awareness training, data encryption, consulting, access management, sicherheitsberatung, kritis it solutions, sicherheitsaudits, siem/soar, firewall, endpoint security, netzwerksicherheit, industrial control security, cyber risk assessment, security automation, identity management, security audits, cyber resilience, services, security analytics, hybrid cloud, netzwerkinfrastruktur, siem, industrielle sicherheit, compliance, bedrohungserkennung, healthcare, finance, energy_utilities, information technology & services, computer & network security, internet service providers, enterprise software, enterprises, computer software, management consulting, privacy, health care, health, wellness & fitness, hospital & health care, financial services",'+49 331 747700,"Sophos, SendInBlue, WordPress.org, DoubleClick, Cedexis Radar, Mobile Friendly, Vimeo, Adobe Media Optimizer, Apache, Cisco Unified Intelligence Center, Extreme Networks, Microsoft Application Insights, Dell PowerEdge Servers, Citrix","","","","","","",69c281ea9b64ae0001e00f2c,7374,54151,"Wir sind deutschlandweit der Digitalisierungspartner für Betreiber kritischer IT-Infrastrukturen. Wir stehen für hochwertige Technologien und professionelle IT-Dienstleistungen, die das Geschäft unserer Kunden aktivieren und einen Mehrwert am Markt stiften. + +Seit mehr als 30 Jahren unterstützen wir als Technologiepartner bei der digitalen Transformation, verbinden Innovationen des Marktes und Geschäftsmodelle unserer Kunden. Wir begleiten unsere Kunden und stehen als Partner mit Expertise und Projekterfahrung zur Seite. + + +Bestens ausgebildete IT-Expert:innen mit höchster Zertifizierungsstufe und langjähriger Projekterfahrung sind das Rückgrat unseres Erfolges. Unsere ISO 27001 Zertifizierung erstreckt sich über sämtliche Unternehmensbereiche und Services. Wir leben IT-Sicherheit und verfolgen einen 360° Sicherheitsansatz. Unser Network Operation Center steht an 365 Tagen im Jahr und 24 Stunden am Tag zur Verfügung. Unsere Expert:innen sind im Bedarfsfall in kürzester Zeit vor Ort – deutschlandweit und in der Schweiz. Langjährige und starke Partnerschaften mit marktführenden Anbietern wie Cisco, Extreme Networks, Microsoft, DellEMC, NetApp und Sophos treiben und unterstützen unsere Innovationskraft und Zuverlässigkeit in unseren Projekten. + +Als Bestandteil der Kajo Neukirchen Gruppe und des VIVAVIS Verbundes stehen wir unseren Kunden mit gebündelten Kompetenzen zur Seite. Wir treiben Digitalisierung voran und helfen, Big Data zu beherrschen. Mit Lösungen für E-Mobility, Kapazitätsoptimierung, IoT, Quartierslösungen und Smart Grid Metering unterstützen wir die digitale Transformation aus einer Hand!",1990,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6715ae8b4989920001b47f73/picture,"","","","","","","","","" +Liongate AG,Liongate AG,Cold,"",62,information technology & services,jan@pandaloop.de,http://www.liongate.de,http://www.linkedin.com/company/liongate-ag,"","",244 Leopoldstrasse,Munich,Bavaria,Germany,80807,"244 Leopoldstrasse, Munich, Bavaria, Germany, 80807","workflow management, digitalschool, digital transformation, customer experience, process automation, bizdevops, uiux, aws, analytics, cloud, project management, cloud security, multi-channel communication, ai integration, customer engagement, open source automation, smart chatbots, customer relationship management, data security, consulting services, open apis, cloud infrastructure, bpmn, consulting, security and data protection, business intelligence, information technology and services, performance scalability, cybersecurity, 5g migration support, microservices, computer systems design and related services, cloud computing, b2b, digital citizen services, crm, government, ai-powered customer classification, automated email replies, dmn, microservices architecture, aws partner, agile methods, speech-to-text transcription, migration control center, generative ai, salesforce, ai in customer service, customer lifecycle management, cmmn, process optimization, customer interaction management, cloud application development, low-code platforms, cloud solutions, open source technologies, customer journey optimization, cloud-native applications, software development, training and support, devops, data migration, services, digital business processes, saas, information technology & services, productivity, sales, enterprise software, enterprises, computer software, computer & network security, management consulting, internet infrastructure, internet",'+49 89 24419070,"Amazon CloudFront, Amazon Elastic Load Balancer, Amazon AWS, WordPress.org, Mobile Friendly, Apache, Android, Remote, AWS Trusted Advisor, Microsoft Azure Monitor, Microsoft PowerShell, Unix, Salesforce","","","","","","",69c281ea9b64ae0001e00f32,7375,54151,"Liongate AG is an IT consulting firm based in Munich, founded in 2012, with roots dating back to 2005. The company specializes in cloud solutions, Salesforce, AI, and digital services aimed at enhancing customer experiences and automating business processes. With a team of over 50 specialists, including developers and project managers, Liongate operates from two locations in Germany. + +The firm has completed over 300 large-scale projects and boasts a 9.9 Net Promoter Score, reflecting high customer satisfaction. Liongate is a certified Salesforce Partner and offers a range of services, including IT consulting, project management, and digital transformation solutions. Their focus on customer experience management and process automation helps businesses achieve growth and improve interactions with approximately 15 million end customers. The company values passion, curiosity, and impact, and maintains strong ratings, including a 4.7 Kununu Score.",2008,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670158f8bada010001e77a96/picture,"","","","","","","","","" +Steerix Technology,Steerix Technology,Cold,"",25,professional training & coaching,jan@pandaloop.de,http://www.steerix.net,http://www.linkedin.com/company/steerixmy,"","",3 Am Gasteig,Irschenberg,Bavaria,Germany,83737,"3 Am Gasteig, Irschenberg, Bavaria, Germany, 83737","photonics amp optoelectronics, industrial electronics, 4g5g wireless communication, rf amp microwave, internet of things, photonics optoelectronics, industry 40, semiconductor technology, rf microwave, industrial big data architectures, industry 4.0 training for smes, predictive analytics, big data, consulting, rf & microwave, services, workforce augmentation, rpa, technology consulting, education, government, heterogeneous system interoperability, smart automation, data analytics, robotics, b2b, data-driven decision making, iot sensors, computer systems design and related services, cost-effective maintenance strategies, big data in manufacturing, industry 4.0, manufacturing, digital solutions, industrial automation, prescriptive analytics, ai in visual inspection, iot, training & certification, software programming for engineers, image processing with ai, predictive maintenance, technical consultation, automation, digital transformation, data management, ai, information technology & services, enterprise software, enterprises, computer software, management consulting, mechanical or industrial engineering","","Google Tag Manager, Bootstrap Framework, Mobile Friendly, WordPress.org","","","","","","",69c281ea9b64ae0001e00f29,8731,54151,"Steerix Technology is an authorized partner of RWTH International Academy, RWTH Aachen University, Germany. + +We provide digital transformation solution, consultancy service and certificate program to the industries and universities. + +We focus on technology transfer in Industry 4.0, Data Science, LTE/5G, Software Programming, RF & Microwave, Industrial Electronics, etc. + +Steerix Sdn Bhd +Company Registration Number: 201401042992 (1119170-U)",2014,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66fd24ad86a620000175c8a9/picture,"","","","","","","","","" +LAYA Group,LAYA Group,Cold,"",110,information technology & services,jan@pandaloop.de,http://www.layagroup.de,http://www.linkedin.com/company/laya-group,"","",24 Friedenstrasse,Munich,Bavaria,Germany,81671,"24 Friedenstrasse, Munich, Bavaria, Germany, 81671","data driven marketing, multichannel, datenmarketing, loyalty, crm core, predictive analytics, technologie, advanced customer analytics, analytics, kundenbindung, crm, couponing, campaigning, customer data management, marketing, programmatic, industrievermarktung, consulting, scrum, customer journey, retail media, capaign marketing, personalisierung, projektmanagement, it services & it consulting, real-time customer interaction, customer experience, services, real-time data, data-driven marketing, b2c, customer journey mapping, computer systems design and related services, personalization, customer journey optimization, data privacy compliance, marketing automation, customer data standardization, multi-channel campaigns, omnichannel customer experience, data analytics, data integration, retail technology, omnichannel marketing, crm management, customer insights, data management, marketing and advertising, brand awareness, targeted advertising, campaign management, loyalty programs, b2b, customer identity management, event marketing, e-commerce, advanced analytics, in-store promotion, information technology and services, d2c, in-store digital advertising, media and publishing, digital transformation, retail data monetization, operational consulting, customer segmentation, programmatic advertising, market research, customer engagement, behavioral marketing, retail, customer data platform, distribution, consumer_products_retail, transportation_logistics, information technology & services, enterprise software, enterprises, computer software, sales, marketing & advertising, saas, consumer internet, consumers, internet, events, events services","","Mailchimp Mandrill, Outlook, MailChimp SPF, Microsoft Office 365, Nginx, Gravity Forms, WordPress.org, Mobile Friendly, AI","",Merger / Acquisition,0,2024-04-01,"","",69c281ea9b64ae0001e00f2a,7375,54151,"LAYA Group is a Munich-based company that specializes in data-driven retail solutions. It operates through its subsidiaries—LAYA Data, LAYA Solutions, and LAYA Media—to support digital transformation, customer data management, CRM, analytics, and retail media advertising. The company aims to modernize retail business models by linking data across people, processes, and products, which helps retailers make informed decisions and enhance customer experiences. + +LAYA Data focuses on privacy-compliant data management and advanced customer analytics, while LAYA Solutions offers CRM systems, data-driven marketing, and customer journey optimization. LAYA Media provides data-based retail media marketing and innovative advertising formats. With a team of 51-200 employees, LAYA Group processes millions of customer profiles and transactions, emphasizing customer-centric and agile approaches in the IT services and consulting industry.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6881b2acb7641300012c60b5/picture,"","","","","","","","","" +WAYT AG,WAYT AG,Cold,"",21,information technology & services,jan@pandaloop.de,http://www.wayt.digital,http://www.linkedin.com/company/wayt-digital,"","","",Regensburg,Bavaria,Germany,"","Regensburg, Bavaria, Germany","prozessautomation & itprojektmanagement, it services & it consulting, kundenspezifische software, management consulting, it-architektur, agile methoden, business process management, it consulting, it infrastructure, wissensvermittlung, prototyping, dokumentenmanagement, interdisziplinäres team, business consulting, business process automation, project management, software development, services, it-consulting, computer systems design and related services, projektmanagement, software engineering, softwarelösungen, geschäftsprozess-optimierung, digital transformation, innovation, nachhaltige it-lösungen, digitale transformation, technology consulting, prozessautomatisierung, regulierte umfeld automatisierung, it solutions, computer software, b2b, qualitätssicherung, information technology and services, workflow automation, process optimization, softwareentwicklung, consulting, information technology & services, productivity","","Outlook, Microsoft Office 365, Mobile Friendly, WordPress.org, Nginx, Apache","","","","","","",69c281ea9b64ae0001e00f34,7375,54151,"WAYT AG – WE ACCELERATE YOUR TRANSFORMATION + +Wir sind Dein Partner für Digitalisierung und Prozessautomation. Seit 2022 bieten wir als innovativer IT-Projektdienstleister maßgeschneiderte Lösungen und Beratung, um Deine digitale Transformation zu beschleunigen und nachhaltig zukunftssicher zu gestalten. + +Mit einem dynamischen Team aus erfahrenen IT-Expertinnen und Experten begleiten wir Dich durch den gesamten Software-Lifecycle – von der Analyse über die Entwicklung bis zur Implementierung und Optimierung. Unser Fokus: Effizienz steigern, Prozesse automatisieren und nachhaltige Ergebnisse erzielen. + +Unsere Expertise: +✔ IT-Beratung & Technologieumsetzung +✔ Digitalisierung & Prozessautomation +✔ Effiziente Softwareentwicklung + +Lass uns gemeinsam Deine Transformation effizient, nachhaltig und zukunftssicher gestalten! +🔗 www.wayt.digital",2022,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67173c7d69747e0001ab1dba/picture,"","","","","","","","","" +collect.AI,collect.AI,Cold,"",44,information technology & services,jan@pandaloop.de,http://www.collect.ai,http://www.linkedin.com/company/collectai,https://www.facebook.com/collectAI/,https://twitter.com/collectAI,16 Goerttwiete,Hamburg,Hamburg,Germany,20459,"16 Goerttwiete, Hamburg, Hamburg, Germany, 20459","receivables management, ki, white label, evu, payment reminder, mahnwesen, payment, b2b, dunning, invoicing, ecommerce, data science, kundenerhalt, banken, versicherungen, artificial intelligence, payments, utilities, markenauftritt, einvoicing, ai, energieversorger, debt collection, order2cash, saas, fintech, billing, germany, uk golf market (united kingdom), east europe, nordics, it services & it consulting, workflow automation, ki-modelle, predictive analytics, kostenreduktion, sap-konnektor, prozesskosten senken, automatisierte mahnwesen, ki-gestützte inkasso-optimierung, kundenportal, double opt-in, api-gestützte integration, ki-technologie, ki-gestützte zahlungsprognosen, dsgvo-konformität, automatisierung, datenanreicherung für forderungsmanagement, liquiditätsmanagement, kundenfeedback-tools, liquiditätsplanung, services, branchenfokus energieversorger, middleware-lösungen, digital transformation, automatisierte mahnprozesse, legacy-systeme anbindung, ki-gestützte analysen, financial services, saas forderungsplattform, branchenfokus banken, datenschutz, echtzeit-daten, zahlungsarten flexibel, computer systems design and related services, ai-gestützte forderungsmanagement, self-service ratenzahlung, predictive payment analytics, digitale sepa-lastschrift, rechnungsmanagement, branchenlösungen forderungsmanagement, datenanalyse in echtzeit, ki-assistenten, digitale zahlungsprozesse, kundenfeedback integration, custom built integrationen, integration hub, ki-gestützte inkasso-strategien, rest api integration, bidirektionale sap-schnittstelle, kundenkontaktmanagement, retail, datenmanagement, insurance, enterprise konnektoren, sepa mandate digital, zahlungsoptimierung, workflow builder, ki-gestützte vorhersagen, banking, ratenpläne, ai forderungsmanagement, zahlungsprozesse, branchenfokus versicherungen, prozessautomatisierung, datenintegration, kundenfeedback in echtzeit, branchenlösungen, d2c, ratenzahlung, datenanalyse, automatisierte zahlungserinnerungen, sap fi-ca konnektor, kundenzufriedenheit, data enrichment, workflow automatisierung, kundenbindung verbessern, payment processing, ki-basierte risikoanalyse, automatisierte inkasso-lösungen, kundenkommunikation, data analytics, e-commerce, integration sap, qr-code zahlungslinks, zahlungsausfälle minimieren, distribution, customer experience, dsgvo-konform, kundenbindung, kundenkommunikation digital, self-service, automatisierte kommunikation, compliance, saas-plattform, ki-assistenten im forderungsmanagement, datenqualität verbessern, ki-basierte prozessoptimierung, automatisierte kundenansprache, echtzeit-datenübertragung, order-to-cash, liquiditätsplanung optimieren, finance, energy, consumer internet, consumers, internet, information technology & services, computer software, finance technology, enterprise software, enterprises","","Route 53, Rackspace MailGun, Gmail, Google Apps, MailChimp SPF, Microsoft Office 365, CloudFlare Hosting, Grafana, UptimeRobot, React Redux, Hubspot, WordPress.org, Facebook Login (Connect), Vimeo, Google AdWords Conversion, DoubleClick, Google Dynamic Remarketing, Bing Ads, Linkedin Widget, Google Tag Manager, Facebook Widget, Linkedin Login, Mobile Friendly, DoubleClick Conversion, Linkedin Marketing Solutions, Google Font API, Google Analytics, Facebook Custom Audiences, Remote, AI","",Merger / Acquisition,0,2022-03-01,9000000,"",69c281ea9b64ae0001e00f36,7389,54151,"collect.AI is a FinTech company based in Hamburg, Germany, founded in 2016. It offers an AI-powered SaaS platform designed for receivables management, automating processes such as e-invoicing, payment reminders, dunning, and debt collection. The platform aims to optimize recovery rates, reduce costs, and enhance customer retention. As part of the Aareal Bank Group since its acquisition in March 2022, collect.AI employs around 60-106 professionals, including financial experts and software engineers. + +The platform has processed over €20 billion in receivables for more than 50 customers across various sectors, including banking, insurance, and e-commerce. Key features include interactive invoices, smart payment reminders, and data enrichment tools that help predict payment disruptions and improve cash flow. collect.AI emphasizes a customer-centric approach, providing personalized communication through multiple channels and seamless integrations with existing ERP and CRM systems.",2016,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6962a52ccf65370001ed4837/picture,Aareal Bank AG (aareal-bank.com),57c49130a6da98159d606fb6,"","","","","","","" +cecon Computer Systems GmbH,cecon Computer,Cold,"",19,information technology & services,jan@pandaloop.de,http://www.cecon.de,http://www.linkedin.com/company/cecon-computer-systems,"","",2 Platz vor dem Neuen Tor,Berlin,Berlin,Germany,10115,"2 Platz vor dem Neuen Tor, Berlin, Berlin, Germany, 10115","smart kitchen, private cloud voip pbx, private cloud computing, kolibripgare pagersysteme, it services & it consulting, information technology and services, unified communications, cloud-lösungen, security solutions, managed services, gastronomy, digitale gastronomielösungen, security, gastronomie-it, lenovo partner, telekommunikation, voip, smart kitchen development, branchenübergreifende funkrufsysteme, it-service, e-commerce, full-service, private cloud, beratung, it- und telekommunikationssysteme, it-wartung, it-support, b2b-it-lösungen, funkrufsysteme, it consulting, it-sicherheitsaudits, telecommunications, systemhaus, software development, logistik-it, logistiklösungen, retail, b2b, it-betreuung, business solutions, lenovo store berlin, it-projektmanagement, computer systems design and related services, hardware-service, cybersecurity beratung, consulting, it-schulungen, logistics, cybersecurity, services, customer service, remote support, systemintegration, partnernetzwerk, distribution, transportation & logistics, information technology & services, consumer internet, consumers, internet, management consulting",'+49 30 2839560,"Outlook, Nginx, Mobile Friendly, Connect, Git","","","","","","",69c281ea9b64ae0001e00f3a,7375,54151,"Systemhaus für IT und Telekommunikation. +Private Cloud Computing und PBX. +Deutsche Repräsentanz für QSR Automations ConnectSmart Kitchen Monitoring Systeme. Self Order Kioske. +Spezialist für Funkrufsysteme, Exklusivvertrieb von HME Jtech Pager Systemen.",1990,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f260d7070b2d00013c1965/picture,"","","","","","","","","" +SmartConData GmbH,SmartConData,Cold,"",25,information technology & services,jan@pandaloop.de,http://www.smartcondata.de,http://www.linkedin.com/company/smartcondata-gmbh,"","","",Langenfeld,North Rhine-Westphalia,Germany,"","Langenfeld, North Rhine-Westphalia, Germany","it services & it consulting, c#, it-dienstleister, .net, consulting, softwareentwicklung, services, scrum, information technology and services, kanban, intranet as microsoft 365 solution, microservices-architektur, microsoft 365 intranet-lösungen, dsgvo-konforme lösungen, testautomatisierung, testautomatisierung mit selenium und junit, qualitätssicherung, it-beratung, b2b, requirements engineering, computer systems design and related services, cloud computing, angular, software development, microsoft 365, node.js, java, microservices, cloud-lösungen, agile softwareentwicklung, it consulting, maßgeschneiderte softwareentwicklung, prozessoptimierung, react, agile entwicklung, agile methoden, skalierbare it-lösungen, intranet-lösungen, webanwendungen für unternehmen, webanwendungen, digitale transformation, skalierbare cloud-it-lösungen, information technology & services, enterprise software, enterprises, computer software, management consulting",'+49 2173 2042233,"Sendgrid, Outlook, Microsoft Office 365, CloudFlare Hosting","","","","","","",69c281e5be4f8f0001b91f82,7375,54151,"Since our founding in 2017, SmartConData GmbH has evolved into a significant player in the field of IT consulting. Our continuous growth reflects our commitment and passion for supporting our clients in the planning, evaluation, and implementation of complex software solutions. As a member of the IT Alliance (http://www.IT-Allianz.net), we are part of a network of established companies in the IT industry dedicated to effective collaboration and holistic implementation of software projects. + +Your satisfaction is our top priority. We understand the importance of digital transformation and assist you in successfully advancing, planning, and implementing technological future topics. Our professional and innovative team of IT experts is always focused on providing you with tailored solutions that meet your individual requirements. + +Respectful interaction on an equal footing is our credo and a key success factor that connects our team and our clients. We firmly believe that trusting cooperation is the foundation for the success of every project. Together with you, we strive to make your project a success and exceed your expectations. + +""To make your project a success"" - SmartConData GmbH + +""For a good partnership"" - IT.Alliance",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66ee4668f94b5c0001076b14/picture,"","","","","","","","","" +Sanssouci-ITSM GmbH,Sanssouci-ITSM,Cold,"",26,information technology & services,jan@pandaloop.de,http://www.sanssouci-itsm.de,http://www.linkedin.com/company/sanssouci-itsm-gmbh,"","",23 Friedrich-Engels-Strasse,Potsdam,Brandenburg,Germany,14473,"23 Friedrich-Engels-Strasse, Potsdam, Brandenburg, Germany, 14473","itprojektmanagement, itgovernance, cmdb configuration management, selbstorganisation, princ2 training, itsmberatung, prince2, itprozessmanagement, anforderungsmanagement, individuelle schulungen und planspiele im bereich itsmprojektmanagement, strategische organisationsberatung, providermanagement, konkrete umsetzung der digitalen transformation, atlassian, prince2 training, itservice management, enterprise service management, servicenow, servity, trainings itil, scrum, itprojektmanagment, best practicetrainings itil, itil training, scrum training, devops, individuelle trainings und anwenderschulungen, tools servicenow, itsm-prozessmanagement, kundenorientierung, information technology & services, agile methoden, itsm-optimierung, it-prozessanalyse, itsm-prozessanalyse, tools, it-projektmanagement, itil, itsm-toolauswahl, customizing, it-implementierung, automatisierung, tool-implementierung, itsm-consulting, it-transformation, it-strategie, services, computer systems design and related services, itsm-automatisierung, projektmanagement, schnittstellenintegration, schulungen, itsm-integration, itsm-change-management, change management, automatisierte workflows, organisationsentwicklung, it service management, itsm-implementierung, prozessautomatisierung, prozessberatung, b2b, itsm-schulungen, itsm-tools, consulting, itsm-beratung","","Cloudflare DNS, Outlook","","","","","","",69c281e5be4f8f0001b91f8a,7375,54151,"Als Experten mit Werten unterstützen wir Unternehmen dabei, ihr IT-Service-Management so aufzustellen, dass es effizient und erfolgreich die Geschäftsziele des Unternehmens unterstützt.",2018,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e73c790d2c6b000197c2c0/picture,"","","","","","","","","" +sparqs solutions GmbH & Co. KG,sparqs solutions GmbH & Co. KG,Cold,"",11,information technology & services,jan@pandaloop.de,http://www.sparqs.io,http://www.linkedin.com/company/sparqs-io,https://facebook.com/qonsense,"","",Dortmund,North Rhine-Westphalia,Germany,"","Dortmund, North Rhine-Westphalia, Germany","mulesoft, softwarearchitektur, marketing, sap, augmented reality, virtual reality, chatbots, voice user interfaces, agile, scrum, salesforce, energiewirtschaft, technologie, digitalisierung, digitale plattformen, user experience design, gesundheitswesen, apps, mobile app entwicklung, consulting, enterprise software, customer experience, services, industrie 4.0 plattformen, business consulting, computer systems design and related services, b2c, design thinking, content management systeme, agile softwareentwicklung, it-dienstleistungen, cloud computing, mobile app development, cloud services, customer loyalty systeme, software engineering, app entwicklung, erp-lösungen, technologieberatung, scrum master für softwareprojekte, chatbots & vui, user experience, digital strategy, b2b, sap-integration, software development, e-commerce, digitale transformation, enterprise services, voice user interfaces entwicklung, innovative it-lösungen, data science, information technology and services, d2c, disruptive technologies, custom software development, digital transformation, cross-functional teams, agile coaching, agile coaching für unternehmen, marketing & e-commerce, virtual & augmented reality, user interface design, retail, scrum master, information technology & services, enterprises, computer software, management consulting, ux, marketing & advertising, consumer internet, consumers, internet",'+49 231 99950335,"Outlook, Microsoft Office 365, WordPress.org, Apache, Google Maps, Google Maps (Non Paid Users), Mobile Friendly, Xamarin, Node.js, React Native, Android, Azure Devops, Docker, Remote, SAP, SAP Integration Suite, , SAP S/4HANA, SAP Business Technology Platform, Visual IQ","","","","","","",69c281e5be4f8f0001b91f92,7375,54151,"Willkommen bei sparqs! + +Seit 2017 gestalten und transformieren wir mit innovativen Lösungen aus einer Hand die digitale Zukunft unserer Kunden. Vom strategischen Consulting über inspirierende Workshops bis hin zu smarter Softwareentwicklung bieten wir maßgeschneiderte Konzepte und Produkte, die den Menschen in den Mittelpunkt stellen. + +Ob in der Energiewirtschaft, im Gesundheitswesen oder in Digital Sales: Unsere Lösungen schaffen echte Mehrwerte und begleiten unsere Kunden dabei, den digitalen Wandel erfolgreich zu meistern. Offene Kommunikation auf Augenhöhe ist für uns ein Muss, denn nur so kann eine partnerschaftliche und erfolgreiche Zusammenarbeit erfolgen. + +Lassen Sie sich vom sparqs-Funken begeistern! Wir freuen uns auf Ihre Nachricht.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66ef55014d3a3300012ef90f/picture,"","","","","","","","","" +servicepro,servicepro,Cold,"",26,marketing & advertising,jan@pandaloop.de,http://www.servicepro.de,http://www.linkedin.com/company/servicepro-agency,https://www.facebook.com/pg/servicepro.de/about/,"",8 Trausnitzstrasse,Muenchen,Bayern,Germany,81671,"8 Trausnitzstrasse, Muenchen, Bayern, Germany, 81671","customer centricity, dataanalytics, crm, cx, datadriven marketing, dialogmarketing, ki, ai, customer experience, advertising services, marketing cloud, b2c marketing, business intelligence, predictive modeling, b2b, customer data platform, augmented reality apps, information technology and services, web development, customer relationship management, data science, loyalty programs, data-driven marketing, customer journey, it, consulting, m-health, b2c, customer lifecycle marketing, customer segmentation, strategy, predictive analytics, personalization, kreation, mobile development, services, healthcare marketing, crosschannel campaigns, data handling, marketing and advertising, advertising agencies, data insights, reporting, big data, b2b marketing, pharma marketing, marketing automation, lead generation, data analytics, d2c, künstliche intelligenz, e-commerce, retail, healthcare technology, analytics, healthcare, sales, enterprise software, enterprises, computer software, information technology & services, marketing & advertising, consumer internet, consumers, internet, saas, health care, health, wellness & fitness, hospital & health care",'+49 89 4271450,"Outlook, Zendesk, Amazon AWS, Leadfeeder, Microsoft Azure, Bootstrap Framework, Mobile Friendly, Apache, Google Tag Manager, WordPress.org, Vimeo, Remote","","","","","","",69c281e5be4f8f0001b91f96,7374,54181,"Wir sind servicepro – Die Agentur für Data-Driven Marketing, CRM und KI. Wir verbinden Kreativität und Daten – für messbar mehr Wirkung und Wachstum. + +Unser Leitgedanke +Die richtige Botschaft, an die richtige Person, zur richtigen Zeit, über den richtigen Kanal - darauf bauen wir unsere Strategie auf, setzen diese ganzheitlich um und machen den Erfolg durch die richtigen Kennzahlen messbar. + +Was uns einzigartig macht +Die besten Marketing- und CRM-Lösungen entstehen im perfekten Zusammenspiel verschiedener Disziplinen. Wir haben uns so aufgestellt, dass genau das funktioniert – das macht uns einzigartig. Sie geben das Ziel vor, wir übernehmen. Alles aus einer Hand, alles für Ihren Erfolg! + +Lasst uns sprechen! 📩 info@servicepro.de",1983,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f678e355046c00014aaf98/picture,"","","","","","","","","" +Weiss IT Solutions GmbH,Weiss IT Solutions,Cold,"",140,information technology & services,jan@pandaloop.de,http://www.weiss-it-solutions.com,http://www.linkedin.com/company/weiss-it-solutions,"","",42 Birkerfeld,Warngau,Bayern,Germany,83627,"42 Birkerfeld, Warngau, Bayern, Germany, 83627","projekte, rollouts, device management, office it, managed it services, industrial it, onsite it services, network services, it services & it consulting, it-lösungen, it-device-management, wlan-ausleuchtung, it-support, project management, it-project-services, third party maintenance, it-support-services, network security, iso 27001-zertifizierung, b2b, it-asset-lifecycle, services, it-consulting, netzwerkmanagement, iso 9001, it-architektur, it support, it-asset-tracking, it-security, it consulting, it services, it-asset-disposal, it security, it-implementierung, netzwerkservices, it-modernisierung, it-dienstleister, it-asset lifecycle, iso 27001, it-optimierung, it-strategie, it infrastructure, cloud solutions, information technology and services, it-infrastruktur, it-asset-disposal-service, netzwerkplanung, transportation & logistics, it-asset management, distribution, it-service-management, it-helpdesk, it-helpdesk-management, it-asset-management, it-asset-tracking-system, computer systems design and related services, projektmanagement, consulting, it-helpdesk-services, it-services, it-management, iso 9001-zertifizierung, it-infrastrukturmanagement, information technology & services, productivity, management consulting, computer & network security, cloud computing, enterprise software, enterprises, computer software",'+49 8024 902680,"Outlook, Autotask, Google Tag Manager, Mobile Friendly, WordPress.org, Apache, Remote, Jumpcloud, Cisco AppDynamics, ServiceNow","","","","",19400000,"",69c281e5be4f8f0001b91f89,7371,54151,"With comprehensive solutions for large companies and medium-sized enterprises, we have been one of the leading IT Service Providers in Germany for more than three decades. With our service portfolio specially tailored to office IT and industrial IT, we cover all areas relating to the IT requirements of our customers. + +With own staff and full area coverage in Germany and Austria, we provide onsite services as well as flexible and personalised service. + +With our company headquarters in Warngau near Munich, we operate 5 branches as well as strategically defined warehouse and staging locations. With 440 employees, we currently support over 350,000 IT workstations at 10,400 customer locations in Germany and Austria.",1991,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/683d2d16c2dc9d00019e624a/picture,"","","","","","","","","" +SYNCPILOT Group,SYNCPILOT Group,Cold,"",150,information technology & services,jan@pandaloop.de,http://www.syncpilot.com,http://www.linkedin.com/company/syncpilot,"","",12 Kurzes Gelaend,Augsburg,Bavaria,Germany,86156,"12 Kurzes Gelaend, Augsburg, Bavaria, Germany, 86156","agiles prozess management, softwareentwicklung, uxui anwendungen, softwareengineering fuer die digitalisierung und automatisierung, automatisierung von kernprozessen in unternehmen, entwicklung von interaktiven services, prozessmanagement, business intelligence, online vertriebsloesung fuer rechtssichere abschluesse, digitale signatur, digitaler vertrieb, plattformuebergreifende und betriebssystemunabhaengige softwaresolutions, softwaresolutions, digitalisierung, software development, sap cloud platform, online contract management, process optimization, government, digital process automation, sap business technology platform, workflow automation, consulting, project management, customer experience, digital ecosystem, services, customer journey, performance optimization, municipal digital services, public sector technology, computer systems design and related services, media-free interaction, interaction platform, digital customer interaction, digital sales solutions, digital citizen services, digital contract signing, customer-centric solutions, compliance and security, sap endorsed app, sap integration, digital customer interface, professional services, customer loyalty, data flow management, crm integration, b2b, cloud platform, real-time dialogue, training and certification, public sector digitalization, sector-specific solutions, data orchestration, media continuity, media-disruption-free communication, energy sector solutions, multichannel communication, digital contract law compliance, digital signatures, online consultation, d2c, information technology and services, digital transformation, secure communication, insurance digitalization, customer engagement, customer relationship management, sap certified app, finance, legal, non-profit, analytics, information technology & services, productivity, professional training & coaching, crm, sales, enterprise software, enterprises, computer software, financial services, nonprofit organization management",'+49 82 189946100,"Outlook, Microsoft Office 365, Atlassian Cloud, Slack, Apache, Google Tag Manager, Mobile Friendly, reCAPTCHA, Vimeo, AWS SDK for JavaScript, CAT, ChatGPT, Gemini, Claude, k6, Apache JMeter, Grafana, Prometheus, Spring Boot, Angular, TypeScript, SAP, Confluence, Jira, Burp Suite, Nmap, Wireshark, Bootstrap, HTML Pro, CSS, JUnit, Spring, Jest, MariaDB, MySQL, Aryson MySQL to MSSQL Converter, Hibernate, Liquibase, Bitbucket, Microsoft Windows Server 2012, Microsoft Active Directory Federation Services, Microsoft 365, Cisco Secure Firewall Management Center, Rise, Salesforce CRM Analytics, Lighthouse 360, Radia Client Automation, Swagger UI, Docker, Kubernetes, HELM, Jenkins, Git, Azure Linux Virtual Machines","","","","","","",69c281e5be4f8f0001b91f8e,7375,54151,"SYNCPILOT Group is a German software company based in Puchheim, near Munich, with an additional office in Augsburg. Founded in 2015, the company specializes in scalable digital solutions for sales, customer relationship management (CRM), administration, and business transformation. With a team of approximately 110-145 employees, SYNCPILOT focuses on creating immersive user experiences that enhance customer interactions and streamline sales processes. + +The company offers integrative software solutions, including digital customer consulting platforms, online contract closing with digital signatures, and administration digitalization. Key products like the Customer Experience Platform and LIVE CONTRACT facilitate efficient workflows and secure communication across various sectors, including insurance, finance, automotive, energy, telecommunications, and public administration. SYNCPILOT also provides training programs to upskill employees for digital-first environments, ensuring organizations can adapt to evolving market demands.",2015,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/695ddddae4fd7c0001f935d4/picture,"","","","","","","","","" +s.i.g. System Informations Gesellschaft mbH,s.i.g. System Informations Gesellschaft mbH,Cold,"",14,information technology & services,jan@pandaloop.de,http://www.sig-ulm.de,http://www.linkedin.com/company/s.i.g.-systeminformationsgesellschaft-mbh,https://www.facebook.com/sigitmitiq/,https://twitter.com/sigitmitiq1,5 Zeppelinstrasse,Neu-Ulm,Bavaria,Germany,89231,"5 Zeppelinstrasse, Neu-Ulm, Bavaria, Germany, 89231","itinfrastruktur, storage, industrial it, backup, datenschutz, network, it consulting, virtualisierung, it security, microsoft solutions, cloud services, data center services, unified communications, it services & it consulting, it training, it deployment, it monitoring, it optimization, smart factory it, it services, cloud computing, iot integration, data security, consulting, information technology and services, network security, green data centers, it migration, high-availability systems, backup solutions, it maintenance, it asset management, it outsourcing, it management, it compliance, it operations, it engineering, services, compliance with gdpr, education services, data protection, managed services, government, it integration, industrial automation, hybrid cloud solutions, secure remote access, it solutions, it support, computer systems design and related services, it modernization, industrial it solutions, data center automation, it architecture, storage solutions, remote support, b2b, nonprofit organizations, secure cloud migration, digital transformation, virtualization, datacenter services, it service desk, custom it infrastructure, it lifecycle management, network management, server management, it automation, it-infrastruktur, security infrastructure, edge computing support, it project management, energy-efficient data centers, education, non-profit, manufacturing, distribution, information technology & services, management consulting, computer & network security, enterprise software, enterprises, computer software, outsourcing/offshoring, mechanical or industrial engineering, information architecture, nonprofit organization management",'+49 731 935960,"Microsoft Office 365, Typekit, WordPress.org, Apache, Mobile Friendly","","","","","","",69c281e5be4f8f0001b91f93,7375,54151,"Wir arbeiten mit unseren Kunden schon heute an den intelligenten Lösungen für Morgen. Denn wirklich begeisternd können IT-Lösungen nur sein, wenn sie bis ins kleinste Details auf den Kunden abgestimmt sind. Mit diesem Anspruch ist die [s.i.g.]mbH in den vergangenen Jahren stetig gewachsen. Ein wichtiger Baustein dafür ist die Treue der Kunden. Mit einem breit gefächerten Fachwissen beraten wir unsere Kunden bei ihrer IT-Strategie und erarbeiten Projekte unter anderem in den Bereichen Storage, Backup, Network-Security, IT-Infrastruktur, Industrial-IT und Datenschutz. Wir denken bei allem was wir tun immer einen Schritt weiter – so sind Visionen Alltag bei der s.i.g. mbH.",1997,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/687b6d0a6739590001f6d580/picture,"","","","","","","","","" +Clue One,Clue One,Cold,"",15,management consulting,jan@pandaloop.de,http://www.clueone.de,http://www.linkedin.com/company/clueone,"","",51 Guentherstrasse,Hamburg,Hamburg,Germany,22087,"51 Guentherstrasse, Hamburg, Hamburg, Germany, 22087","business model gotomarket, sales solutions, kultur changemanagement, zielgruppen kanalstrategie, it datenstrategie, prozess organisation, creative solutions, team enablement, produkt servicestrategie, media solutions, innovation research, marke kommunikation, business consulting & services, technology consulting, customer journey mapping, analytics & bi consulting, customer retention, social media management, market segmentation, ai in marketing, digital insights, digital campaigns, seo optimization, information technology and services, market analysis, influencer marketing, content marketing, brand development, ai-driven customer insights, digital ecosystem, ai content generation, performance marketing, digital strategy, digital customer profiling, digital brand positioning, media and communications, retail, ai in seo, online lead generation, video marketing, automated content creation, seo, digital transformation, digital kpis, customer data platform, predictive analytics in marketing, social media, marketing automation, retargeting automation, d2c, user experience optimization, content creation, voice search optimization, services, advertising agencies, real-time bidding, digital kpi dashboards, advanced attribution modeling, digital market segmentation, content distribution, brand strategy, machine learning for ad targeting, media agentur, b2b, e-commerce, real-time campaign optimization, dynamic ad creatives, multichannel marketing, market trend analysis, chatbots in marketing, digital asset management, digital tools, programmatic advertising, crm consulting, data analytics, cross-channel marketing, multilingual content marketing, digital campaign automation, online advertising, growth hacking, media planning, hyperlocal marketing, cross-device tracking, performance analysis, ai-powered marketing, e-commerce strategy, target audience analysis, customer engagement, digital pr, b2c, personalization, automated a/b testing, consulting, mobile marketing, ux/ui design, personalized customer experiences, campaign tracking, digital branding, digital marketing, marketing and advertising, influencer analytics, digital storytelling, media analytics, market research, crm-agentur, process automation, campaign management, integrated marketing platforms, digital innovation, conversion optimization, media buying, omnichannel marketing, programmatic media buying, distribution, management consulting, information technology & services, marketing & advertising, marketing, search marketing, consumer internet, consumers, internet, saas, computer software, enterprise software, enterprises",'+49 40 29851122,"Outlook, Hubspot, Google Tag Manager, Google Font API, WordPress.org, Mobile Friendly, reCAPTCHA, Nginx, Android, CookieYes, Google Analytics, Wordpress, YouTube","","","","","","",69c281e5be4f8f0001b91f7f,7375,54181,"Clue One kombiniert Strategie- & Technologieberatung mit tiefer Umsetzungsexpertise und Kompetenzaufbau für Marketing- & Vertriebsorganisationen. Kollaborativ, zielorientiert und unabhängig. + +Damit Menschen sinnvolle Unternehmen entwickeln. + +Egal ob Strategie, Umsetzung oder Training: Wir finden heraus, welche Hebel für den Markterfolg die richtigen sind. Durch unser Team aus erfahrenen Unternehmern, Marketing- & Vertriebsprofis sowie unserer skalierbaren Netzwerkstruktur sind und bleiben wir unabhängig. Jeder Herausforderung begegnen wir lösungsoffen und marktorientiert. Unsere Strategieberater wissen, was in der Praxis funktioniert, unsere Umsetzungsteams verstehen es, Strategien umzusetzen. + +So behalten wir das Wichtigste im Blick: den Erfolg unserer Kunden! + +Impressum: +CLUE ONE GMBH & CO. KG +Güntherstraße 51 +D-22087 Hamburg + +Handelsregister: HRA 121789 +Registergericht: Amtsgericht Hamburg +Vertreten durch Geschäftsführer: Heiko Willers, Carena Bongertz, Eric Fritz + +KONTAKT +Telefon: +49 40 298 511 22 +E-Mail: office@clueone.de + +UMSATZSTEUER-ID +Umsatzsteuer-Identifikationsnummer gemäß §27 a Umsatzsteuergesetz: +DE313499402",2014,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66fa3ad5a27ea2000136e429/picture,"","","","","","","","","" +avameo GmbH,avameo,Cold,"",16,information technology & services,jan@pandaloop.de,http://www.avameo.de,http://www.linkedin.com/company/avameo-gmbh,https://facebook.com/pages/Ava-meo/150266848338140,https://twitter.com/avameo,Unter den Eichen,Wiesbaden,Hesse,Germany,65195,"Unter den Eichen, Wiesbaden, Hesse, Germany, 65195","it services & it consulting, big data, digitalisierung, digital transformation, it-dienstleister, technologieberatung, b2b, it-beratung, project management, consulting, risk assessment, system integration, it-security, it-transformation, data governance, prozessoptimierung, machine learning, it-architekturen, softwareentwicklung, services, data science, innovationsmanagement, cloud-tools, digitalstrategie, maßgeschneiderte lösungen, change management, systemintegration, information technology, process optimization, software development, customer relationship management, custom software development, künstliche intelligenz, cloud solutions, state of the art-technologien, computer systems design and related services, information technology and services, cloud computing, business intelligence, cybersecurity, customer experience, distribution, information technology & services, enterprise software, enterprises, computer software, productivity, artificial intelligence, crm, sales, analytics",'+49 611 1817739,"Outlook, Remote, ISO+™","","","","",291000,"",69c281e5be4f8f0001b91f80,7371,54151,Wir unterstützen unsere Kunden bei der Entwicklung ihrer Digitalen Transformation von der Entwicklung ihrer Strategie über die Konzeption bis zur Umsetzung.,"",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67302cc95a84f000012bdf81/picture,"","","","","","","","","" +advist Group,advist Group,Cold,"",27,information technology & services,jan@pandaloop.de,http://www.advist-group.com,http://www.linkedin.com/company/advist-group,"","","",Wuerzburg,Bavaria,Germany,"","Wuerzburg, Bavaria, Germany","sapberatung, transportmanagement, ewm, lagerverwaltung, supply chain, 3planbindung, sd, logistik, tm, prozessberatung, training, change management, ocm, sap, enablement, mm, sap solutions, consulting services, logistics, information technology and services, sap modules, manufacturing, distribution, industry-specific sap modules, migrations, customizing, test management, s/4hana transformation, sap training, sap mvps, project management, process optimization, supply chain management, digital transformation, sap consulting, system integration, management consulting services, b2b, education, transportation & logistics, management consulting, information technology & services, mechanical or industrial engineering, productivity, logistics & supply chain",'+49 93 166390401,"Outlook, Microsoft Office 365, Google Font API, Mobile Friendly, Nginx, WordPress.org, , SAP","","","","","","",69c281e5be4f8f0001b91f81,7379,54161,"advist Group (advist AG) is an IT services company based in Würzburg, Germany, specializing in SAP consulting. Founded in 2022, the company focuses on digital supply chain optimization and S/4HANA transformations. With a team of approximately 30-32 employees, advist AG generates an annual revenue of $6.3 million. The company aims to enhance business processes, reduce costs, and improve productivity through its SAP expertise. + +advist Group offers a range of SAP consulting services, including S/4HANA transformations, process optimization, and material management processes. Their services cover everything from project planning to implementation, ensuring tailored solutions for their clients. The company also provides educational content, such as tutorials on their YouTube channel, to support SAP users at all levels. + +advist AG has collaborated with notable clients, including a leading German fashion company and a prominent automotive manufacturer, to implement SAP solutions that optimize operations and support expansion plans.",2022,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/675d24a85ea35400019ab098/picture,"","","","","","","","","" +Trovarit AG - the IT-Matchmaker,Trovarit AG,Cold,"",46,information technology & services,jan@pandaloop.de,http://www.trovarit.com,http://www.linkedin.com/company/trovarit,"","",11 Kackertstrasse,Aachen,North Rhine-Westphalia,Germany,52072,"11 Kackertstrasse, Aachen, North Rhine-Westphalia, Germany, 52072","digitalisierung, einfuehrung von business software, anforderungsmanagement, projektaudit review, auswahl und beschaffung von business software, implaix, prozessanalyse, potenzialanalyse, optimierung des business software einsatzes, implementierungsprojekte, erproadmap, evaluation von business software, marktstudien und analysen, clever digitalisieren mit bordmitteln, projektmanagement, digitalisierungsprojekte, it services & it consulting, marktspiegel erp/pdm/crm, projektsteuerung, management consulting, consulting, software optimierung, pdm/plm, partnernetzwerk, whitepapers industrie 4.0, webinare, it-infrastruktur-audit, infrastruktur-audit, prozessberatung, whitepapers, marktübersicht sap/microsoft dynamics, datenqualitätsmanagement, software vertragsgestaltung, erp auswahl und implementierung, services, it-strategieentwicklung, projekt health check, forschung und entwicklung, software success stories, ecm/dms, vendor unabhängigkeit, it-matchmaker tool, business software evaluation, marktanalysen, vendor unabhängige beratung, crm, industrie 4.0 lösungen, kundenreferenzen, implementierungsbegleitung, it-matchmaker plattform, studien und whitepapers, software vergleich, change management methoden, softwarevergleich, vertragsverhandlungen, software-tools, produktlebenszyklus-management, change management, retail, benchmarking, datenmanagement, weiterbildung und webinare, marktdatenanalyse, projektcontrolling, crm in der praxis, supply chain management, marktüberblick, erp in der praxis, logistics, studien, management consulting services, it-roadmap, datenmigration, projekt health check tools, information technology and services, it-consulting, marktübersichten, qualitätsmanagement, softwareauswahl, b2b, manufacturing, schulungen, mes, distribution, workshops, supply chain software, industrie 4.0, risikoanalyse, mes software, it-strategie, zertifikatskurse, datenqualität, marktforschung, consumer_products_retail, transportation_logistics, information technology & services, sales, enterprise software, enterprises, computer software, logistics & supply chain, mechanical or industrial engineering",'+49 24 1400090,"Outlook, Microsoft Office 365, Apache, Mobile Friendly, WordPress.org, reCAPTCHA","","","","","","",69c281e5be4f8f0001b91f85,7375,54161,"Trovarit AG is a consulting firm based in Aachen, Germany, specializing in business software selection, implementation, and optimization. Founded in 2001, the company employs between 51-100 people and generates approximately $5.1 million in revenue. Trovarit focuses on providing market information and facilitating customer contacts in operational IT applications. + +The firm offers a range of services, including software selection and implementation, AI-based software selection, IT strategy development, management consulting, and process analysis and optimization. Trovarit also features the IT-Matchmaker platform, designed to support software projects efficiently and collaboratively. Their expertise spans various software categories, such as ERP, CRM, document management systems, and production planning solutions. With over 20 years of experience, Trovarit serves a diverse array of industries and is an active member of the BITKOM association, participating in key industry events.",2000,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6963622ff285d90001e2daea/picture,"","","","","","","","","" +A EINS Business Intelligence GmbH,A EINS Business Intelligence,Cold,"",23,information technology & services,jan@pandaloop.de,http://www.aeins.de,http://www.linkedin.com/company/a-eins-digital-innovation,https://www.facebook.com/aeinsbusinessintelligence/,"",21 Am Kleinen Rotenberg,Wittlich-Land,Rhineland-Palatinate,Germany,54516,"21 Am Kleinen Rotenberg, Wittlich-Land, Rhineland-Palatinate, Germany, 54516","eprocurement, ecommerce, bigdata, appentwicklung, open business hub, superapp, platform innovation, smartdata, fulfillment, crm, itprozesse, vertriebsapplikationen, community empowerment, dsgvo, salesapp, direktvertrieb 40, vertriebsunterstuetzung, microsoft, erp, datenanalyse, smart city app, shopsysteme, datenschutzkonformitaet, ki, it services & it consulting, process automation, fraud detection, regional energy platform, regional service platform, customer engagement, b2b2c platform, community management, city services integration, smart city super app, predictive analytics, telecommunications, mobile app development, data-driven insights, digital platform, smart city solutions, cloud computing, geo-data analysis, event management, data security, sales automation, b2c, data analytics, advanced hub, commerce hub, municipal digital solutions, payment processing, business software, contract management, e-fulfillment, community network, smart city transformation, ai solutions, business intelligence, software development, services, regional energy management, computer systems design and related services, lead generation, content hub, smart city, digital transformation, urban mobility app, customer relationship management, e-commerce solutions, customer data platform, regional digital ecosystem, e-commerce, ai & analytics, utilities, regional platform, regional smart city, modular software, d2c, b2b, customer journey, sales hub, information technology and services, workflow automation, supply chain management, process optimization, customer retention, government, retail, digital contracts, sales enablement, e-procurement, community engagement, non-profit, distribution, transportation & logistics, consumer internet, consumers, internet, information technology & services, sales, enterprise software, enterprises, computer software, computer & network security, events services, saas, analytics, marketing & advertising, logistics & supply chain, nonprofit organization management",'+49 65 7190400,"Outlook, Facebook Widget, WordPress.org, Gravity Forms, Facebook Custom Audiences, Google Maps, reCAPTCHA, Google Play, Apache, Linkedin Marketing Solutions, Google Tag Manager, YouTube, Facebook Login (Connect), Mobile Friendly, Remote, AI","","","","","","",69c281e5be4f8f0001b91f94,7375,54151,"A EINS Business Intelligence GmbH is one of Germany's leading B2B2C digital agencies and has evolved over the past 25 years from a software developer to a pioneer in the digitalization of cities and smart AI technology. The company specializes in the development of tailor-made, scalable and modular software solutions that drive digitalization and integrate smart AI technologies. The flagship product Portazon for the Smart City in Trier with the #SmartCitySuperApp impressively demonstrates how complex challenges can be overcome and groundbreaking results achieved. + +#Portazon #SmartCitySuperApp #OnedayDayone #AlreadySuperApp",1998,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/682075d5bbbda20001603e33/picture,"","","","","","","","","" +Assecor GmbH,Assecor,Cold,"",75,information technology & services,jan@pandaloop.de,http://www.assecor.de,http://www.linkedin.com/company/assecor-gmbh,"","",207 Storkower Strasse,Berlin,Berlin,Germany,10369,"207 Storkower Strasse, Berlin, Berlin, Germany, 10369","microservices, informationssicherheit, data management, microsoft, business applications, it infrastructure services, dynamics crm, digitalisierung, digital workplace, sharepoint, it infrastructure amp services, scrum, web development, it architecture, microsoft office 365, projektmanagement, software development, angular js, xamarin cross plattform apps, anforderungsmanagement, prototyping, office 365, anforderungsaufnahme, software, consulting, information technology, it services & it consulting, digitale bauarchive, cybersecurity audits, compliance, ux/ui design, cyber security, data mesh-strategie, computer systems design and related services, information security and cybersecurity, business intelligence, it consulting, it-compliance, energy & utilities, smarte energiedaten, datenbereinigung über systeme hinweg, data analytics and data management, iso zertifizierungen, data migration, data security, information technology and services, b2b, user experience design, automation, cloud solutions, enterprise software, cloud-strategien, it infrastructure, cybersecurity, penetration testing, government, energiewende datenqualifizierung, whitepapers, intranet solutions, ki-integration, cloud security, white-label solutions, custom software, data analytics, microservices-architektur, etl-prozesse, microsoft gold partner, process optimization, data & ai, it-beratung, ki-potenzialanalyse, rpa, services, it-security, digital transformation, data science, data mesh, process automation, change management prozesse, softwareentwicklung, data quality, ki-beratung & ki-integration, ai-gestützte dokumentenmanagementsysteme, it security, datenqualifizierung, generative ki in der industrie, legacy code modernisierung, it-architektur, it-infrastruktur, generative ai, legacy system modernisierung, ki in der medizintechnik, transportation & logistics, automatisierte glossarerstellung, change management, information technology & services, information architecture, computer & network security, analytics, management consulting, cloud computing, enterprises, computer software",'+49 30 46794775,"Cloudflare DNS, Outlook, Microsoft Office 365, Amazon AWS, Webflow, Hubspot, Linkedin Marketing Solutions, Mobile Friendly, Google Tag Manager, Microsoft Power Automate, OpenAI Whisper, Anthropic Claude, Claude, go+, GRPC, Amazon Managed Streaming for Apache Kafka (Amazon MSK), NATS, RabbitMQ, Docker, Azure Active Directory, Microsoft Azure Monitor, Microsoft Exchange Server 2003, Microsoft Hyper-V Server, Microsoft Intune Enterprise Application Management, Microsoft Teams Rooms, Office365, SharePoint, VMware, AWS SDK for JavaScript, Spring, Java EE, Angular, C#, Jira, Scrum Do, Apache Kafka, Bootstrap, Aryson MySQL to MSSQL Converter, MySQL, PostgreSQL, Azure Devops, REST, SQL, n8n, OpenAI, Python, Fusion ERP Analytics, React, TypeScript, AI, Amazon Product Advertising API","","","","","","",69c281e5be4f8f0001b91f87,7375,54151,"Assecor GmbH is an IT consulting and software development company based in Berlin, Germany. With over a decade of experience, the company specializes in advising clients on digital projects throughout the entire IT lifecycle, from strategy and planning to implementation and optimization. Founded around 1997, Assecor employs approximately 120 people and generates around $5.6 million in revenue. + +The company offers a range of services focused on digital transformation, including custom software development, AI consulting and integration, UX/UI design, and IT security. Assecor serves various industries, such as critical infrastructure, logistics, insurance, and financial services, emphasizing tailored solutions that create economic, social, and ecological value. With additional offices in Stralsund, Hanover, and Nuremberg, Assecor is well-positioned for nationwide and international project management, fostering close collaboration with clients to achieve long-term results.",2007,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68728af496d5f40001830764/picture,"","","","","","","","","" +TWT On,TWT On,Cold,"",57,information technology & services,jan@pandaloop.de,http://www.twt-on.de,http://www.linkedin.com/company/oevermann-networks-gmbh,"","",75 Friedrich-Ebert-Strasse,Bergisch Gladbach,North Rhine-Westphalia,Germany,51429,"75 Friedrich-Ebert-Strasse, Bergisch Gladbach, North Rhine-Westphalia, Germany, 51429","softwaredevelopment, internetanwendungen, extranetanwendungen, managed hosting, itsecurity, intranetanwendungen, beratung, grafik und design, onlinemarketing, itservices, ebusinessloesungen, technology, information & internet, d2c e-commerce, e-commerce development, transportation & logistics, energy & utilities, digital accessibility, d2c, financial services, pim/dam/mam integration, regulatory compliance, project management, user experience design, accessibility tools, cms integration, software engineering, digital health, cloud solutions, customer experience, b2b, e-commerce, system and software evaluation, omnichannel retail solutions, computer systems design and related services, digital health projects, system integration, data privacy compliance, custom software solutions, social media marketing, software development, data analytics, digital transformation, regulatory compliance in healthcare, security measures, custom software development, digital agency, logistics, it infrastructure, consulting, building automation, digital marketing, healthcare, managed services, shopware 6, healthtech, it consulting, sustainable digital solutions, user experience, retail, sitecore cms, information technology and services, cloud hosting, services, b2c, consumer products & retail, information technology & services, productivity, health, wellness & fitness, cloud computing, enterprise software, enterprises, computer software, consumer internet, consumers, internet, marketing & advertising, health care, hospital & health care, management consulting, ux",'+49 22 04844400,"Gmail, Google Apps, Microsoft Office 365, Mailchimp Mandrill, Pardot, Jira, Atlassian Confluence, Atlassian Cloud, GitLab, Hubspot, Etracker, Mobile Friendly, ASP.NET, Nginx, TYPO3, Remote","","","","","","",69c281e5be4f8f0001b91f8d,7375,54151,"OEVERMANN Networks, eine der Top 50 Internet-Agenturen in Deutschland (iBusiness Internet-Agentur-Ranking 2011), verbindet Kreativität mit technischer Kompetenz in der Entwicklung von zukunftsorientierten Internet-, Intranet- und Extranet-Anwendungen. Wir tragen mit unseren Lösungen zur Optimierung der Geschäftsprozesse und Kommunikationswege unserer Kunden bei. Mit unserem Know-how in den Bereichen Design & Multimedia, Internet und IT-Services bieten wir unseren Kunden umfassende Kompetenzen aus einer Hand. + +Unsere Kundenpartnerschaften zeigen und bestätigen unsere Strategie. Seit 1994 betreuen wir erfolgreich Kunden aus den Bereichen Banken & Versicherungen, Industrie & Handel, Medizin, Recht, Lifestyle & Personality sowie Kommunen & Verbände.",1994,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6563604304759b0001fbcbd7/picture,"","","","","","","","","" +Marketing Communication,Marketing Communication,Cold,"",27,marketing & advertising,jan@pandaloop.de,http://www.marketing-communication.de,http://www.linkedin.com/company/marketing-communication,"","","",Leipzig,Saxony,Germany,"","Leipzig, Saxony, Germany","inbound marketing, sales automation, marketing automation, digital marketing, customer experience management, advertising services, process optimization, performance marketing, consulting, management consulting, lead generation, services, customer journey, data-driven marketing, conversion rate optimization, marketing strategy, management consulting services, data analytics, email marketing, customer nurturing, marketing and advertising, seo/sea, b2b, customer intelligence, content marketing, marketing process automation, content creation, social media management, information technology and services, performance marketing klaviatur, re-engagement campaigns, digital transformation, social media marketing, customer engagement, e-commerce, marketing & advertising, saas, computer software, information technology & services, enterprise software, enterprises, sales, consumer internet, consumers, internet",'+49 34 207405172,"Microsoft Office 365, Hubspot, Google Analytics, Google Tag Manager, Nginx, Mobile Friendly, Avaya","","","","","","",69c281e5be4f8f0001b91f90,7375,54161,"Ich bin Experte für Customer Engagement und Customer Intelligence sowie Inbound Marketing und deren Umsetzung in der Unternehmenskommunikation – online, offline sowie in sozialen Netzwerken. + +Mit Sitz in Leipzig und Berlin berate ich seit über 15 Jahren namhafte, internationale Unternehmen der Informations- und Telekommunikationstechnologie sowie mittelständische Unternehmen unterschiedlicher Branchen im Bereich Marketing, Marketing Communication und Data Driven Marketing. Dabei unterstütze ich sie, neue Kundengruppen zu erschließen und Produkte und Services auf die Bedürfnisse dieser Kunden abzustimmen.",2004,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6703be2b0c3ab9000149e048/picture,"","","","","","","","","" +Ronwell Digital,Ronwell Digital,Cold,"",18,information technology & services,jan@pandaloop.de,http://www.ronwelldigital.com,http://www.linkedin.com/company/ronwell-digital,"","","",Norderstedt,Schleswig-Holstein,Germany,"","Norderstedt, Schleswig-Holstein, Germany","test automation, telco crm, revenue assurance, it strategy, revenue margin assurance, finance business process, mobile accesories, fraud management, itconsulting, it services & it consulting, strategic growth, custom software, cloud computing, client-centric approach, it support, managed it services, data management, energy & utilities, defense, cloud-native applications, business process reengineering, banking and financial services, enterprise solutions, automation, sustainability, technology consulting, software engineering, pharmaceuticals & chemicals, cloud solutions, digital strategy, sustainable it practices, ai & machine learning, b2b, managed it, computer systems design and related services, financial technology, system integration, customer relationship management, healthcare technology, telecommunication, erp, automation tools, digital evolution, software development, data analytics, devops, qa and test automation, digital transformation, robotic process automation, sap consulting, next-gen it solutions, enterprise cloud migration, ai in business, cybersecurity, cloud infrastructure, custom software development, automated testing tools, digital innovation, machine learning, next-generation it, consulting, digital capabilities development, sustainability services, it services, it consulting, client success, data-driven decision making, qa automation, crm consulting, crm, industry-specific solutions, industry-specific digital solutions, devops services, real-time data processing, industry expertise, information technology and services, data engineering, business process automation, enterprise software, services, industry solutions, healthcare, finance, information technology & services, enterprises, computer software, environmental services, renewables & environment, management consulting, marketing, marketing & advertising, finance technology, financial services, sales, internet infrastructure, internet, artificial intelligence, health care, health, wellness & fitness, hospital & health care",'+1 469-971-8711,"Cloudflare DNS, Outlook, Google Tag Manager, Shopify, Adobe Media Optimizer, Vimeo, Cedexis Radar, Mobile Friendly, Android, Remote, Automation Anywhere, Uipath","","","","","","",69c281e5be4f8f0001b91f91,7371,54151,"Ronwell Digital is a management consulting firm based in Norderstedt, Schleswig-Holstein, Germany, founded in 2004 or 2005. The company specializes in combining traditional management consulting with IT expertise, focusing on IT consulting services, software development, testing, and digital transformation. + +Operating in the Information Technology & Services sector, Ronwell Digital offers a variety of services, including SAP development, CRM solutions, quality assurance, and robotic process automation. The firm emphasizes an integrated approach to enhance company performance, with specialties in IT strategy, fraud management, revenue assurance, and cloud infrastructure management. The company provides nearshore and onshore services, with hourly rates ranging from approximately $30 to $70.",2005,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670b27fb04630a00018a89e1/picture,"","","","","","","","","" +moveXM,moveXM,Cold,"",52,information technology & services,jan@pandaloop.de,http://www.movexm.com,http://www.linkedin.com/company/movexm,"","",59 Dreieichstrasse,Frankfurt,Hesse,Germany,60594,"59 Dreieichstrasse, Frankfurt, Hesse, Germany, 60594","it expertise, cx, cx management, employee experience, customer satisfaction & loyalty management, insights, data management, ai ki, service quality, ces, kundenfeedback, voice of the customer, voc, training & coaching, kundenzufriedenheit, churn management, customer centricity, sentiment analytics, csat, datadriven, churn prevention, saas, cem, natural language processing, retention marketing, customer experience, nps, cx analytics, kundenzentrierung, software development, iso 9001:2015 zertifiziert, insurance, kundenfeedback-visualisierung, automatisierte ursachenanalyse, business intelligence, dashboards anpassbar, data security, b2c, consulting, datenschutzkonform, feedback-analyse in echtzeit, generative ai, made in germany, kundenfeedback-analyse, customer satisfaction score, kundenabwanderung verhindern, customer experience management, integrationen in crm-systeme, datenschutz in deutschland, kundenloyalität steigern, ki-gestützte kundenbindung, services, feedback-management für versicherungen, customer retention, automatisierte textanalyse, datensicherheit, generative ki, energy & utilities, net promoter score, automatisierte sentiment-analyse, automotive, cloud-basiert, iso 27001 zertifiziert, kundenbindung, customer journey mapping, customer experience in der automobilindustrie, midmarket, customer feedback management, hot-alerts bei kündigungsrisiko, customer feedback analysis, customer engagement, b2b, automatisierte alarmierung, customer journey optimierung, echtzeit-analysen, feedback plattform, ki-basierte insights, feedback-management für energieversorger, management consulting services, feedback-management für mittelstand, customer effort score, computer software, information technology & services, artificial intelligence, analytics, computer & network security",'+49 69 962460,"MailJet, Outlook, Mailchimp Mandrill, Microsoft Office 365, Hubspot, Slack, Linkedin Marketing Solutions, Apache, Mobile Friendly, Ubuntu, DoubleClick, DoubleClick Conversion, Hotjar, Google Dynamic Remarketing, Google Tag Manager, TYPO3, Vimeo, Remote, Qlik Sense, Javascript, AWS SDK for JavaScript, Python","","","","","","",69c281e5be4f8f0001b91f84,7389,54161,"moveXM is an AI-driven software platform focused on Customer Experience Management (CXM) and Experience Management (XM). The platform helps businesses measure, analyze, and enhance customer satisfaction by processing feedback data in real-time. Founded from a market research background, moveXM has evolved into a high-tech SaaS provider, offering scalable solutions for companies of all sizes, from small and medium enterprises to large corporations. + +The moveXM platform automates feedback analysis, sentiment analysis, and churn detection, providing actionable insights through multi-channel data collection, customer segmentation, and real-time reporting. It features intuitive dashboards, customizable reports, and seamless integrations with third-party applications. The company emphasizes customer-centricity, offering personalized onboarding and support to ensure smooth transitions. moveXM is committed to sustainability, utilizing green electricity and supporting environmental initiatives. Pricing is flexible, allowing businesses to start small and expand as needed.",1995,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/677b8b21a8d54b000196948a/picture,"","","","","","","","","" +Stackgini,Stackgini,Cold,"",14,information technology & services,jan@pandaloop.de,http://www.stackgini.de,http://www.linkedin.com/company/getstackgini,"","","",Hamburg,Hamburg,Germany,"","Hamburg, Hamburg, Germany","procurement, enterprise architecture, b2b, it governance, it procurement, saas, software development, it cost structure optimization, change management, automated solution screening, it consulting, it portfolio reuse strategies, vendor management, it cost optimization, ai-based solution matching, it portfolio optimization, data security in it management, it system consolidation, data-driven it decisions, redundancy detection in it portfolio, information technology and services, market data integration, it solution reuse, computer software, computer systems design and related services, it demand collaboration tools, demand & requirements matching, it asset management, enterprise software, it complexity reduction, procurement integration, it compliance workflows, ai-driven requirements analysis, itsm integration, automated market research, it strategy, business process management, it governance automation, saas spend management, post-merger it integration, it demand management, compliance automation, it portfolio management, enterprise architecture integration, system integration, non-profit, information technology & services, management consulting, enterprises, nonprofit organization management",'+49 177 3169966,"Cloudflare DNS, Route 53, Sendgrid, Gmail, Outlook, Google Apps, Microsoft Office 365, Amazon AWS, Hubspot, TikTok, Google Tag Manager, Mobile Friendly, reCAPTCHA, Hotjar, IoT, Webmail, Remote, Android, Circle, AI, Stripe, DoubleClick","",Seed,0,2025-08-01,"","",69c281e5be4f8f0001b91f86,7375,54151,"Stackgini is an AI-powered SaaS platform designed to enhance IT governance, decision-making, and demand management for medium-sized and large enterprises. The platform aims to optimize IT portfolios, reduce redundancies, and streamline software selection processes. By processing vast amounts of data, Stackgini helps companies make faster and more informed IT decisions, replacing traditional manual tools with a centralized digital solution. + +Key features of Stackgini include demand and requirements management, IT portfolio analysis, market research, and vendor management. The platform captures and evaluates IT demands, identifies reuse opportunities, and automates portfolio development. It also offers a comprehensive database of software solutions, enabling efficient vendor management and collaboration across IT and business stakeholders. With its AI-driven insights, Stackgini significantly reduces the time spent on software selection, with reported savings of up to 70%. The platform emphasizes usability and measurable governance success through data-driven processes.",2022,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69a968b03967420001aec229/picture,"","","","","","","","","" +M.IT Connect,M.IT Connect,Cold,"",41,information technology & services,jan@pandaloop.de,http://www.m-it-connect.de,http://www.linkedin.com/company/m-it-connect-gmbh-co-kg,"","",11 Emil-Kemmer-Strasse,Hallstadt,Bavaria,Germany,96103,"11 Emil-Kemmer-Strasse, Hallstadt, Bavaria, Germany, 96103","it services & it consulting, digital workplace, storage-management, smart manufacturing, hcm, cloud-services, webinare, backup & recovery, it-helpdesk, it-beratung, datensicherheit, ticket-system, it-strategie, it-organisation, patch-management, it-infrastruktur, services, microsoft copilot, zutrittskontrolle, voip, managed print services, e-rechnung, support-tools, digitale vertragsmanagement, microsoft 365, erp, it-security, rechenzentrum in deutschland, digitale personalakte integration, it-schwachstellenanalyse, elektronische archivierungssysteme, it-management, b2b, managed it-services, fernwartung, it-architektur, industrie 4.0 lösungen, it-support, elektronische archivierung, it-prozesse, information technology and services, it-consulting, managed service providers, business software, consulting, dms-integration in bc/nav, digitale personalakte, microsoft power platform, print-management, it-schulungen, computer systems design and related services, dms, finance, education, information technology & services, printing, managed services, financial services",'+49 95 196240,"Outlook, Linkedin Marketing Solutions, Facebook Widget, Apache, Vimeo, Adobe Media Optimizer, Cedexis Radar, Facebook Login (Connect), Facebook Custom Audiences, Mobile Friendly, Google Tag Manager, Bootstrap Framework","","","","","","",69c281e5be4f8f0001b91f95,7375,54151,"Die M.IT Connect GmbH & Co. KG ist eines der führenden IT-Systemhäuser in Nordbayern. Wir sind schon seit 1936 am Markt – und das bis Dezember 2023 unter dem Namen BÜRO MAYER GmbH & Co. KG. Als überregional tätiger IT-Dienstleister mit mehr als 65 Mitarbeitern und Standorten in Hallstadt und Hof/Saale können wir mittelständischen Firmen jedweder Ausrichtung in ganz Deutschland unsere Expertise anbieten, insbesondere Unternehmen aus der Medizinbranche, Industrieunternehmen und Großhandel. + +WAS WIR BIETEN +Wir machen digitale Arbeitsprozesse effizienter, damit unsere Kunden stets den Überblick über alle Daten und Prozesse haben. Wir beraten zu allen IT-Produkten, -Systemen und -Lösungen. Wir installieren und warten, betreiben Security- und Netzwerk-Architekturen und vieles mehr. Immer mit dem Ziel, mit Managed IT-Services die Lebens- und Arbeitsqualität der Menschen zu verbessern. Deshalb sind wir auch Partner von Herstellern, die in ihren Bereichen (Welt-)Marktführer sind. Dazu gehören Fujitsu Technology Solutions, Microsoft, Canon und d.velop. + +WIE WIR ARBEITEN +Managed IT-Services sowie IT-Dienstleistungen im Allgemeinen basieren in weiten Teilen auf Automatisierung. Für uns aber bleiben fachliche Expertise und persönliches Engagement zentrale Faktoren unseres Leistungsversprechens. Wir sind für unsere Kunden da und begleiten sie auf ihrem gesamten Weg in die digitale Zukunft. Damit sie, getreu unserem Claim, „einfach besser arbeiten"" können. + +UNSER LEISTUNGSANGEBOT +Bei uns gibt es alles, was das IT-Herz begehrt: Managed IT-Services, Business Software, IT-Infrastruktur, Print- und Dokumentenmanagement sowie die zugehörigen Service- und Consultingdienstleistungen. + +Sie möchten mehr über uns erfahren? Besuchen Sie gern unsere Website www.m.it-connect.de! + +M.IT CONNECT – EINFACH BESSER ARBEITEN",1936,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66fce565946b4200010a5f31/picture,"","","","","","","","","" +Dr. Glinz COViS GmbH,Dr. Glinz COViS,Cold,"",87,information technology & services,jan@pandaloop.de,http://www.covis.de,http://www.linkedin.com/company/dr-glinz-covis-gmbh,https://facebook.com/glinzcovis,https://twitter.com/COVIS_GmbH,32 Heerdter Sandberg,Duesseldorf,Nordrhein-Westfalen,Germany,40549,"32 Heerdter Sandberg, Duesseldorf, Nordrhein-Westfalen, Germany, 40549","microsoft, development, it security, salesforce, hosting, software development, data security, data analytics, enterprise it solutions, it project management, process optimization, security certifications, software engineering, it security management, project management, standard software, managed services, iso 27001 certified, project consulting, risk management, information technology and services, tailored it solutions, agile methodologies, system integration, it services, it infrastructure, bespoke it solutions, b2b, agile development, it solutions, system interfaces, customer relationship management, proprietary frameworks, multi-industry projects, open source frameworks, it consulting, cloud solutions, cloud platforms, software customization, enterprise software, it strategy, digital transformation, data migration, services, custom software development, consulting, salesforce implementation, client-specific software, custom crm solutions, cloud computing, software prototyping, it process automation, custom application development, requirements engineering, computer systems design and related services, cloud migration strategies, data integration, business intelligence, machine learning, computer & network security, information technology & services, productivity, crm, sales, enterprises, computer software, management consulting, analytics, artificial intelligence",'+49 211 557260,"Cloudflare DNS, CloudFlare Hosting, Microsoft Azure Hosting, Pardot, Salesforce, Hubspot, Google Tag Manager, Mobile Friendly, Remote, Azure Analysis Services, AWS Analytics, Google Cloud, Microsoft PowerShell, Bash, Git, PostgreSQL, Secured MVC Forum on Windows 2012 R2, Amazon Linux 2","","","","","","",69c281e5be4f8f0001b91f83,7379,54151,"Focused on developing individual CRM-Systems for big and mid-sized enterprises. Microsoft Gold partner and Salesforce expertise. Experience in over 500 successful projects with customers such as Deutsche Post, TÜV, Deloitte. + + +COViS specializes in developing customized CRM and business solutions for mid-sized and large enterprises. With many years of experience in custom software development, system and data integration, and Salesforce consulting, we help organizations implement digital transformation in a practical, efficient, and sustainable way. + +Legal notice: https://www.covis.de/imprint/ +Privacy Policy: https://www.covis.de/privacy/",1983,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/687c1c22374dae000191df14/picture,"","","","","","","","","" +WK IT GmbH,WK IT,Cold,"",66,information technology & services,jan@pandaloop.de,http://www.wk-it.com,http://www.linkedin.com/company/wk-it-gmbh,"","",6 Friedrichshofener Strasse,Ingolstadt,Bavaria,Germany,85049,"6 Friedrichshofener Strasse, Ingolstadt, Bavaria, Germany, 85049","operations, frontend development, private public clouds, beratung, consulting, fast data, application lifecycle management, software development, iot, backend development, agile, app und web development, dienstleistungen, testmanagement, scrum, process engineering, digitalisierung, projektmanagement, requirements engineering, artificial intelligence, blockchain, security services, devops, private amp public clouds, data security, data management, penetration testing, it audit, security awareness, security monitoring, security risk assessment, security incident response, security certifications, nis2 supply-chain management, security program management, risk management, cyber security services, information technology and services, cybersecurity deep dive, iso 27001, it infrastructure, security architecture, b2b, security compliance, it security, security policies, security frameworks, managed it services, endpoint security, security automation tools, security solutions, nis2, security monitoring tools, cybersecurity, privileged rights management system, isb as a service (isbaas), it consulting, cloud solutions, user experience, vulnerability management, digital transformation, security consulting, services, security policy development, security standards, security operations, technical security risk check, security risk check, iam, gap analysis, cyber security, regulatory compliance, security infrastructure, computer systems design and related services, government, security training, security optimization, security automation, information technology & services, computer & network security, management consulting, cloud computing, enterprise software, enterprises, computer software, ux",'+49 84 1885440,"SendInBlue, Outlook, Microsoft Office 365, Atlassian Cloud, Hubspot, Slack, Mobile Friendly, Google Analytics, Google Tag Manager, Nginx, WordPress.org, Android, Remote","","","","","","",69c281e5be4f8f0001b91f8c,7375,54151,"WIR SIND WK IT + +Seit 1987 in der IT tätig und immer voll up to date: Das ist WK IT. Unter Einsatz unserer vielseitigen Kompetenzen entwickeln wir in agilen Projekten individuelle Lösungen – das macht uns zum wertvollen strategischen Partner für Ihr Unternehmen. + +Bei WK IT tut jeder das, was er am besten kann. Wir setzen auf schlanke Prozesse, betreiben eine smarte Ressourcenplanung und erstellen für jeden Kunden ein maßgeschneidertes Setup. + +Egal ob Consulting, Development oder Operations Management: Mit unserem Team beraten und betreuen wir große und mittelständische Unternehmen aus den Bereichen Automotive, Energie und Immobilien sowie dem Marken-, Event- und Handelssektor. + +WE WANT YOU! + +Gerade in Zeiten der Digitalisierung sind smarte, motivierte und ehrgeizige Mitarbeiter ein wesentlicher Erfolgsfaktor. Darum schaffen wir ein inspirierendes Arbeitsumfeld, das auf gegenseitigem Vertrauen und einer ausgeprägten Fair-Play-Mentalität basiert. So stellen wir sicher, dass jeder Mitarbeiter sein Potential voll ausschöpft. + +Unser professionelles Team bündelt Erfahrung, Neugier und Ideenreichtum. In agilen Teams erzielen wir für unsere Kunden die individuell besten Ergebnisse. Grundlage dafür bildet unser ausgeprägtes Fachwissen im Bereich neuer Technologien. Wir kennen die aktuellsten Trends der Digitalisierung und bilden uns regelmäßig weiter. + +Werden Sie Teil unserer WK IT-Erfolgsgeschichte: https://www.wk-it.com/karriere + + + +https://www.wk-it.com/impressum",1987,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66efbaa7344f490001d8c0cb/picture,"","","","","","","","","" +Fellowmind Germany GmbH - ehemals applabs GmbH,Fellowmind Germany,Cold,"",140,information technology & services,jan@pandaloop.de,"",http://www.linkedin.com/company/applabs-gmbh,"","",108 Hedderichstrasse,Frankfurt,Hesse,Germany,60596,"108 Hedderichstrasse, Frankfurt, Hesse, Germany, 60596","professionelles dokumentenmanagement mit docuware, docuwarenav integration, erp individualprojekte, digitale transformation, erp branchenloesung lebensmittelindustrie si foodware, service von maschinen, vermietung, erp branchenloesung handel, cloud erp software auf basis microsoft dynamics business central, docuwareconnect, geraeten und artikel applabs rental service, digitalisierung, geraeten und artikel applabs rental amp service, erpsoftware auf basis microsoft dynamics nav, software development, information technology & services","","","","","","",454500000,"",69c281e5be4f8f0001b91f8f,"","","Bei Fellowmind wollen wir wertvolle Beziehungen schaffen. Wir wollen, dass Menschen Spaß an der Arbeit mit digitalen Technologien haben und dass die Technologie ihnen den Arbeitsalltag erleichtert. Wir helfen unseren Kund*innen dabei, die digitale Affinität in ihrem Unternehmen zu steigern, indem wir Microsoft Cloud-Lösungen einsetzen, die agile Entwicklung fördern, integrierte Plattformen implementieren und Nutzer*innen beim Lernen und bei der Adoption unterstützen.",2001,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66fe0afa18a50f0001b5f74e/picture,"","","","","","","","","" +VALUZE GmbH,VALUZE,Cold,"",12,information technology & services,jan@pandaloop.de,http://www.valuze.de,http://www.linkedin.com/company/valuze-gmbh,"","",6A Friedrichstrasse,Fuerth,Bavaria,Germany,90762,"6A Friedrichstrasse, Fuerth, Bavaria, Germany, 90762","microsoft 365, professional consulting, training, office 365, managed services, azure, change management, datenschutzkonforme cloud-lösungen, cybersecurity, digital transformation, cloud security, security compliance, backup & disaster recovery, it support, data backup, datenschutz in cloud-umgebungen, data replication, it management, it strategy, power platform integration, power apps, it optimization, it infrastructure, data privacy, consulting, data protection, process optimization, process automation, cloud migration, information technology and services, dataverse, system monitoring, cloud consulting, ki-basierte prozessoptimierung, cloud-backup-strategien, hybrid cloud management, it security, security solutions, services, data integration, data analytics tools, automation, data governance, microsoft cloud portfolio, data management, power platform, project management, digital solutions, hybrid cloud, microsoft azure security, cloud services, computer systems design and related services, ai-gestützte automatisierung, hybrid cloud backup, power bi, project services, cloud-gestützte datenreplikation, it consulting, data security, backup technology, hybrid it environment, business intelligence, disaster recovery, compliance, business continuity, ai solutions, migration services, system security, data visualization, cloud infrastructure, individuelle ki-lösungen, sicherheitszertifizierte cloud-dienste, automatisierte datenwiederherstellung, business apps, data analytics, cloud backup, power automate, cloud-backup in microsoft 365, b2b, automatisierte systemüberwachung, ai development, cloud computing, workflow automation, information technology & services, computer & network security, enterprise software, enterprises, computer software, productivity, management consulting, analytics, internet infrastructure, internet",'+49 911 95153670,"Outlook, Amazon AWS, Apache, Mobile Friendly, WordPress.org, ","","","","","","",69c281e5be4f8f0001b91f7e,7375,54151,"Wir bei VALUZE wollen eine Welt, in der Menschen Freude daran haben, mit neuen Technologien zu arbeiten. +Wir sehen es als unsere Mission, Menschen und Technologien zusammen zu bringen. Dies tun wir mit Verstand und Verständnis, mit Fachwissen und Freude, mit Rücksicht auf die Gegenwart und immer mit Blick in die Zukunft.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6742a94eecc4da0001d5943b/picture,"","","","","","","","","" +CRM Solutions GmbH,CRM Solutions,Cold,"",19,management consulting,jan@pandaloop.de,http://www.crm-solutions-gmbh.de,http://www.linkedin.com/company/crm-solutions-gmbh,https://www.facebook.com/CRMSolutionsGmbH,"",21 Essener Bogen,Hamburg,Hamburg,Germany,22419,"21 Essener Bogen, Hamburg, Hamburg, Germany, 22419","anforderungsmanagement, crm, hubspot, datensicherheit compliance, itloesungen, itprozessberatung, benutzerzentrierte softwareeinfuehrung, sage hr suite, docuware, support systembetreuung, erp, hr, sage, power bi, projektmanagement, effizienzsteigerung, sage 100, sage 100 & sage hr suite, digitalisierung im mittelstand, business consulting & services, job portal, e-rechnung, compliance, cost reduction, customer success, time management, recruiting software, nachhaltiger unternehmenserfolg, zeiterfassungssystem, digitales dokumentenmanagement, data analytics, digital personalakte, kundenbindung, prozessberatung, digital workflows, e-rechnung gesetzeskonform, power bi integration, resource management, vertriebssteuerung, computer systems design and related services, hr software, it support, report designer, industry-specific solutions, b2b, distribution, bewerbermanagement-software, custom development, document management system, sage 100 schnittstelle, personalentwicklung, hubspot connector, production planning, mobile solutions, branchen know-how, computer software, mitarbeiterportal, dispo cockpit, digitale personalakte, software development, eigenentwicklungen, api integration, custom solutions, digitale transformation, sanktionslistenprfung, business intelligence, erp software, document management, hubspot marketing, branchenspezifische erp, data security, system customization, marketing automation, whitepapers, cloud computing, inventory management, employee portal, system integration, enterprise resource planning, marketing hub, workflow automation, crm solutions, business process management, hr management, manufacturing, customer relationship management, cloud solutions, enterprise software, automatisierte workflows, financial management, custom software, personal management, process optimization, software consulting, workflow management, business efficiency, sales automation, webinars, services, digital transformation, business consulting, sage 100 integration, individuelle softwareentwicklung, business software, digitalization, microsoft power bi, consulting, crm software, business process optimization, sales, enterprises, information technology & services, human resources, management consulting, analytics, computer & network security, marketing & advertising, saas, mechanical or industrial engineering",'+49 40 689899980,"Outlook, Microsoft Office 365, CloudFlare Hosting, Hubspot, Hotjar, Google Tag Manager, Linkedin Marketing Solutions, Mobile Friendly, AI","","","","","","",69c281e5be4f8f0001b91f88,7375,54151,"Als Beratungs- und Umsetzungspartner für CRM-, ERP- und HR-Lösungen unterstützen wir mittelständische Unternehmen dabei, interne Prozesse effizienter zu gestalten – von der Analyse bis zum Go-live. + +Was uns unterscheidet? +Wir sprechen die Sprache des Mittelstands. Unsere Lösungen sind kein Selbstzweck, sondern auf den individuellen unternehmerischen Alltag zugeschnitten – praxisnah, wirtschaftlich und zukunftsfähig. + +Mit starken Partnerschaften (HubSpot, Sage, Salesware & Co.) und tiefem Branchenverständnis begleiten wir unsere Kunden ganzheitlich – persönlich, greifbar, zuverlässig.",2006,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/682a3f6e87b1da0001901438/picture,"","","","","","","","","" +ETK networks solution GmbH,ETK networks solution,Cold,"",35,information technology & services,jan@pandaloop.de,http://www.kommunikationsnerven.de,http://www.linkedin.com/company/etk-networks-solution,https://www.facebook.com/kommunikationsnerven,"","",Aschheim,Bayern,Germany,"","Aschheim, Bayern, Germany","ucc, alarmierung, systemintegration, internet, it infrastruktur, call center, telefonsysteme, vodafone, netzwerk, collaboration, microsoft, contact center, intelligente luftreinhaltung, it services & it consulting, fernwartung, telecommunications, sla, lan, unified communications, software development, notfallmanagement, voip-schutz, provider management, multi-channel-kommunikation, krisenkommunikation, session border controller, sicherheitslösungen, medienintegration, managed services, wlan, netzwerkplanung, networking, information technology and services, customer experience, it-infrastruktur, it support, voip, vpn, b2b, it security, kommunikationslösungen, network security, microsoft partner, it consulting, cloud solutions, hybrid cloud-lösungen, digital workplace, support & service, ip-telefonie, services, automatisierte alarmierung, consulting, cloud services, cloud computing, computer systems design and related services, backup management, alarmierungssysteme, distribution, transportation & logistics, information technology & services, computer & network security, management consulting, enterprise software, enterprises, computer software",'+49 89 909360,"Outlook, WordPress.org, reCAPTCHA, Mobile Friendly, Avaya, Remote, Micro, Microsoft Windows Server 2012, Microsoft Active Directory Federation Services, Gem, ExtremeSwitching","","","","","","",69c281e5be4f8f0001b91f8b,7375,54151,"ETK networks ist ein seit über 30 Jahren tätiger IT-/TK-Infrastrukturdienstleister mit Hauptsitz in Dornach bei München. Unsere Expertise liegt in der Systemintegration von Business-Lösungen. + +Mehr als 70 Mitarbeiter sorgen bei unseren Kunden im Groß- und Mittelstand für funktionierende „Kommunikationsnerven"" – im Bereich der Datennetze, Telefonsysteme, Contact-Center, Alarmierung und Applikationen. Neben der Zentrale in Dornach ist ETK networks auch an den Standorten Düsseldorf, Heidelberg, Landsberg und Stuttgart vertreten. +- UCC +- Alarmierung +- Microsoft Collaboration Desktop +- Contact- & Call Center Lösungen +- Daten- & Netzwerk-Infrastruktur +- Vodafone Lösungen +- LUFTIFY",1995,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e19e6217a6290001bc7ae2/picture,"","","","","","","","","" +Vangates GmbH,Vangates,Cold,"",11,management consulting,jan@pandaloop.de,http://www.vangates.com,http://www.linkedin.com/company/vangates,"","","",Frankfurt,Hesse,Germany,"","Frankfurt, Hesse, Germany","business consulting & services, vertriebsautomatisierung, lead-generierung, vertriebsprozessoptimierung, automatisierte terminvereinbarung, b2b vertriebsstrategie, management consulting services, vertriebsautomation, kalenderautomatisierung, automatisierte follow-up prozesse, b2b lead-generierung, business services, sales automation, vertriebssysteme, lead-qualifizierung, vertriebsstrategie, kundenansprache, vertriebspipeline, vertriebsprozess-management, vertriebs-crm-integration, datengetriebene feedbackschleifen, qualifizierte verkaufschancen, vertriebsprozess-optimierung, information technology and services, b2b, management consulting, saas, computer software, information technology & services, enterprise software, enterprises",'+49 1522 9486532,"Amazon SES, Gmail, Google Apps, Cloudflare DNS, CloudFlare Hosting, Outlook, Amazon AWS, Slack, Mobile Friendly, Google Tag Manager, YouTube, WordPress.org, Apache","","","","","","",69c281cb1cba2c0001f13193,7375,54161,"Through our ‘Done for You' principle, we automate your sales pipeline from the first point of contact with the right stakeholders to the finished sales opportunity in your calendar. We use targeted ICP planning (ideal customer profile), psychological sales principles, AI automation and experts in execution. + +IMPORTANT: +- We do not deliver leads. +We deliver conversations with decision-makers who have a real problem and want to solve it. +- We do not generate appointments at any cost. We only connect you with qualified target customers when there is a need for a decision – you have a say in the matter. That is why our conversations convert.",2023,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67555a59b454830001f52bb9/picture,"","","","","","","","","" +SIGN FOR COM GmbH & Co. KG,SIGN FOR COM GmbH & Co. KG,Cold,"",37,marketing & advertising,jan@pandaloop.de,http://www.signforcom.de,http://www.linkedin.com/company/sign-for-com-gmbh-&-co-kg,https://www.facebook.com/Sign-For-Com-Dialogmarketing-auf-h%C3%B6chstem-Niveau-339223896547843,https://twitter.com/signforcom,135 Bornheimer Strasse,Bonn,North Rhine-Westphalia,Germany,53119,"135 Bornheimer Strasse, Bonn, North Rhine-Westphalia, Germany, 53119","channel management, telemarketing, tele sales, account management, advertising services, marketing & advertising",'+49 22 89092222,"Nginx, Mobile Friendly, Facebook Widget, Linkedin Marketing Solutions, WordPress.org, Facebook Login (Connect), Bootstrap Framework, Google Tag Manager, Facebook Custom Audiences","","","","","","",69c281cb1cba2c0001f1319a,"","","Top-level domestic and international telemarketing - that's what SIGN FOR COM stands for. We are your established communications expert, with vast experience in our core competence - outbound telemarketing - and we deliver highly successful projects for products that need explaining. We currently have over 120 agents making calls in 21 languages on behalf of companies operating in Germany and globally in sectors such as ICT, trade fairs and services. With us as a forceful partner you can take the strain off your marketing department, broaden your client base, improve customer retention and increase revenues.",2001,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670c6930556e6c000104a0b9/picture,"","","","","","","","","" +visibleRuhr eG,visibleRuhr eG,Cold,"",14,information technology & services,jan@pandaloop.de,http://www.visible.ruhr,http://www.linkedin.com/company/visibleruhr,"","",1 Wandweg,Dortmund,North Rhine-Westphalia,Germany,44149,"1 Wandweg, Dortmund, North Rhine-Westphalia, Germany, 44149","prozesse, vuca, personal, new work, digitalisierung, vertrieb, marketing, it services & it consulting, iot solutions, digital transformation, digitalization in ruhrgebiet, software development, predictive maintenance, digital labs, it consulting, industry 4.0, digital consulting, digital transformation projects, cloud computing, data management, collaborative networks, data analytics, consulting, digital twin, distribution, automation, cybersecurity, fachkräftemangel, management consulting, project management, digital projects, industrial automation, it & web development, customer engagement, event management, information technology and services, process optimization, manufacturing, app development, iot, digital process automation, digital marketing, data analysis, b2b, digital innovation, website programming, risk assessment, smart manufacturing, digital labs for smes, resource management, digital innovation hubs, consulting and coaching, services, iot development, digital skills development, digitalization support, interdisciplinary digital consulting, digital strategy, web development, computer systems design and related services, project implementation, coaching, information technology & services, enterprise software, enterprises, computer software, productivity, mechanical or industrial engineering, events services, apps, marketing & advertising",'+49 231 8625757,"Mobile Friendly, Apache, Remote, Android","","","","","","",69c281cb1cba2c0001f131a4,7375,54151,visibleRuhr vereint die Spezialist_innen des Ruhrgebiets unter dem Dach einer Genossenschaft: Wir sind gebündelte Kompetenz für die Prozesse der Digitalen Transformation. In allen Phasen bieten wir Ihnen einen wirkungsorientierten Ressourcen-Einsatz. So meistern wir gemeinsam mit Ihnen die Komplexität des Digitalen Wandels.,2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/671591f7cae1260001b940e6/picture,"","","","","","","","","" +Greenfield Technology,Greenfield Technology,Cold,"",67,information technology & services,jan@pandaloop.de,http://www.greenfield.ag,http://www.linkedin.com/company/greenfield-technology-ag,"","",37 Johannstrasse,Duesseldorf,North Rhine-Westphalia,Germany,40476,"37 Johannstrasse, Duesseldorf, North Rhine-Westphalia, Germany, 40476","lowcode, rpa, intelligent automation, customer service, digital transformation, customer engagement, it services & it consulting, low-code plattform, pega plattform, financial services, pega-partner, healthcare, mitarbeiterschulung, cloud-lösungen, automatisierte workflows, hybrid-it, pega certified business architect, dx api, it-dienstleistungen, software development, user experience, agile entwicklung, it consulting, kundenservice, change management, it-consulting, transportation & logistics, process optimization, pega certified system architect, softwareentwicklung, kundenorientierte lösungen, government, computer systems design and related services, on-premise, customer experience, constellation ui, public sector, it-landschaft, automatisierungstechnologien, branchenlösungen, automatisierte wartung, datenvirtualisierung, technologieintegration, b2b, data management, pega certified senior system architect, greenfield components, consulting, proaktive application management, guardrail-optimierung, langfristige umsetzung, greenfield academy, it services, predictive analytics, digitalisierung, services, compliance, branchenfokus, datensicherheit, prozessautomatisierung, zertifizierter partner, it-beratung, it-systeme zentralisieren, cloud-implementierung, finance, non-profit, transportation, information technology & services, health care, health, wellness & fitness, hospital & health care, ux, management consulting, enterprise software, enterprises, computer software, nonprofit organization management","","Outlook, Microsoft Office 365, Mobile Friendly, Google Tag Manager, WordPress.org, Shutterstock, Nginx, AI, Pega Case Management","","","","","","",69c281cb1cba2c0001f13195,7375,54151,"Greenfield Technology AG, located in Düsseldorf, Germany, is a certified Pega partner that specializes in IT services and consulting. With around 85 employees and an annual revenue of $6.1 million, the company focuses on optimizing IT landscapes and redesigning digital processes using the Pega platform. Their expertise spans various sectors, including financial services, healthcare, and the public sector. + +The company offers a range of IT consulting and implementation services centered on the Pega platform. This includes tailored implementations for complex process mapping, predictive AI for personalized customer recommendations, and Pega Sales Automation to enhance sales processes. Greenfield Technology also provides training programs through Greenfield Academy, enabling clients to manage their digital infrastructure independently. Their solutions are designed to streamline processes and improve user experiences across communication, collaboration, marketing, and sales.",2011,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/687d6aa05cba7100015cc664/picture,"","","","","","","","","" +GREEN IT Das Systemhaus GmbH,GREEN IT Das Systemhaus,Cold,"",140,information technology & services,jan@pandaloop.de,http://www.greenit.systems,http://www.linkedin.com/company/greenitdassystemhausgmbh,https://www.facebook.com/greenitDortmund/,"",6 Heinrich-Hertz-Strasse,"","",Germany,44227,"6 Heinrich-Hertz-Strasse, Germany, 44227","telefonie, okonomie, telekommunikation, herstellerunabhaengigkeit, sophos, software, fujitsu, print services, it dienstleister, okologie, service support, unified communications, nachhaltige dienstleistungen, hardware, dokumentenmanagement, kyocera, ricoh, alles aus einer hand, ein dynamisches team, swyx, offene tueren fuer die mitarbeiter, gruene it, service amp support, epson, it services, it services & it consulting, digital business processes, it security, system integration, it consulting, cloud computing, cloud services, services, zero emission it, it lifecycle management, it management, digital process solutions, consulting, it infrastructure, data security, managed services, asset management, it support, maintenance, data analytics, print green, information technology and services, sustainable it, energy-efficient it, energy efficiency, cybersecurity, green cio, computer systems design and related services, fleet management, b2b, it solutions, digital transformation, contact center, it infrastructure analysis, e-commerce, non-profit, telecommunications, information technology & services, computer & network security, management consulting, enterprise software, enterprises, computer software, environmental services, renewables & environment, consumer internet, consumers, internet, nonprofit organization management",'+49 8002 868028,"Outlook, Microsoft Office 365, Autotask, Sophos, Salesforce, Google Dynamic Remarketing, DoubleClick, Vimeo, DoubleClick Conversion, Facebook Widget, Bing Ads, UserLike, WordPress.org, Nginx, Hotjar, Linkedin Marketing Solutions, Google Tag Manager, Mobile Friendly, Facebook Login (Connect), AVEVA PDMS, OpenText ECM in the Cloud, AWS Cloud Development Kit (AWS CDK), Microsoft Application Insights, Veeam, Git, Python, SQL, Salesforce CRM Analytics","","","","",58000000,"",69c281cb1cba2c0001f1319b,7371,54151,"GREEN IT Das Systemhaus GmbH is Germany's first green IT system house, established in 2000 and based in Dortmund, North Rhine-Westphalia. As an independent, manufacturer-neutral IT service provider, the company employs approximately 51-200 people and generates annual revenue between €11 million and €100 million. In 2023, GREEN IT was recognized as a winner of the German Business Awards by EU Business News. + +The company focuses on creating sustainable IT solutions across Germany, combining economic and ecological principles. Their services include IT consulting, managed services, cloud infrastructure, network setup, print management, unified communications, document management, and hardware and software provision. GREEN IT is known for its customized solutions tailored to mid-sized companies, emphasizing a vendor-neutral approach and comprehensive support from planning to implementation and maintenance. The company collaborates with established technology partners such as Epson, Kyocera, and Fujitsu, ensuring a strong foundation for their innovative IT solutions.",2012,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6871ffe24e70c600014cad09/picture,"","","","","","","","","" +bitgrip GmbH,bitgrip,Cold,"",48,information technology & services,jan@pandaloop.de,http://www.bitgrip.com,http://www.linkedin.com/company/bitgrip-gmbh,"","",170 Kurfuerstendamm,Berlin,Berlin,Germany,10707,"170 Kurfuerstendamm, Berlin, Berlin, Germany, 10707","frontend development, uxui strategy, magnolia, process optimization, it consulting, ui, headless architecture, dxp customizing, magnolia cms, ux, digital consulting, agile project management, process automation, business analysis, backend development, process mining, b2b platforms, project leadership, software development, application operation, digital transformation, ux strategy, scrum, testing, product ownership, ecommerce, system integration, headlesscms, coremedia, business platforms, strategy consulting, headless it infrastructure, omni channel, experience design, contentsquare, it infrastructure, user journey, it services & it consulting, security & compliance, consulting, content management, content hub scalability, content hub, content management system, magnolia dxp, content optimization, multi-language support, content reuse, content lifecycle management, omnichannel marketing, experience optimization, devops, b2b content solutions, devops for content platforms, cloud hosting, e-commerce integration, services, api-first approach, content automation, composable dxp architecture, content cloud, customer data platforms, computer systems design and related services, headless cms for b2b, digital marketing, cloud computing, enterprise content management, personalized content delivery, data-driven marketing, content automation with ai, cloud-based cms, coremedia dxp, customer engagement tools, customer journey mapping, ai-powered content optimization, customer insights, omnichannel content delivery, real-time data analysis, content personalization, experience analytics cloud, cloud infrastructure, conversion rate optimization, content personalization in real-time, b2b digital solutions, global content management, contentsquare analytics, digital experience platform, multi-channel marketing, ai & automation, user experience design, performance optimization, ai content creation, customer journey analytics, d2c, digital asset management, information technology and services, headless cms, data analytics, content workflow automation, digital campaign management, e-commerce, b2b, customer experience management, multi-cloud support, microservices architecture, digital asset management integration, scalable it infrastructure, api-integration, multi-channel content orchestration, digital strategy, api development, marketing automation, it beratung, ux design, content testing & optimization, customer data integration, information technology & services, management consulting, consumer internet, consumers, internet, strategic consulting, enterprise software, enterprises, computer software, marketing & advertising, internet infrastructure, marketing, saas",'+49 30 28443399,"Cloudflare DNS, Outlook, Webflow, Hubspot, Slack, YouTube, DoubleClick Conversion, Google Dynamic Remarketing, Linkedin Marketing Solutions, Google Tag Manager, DoubleClick, Mobile Friendly, Hotjar, React Native, Android, Remote, ChatGPT, Claude, Air, Act!, Personio, Retool, GitHub Copilot, TypeScript, GraphQL, Kubernetes, Docker, HELM, AWS SDK for JavaScript, Groovy, Microsoft PowerShell, Spring, Hibernate, JUnit, Mockito, Git, Playwright, Karate Labs, WireMock, GitLab, Postman, React, Storybook, Azure Linux Virtual Machines, Ansible, Argocd, Prometheus, Grafana, Grafana Loki","","","","","","",69c281cb1cba2c0001f13196,7375,54151,"bitgrip GmbH is a digital agency based in Berlin, specializing in scalable B2B platforms for large enterprises, particularly those with annual revenues starting at €300 million. The company focuses on Hidden Champions in sectors like manufacturing, mechanical engineering, and automation. With a team of over 60 digital experts, bitgrip operates as a holacratic organization, promoting agile decision-making and collaboration among specialists in development, design, and strategy. + +Founded to foster partnership-based work, bitgrip emphasizes digital transformation and growth through a pragmatic tech stack and continuous innovation. The agency offers comprehensive services across the platform lifecycle, including consulting, UX/UI design, custom software development, and ongoing platform maintenance. Their projects utilize an agile, modular 8-step process, ensuring flexibility and reduced time-to-market. bitgrip is ISO 27001-certified for secure data processing and collaborates with key partners like CoreMedia and Magnolia to deliver tailored solutions for international B2B markets.",2014,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69ad937f6138a6000131bb10/picture,"","","","","","","","","" +VoiceLine,VoiceLine,Cold,"",43,information technology & services,jan@pandaloop.de,http://www.voiceline.ai,http://www.linkedin.com/company/voiceline,"","","",Munich,Bavaria,Germany,"","Munich, Bavaria, Germany","ai assistant, hybrid workplace, crm, field sales, document collaboration, asynchronous work, voicebased collaboration, productivity, salesenablement, sales analytics, sales, work communications, remote work, sales coaching, software development, enterprise software, enterprises, computer software, information technology & services, b2b",'+49 89 20002183,"Cloudflare DNS, Amazon AWS, MailJet, Gmail, Google Apps, CloudFlare Hosting, WP Engine, Slack, Mobile Friendly, Google Tag Manager, Adobe Media Optimizer, Cedexis Radar, Google Font API, Nginx, Google AdWords Conversion, DoubleClick, DoubleClick Conversion, Google Plus, Vimeo, Google Dynamic Remarketing, Android, Remote, AI, CallMiner Eureka",13640000,Series A,11000000,2026-02-01,"","",69c281cb1cba2c0001f13197,"","","VoiceLine is an AI startup based in Munich, Germany, focused on enhancing field sales operations. The company provides an AI-powered platform that allows sales representatives to capture customer interactions hands-free through voice inputs. This innovative approach reduces administrative tasks by automating CRM data entry, task creation, and follow-ups, enabling sales teams to work more efficiently. + +The platform features a personalized AI assistant that offers voice-first data capture, admin automation, market analytics, and coaching tools. It supports seamless integration with various CRM systems and provides customizable options to meet different business needs. VoiceLine's technology is designed to improve user experience and boost CRM adoption, making it suitable for small businesses, mid-size companies, and large enterprises across various industries. The company emphasizes security, compliance, and data privacy while supporting multilingual capabilities for global teams.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69a3bc250b89ef00014e08fd/picture,"","","","","","","","","" +Consline AG,Consline AG,Cold,"",12,information technology & services,jan@pandaloop.de,http://www.consline.com,http://www.linkedin.com/company/consline,"","",23 Hartstrasse,Germering,Bavaria,Germany,82110,"23 Hartstrasse, Germering, Bavaria, Germany, 82110","kuenstliche intelligenz, virtual data room, saas, benchmarking, lieferantenmonitoring, product excellence, qda, qualitaetsmanagement, marktforschung, big data, qualitative data analysis, social media monitoring, due dilligence platform, unternehmensberatung, produktbeobachtung, market research, case management, corporate intelligence, vdr, produktsicherheit, product safety monitoring, supplier risk monitoring, consulting, artifial intelligence, quality management, business intelligence, it services & it consulting, datenvisualisierungstools, data security, data analytics, ki-gestützte corporate intelligence, ki-analyse, data-driven decision making, customer feedback analysis, team collaboration, risiko- und trendanalyse, data filtering, trend detection, process optimization, kpis, multi-source data integration, legal services, informationsüberwachung, risk management, 7.0 version, cloud-basierte lösung, information technology and services, qualitative und quantitative daten, international team support, system integration, product development, risk identification, meta suite cims, data analysis, b2b, other scientific and technical consulting services, quantitative data processing, real-time monitoring, visual analytics, benchmarking tools, market monitoring, operational efficiency, performance-impact-matrix, mehrsprachigkeit, datenanalyse, user experience, healthcare, cloud saas, trend prediction, chart types, services, risk & safety intelligence, ki-unterstützung, kundenfeedback-analyse, data visualization, customer satisfaction analysis, workflow tools, data import/export, performance metrics, data surveillance, cims 7.0, business intelligence integration, datenvisualisierung, datenimport und -export, multilingual support, legal, computer software, information technology & services, enterprise software, enterprises, consumer internet, consumers, internet, analytics, computer & network security, ux, health care, health, wellness & fitness, hospital & health care","","Google Cloud Hosting, Nginx, WordPress.org, Mobile Friendly, Google Tag Manager, reCAPTCHA, Remote","","","","","","",69c281cb1cba2c0001f13199,7375,54169,"Consline AG, founded in 1999 and based in Munich, Germany, specializes in corporate intelligence and customer insights management. The company focuses on monitoring customer feedback and company information online, utilizing advanced technology and artificial intelligence to enhance product and service quality. + +The main offering is the Consline Intelligence Management System (CIMS®), a cloud-based SaaS solution that integrates Business Intelligence, Qualitative Data Analysis, Social Media Monitoring, and Virtual Data Rooms. CIMS® features customizable dashboards with various chart formats, allowing for detailed trend analysis and problem identification. The platform supports companies in areas such as product excellence, quality monitoring, customer insights management, and market analysis. + +With a small team of fewer than 25 employees, Consline serves leading corporations, including Knorr-Bremse, and emphasizes long-term partnerships through quality service and continuous development. The company's philosophy centers on creating value for customers and maintaining high utility in its offerings.",1999,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68217b61cf57b90001ed9f01/picture,"","","","","","","","","" +Pinuts digital thinking GmbH,Pinuts digital thinking,Cold,"",34,information technology & services,jan@pandaloop.de,http://www.pinuts.de,http://www.linkedin.com/company/pinuts,"","",18 Charlottenstrasse,Berlin,Berlin,Germany,10117,"18 Charlottenstrasse, Berlin, Berlin, Germany, 10117","targeting & personalization in accordance w gdpr, cmsopentext, website relaunch, b2b, responsive webdesign, consulting, ux design, marketing automation, email marketing, technical support, ui ux design, barrierefreie websites, real time targeting, webanwendungen, email marketing tool, customer experience plattform, frontend dev, customer journey, buyer persona evaluation, digital consulting, email marketingtool, marketing automation tool, service desk, decoupled cms, headless cms, barrierefreie webentwicklung, ui design, backend development, frontend development, ausschreibungsberatung, barrierfree website accessibility, onsite search, customer experience management, webentwicklung, cms opentext, custom applications, concept strategy, cms evaluation, technical integration, cms firstspirit, cms scrivito, cms fiona, customer experience, cms beratung, api integration, cxcxm, justrelate cms fiona cms scrivito, uiuxdesign, digitale geschaeftsprozesse, it services & it consulting, digital transformation, customer satisfaction optimization, user research, customer engagement, event management, cms consulting, software publishing, b2b portal, universal messenger, digital agency, personalized newsletters, webdesign, data integration, information technology and services, computer systems design and related services, digital marketing, multilingual websites, government, digital public sector, automation, e-mail marketing automation, web projects, responsive design, ux/ui-design, web development, digital public services, system development, cms-integration, customer dialog digitization, accessibility in web, web applications, services, system integration, marketing & advertising, saas, computer software, information technology & services, enterprise software, enterprises, events services, web design",'+49 30 59009030,"Amazon CloudFront, Route 53, MailJet, Sendgrid, Outlook, Microsoft Office 365, Amazon AWS, Atlassian Cloud, GitLab, Google Tag Manager, Mobile Friendly, Linkedin Marketing Solutions, Etracker, Android, Remote","","","","","","",69c281cb1cba2c0001f1318d,7375,54151,"Shaping digital progress since 1996 — forward-thinking from day one, and just as driven today. + +We help organizations across industries, public institutions, and municipalities rethink and elevate their digital communication. Our projects go beyond off-the-shelf solutions — we specialize in initiatives that demand strategic depth, technical precision, and long-term impact, from full-scale website relaunches to custom-built digital platforms. + +Our services at a glance: + +Digital Technology Strategy & Vendor Selection +Independent, transparent, and goal-oriented – from defining requirements to selecting the right tools for your digital ecosystem. + +UX/UI Design & User-Centered Solutions +Experiences that captivate, designs that connect, and messages that inspire – visually clear, technically sound, and deeply user-focused. + +Web Development & Technologies +Future-ready corporate websites, tailored web applications, accessibility-compliant development, and seamless system integration – efficient, stable, and scalable. + +Customer Experience Platform – Universal Messenger +Powerful tools for digital customer communication – from newsletters and marketing automation to event management, service workflows, and more. Modular, customizable, and system-agnostic – designed to simplify complexity and enhance every digital touchpoint.",1996,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6816f0d06bf634000171b999/picture,"","","","","","","","","" +entergon GmbH & Co. KG,entergon GmbH & Co. KG,Cold,"",12,information technology & services,jan@pandaloop.de,http://www.entergon.de,http://www.linkedin.com/company/entergon-gmbh-&-co-kg,"","",14A Wilhelmstrasse,Friedrichsdorf,Hesse,Germany,61381,"14A Wilhelmstrasse, Friedrichsdorf, Hesse, Germany, 61381","crossmedia, digital signage, marketing automation, dialogmarketing, crm, crm-integrated sales app, crm & marketing automation, computer systems design and related services, sales & service enablement, efficient customer surveys, event management, lead management, mobile consulting support, marketing and advertising, customer conversation management, consulting, digitalization of fax processes, order entry app, event and participant management, website booster, multichannel permission-handling, customer engagement, workflow automation, b2b, download center, services, digital transformation, sales app for sales automation, quotation entry app, software development, digital trade fair lead management, customer dialogue solutions, webinar management, information technology and services, marketing & advertising, saas, computer software, information technology & services, enterprise software, enterprises, sales, events services",'+49 617 5949910,"Outlook, Apache, Mobile Friendly, Typekit, WordPress.org, Node.js, React Native, Remote","","","","","","",69c281cb1cba2c0001f131a1,7375,54151,"Our goal is to create the maximum customer experience at the initial point of contact and along the customer journey. In addition, we are your passionate, flexible and pragmatic partner for a sustainable operational transformation of your marketing automation visions in the B2B environment.",2012,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670c1cf7de7acc0001405976/picture,"","","","","","","","","" +office company,office company,Cold,"",23,information technology & services,jan@pandaloop.de,http://www.office-company.de,http://www.linkedin.com/company/office-company-gruppe,https://www.facebook.com/officecompanygruppe,"",5 Geneststrasse,Berlin,Berlin,Germany,10829,"5 Geneststrasse, Berlin, Berlin, Germany, 10829","itsicherheit, cloudloesungen, cyberrisk, digitalisierung, microsoft 365, computer server, netzwerk, itfoerderungen, konferenztechnik, datenschutz, computer amp server, drucker amp kopierer, telekommunikation, drucker kopierer, itsupport, it services & it consulting, microsoft 365 implementierung, it consulting, it-modernisierung, it-sicherheitskonzepte nach din spec 27076, it managed services, it system administration, cybersecurity-beratung, it-sicherheits-workshops, it-security-management, it services, it compliance, cloud services, microsoft technologies, it network, it security solutions, it maintenance, information technology and services, it-sicherheitsaudits, it-sicherheitszertifikate, consulting, it service provider, hardware, datenschutzberatung, cybersecurity, it-sicherheitsrichtlinien, it project management, cybersicherheit, it-sicherheitsarchitektur, ip-telefonie, it-sicherheits-assessment, it-notfallmanagement, it-support rund um die uhr, computer systems design and related services, it-projektplanung, b2b, it-sicherheitsvorfälle, konferenzräume, it-sicherheitslösungen, it-services berlin, it-infrastruktur, it-schulungen, it-sicherheitszertifizierungen, it support, it-sicherheitsmanagementsysteme, it-notfallplanung, it hardware, it-sicherheitsmonitoring, it-sicherheitsrichtlinienentwicklung, it-sicherheitsstrategie, cybersecurity services, it cloud, it-implementierung, it-sicherheits-trainings, it-compliance-beratung, it-cloud-integration, it-upgrade, it consulting services, it security, it-sicherheits-frameworks, hybrid cloud lösungen, it-architektur, it solutions, it outsourcing, it-netzwerkmanagement, it-beratung, it training, services, microsoft 365 copilot, it-sicherheitslösungen für kmu, it infrastructure, distribution, telecommunications, information technology & services, management consulting, cloud computing, enterprise software, enterprises, computer software, computer & network security, outsourcing/offshoring",'+49 30 5400070,"Outlook, Hubspot, WordPress.org, Mobile Friendly, Nginx, Linkedin Marketing Solutions, Google Tag Manager","","","","","","",69c281cb1cba2c0001f1318e,7371,54151,"office company Gruppe – Ihre IT-Experten aus Berlin. + +Als breit aufgestellte Unternehmensgruppe beraten und planen wir gesamtheitlich. Denn mit über 25 Jahren Erfahrung und spezifischen Branchen- und Fachkenntnissen finden wir die beste Lösung für Ihre IT-Projekte. Damit decken wir alle relevanten Bereiche ab, die Sie für eine sichere, effiziente und wettbewerbsfähige IT-Infrastruktur brauchen. + +Unser Fokus liegt dabei auf IT-Security, IT-Services und IT-Compliance. Dazu gehören auch Produkte wie Teams-Telefonie, Cloud-Services und flexible Digitalisierungslösungen. Darüber hinaus bieten wir unseren Kunden einen 24/7 Support und modernste Videokonferenzlösungen. + +Unser Impressum: https://www.office-company.de/impressum +Unsere Datenschutzerklärung: https://www.office-company.de/datenschutz",1994,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6713f356614d91000105073b/picture,"","","","","","","","","" +Softline GmbH,Softline,Cold,"",79,information technology & services,jan@pandaloop.de,http://www.softline.de,http://www.linkedin.com/company/softline-gmbh,https://facebook.com/Softline-AG-130180050695457/,"",1 Gutenbergplatz,Leipzig,Saxony,Germany,04103,"1 Gutenbergplatz, Leipzig, Saxony, Germany, 04103","managed services, it asset management, itconsulting, informationssicherheit, itservices, itsicherheit, cloud management, itberatung, it services & it consulting, b2b, vulnerability management, iso/iec 19770, software development, process optimization, government, consulting, digital transformation, license optimization, iso/iec 19770-1, pki & key management, information technology & services, hybrid cloud architecture, operational efficiency, itam lifecycle, cloud computing, compliance, cybersecurity, hyperconverged infrastructure, post-quantum cryptography, risk mitigation, license management, system integration, cyber security, hybrid cloud, snow software system health check, digital signatures & eidas, risk management, hardware security module, post-quantum cryptography (pqc), microsoft 365 nis2 readiness, license audit & compliance support, identity & access management, physical identity & access management (piam), cloud & infrastructure, it consulting, it security, finops assessment, privileged access management (pam), computer systems design and related services, security operations center, cloud migration, services, security solutions, managed security services, data security, iso certification, enterprise software, enterprises, computer software, computer & network security, management consulting",'+49 34 1240510,"Outlook, Mobile Friendly, Apache, Remote, LinkedIn Learning","","","","",30813000,"",69c281cb1cba2c0001f1318f,7375,54151,"Softline GmbH is a German IT services company that specializes in custom software and IT consulting. The company focuses on areas such as IT asset management, security, cloud solutions, and digital workplace technologies. Operating as part of the Softline Group, it serves medium-sized businesses, international corporations, and public institutions. Headquartered in Germany, Softline GmbH has a presence in several European countries, including Austria, Belgium, and the Netherlands. + +The company offers a range of IT services, including proactive license management, compliance audits, and IT security solutions. It provides cloud management and hybrid solutions to enhance cost-efficiency and adaptability. Additionally, Softline GmbH delivers strategic consulting, customized IT solutions, and project management to minimize financial risks. The company partners with leading technology providers to ensure integrated and certified implementations, supporting various sectors such as financial services, public administration, healthcare, and energy.",2010,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6700efd3c8739c0001030f9e/picture,Softline Group (softline.ru),556d7afd7369641271c11301,"","","","","","","" +TEQYARD,TEQYARD,Cold,"",19,information technology & services,jan@pandaloop.de,http://www.teqyard.de,http://www.linkedin.com/company/teqyardrocks,https://www.facebook.com/profile.php,"",57 Mecklenburgische Strasse,Berlin,Berlin,Germany,14197,"57 Mecklenburgische Strasse, Berlin, Berlin, Germany, 14197","data analytics, cloud, machine learning, softwareentwicklung, software development, data analytics and ai, echtzeit-datenverarbeitung, ki, data pipelines, data lake, datenmanagement, ki in der industrie, data lakehouse, ki-gestützte anwendungen, echtzeit-streaming, predictive analytics, data security, infrastrukturaufbau, data warehouse, rag-systeme, cloud infrastructure, plattformentwicklung, automatisierte datenanalyse, consulting, business intelligence, information technology and services, data engineering, data visualization, data governance & security, computer systems design and related services, cloud computing, b2b, data governance, predictive maintenance, ki-gestützte fehlererkennung, datenbasierte entscheidungen, industrial automation, skalierbare lösungen, api development, ki-basierte prognosemodelle, data architecture, anomalieerkennung, prozessautomatisierung, energy and utilities, datenintegration, iot-datenanalyse, data as a service, automatisierung, api-entwicklung, data analytics & ki, data pipeline automation, cloud-native data solutions, logistics and supply chain, business insights, digitale strategie, services, ki-gestützte wissenssysteme, manufacturing, distribution, transportation_logistics, energy_utilities, artificial intelligence, information technology & services, enterprise software, enterprises, computer software, computer & network security, internet infrastructure, internet, analytics, mechanical or industrial engineering, logistics & supply chain","","Outlook, Microsoft Office 365, Google Cloud Hosting, MailJet, Wix, Mobile Friendly, Varnish, Google Tag Manager, Remote","","","","","","",69c281cb1cba2c0001f13192,7375,54151,"TEQYARD is a German technology company that specializes in developing digital business models, AI strategies, and data analytics solutions. The company focuses on creating data-driven solutions tailored to business challenges, utilizing strategic planning and technological implementation. TEQYARD is involved in innovative AI projects, particularly as a partner in the AIAMO consortium, which aims to enhance mobility data analysis and sustainable mobility management across Europe. + +Their core offerings include AI and data analytics to optimize internal processes and develop new business models. TEQYARD also contributes to mobility and Intelligent Transport Systems (ITS) solutions, integrating AI for efficient and sustainable transportation. The company supports the editionAIAMO framework, which links optimized AI data to practical applications. With a commitment to growth, TEQYARD is actively expanding its team.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66d4177de2f5910001002f67/picture,"","","","","","","","","" +evia,evia,Cold,"",150,information technology & services,jan@pandaloop.de,http://www.evia.de,http://www.linkedin.com/company/evia-stuttgart,https://www.facebook.com/eviagruppe/,"",100 Am Wallgraben,Stuttgart,Baden-Wuerttemberg,Germany,70565,"100 Am Wallgraben, Stuttgart, Baden-Wuerttemberg, Germany, 70565","it, portalentwicklung, java, softwareentwickler, cloud, digitale transormation, devops, systemintegration, ms office 365, anforderungsmanagement, sharepoint, unternehmensberatung, beratung, entwicklung, software architektur, betrieb, test und testmanagement, sap, projektmanagement, javascript, microservices, ki, cloudloesungen, requirements engineering, apps, prozessberatung, karriere, microsoft, public cloud, etl-prozess, künstliche intelligenz und machine learning, custom software development, agentic ai, compliance, managed services, branchenlösungen, computer systems design and related services, business intelligence, governance, ai-strategie, artificial intelligence, hybrid cloud, data security, information technology and services, prozessautomatisierung, sicherheitsanalysen, b2b, customer relationship management, penetrationstests, data management, automation, automatisierte prozesse, microsoft technologien, enterprise software, ki-architektur, cybersecurity, government, cloud computing, machine learning, cloud-migration, self-service bi, user experience, cloud security, private cloud, data analytics, ki in der produktion, cloud-native anwendungen, data governance, process optimization, ki-regulatorik, it-beratung, supply chain management, it-transformation, cybersecurity & pentests, it solutions, barrierefreie pdfs, digital transformation, services, it-strategie, mlops, containerisierung, automatisierung, softwareentwicklung, software development, predictive analytics, low-code & citizen development, datenmanagement, it-architektur, it-infrastruktur, consulting, generative ai, it-operations, retail, data visualization, it-sicherheit, data warehouse, ai-readiness-analyse, healthcare, finance, manufacturing, distribution, information technology & services, analytics, computer & network security, crm, sales, enterprises, computer software, ux, logistics & supply chain, health care, health, wellness & fitness, hospital & health care, financial services, mechanical or industrial engineering","","Outlook, Hubspot, Google Tag Manager, Typekit, Linkedin Marketing Solutions, Nginx, Mobile Friendly, Apache, WordPress.org, Remote, Pega CRM Suite","","","","","","",69c281cb1cba2c0001f13194,7375,54151,"evia is a mid-sized IT services company based in Germany, founded in 2000. With around 300 employees, it operates in multiple locations including Stuttgart-Vaihingen, Leonberg, Blaustein (Ulm), München, and Offenburg. The company specializes in customized technology solutions that prioritize human-centered design and accessibility. It serves a variety of industries such as Automotive, Banking, Aerospace, Insurance, Retail, Public, and Healthcare. + +The company is committed to quality and sustainability, holding ISO 9001 certification and achieving TISAX certification for automotive data security in 2021. In 2022, evia obtained CO2 balance certification, reflecting its focus on environmental responsibility. Its services include managed services, consulting, and specialized IT solutions for healthcare and industrial automation. Notably, evia has developed software products aimed at enhancing manufacturing processes through automation, including tools for welding and assembly optimization. The company has established long-term partnerships, including a decade-long collaboration with a leading German automaker.",2000,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69accce343c2380001248dd7/picture,"","","","","","","","","" +MANDARIN,MANDARIN,Cold,"",180,marketing & advertising,jan@pandaloop.de,http://www.mandarin.digital,http://www.linkedin.com/company/mandarindigital,https://www.facebook.com/MANDARIN.digitalagentur,https://twitter.com/mandarinmedien,1 Muesser Bucht,Schwerin,Mecklenburg-Vorpommern,Germany,19063,"1 Muesser Bucht, Schwerin, Mecklenburg-Vorpommern, Germany, 19063","it service, shopware, business websites, webanalyse strategie, magento shops, hr, hr analytics, performance marketing, it security, it infrastruktur, strategie, employer branding, web analytics, design usability, mobile applications, ecommerce, recruiting, social media marketing, drupal, advertising services, digitalisierung, sinnstiftende projekte, digital transformation agency, public relations and communications, cloud solutions, nachhaltigkeit, marketing, social advocacy and non-profit, social media, digital transformation, it & digitalisierung, strategische nachhaltigkeit, ganzheitliche beratung, interdisziplinär, advertising agencies, agile projektarbeit, corporate journalism, sustainable communication, digital strategy, social & health economy, e-commerce, consulting, remote work, it support, communication strategy, digital impact, barrier-free content, analytics, agile methodology, seo, kundenorientierte kommunikation, teamsport transformation, b2b, change & transformation, web development, it services, user experience, website design, customer journey, digital accessibility, digital agency, website & portal development, system integration, strategic communication, information technology and services, digital barrier check, it infrastructure, services, full-service support, holistische haltung, content marketing, network security, marketing and advertising, systemintegration, digital services, organization digitalization, social recruiting, content creation, process automation, healthcare, education, non-profit, human resources, marketing & advertising, computer & network security, information technology & services, mobile apps, consumer internet, consumers, internet, public relations & communications, cloud computing, enterprise software, enterprises, computer software, search marketing, ux, web design, staffing & recruiting, health care, health, wellness & fitness, hospital & health care, nonprofit organization management",'+49 385 3265020,"Gmail, Google Apps, Microsoft Office 365, Google Tag Manager, Nginx, Mobile Friendly, Microsoft 365, Cisco Meraki MS, Cisco Secure Firewall Management Center, Switch Concepts, Cisco VPN","","","","","","",69c281cb1cba2c0001f13198,8742,54181,"MANDARIN is a digital agency based in Germany that specializes in marketing, IT services, digitalization, and employer branding. Founded in 2002, the agency has grown to over 100 employees across four locations in northern Germany. It operates as part of the MANDARIN Family, a network of specialized agencies that collaborate to provide comprehensive solutions. + +The agency offers integrated services in four main areas: marketing, IT services, digitalization, and employer branding. This includes digital marketing, cloud solutions, process digitization, and workplace culture development. MANDARIN also provides specialized services such as digital accessibility analysis and consulting for the hotel and tourism sector. The agency adopts a holistic approach to business challenges, emphasizing agile and interdisciplinary methods to drive change and transformation. + +MANDARIN is committed to social responsibility, dedicating 1% of its fee revenue to support social and ecological projects. The agency fosters a diverse and inclusive workplace culture, encouraging employees to express their individuality.",2002,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68450bc2b6f1e8000153b772/picture,"","","","","","","","","" +Content Guru D-A-CH,Content Guru D-A-CH,Cold,"",12,telecommunications,jan@pandaloop.de,"",http://www.linkedin.com/company/contentgurudach,"","",4 Dornierstrasse,Gilching,Bavaria,Germany,82205,"4 Dornierstrasse, Gilching, Bavaria, Germany, 82205","proactive customer communications, acd, payment services, kundendialog, kundenzufriedenheit, workforce optimization, ccaas, ivr, contact center, knowledge management, contact center modernization, artificial intelligence, reporting, call center, customer experience software, kuenstliche intelligenz, customer service, ai, cloud contact center, service center, kundenservice, omnichannel, kundendienst, ki, customer care, payments, financial services, information technology & services","","","","","","","","",69c281cb1cba2c0001f1319c,"","","Content Guru D-A-CH is a regional branch of Content Guru, a global leader in enterprise cloud-based Customer Experience (CX) and contact center solutions. Established in 2005, the company specializes in omni-channel customer engagement platforms that prioritize high availability, scalability, and customer satisfaction. + +The core offering is a cloud CX platform that integrates advanced AI orchestration to enhance automation and support human agents during customer interactions. This platform is utilized by large enterprises across various sectors, including telecommunications and emergency services, ensuring reliability in mission-critical environments. Content Guru provides cloud contact center solutions, AI-driven customer experience enhancements, omni-channel communication support, and data integration and analytics to improve customer engagement strategies. + +Led by co-founder and Global CEO Sean Taylor, Content Guru D-A-CH focuses on delivering tailored support and deployment of its global solutions to meet the needs of the D-A-CH market. The company is recognized for its commitment to innovation and excellence in customer engagement.",2005,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e3dbb872880700015e2b4b/picture,"","","","","","","","","" +JustRelate,JustRelate,Cold,"",140,information technology & services,jan@pandaloop.de,http://www.justrelate.com,http://www.linkedin.com/company/justrelate-group,https://facebook.com/infopark,http://twitter.com/infopark,15 Kitzingstrasse,Berlin,Berlin,Germany,12277,"15 Kitzingstrasse, Berlin, Berlin, Germany, 12277","digital transformation, amazon web services, email builder, customer experience management, softwareasaservice, cpq, cloud software, platformasaservice, software house, cxp, content management system, customer experience platforms, digital experience platform, customer engagement, marketing automation, digitalisierung, ruby on rails, web apps, customer experience, configure price quote, cms, crm, customer data platform, saas, web development, web cms, enterprise software, software, information technology, software development, customer service, content editing tools, multichannel customer engagement, digital experience optimization, customer loyalty solutions, consulting, customer journey, content security, self-service portals, content management automation, mobile app, customer relationship management, multilingual website management, e-commerce, content deployment, ai content generation, content delivery network, content creation ai, dxp, web content management, d2c, data integration, global content distribution, content translation, business intelligence, customer data integration, online events, government, healthcare technology, sales enablement, customer feedback management, cloud infrastructure, content management, web portals, industry-specific digital solutions, cloud platform, personalized digital experiences, customer support, automation, digital experience platform customization, operational efficiency, email automation, b2b, industry expertise in public sector, data security, b2c, api integration, customer loyalty programs, content analytics, healthcare, web design and development, user experience optimization, customer analytics, content collaboration, enterprise saas, enterprise content management, content publishing, custom web development, responsive design, agile project realization, b2b digital solutions, ai-driven content creation, computer systems design and related services, content personalization, multichannel marketing, customer journey management, event management, secure cloud infrastructure, lead generation, digital marketing, email marketing, customer support portals, digital experience management, customer engagement platform, online event management, customer data security compliance, research sector digital tools, agile development, cloud solutions, content optimization, industry-specific solutions, automated workflows, content management system integration, remote work, digital asset management, manufacturing digitalization, digital experience, logistics digital transformation, customer retention, customer loyalty, services, finance sector solutions, information technology and services, multilingual content management, agile project delivery, digital experience consulting, content management for large enterprises, b2b solutions, user experience, web content personalization, financial services, security protocols, customer data privacy, industry solutions, content automation, workflow automation, retail, multichannel communication, email marketing automation, digital marketing tools, web development tools, customer data security, it consulting, user interface design, ai-powered content refinement, digital customer service, multilingual content, digital process automation, secure cloud platform, cloud hosting, cx cloud, web application builder, b2b ecommerce, cross-selling, up-selling, mass emailing, transactional communications, after-sales service, gdpr compliance, customer data management, data privacy, multi-channel marketing, service management, digital communication, omnichannel support, digital event platform, customer portals, collaborative email design, integration capabilities, flexible workflows, customizable solutions, real-time analytics, market readiness, multi-currency support, cross-device compatibility, scalable software, performance optimization, risk mitigation, cost reduction, mobile solutions, finance, manufacturing, distribution, transportation_logistics, marketing & advertising, computer software, information technology & services, enterprises, web applications, sales, consumer internet, consumers, internet, analytics, internet infrastructure, computer & network security, health care, health, wellness & fitness, hospital & health care, web design & development, events services, cloud computing, ux, management consulting, mechanical or industrial engineering",'+49 30 7479930,"Route 53, Amazon SES, Gmail, Google Apps, Amazon AWS, NetSuite, Outlook, Microsoft Office 365, Netlify, DigitalOcean, Slack, Salesforce, Segment.io, Mobile Friendly, Remote, Snowflake, Deel, AWS Trusted Advisor, Silae, React, TypeScript, Figma, Cypress, Vitess, Jest, Salesforce CRM Analytics, Linkedin Marketing Solutions, Javascript","",Merger / Acquisition,0,2020-08-01,10300000,"",69c281cb1cba2c0001f1319e,7375,54151,"JustRelate is a software and services company based in Berlin, Germany, specializing in customer engagement platforms (CXP) and digital experience platforms (DXP) for medium to large B2B companies and public sector organizations. Founded in 1994, the company has over 30 years of experience and operates with a remote-friendly model, employing between 145 to 250 people across various locations, including Munich, Wrocław, Lille, and Paris. + +The company offers an integrated SaaS suite that includes products like Scrivito CMS, PisaSales CRM, Neoletter, Planware CPQ, and Dartagnan. These tools help modernize customer processes across marketing, sales, and service channels. JustRelate also provides custom development, consulting, and agile project management services, focusing on digital transformation for its clients. With over 1,000 completed projects and a diverse client base of more than 4,000 customers, JustRelate emphasizes its expertise in industries such as manufacturing, logistics, finance, and research.",1989,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f1354f97c94b0001277cb3/picture,BID Equity GmbH (bidequity.de),56d95498f3e5bb7319001a7d,"","","","","","","" +Veact GmbH,Veact,Cold,"",120,information technology & services,jan@pandaloop.de,http://www.veact.com,http://www.linkedin.com/company/veact,https://facebook.com/veact/,"",106 St.-Martin-Strasse,Muenchen,Bayern,Germany,81541,"106 St.-Martin-Strasse, Muenchen, Bayern, Germany, 81541","market analysis automotive industry & marketing automation for car sales, enterprise software, automotive, software, information technology, it services & it consulting, data privacy, customer lifecycle management, customer experience personalization, data-driven marketing, data validation, real-time lead signals, customer loyalty increase, automated campaigns, automotive customer profiles, revenue growth, customer data management, online appointment booking, workflow automation, services, customer vitality analysis, automotive data privacy, real-time data, marketing automation, operational efficiency, business performance benchmarking, upsell signals, customer insights, crm integration, b2b, workflow and journey builder, after sales revenue, customer data security, bidirectional data exchange, data validation and enrichment, data security, customer retention, automotive data ecosystem, customer segmentation, customer journey builder, customer engagement, customer relationship management, customer journey automation, advertising agencies, customer data unification, campaign analytics, customer experience enhancement, customer loyalty systems, automotive marketing solutions, consulting, personalized customer interactions, revenue optimization, upsell and cross-sell opportunities, customer interaction management, third-party app integration, gdpr and tisax compliance, customer profile building, data discrete platform, customer data cleansing, customer engagement roi, campaign management, targeted marketing campaigns, multichannel communication, connected car data, customer profiles, automotive marketing ecosystem, tisax certification, customer retention strategies, customer data platform, gdpr compliance, customer data cleansing tools, customer loyalty programs, real-time data integration, lead management, multichannel marketing automation, automotive industry digitalization, data enrichment, customer loyalty, customer data enrichment platforms, marketing automation tools, automotive data security, retail, third-party integration, finance, enterprises, computer software, information technology & services, marketing & advertising, saas, computer & network security, crm, sales, financial services",'+49 89 41615810,"MailJet, Rackspace MailGun, Outlook, Microsoft Office 365, Hubspot, Slack, UptimeRobot, Atlassian Cloud, Sophos, Nginx, WordPress.org, Google Tag Manager, reCAPTCHA, Hotjar, Mobile Friendly, Scala, AI, Google Firebase Realtime Database, Apache Flink, Apache Iceberg, dbt, Athena, Google AlloyDB for PostgreSQL, Argo, Linkedin Marketing Solutions, Salesforce Marketing Cloud Intelligence (formerly Datorama), Salesforce CRM Analytics",3030000,Series B,0,2018-09-01,17000000,"",69c281cb1cba2c0001f13190,7375,54181,"Veact GmbH is a technology company based in Munich, founded in 2010. It specializes in data-driven marketing automation and software solutions aimed at enhancing sales success for car dealerships, OEMs, national sales companies, and workshops, particularly in the automotive aftersales segment. With a team of 51-200 employees, Veact operates across five European countries, targeting a market of approximately 380,000 car dealerships and workshops. + +The company offers a comprehensive automotive marketing platform that includes web-based tools for digital sales, aftersales, lead management, and marketing automation. Key features include the creation and execution of marketing campaigns, data-based marketing applications, and solutions that ensure compliance and data privacy. Veact's innovative approach has generated significant revenue impacts and improved efficiency for its clients, with millions of personalized campaigns executed annually. The company is recognized for its partnerships with leading car brands and dealership groups throughout Europe.",2010,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/696093f0d273880001f6efdf/picture,"","","","","","","","","" +We4IT GmbH,We4IT,Cold,"",11,online media,jan@pandaloop.de,http://www.we4it.com,http://www.linkedin.com/company/we4it,"",https://twitter.com/we4it,10 Buschhoehe,Bremen,Bremen,Germany,28357,"10 Buschhoehe, Bremen, Bremen, Germany, 28357","internet publishing, innovation investment, modern technology stacks, business automation, application enhancement, business process automation, group mailbox optimization, it services, email chaos management, cloud computing, it expertise, customer engagement, consulting, ai in email management, workflow automation, software development, digital workflow enhancement, data protection, application migration, machine learning, ai solutions, email management, ai-driven tools, application migration to cloud, modern technology, it consulting, business process automation tools, it consulting services, business intelligence, ai-supported file management, digital collaboration, computer systems design and related services, application development, customer relationships, cloud-based solutions, modern tech stacks in it, email management optimization, artificial intelligence, sharepoint integration, collaborative software solutions, b2b, group email collaboration, services, digitalization support, ai, information technology and services, software as a service, outlook sharepoint integration, digital transformation, enterprise software, outlook add-in, customer support, online media, media, information technology & services, enterprises, computer software, management consulting, analytics, app development, apps, saas",'+49 42 19897300,"Outlook, Slack, Microsoft 365, .NET, React, Next.js, Jira, Bitbucket, Microsoft Graph, ebs","","","","","","",69c281cb1cba2c0001f1319d,7375,54151,We4IT is the specialist for the future-proof modernization of Lotus Notes / Domino applications. We also take over the support and possibly to outsource complex Domino environments. For more than 15 years We4IT has been providing professional service and competent support both for our own products and for our partner products.,2002,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/674a4224aeeb98000123a2c9/picture,"","","","","","","","","" +WYSA GmbH,WYSA,Cold,"",13,information technology & services,jan@pandaloop.de,http://www.wysa.de,http://www.linkedin.com/company/wysa-gmbh,"","","",Reilingen,Baden-Wuerttemberg,Germany,"","Reilingen, Baden-Wuerttemberg, Germany","it services & it consulting, process optimization, agile crm-implementierung, it-infrastruktur, vertriebsdatenvisualisierung, computer systems design and related services, kundenpotenzialanalyse, predictive analytics, datenanalyse, vertriebs- und marketingautomation, vertriebs- und marketing-integration, services, risk assessment, vertriebs- und kundenservice-tools, microsoft dynamics 365, digitalisierung, datensicherheit, cloud solutions, vertriebssteuerung, vertriebs- und kundenkommunikation, microsoft dynamics 365 customer engagement, business consulting, software and computer services, kmu-digitalisierung, system integration, information technology and services, power platform, datenintegration, vertrieb, crm, customer relationship management, automatisierung, vertriebs- und service-optimierung, crm-workshops für kmu, consulting, prozessdigitalisierung, vertriebs- und marketing-strategien, kundenbeziehungsmanagement, vertragsmanagement, mittelstand, kundenfeedback, vertriebsoptimierung, cloud computing, digitalisierungskonzepte, power bi berichte, vertragsverwaltung, workflow automation, power bi dashboards, projektbegleitung, it-consulting, customer journey, crm für den mittelstand, azure cloud services, vertriebs- und service-tools, prozessautomatisierung, outlook-integration, cloud-lösungen, vertriebsprozess, vertriebs- und marketingsoftware, customer service, marketing, microsoft partner, power bi, microsoft dynamics 365 customization, kundenmanagement, marketing automation, lead generation, partnernetzwerk, azure, datenschutz, business intelligence, b2b, vertragsmanagement in der cloud, agile projektmanagement, email marketing, business software, consulting services, software development, customer engagement, kundenkommunikation, vertriebs- und kundenfeedback-tools, agile methoden, digital transformation, kundenbeziehungsentwicklung, crm-implementierung, vertriebscontrolling, data analytics, kundenbindung, information technology & services, event management, vertriebs- und kundenbindungskonzepte, vertriebsprozess automatisierung, distribution, enterprise software, enterprises, computer software, management consulting, sales, marketing & advertising, saas, analytics, events services",'+49 62 053899563,"Outlook, Microsoft Office 365, WordPress.org, Nginx, Mobile Friendly, Google Tag Manager","","","","","","",69c281cb1cba2c0001f131a0,7375,54151,"Unser Ziel ist es Sie in Hinblick auf Digitalisierung und speziell im Kundenbeziehungsmanagement zu beraten sowie entsprechende Projekte auch technisch umzusetzen. Dieser Kundenfokus ist auch in unserer eigenen Unternehmenskultur fest verankert und wird entsprechend gelebt. + +Ziel ist es also gemeinsam mit Ihnen zu arbeiten. Handlungsempfehlungen auszusprechen, diese umzusetzen bzw. dabei zu unterstützen. Je erfolgreicher der eigene Kunde dadurch wird, desto erfolgreich wird das Unternehmen selbst. + +Hieraus abgeleitet ergeben sich unsere drei Leitmotive: + +Gemeinsam. Erfolgreich. Handeln.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66fbb9ae68dbb20001338efa/picture,"","","","","","","","","" +arborsys GmbH,arborsys,Cold,"",24,information technology & services,jan@pandaloop.de,http://www.arborsys.de,http://www.linkedin.com/company/arborsys,"","",2 Marienstrasse,Neu-Ulm,Bayern,Germany,89231,"2 Marienstrasse, Neu-Ulm, Bayern, Germany, 89231","digitale transformation, microsoft dynamics 365, enterprise plattformen, adobe experience cloud, direct to consumer, individualentwicklung fuer digitale vorhaben, digitalisierung, d2c, it services & it consulting, aws cloud, microsoft 365 consulting, custom software development, customer data solutions, enterprise it solutions, custom software, consulting, customer experience, digital product development, data analysis, cloud infrastructure, e-commerce, b2b, microsoft azure, it security, retail, iot, data analytics, digital transformation, cloud migration, computer systems design and related services, it project management, marketing solutions, business analytics, it services, ai, agile project management, digital twins, cybersecurity, customer journey optimization, devops, software development, it consulting, digital innovation, data-driven decision making, big data, it infrastructure, power platform, services, it solutions, cloud & connectivity, tailored it solutions, microsoft power platform, it project implementation, information technology and services, crm, connectivity, software engineering, cloud services, microsoft 365, agile it project delivery, information technology & services, enterprise software, enterprises, computer software, internet infrastructure, internet, consumer internet, consumers, computer & network security, management consulting, sales, cloud computing",'+49 731 49391650,"Outlook, Grafana, React Redux, Linkedin Widget, Typekit, Hubspot, Squarespace ECommerce, Facebook Widget, Mobile Friendly, Linkedin Login, Facebook Login (Connect), Apache, Microsoft Sql Server","","","","","","",69c281cb1cba2c0001f13191,7375,54151,"arborsys ist ein in Neu-Ulm ansässiges IT- und Software-Unternehmen mit Projektstandorten in München und Berlin. Unser Schwerpunkt ist die digitale Transformation, insbesondere aber die Realisierung von maßgeschneiderten Hightech-IT-Lösungen. arborsys wurde 2012 aus Leidenschaft für die Digitalisierung und aufgrund der vielfältigen und langjährigen Erfahrungen mit den steigenden Anforderungen an IT-Projekte gegründet. Zu diesem Zeitpunkt konnten wir bereits auf über 10 Jahre Erfahrung im traditionellen IT- und Engineering-Bereich zurückblicken. arborsys sollte aber mehr sein, als ein reiner IT-Dienstleister. + +Unsere Vision +Unser Ziel war es von Anfang an einfache und maßgeschneiderte digitale Lösungen für unsere Kunden zu schaffen. Von der mobilen App über B2B-, B2C- und B2E-Plattformen bis hin zur vollintegrierten und vernetzten Enterprise-Lösung. + +Das zeichnet uns aus +Je nach Fragestellung, Projektphase oder digitalem Reifegrad erstellen wir qualitative, kreative sowie innovative Lösungen für Sie. Für Ihr Projekt kombinieren wir – immer mit Blick auf Ihre Vorgaben – unterschiedliche Methoden, Tools & Technologien zu einem sinnvollen Ganzen zusammen. Dazu nutzen wir sowohl klassische als auch agile Projektmanagement-Methoden wie zum Beispiel SCRUM, SAFe und PMI. +In unserem Namen steckt das lateinische Wort für Baum: arbor. Und der Baum ist bei uns gewissermaßen auch Programm. Genau wie die Wurzeln eines Baums mit den Blättern und Ästen ein perfekt funktionierendes Netzwerk bilden, sind auch unsere Mitarbeiter eng miteinander verbunden. Wir arbeiten partnerschaftlich und transparent im Team zusammen – mit unseren Kunden ebenso wie untereinander. In unserem bodenständigen, regional fest verankerten Unternehmen wachsen wir nachhaltig. Darüber hinaus ist es uns wichtig, uns sozial zu engagieren. Wir sind Mitglied im Arbeitskreis für Innovationsmanagement, dem Bitkom sowie dem Bundesverband mittelständische Wirtschaft.",2012,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6739f3dcf121730001c650a5/picture,"","","","","","","","","" +yim GmbH & Co. KG,yim GmbH & Co. KG,Cold,"",14,information technology & services,jan@pandaloop.de,http://www.y-im.de,http://www.linkedin.com/company/yim-gmbh,https://facebook.com/yimohg,https://twitter.com/yimohg,44 Neckarstrasse,Ginsheim-Gustavsburg,Hesse,Germany,65462,"44 Neckarstrasse, Ginsheim-Gustavsburg, Hesse, Germany, 65462","asset manager, digitalisierung, smax, rpa, operations orchestration, microfocus, service manager, ucmdb, esm, uipath, prozessautomation, itsm, it services & it consulting, maßgeschneiderte it-lösungen, multi-cloud-integration, data security, ki-gestützte automatisierung, it-sicherheitslösungen, b2b, automatisierte sicherheitsüberwachung, services, it-consulting, change management, computer software, systemintegration, prozessautomatisierung, it consulting, system integration, geschäftsprozessautomatisierung, it-security, prozessanalyse, it-integration, custom software development, it security, cybersecurity, dsgvo-konformität, open telekom cloud, digital transformation, information technology and services, cloud-hosting, service management plattformen, it-asset management, workflow automation, workflow-automatisierung, it-service management, automatisierte geschäftsprozesse, computer systems design and related services, consulting, management consulting, distribution, information technology & services, computer & network security",'+49 6144 802880,"Outlook, Microsoft Office 365, SendInBlue, Webflow, Mobile Friendly, WordPress.org, Apache, Vimeo, Wix, Varnish, Node.js, React Native, AI","","","","","","",69c281cb1cba2c0001f131a2,7375,54151,"Die yim GmbH & Co. KG verfolgt die Vision „Everything is Service & Service is Everything"" und bietet seit über 20 Jahren maßgeschneiderte IT-Dienstleistungen. + +Wir unterstützen Unternehmen in Deutschland, Österreich und der Schweiz durch unsere Expertise in Digitalisierung, Service Management, Integration und Prozessautomatisierung. Unsere Services umfassen die Identifikation, Dokumentation, Entwicklung und Automatisierung von Geschäftsprozessen, um Effizienz zu maximieren und IT-Prozesse zu optimieren. + +Mit einem klaren Fokus auf die Schaffung von Mehrwert helfen wir unseren Kunden, Risiken zu minimieren, Kosten zu senken und nachhaltiges Wachstum zu fördern.",2002,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/689561a1d821a70001ffcec9/picture,"","","","","","","","","" +TIKI - Technologisches Institut für angewandte Künstliche Intelligenz GmbH,TIKI,Cold,"",22,information technology & services,jan@pandaloop.de,http://www.tiki-institut.com,http://www.linkedin.com/company/tiki-institut,"","",5 Prinz-Ludwig-Strasse,Weiden,Bavaria,Germany,92637,"5 Prinz-Ludwig-Strasse, Weiden, Bavaria, Germany, 92637","kiengine, software, software development, projektmanagement, artificial intelligence, kigrundlagenforschung, kiloesungen, ki, machine learning, iot, kialgorithmus, entwicklung, big data, deep learning, ai, angewandte kuenstliche intelligenz, kuenstliche intelligenz, change management, kieducation, kiverfahren, forschung, digitalisierung, consulting, softwareentwicklung, technology, information & internet, ki-standards, prozessoptimierung, ki-algorithmen, effizienzsteigerung, information technology and services, lakehouse technologie, ki-consulting, ki-implementierung, ki-forschung, ki-frameworks, ki-strategie, b2b, research and development, data management, predictive analytics, forschungsprojekte, ki-strategien, ki-startups, branchenübergreifende lösungen, technology consulting, business intelligence, ki-partner, ki-research, automation, ki-ansätze, ki-innovation, entwicklungsprojekte, ki-tools, digitale transformation, künstliche intelligenz, ki-gestützte automatisierung, branchenlösungen, ki-entwicklung, ki-lösungen, ki-integration, ki-transformation, ki-workforce, ki-basierte prozessautomatisierung, ki-projekte, ki-gestützte automatisierungslösungen, services, ki im einsatz, ki-modelle, ki-technologien, digital transformation, ki-industrie, automatisierung, ki-modelle für branchen, ki-experten, data science, ki-gestützte digitalisierung, ki-methoden, ki-development, ki-portfolio, ki-anwendungen, project management, ki-services, ki-workshops, research and development in the physical, engineering, and life sciences, information technology & services, enterprise software, enterprises, computer software, research & development, management consulting, analytics, productivity",'+49 961 20498764,"Outlook, Atlassian Cloud, Slack, Mobile Friendly, Apache, WordPress.org, reCAPTCHA, jPlayer, JQuery 1.11.1, Google Tag Manager, AI","","","","","","",69c281cb1cba2c0001f131a5,8731,54171,"TIKI - Technologisches Institut für angewandte Künstliche Intelligenz GmbH is a German company focused on applied artificial intelligence. It specializes in developing software and providing procedural research and development services in the AI domain. With a strong foundation in practical applications, TIKI has accumulated significant expertise, boasting over 25,964 man-days of AI experience and 84,349 trained AI models. + +The company engages in various activities, including AI consulting, project development, and research implementation. Its offerings are highlighted through sections on its platform, which cover topics such as the rationale for AI, project development, and ongoing research initiatives. TIKI's background includes a merger review involving notable industrial firms, indicating its role in advancing digitization through AI solutions.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66ee4fc82cf04500014a5f57/picture,"","","","","","","","","" +"""alivello"" GmbH","""alivello""",Cold,"",15,telecommunications,jan@pandaloop.de,http://www.alivello.com,http://www.linkedin.com/company/alivello-gmbh,"","","",Ladenburg,Baden-Wuerttemberg,Germany,"","Ladenburg, Baden-Wuerttemberg, Germany","lead management, telemarketing, digital sales, leadgenerierung, social selling, leadmanagement, terminvereinbarung aussendienst, b2b telemarketing, vertriebsunterstuetzung, telesales, media & telecommunications, ki-gestützte talentakquise, ki-basierte vertriebsanalyse, kundenakquise, transportation & logistics, multi-channel outreach, sales intelligence, digitalisierung vertrieb, sales enablement, vertriebscontrolling mit kpis, distribution, sales automation tools, b2b sales, manufacturing, vertriebsperformance, b2b, customer data platform, automatisierte leadqualifizierung, crm integration, vertriebskanaloptimierung, vertriebscontrolling tools, customer relationship management, vertriebsperformance tracking, linkedin recruiting, management consulting services, vertriebsstrategie für erklärungsbedürftige produkte, vertriebscontrolling, b2b vertriebsunterstützung, vertriebsprozess digitalisierung, vertriebsstrategie entwicklung, sales funnel, e-mail marketing automation, vertriebsprozess automatisierung, social selling auf linkedin und xing, vertriebsmanagement, kundenbindung, consulting, vertriebsautomatisierung im b2b, vertriebsstrategie beratung, vertriebsstrategie, vertriebsautomatisierung, vertriebsunterstützung, vertriebsoutsourcing, vertriebsdigitalisierung, customer data platform (cdp), vertriebsprozessoptimierung, vertriebsprozess, crm, kaltakquise, linkedin sales navigator, vertriebsdatenanalyse, marketing qualified leads, vertriebsanalyse, vertriebsberatung, sales automation, automatisierte terminvereinbarung, vertriebssoftware, content as a service, services, vertriebsoptimierung, transportation_logistics, mechanical or industrial engineering, sales, enterprise software, enterprises, computer software, information technology & services, saas",'+49 62 034016150,"Outlook, Salesforce, Apache, Mobile Friendly, Google Tag Manager","","","","","","",69c281cb1cba2c0001f1319f,7389,54161,"Sie benötigen effektive Vertriebsunterstützung oder wollen Ihre Vertriebskosten nachhaltig senken? ✔ Sales Automation & Leads vom Experten: ""alivello""! ✅",2010,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6746c1a582ffd5000193ecea/picture,"","","","","","","","","" +Arkwright Digital GmbH,Arkwright Digital,Cold,"",30,information technology & services,jan@pandaloop.de,http://www.arkwright-digital.com,http://www.linkedin.com/company/arkwright-digital-gmbh,"","",2a Fischertwiete,Hamburg,Hamburg,Germany,20095,"2a Fischertwiete, Hamburg, Hamburg, Germany, 20095","it, projectmanagement, consulting, digitalization, data analytics, revenue growth, cloud infrastructure, software development, customer experience design, software engineering, api integrations, project management, digital product development, information technology and services, development, scalable resources, scalable development, api service providers, financial services, b2b, customer retention techniques, e-commerce, custom software solutions, agile project management, application development, it consulting, cloud solutions, user experience, api ecosystem, digital transformation, prototyping, strategy consulting, maintenance and support, services, scalable development resources, end-to-end digital solutions, onboarding solutions, digital strategy consulting, customer onboarding, digital onboarding processes, computer systems design and related services, cloud hosting, international market presence, project managment, enterprise software, enterprises, computer software, information technology & services, internet infrastructure, internet, productivity, consumer internet, consumers, app development, apps, management consulting, cloud computing, ux, strategic consulting",'+49 40 2716620,"Cloudflare DNS, Outlook, Microsoft Office 365, Webflow, Slack, Google Tag Manager, Mobile Friendly, Remote, Jira, Confluence, Git","","","","","","",69c281cb1cba2c0001f131a3,7375,54151,"Umsetzungsstark, ambitioniert und schnell. Gemeinsam mit unseren internationalen Partnern in den Bereichen Consulting, Design, Entwicklung und Hosting denken wir in End-to-End-Lösungen. Arkwright Digital übernimmt Verantwortung vom Konzept bis zur letzten Codezeile. Wir begleiten unsere Kunden ganzheitlich, machen Komplexität beherrschbar und befähigen sie dazu, ihr digitales Potential voll auszuschöpfen. Das haben wir als Strategen, Innovationstreiber und Berater in Leuchtturmprojekten in über 20 Ländern bereits bewiesen.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f04f64b01964000179a60b/picture,Arkwright Consulting AG (arkwrightgroup.com),55921323736964199b235300,"","","","","","","" +HanseVision,HanseVision,Cold,"",120,information technology & services,jan@pandaloop.de,http://www.hansevision.com,http://www.linkedin.com/company/hansevision,https://facebook.com/hansevision,https://twitter.com/HanseVision,113 Bernhard-Nocht-Strasse,Hamburg,Hamburg,Germany,20359,"113 Bernhard-Nocht-Strasse, Hamburg, Hamburg, Germany, 20359","digital workplace services, microsoft teams inklusive cloud voice, unified communications, exchange, servicenow, change management adoption, business application development, m365, prozessautomatisierung und digitalisierung, enterprise social collaboration, ai, public sector, it services & it consulting, ai in public sector, m365 smarter arbeitsplatz, sharepoint intranet, computer systems design and related services, consulting, chatbots für verwaltung, public sector solutions, hybrid cloud strategie, power automate, government, business process automation, intranet, software development, enterprise software, change management, artificial intelligence solutions, b2b, microsoft 365, business processes automatisieren, digital transformation, outlook integration, workflow automation, process optimization, custom software development, application development, migration support, services, egovernment ai tools, information technology and services, smartnow, microsoft power platform, citizen services automation, user adoption, robotic process automation (rpa), servicenow projekte, nintex, smart city anwendungen, artificial intelligence, eigenentwicklung anwendungen, low-code entwicklung, smartpermission, information technology & services, enterprises, computer software, app development, apps",'+49 40 288075900,"Outlook, Microsoft Office 365, Microsoft Azure Hosting, Backbone JS Library, Hubspot, Slack, Typekit, reCAPTCHA, DoubleClick, Google Tag Manager, DoubleClick Conversion, Mobile Friendly, YouTube, Google Analytics, Linkedin Marketing Solutions, Google Dynamic Remarketing, Google Font API, Weebly, Remote, Jira, Jira Service Management, Confluence, Bitbucket, Atlassian Cloud, SharePoint, Microsoft 365, ShareGate, ServiceNow Request Management, Microsoft PowerShell, Microsoft Application Insights, Atlassian, Nintex, AvePoint Opus, Microsoft Power Automate, Microsoft Power Platform, Microsoft Power Apps, DATAVERSE LTD, Microsoft Azure Monitor","","","","",35000000,"",69c281c647a8220001db7c7e,7375,54151,"HanseVision is a German IT services company that specializes in digital transformation. The company focuses on business process automation and Modern Work solutions, helping clients adapt to the evolving digital workplace. HanseVision aims to create added value by enhancing digital maturity for businesses and employees through innovative services and tailored solutions. + +The company addresses two main areas: business process automation and the implementation of digital workplaces. HanseVision analyzes, digitizes, and automates business processes while also providing solutions for social intranets, Cloud Voice, and collaboration platforms. Their offerings include Microsoft Meeting Room Systems, conference room planning, and the rollout of meeting devices. They also implement business automation solutions using tools like Microsoft PowerBI, Nintex, and Microsoft Azure, among others.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66d4a9e97faf5c0001131bf9/picture,"","","","","","","","","" +XEPTUM Group,XEPTUM Group,Cold,"",37,information technology & services,jan@pandaloop.de,http://www.xeptum.com,http://www.linkedin.com/company/xeptum,https://www.facebook.com/XEPTUM,"","",Neckarsulm,Baden-Wuerttemberg,Germany,"","Neckarsulm, Baden-Wuerttemberg, Germany","sap, prozessmanagement, solution manager, digitale transformation, itbm, s4hana, lizenzmanagement, support, beratung, ewm, bpmon, devops, businessprocessmanagement, itloesungen, sapsysteme, gts, projektmanagement, digitalisierung, hana, bpca, fiori, agenturgeschaeft, it management, consulting, automatisierung, iot, machine learning, information technology and services, sap project methodology, business process management, sap-it-beratung, holistischer layer-ansatz, cloud solutions, hana-technologien, risk management, customer journey maps, it-strategie, process optimization, b2b, cybersecurity, it-organisation, transformation roadmap, management consulting services, business intelligence, big data, künstliche intelligenz, s/4hana transformation, form follows function, knowledge management mit ki, application management services, cloud-lösungen, software development, hybrid cloud, sap analytics cloud, business services, it-beratung, data management, public cloud, wissensmanagement, predictive analytics, services, cloud computing, digital transformation, project management, scan-focus-act-ansatz, predictive maintenance, x'accelerate, state-of-the-art-technologien, analytics, agiles projektmanagement, finance, distribution, information technology & services, artificial intelligence, enterprise software, enterprises, computer software, productivity, financial services",'+49 7132 156660,"Outlook, Microsoft Office 365, Slack, Mobile Friendly, Apache, reCAPTCHA, Etracker, Bootstrap Framework, WordPress.org, Remote","","","","","","",69c281c647a8220001db7c85,7375,54161,"XEPTUM Group, also known as XEPTUM Consulting AG, is a German IT consulting firm founded in 1999 and based in Neckarsulm, Baden-Württemberg. The company specializes in digital transformation, SAP Cloud ERP, business intelligence, artificial intelligence, and knowledge management solutions tailored for small to medium-sized enterprises and larger corporations. With a team of around 90 experts, XEPTUM has successfully completed 600 projects for 300 clients, emphasizing sustainability in its operations and corporate culture. + +The firm offers a range of services, including flexible cloud migration through SAP Cloud ERP, a modular AI platform called HeinzAI for knowledge management, and structured digital roadmaps for efficient transformation. XEPTUM also provides project management, strategy consulting, and optimization of processes within SAP ecosystems. With a commitment to clarity in cloud strategies, XEPTUM supports clients through complex digital changes, ensuring measurable value and sustainable outcomes.",1999,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68213182e19d9a00013c02c0/picture,"","","","","","","","","" +Makro Factory GmbH & Co. KG,Makro Factory GmbH & Co. KG,Cold,"",30,information technology & services,jan@pandaloop.de,http://www.makrofactory.com,http://www.linkedin.com/company/makro-factory-gmbh-&-co-kg,https://facebook.com/makrofactory,"",30 An der RaumFabrik,Karlsruhe,Baden-Wuerttemberg,Germany,76227,"30 An der RaumFabrik, Karlsruhe, Baden-Wuerttemberg, Germany, 76227","compliance, data center, security, prozessberatung, enterprise mobility, cloud services, betriebsunterstuetzung, service management, network, consulting, servicedesk, virtualization, business solutions, digital transformation, infrastructure, identity management, it-support, it consulting, digitalisierung, makrozerotrust, business continuity, security certificates, makrodisasterrecovery, makromanagedsecurity, it services, computer software and services, managed services, consulting services, makrocloud, information technology and services, cybersecurity, it-consulting, computer systems design and related services, b2b, matrix42, makrosecuritycube, managed it services, zero trust, it-infrastruktur, access control, it-security management, business continuity planning, data protection, makrocertmanager, makrohybrid, makroars, disaster recovery, endpoint security, makrobusinesscontinuity, cyber-riskschutz, pki, it security, citrix, cloud solutions, it-governance, software development, hybrid cloud, it-compliance, it-projects, it-services, it-beratung, azure, services, system integration, makroid, finance, distribution, transportation & logistics, internet service providers, information technology & services, cloud computing, enterprise software, enterprises, computer software, privacy, management consulting, computer & network security, financial services",'+49 721 97003100,"Outlook, Slack, Gravity Forms, Hubspot, Facebook Login (Connect), WordPress.org, Google Tag Manager, Mobile Friendly, DoubleClick, GoToWebinar, Linkedin Widget, Nginx, Linkedin Login, Facebook Widget, reCAPTCHA, Avaya","","","","","","",69c281c647a8220001db7c86,7379,54151,"Makro Factory GmbH & Co. KG is an IT consulting and solutions provider based in Karlsruhe, Germany. The company specializes in digital transformation and IT infrastructure services for mid-sized companies. With a focus on advising, planning, implementing, and managing IT projects, Makro Factory offers expertise in IT analysis, strategy, compliance, cloud services, support, and maintenance. + +The company provides a variety of services, including modern workplace solutions using Microsoft and Citrix technologies, service management with Matrix42, identity and access management with zero-trust strategies, and IT security solutions for cyber resilience. Makro Factory supports the ""Mission Top 5"" initiative to enhance digitalization in Germany's mid-sized businesses, emphasizing flexible and secure solutions like hybrid work models. Its corporate purpose includes IT consulting, support, training, and software development, aimed at helping clients achieve maximum business performance through effective IT strategies.",1995,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6961d4da611415000100e7bd/picture,"","","","","","","","","" +comdesk,comdesk,Cold,"",32,telecommunications,jan@pandaloop.de,http://www.comdesk.de,http://www.linkedin.com/company/comdesk-de,"","","",Koelln-Reisiek,Schleswig-Holstein,Germany,25337,"Koelln-Reisiek, Schleswig-Holstein, Germany, 25337","voice recognition, teams integration, cloud telephony, consulting, virtual pbx, call center software, ai-powered analytics, automation, customer engagement, regieanweisungen für voicebot, ki-gestützte effizienz, information technology & services, sip trunking, ki-voicebot, partner support, ki-basiertes dashboard, ki-statistiken, b2b, ai telecommunication solutions, telecommunications, services, ki-gestützte mailbox, automatisierte kundenkommunikation, telecommunications platform, chatgpt voicebot, digital transformation, openai integration, open interfaces, multichannel communication, ki-dashboards, customizable apis, ki-gestützte ivr, ki-gestützte telekommunikation, automated workflows, software development, ki-gestützte auswertungen, voicebot integration, customer support automation, real-time analytics, ai-plus upselling, cloud-based communication, distribution, transportation & logistics",'+49 412 1275210,"SendInBlue, JQuery 2.1.1, Google Tag Manager, YouTube, WordPress.org, MouseFlow, Nginx, Mobile Friendly, Facebook Widget, Facebook Custom Audiences, Bing Ads, Facebook Login (Connect), Shutterstock, Google Dynamic Remarketing, Google Play, DoubleClick Conversion, DoubleClick, Linkedin Marketing Solutions, Bootstrap Framework, Google AdWords Conversion, Highcharts JS Library, n8n, YouTrack, Adobe ColdFusion (2021 Release) Ubuntu Linux, TypeScript, IDC, JWT, PostgreSQL, Timescale, Redis, OpenAPI, Docker, Kubernetes, GitLab, TeamCity, Argocd, go+, GRPC, REST, Oracle XML DB, NATS, Prometheus, Grafana, Genesys SIP, Cisco VoIP, Proxmox VE, Ansible, Azure Analysis Services, OVH, Akamai CDN Solutions, AWS VPN, AWS Application Load Balancer, Juniper Networks SRX-Series Firewalls, checkmk, Bash, PHP, GitHub Actions, Jenkins, Microsoft Azure Monitor, DATEV Accounting, Microsoft Teams, Oracle Communications Session Border Controller (SBC)","","","","","","",69c281c647a8220001db7c92,3661,517,"Mit der All-in-One Cloud-Telefonanlage von comdesk sind Unternehmen für den modernen Telekommunikationsbedarf bestens ausgestattet. Und das Beste daran? Unsere Lösung ist nicht nur für euer Business perfekt, sondern auch als Whitelabel-Lösung für eure Kunden! 💼✨ So könnt ihr euren Kunden ganzheitliche Kommunikationslösungen bieten und dabei auf uns als verlässlichen Partner zählen. Gemeinsam machen wir eure Telekommunikation zukunftssicher und flexibel! 🚀🤝",2018,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69acad0da259920001edd3f9/picture,"","","","","","","","","" +Process.Science,Process.Science,Cold,"",16,information technology & services,jan@pandaloop.de,http://www.process-science.com,http://www.linkedin.com/company/process-science,https://www.facebook.com/process.science/,"",1 Finkenau,Hamburg,Hamburg,Germany,22081,"1 Finkenau, Hamburg, Hamburg, Germany, 22081","process mining, process mining & process analytics, process analytics, process intelligence, artificial intelligence, software development, process mining for regulatory compliance, computer systems design and related services, process mining in construction, automation, real estate management, qlik sense integration, process mining in pharma, ai-enhanced process mining, process optimization, white papers, construction, customer success stories, supply chain optimization, process mining for industry 4.0, compliance monitoring, data integration, process mining for manufacturing, it consulting, process mining for bottleneck detection, process mining for insurance, process mining for logistics, data management, process mining in energy sector, process mining compliance monitoring, process management, operational efficiency, manufacturing, process mining for telecommunications, process mining for supply chain, process mining in tableau, process mining tools for power bi, process mining in banking, business intelligence integration, process improvement consulting, process mining for energy sector, cost reduction, ai-driven insights, process improvement, process mining in public sector, industry 4.0, workflow improvement, power bi integration, process mining software, process optimization consulting, tableau integration, process management software, process mining use cases, process mining customer references, process compliance, pharmaceuticals, process mining white papers, process efficiency, process mining in manufacturing, process mining for cost reduction, b2b, workflow automation, digital transformation, process mining for hr, process mining for pharma, process mining workflow automation, process mining in cloud and on-premise, process mining tools, process mining for real estate, logistics, iot miner, process visualization, process mining data security, healthcare, data visualization, process mining data integration, process mining success stories, process mining for supply chain optimization, real-time process monitoring, data science, compliance support, process mining for continuous improvement, process bottleneck detection, process transparency, services, retail, ai analytics, process mining for process transparency, process mining in retail, banking, process mining for public sector, process mining in insurance, process mining for it services, real-time monitoring, process mining for construction, process mining event log analysis, consulting, process modeling, business intelligence, process mining in healthcare, process mining for banking, data security, erp data analysis, process mining in it services, data preparation tool, process mining in qlik sense, distribution, process mining for compliance, process performance, process data extraction, process mining in hr, bi integration, process mining automation, event log analysis, process mining for healthcare, process mining in logistics, process benchmarking, process mining for retail, process mining automation tools, data analysis, event logs, data quality, automation potential, bottleneck analysis, workflow optimization, real-time insights, customer satisfaction, it service optimization, consulting services, financial institutions, healthcare efficiency, supply chain transparency, logistics optimization, merchandise management, production analysis, energy industry improvements, consumer goods efficiency, root cause analysis, data-driven decisions, continuous improvement, process discovery, conformance checking, enhancement strategies, enterprise data extraction, actionable insights, kpi monitoring, project management optimization, usage analysis, performance measurement, decision support systems, scalability solutions, variability reduction, organisational alignment, information technology & services, enterprise software, enterprises, computer software, management consulting, mechanical or industrial engineering, medical, health care, health, wellness & fitness, hospital & health care, financial services, analytics, computer & network security, data analytics",'+49 40 609422350,"Cloudflare DNS, Gmail, Outlook, Google Apps, Microsoft Office 365, reCAPTCHA, Google Tag Manager, iTunes, Google Play, Mobile Friendly, Bootstrap Framework, YouTube, IoT, Uipath, Android, Qlik Sense, React Native, Remote, Xamarin, AI","","","","","","",69c281c647a8220001db7c8a,7375,54151,"Process.Science GmbH & Co. KG, based in Hamburg, Germany, specializes in AI-enhanced Process Mining solutions. The company integrates its tools with business intelligence platforms like Microsoft Power BI and Qlik Sense, turning raw process data into actionable insights for operational optimization. Founded to provide innovative process analytics, Process.Science helps identify hidden inefficiencies in complex business environments by analyzing data from ERP systems and other sources. + +The company's flagship product, process.science, offers a comprehensive platform for process management and mining. Key features include real-time visualization of business processes, automatic identification of bottlenecks and outliers, and seamless integration with existing tools. The platform supports multiple languages and is designed for a wide range of users, from freelancers to large enterprises. It emphasizes low-effort deployment, ensuring full process transparency without requiring system changes or data movement. Support options include a knowledge base and help desk services.",2019,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69acef0968badc00018963fe/picture,"","","","","","","","","" +PlanB. GmbH,PlanB,Cold,"",150,information technology & services,jan@pandaloop.de,http://www.planb.net,http://www.linkedin.com/company/planbgmbh,https://www.facebook.com/PlanB.GmbH/,https://twitter.com/planbgmbh,15 Kocherstrasse,Huettlingen,Baden-Wuerttemberg,Germany,73460,"15 Kocherstrasse, Huettlingen, Baden-Wuerttemberg, Germany, 73460","system center, lowcode application platforms, windows azure, mixed reality, robotics, mobility devices, nearshoring, mobility amp devices, office 365, modern managed services, devops, iiot, cloud productivity enterprise social, genai, cloud plattform, m365, artificial intelligence, app service, sharepoint, azure app service, azure, applied ai, cloud productivity amp enterprise social, it services & it consulting, b2b, information technology and services, m365 copilot, ai algorithms, test automation, ai in iot operations, software development, consulting, business process automation, mlops, digital products, ux/ui design, digital transformation, ai business impact, cloud native, ai integration, ai in legal processes, legal ai, operational efficiency, ai factory, digital product factory, ai governance framework, machine learning, data science, modern work, cloud computing, ai governance, data analytics, data protection, cybersecurity, cloud infrastructure, prototyping, scalable ai, secure cloud solutions, cloud architecture, ai orchestration, enterprise software, ai enablement platform, cyber security, ai integrity hub, ai security platform, deep learning, ai for industry 4.0, security automation, agile software engineering, computer systems design and related services, it security, agentic ai framework, autonomous ai agents, services, iot operations, data visualization, ai-powered plugins, governance by design, security governance & compliance, legal, mechanical or industrial engineering, information technology & services, enterprises, computer software, internet infrastructure, internet, computer & network security",'+49 736 1556210,"Outlook, Google Cloud Hosting, Mobile Friendly, Varnish, Wix, Micro, Linux OS, Android, Docker, Remote, AI, Circle, IoT","","","","","","",69c281c647a8220001db7c8d,7375,54151,"PlanB. GmbH is a German IT services and consulting company founded in 2007 and based in Hüttlingen, Baden-Württemberg. The company specializes in digital transformation, artificial intelligence, modern work practices, cybersecurity, and software engineering, utilizing 100% Microsoft technologies. With a team of approximately 121-170 employees and an annual revenue of $6.8 million, PlanB. focuses on providing collaborative solutions for small and medium-sized enterprises. + +The company offers a range of services, including digital product development, software engineering, and cybersecurity. Its **Digital Product Factory** delivers user-centric products and innovative business models, while the **Copilot AI Factory** develops intelligent algorithms and enterprise AI solutions. PlanB. emphasizes agile project management and scalable cloud architectures to enhance transparency and optimize value chains. The company serves various industries, leveraging Microsoft tools like Azure and Dynamics to support web and mobile applications, custom software, and cloud productivity.",2007,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69a518e31012b100017d3ffa/picture,"","","","","","","","","" +DIGITAL DIALOG ™,DIGITAL DIALOG ™,Cold,"",47,outsourcing/offshoring,jan@pandaloop.de,http://www.digital-dialog.com,http://www.linkedin.com/company/digital-dialog-group,"","","",Heusenstamm,Hesse,Germany,"","Heusenstamm, Hesse, Germany","b2b sales & b2b services, outsourcing & offshoring consulting, call center services, client centricity, business process outsourcing, automated lead qualification, market research, quality assurance, b2b sales, sales performance, backoffice support, sales and marketing, b2b, customer satisfaction, customer retention, telecommunications, genai voicebots, churn prevention, d2c, retail, telemarketing, b2c, ai-gestütztes coaching, e-commerce, b2b outreach, sales funnel optimization, lead generation, sales strategies, ai coaching, services, sales automation, german quality, data-driven sales, multichannel support, call center, customer service, data analytics, ki-coaching, sales & customer service, contact center, lead qualification, consulting, sales funnel, ai sales engine, telephone call centers, customer journey mapping, remote customer service, business services, telesales, remote customer support, backoffice services, b2b lead clustering, web scraping for data enrichment, sales funnel management, churn prevention campaigns, web scraping, outbound calls, digital innovation, multichannel customer support, customer support, finance, consumer products & retail, outsourcing/offshoring, sales & marketing, consumer internet, consumers, internet, information technology & services, marketing & advertising, sales, saas, computer software, enterprise software, enterprises, facilities services, financial services",'+49 6104 6850,"Gmail, Outlook, Google Apps","","","","","","",69c281c647a8220001db7c81,7389,56142,"DIGITAL DIALOG ist eine führende Tele-Sales Agentur in Deutschland mit zwei Standorten in der Metropolregion Rhein/Main und Berlin/Potsdam. +Im Jahr 2000 gegründet, zählt sie heute mit ca. 265 engagierten Mitarbeitenden zu den wichtigsten Akteuren im Bereich der Sales-Unterstützung & Lead Generierung in der kompletten DACH-Region. Der Hauptfokus liegt auf Premium Outbound Calls, Outreach Kampagnen & erstklassigem Customer Service, im Schwerpunkt zwar B2B - aber auch für B2C-Kunden. +Die Aufgabenbereiche umfassen die umfassende Betreuung bestehender Geschäftskunden, den gezielten Ausbau von Geschäftsbeziehungen, das Generieren von Leads, sowie die Beratung und Akquise neuer Kunden im Geschäftskundensegment. Ein qualifiziertes Backoffice-Team unterstützt bei der effizienten Abwicklung aller administrativen Aufgaben. +Durch langjährige Erfahrung und ein tiefes Verständnis für die Bedürfnisse der KundInnen bietet DIGITAL DIALOG maßgeschneiderte Lösungen und erstklassigen Service für Auftraggeber aus verschiedenen Branchen, darunter eCommerce Marktführer & ScaleUps, Banking & Finance, Insurance & Energieversorger inkl. erneuerbaren Energien.",2000,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68c791624fdcb10001920283/picture,"","","","","","","","","" +OTRS Group,OTRS Group,Cold,"",120,information technology & services,jan@pandaloop.de,http://www.otrs.com,http://www.linkedin.com/company/otrs-ag,https://www.facebook.com/OTRSGroup/,http://twitter.com/otrsUSA,11 Zimmersmuehlenweg,Oberursel (Taunus),Hessen,Germany,61440,"11 Zimmersmuehlenweg, Oberursel (Taunus), Hessen, Germany, 61440","corporate security, it service management, customer service, help desk & ticketing software, software development, services, security orchestration and automation, information technology and services, self-service portal, filewave device management, storm security platform, cybersecurity, reporting, security orchestration, itsm workflows, security automation, customer support, asset database, cloud solutions, change management, cross-platform device control, request fulfillment, software as a service, security incident management, asset management, request management, help desk software, incident response, user experience, asset and device management, computer systems design and related services, data security, consulting, knowledge management, integrations, itil processes, device control, it asset lifecycle, vulnerability management, workflow automation, customizable software, service management, incident response automation, ticketing system, enterprise service management, automation, business process automation, b2b, cmdb, remote device management, itil4 compliance, itsm, security incident response, government, digital transformation, information technology & services, cloud computing, enterprise software, enterprises, computer software, saas, ux, computer & network security","","Outlook, Microsoft Office 365, DigitalOcean, VueJS, Sprig, Hubspot, Slack, InfusionSoft, Facebook Login (Connect), Linkedin Marketing Solutions, Vimeo, Bing Ads, Google Tag Manager, Visual Website Optimizer, Facebook Custom Audiences, DoubleClick, WordPress.org, Nginx, Gravity Forms, Google AdWords Conversion, Google Dynamic Remarketing, Twitter Advertising, Apache, Mobile Friendly, Facebook Widget, DoubleClick Conversion, Avaya, Looker, Sisense, Qlik Sense, Domo, Google, Facebook, F5 NGINX Ingress Controller, Instagram, YouTube, Vista","",Merger / Acquisition,0,2024-12-01,12637000,"",69c281c647a8220001db7c88,7375,54151,"OTRS Group, based in Oberursel, Germany, is a software company founded in 2000, with its origins in an open-source project launched in 2001. The company specializes in service management, IT service management (ITSM), cybersecurity, and process automation solutions. It has been publicly listed on the Frankfurt Stock Exchange since 2009 and operates as a subsidiary of EasyVista S.A. since December 2024, employing over 100 people across six international branches. + +OTRS Group develops a suite of software solutions centered around its flagship OTRS platform, which is a ticket and process management system designed for service management professionals. The company also offers STORM, a cybersecurity incident management software, and CONTROL, an information security management solution. Additional services include process design, implementation, customizations, and managed OTRS services, catering to a diverse range of industries worldwide.",2003,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69b4e198b5c7e300019ec59b/picture,EasyVista (easyvista.com),54a220177468693a7ef7bf0e,"","","","","","","" +Knots,Knots,Cold,"",13,information technology & services,jan@pandaloop.de,http://www.knots.io,http://www.linkedin.com/company/knotsio,"","","","","",Germany,"",Germany,"parsing, routing & classification, cloudsoftware automation, customer support, automation, customer experience, zendesk, crm automation, ticket processing, ocr, nlp, zendesk & crm automation, it system custom software development, natural language processing, artificial intelligence, information technology & services",'+49 40 69638696,"Route 53, Sendgrid, Gmail, Google Apps, Microsoft Office 365, Zendesk, CloudFlare Hosting, Linkedin Marketing Solutions, Google Tag Manager, Google Font API, WordPress.org, Mobile Friendly, Facebook Widget, Hubspot, Facebook Custom Audiences, Facebook Login (Connect), Android","","","","","","",69c281c647a8220001db7c8c,"","","Knots is a Zendesk automation platform that offers a range of no-code applications aimed at enhancing customer support workflows. It operates as a modular toolkit, allowing teams to select specific automation tools from the Zendesk Marketplace to meet their needs. This flexibility helps support teams resolve tickets more efficiently, reduce operational costs, and focus on complex issues that require human intervention. + +The platform includes various automation apps for ticket and data management, such as a Ticket Parser for data extraction, a Merge Tickets feature to consolidate duplicates, and a Round Robin tool for even ticket distribution among agents. Knots also provides advanced automation capabilities, including custom workflow development through Knots Studio and AI-powered tools for classification and sentiment analysis. Additionally, it offers integration services to connect Zendesk with various business tools, ensuring seamless data synchronization. Knots operates on a subscription-based pricing model, where customers pay for each app individually.",2022,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69aa9ebc9c19700001bb3154/picture,"","","","","","","","","" +pit-con GmbH,pit-con,Cold,"",26,banking,jan@pandaloop.de,http://www.pit-con.de,http://www.linkedin.com/company/pit-con-gmbh,"","","",Muenster,North Rhine-Westphalia,Germany,"","Muenster, North Rhine-Westphalia, Germany","regulatorische software, bankenprozesse, prozessmanagement, digitalisierung, mitarbeiterschulungen, ki-lösungen, prozessdigitalisierung bank, kreditprozessautomatisierung, automatisierte dokumentenverarbeitung, automation4bank, consulting, regulatorische meldewesen, prozessdigitalisierung, mitarbeiterschulung, rpa in der bankenbranche, publication-management, automatisierung, banken-it, it-beratung, ki in der kreditprüfung, datenqualitätssicherung, services, bankprozessautomatisierung, formularmanagement, financial services, releasemanagement, kreditregulatorik, automatisierte kreditregulatorik, regulatorische compliance, banktechnologie, workflow-automation, pit-con release-manager, publication plus, automatisierung im bankwesen, prozessautomatisierung banken, regulatorik-compliance, change management, datenmanagement, kostensteuerung, banksoftware lösungen, regulatorische meldepflichten, financial transactions processing, reserve, and clearinghouse activities, crr iii, workflow-automatisierung, banking, regulatory compliance, eigenmittelmanagement, doc4bank, financial technology, produktionsprozesse, prozessautomatisierung, rpa, datenanalyse, bot4bank, transformationsmanagement, ki, organisationsunterstützung, eigenmittel, meldewesen, automatisierte meldewesen, it-consulting, data analytics, projektmanagement, datenanalyse-tools, b2b, prozessautomatisierung bank, regulatorik, prozessoptimierung, regulatorische umsetzung, banksoftware, rpa-tools, regulatorische datenanalyse, regulatorische berichterstattung, crr iii umsetzung, automatisierte compliance-checks, automatisierte dokumentenmanagementsysteme, datenqualität, finance, finance technology, information technology & services",'+49 251 1351710,"Microsoft Office 365, Apache, Mobile Friendly, Shutterstock, Remote","","","","","","",69c281c647a8220001db7c91,7375,52232,"Seit unserer Gründung im Jahr 2016 haben wir eine kontinuierliche Entwicklung durchlaufen und arbeiten seitdem eng mit dem genossenschaftlichen IT-Dienstleister Atruvia AG zusammen. Unsere Anfänge liegen in der begleitenden Beratung von Volks- und Raiffeisenbanken bei der Migration zum Kernbankensystem agree21. Im Laufe der Zeit haben wir unseren Fokus erweitert und unterstützen nun Banken und Bankdienstleister in neuen und vielfältigen Dimensionen. + +Heute sind wir Wegbegleiter für nachhaltigen Unternehmenserfolg im Finanzsektor. Dabei decken wir ein breites Spektrum ab: Von der strategischen Ausrichtung über Innovations- und Veränderungsprozesse bis hin zur bankfachlichen Expertise und technischen Beratung. Dies spiegelt sich auch in unseren Kernberatungsfeldern wider. + +Unsere Kompetenz erstreckt sich über die Automatisierung im Finanzwesen, insbesondere die RPA-Technologie (Robotic Process Automation), die Optimierung von Organisationsstrukturen und Geschäftsprozessen, die effiziente Nutzung und Verwaltung von IT-Verfahren – darunter fallen Systeme wie agree21 und Omnikanalplattform – sowie die Bewältigung von Anforderungen im Meldewesen und regulatorischen Umfeld. Unsere Beratung deckt auch den wichtigen Bereich der Datenqualität ab und beinhaltet maßgeschneiderte Trainings und Coachings. + +Was uns einzigartig macht, ist unsere enge Verbindung zur Praxis. Unsere Beratung ist individuell auf die speziellen Anforderungen unserer Kunden zugeschnitten. Wir verstehen uns nicht als herkömmliche Unternehmensberatung, sondern vielmehr als Praktiker. Alle unsere Mitarbeiterinnen und Mitarbeiter verfügen über Erfahrungen aus der Bankenwelt und der genossenschaftlichen Finanzgruppe. + +Impressum: https://www.pit-con.de/impressum/",2016,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66eed1e802303e0001563db9/picture,"","","","","","","","","" +Convidera,Convidera,Cold,"",84,management consulting,jan@pandaloop.de,http://www.convidera.com,http://www.linkedin.com/company/convidera-gmbh,https://facebook.com/convidera,https://twitter.com/convidera,90D Stolberger Strasse,Cologne,North Rhine-Westphalia,Germany,50933,"90D Stolberger Strasse, Cologne, North Rhine-Westphalia, Germany, 50933","softwareloesungen, content marketing, change management, digitale transformation, b2b marketing, digitales marketing, kreativleistungen, mittelstand, beratung, strategieentwicklung, social business, social selling, business consulting & services, webbasierte plattformen, ki-transformation, customer journey, digitale industriestandards, online presence, kundenorientierung, web scraping, artificial intelligence, deutsche rechenzentren, prozessoptimierung, project management, digitale marketing- & vertriebprofis, deutscher datenschutz, wettbewerbsanalyse, ki-profis, informationstechnologie und dienstleistungen, dsgvo-konform, managementberatung, softwareentwicklung, crm-integration, systemintegration, branchenübergreifende ki-transformationen, datenschutzkonformität, customer experience, vertrieb & marketing, webportal für abfall- und baustoffmanagement, b2b, it-services, künstliche intelligenz, automatisierung, cloud solutions, digitalisierung, erp-integration, softwareentwickler:innen, strategieberater:innen, vertriebsoptimierung, datenanalyse, strategieberatung, digitale lösungen, user experience, digital transformation, market research, innovation, skalierbare digitale lösungen, ki-gestützte automatisierung, prozessdigitalisierung, services, datenmanagement, sprachassistenten im vertrieb, consulting, produktdatenmanagement, ki-gestützte wartungsverträge, software as a service, preisanalyse, ki-basierte preisstrategie, automatisierte workflows, computer systems design and related services, digital marketing, cloud-lösungen, manufacturing, distribution, transportation & logistics, construction & real estate, marketing & advertising, management consulting, information technology & services, productivity, cloud computing, enterprise software, enterprises, computer software, ux, saas, mechanical or industrial engineering",'+49 221 99318500,"MailJet, Rackspace MailGun, Outlook, Amazon AWS, Slack, Hubspot, Facebook Widget, Facebook Login (Connect), Nginx, Linkedin Widget, Linkedin Login, Mobile Friendly, Google Tag Manager, Google Font API, Multilingual, Remote, Python, Jupyter, Microsoft Azure Monitor, Midjourney, n8n","","","","","","",69c281c647a8220001db7c95,7375,54151,"Convidera is a digital consulting and innovation firm located in Cologne, Germany. The company specializes in digital transformation, strategy development, and technology implementation for mid-market and enterprise clients. With a team of around 120 digital professionals, Convidera has successfully completed 150 projects in collaboration with 50 global and mid-sized partners. + +The firm offers services in four main areas: digital strategy development, AI implementation, scalable digital solution development, and digital marketing and sales optimization. Convidera also focuses on corporate venture building, helping clients develop and validate new ideas and bring them to market in about 180 days. Additionally, the company tests its own ideas and develops market-ready startups through partnerships or independently. Convidera is guided by principles of curiosity, ownership of possibilities, and integrity.",2012,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6701afa2c7460b000110a173/picture,"","","","","","","","","" +matelso GmbH,matelso,Cold,"",38,marketing & advertising,jan@pandaloop.de,http://www.matelso.com,http://www.linkedin.com/company/matelso,https://facebook.com/https,https://twitter.com/matelso,"",Kaiserslautern,Rhineland-Palatinate,Germany,"","Kaiserslautern, Rhineland-Palatinate, Germany","multichannel communication lead management, lead scoring, telecommunication, lead management, marketing sales process optimation, call analytics, ropo, call tracking, online marketing, calltracking, martech, advertising services, performance marketing, computer systems design and related services, webhooks, multi-channel attribution, consulting, data integration, software publishing, lead scoring modelle, data-driven marketing, cloud saas, customer experience, e-commerce, marketing analytics, e-commerce showcase, offline-tracking, datenschutzkonform, b2b, smart bidding, sales enablement, automotive lead management, retail, partner modell, b2b kampagnen, multichannel kommunikation, conversion tracking, api integration, marketing and advertising, webinar, agenturen, ki in sales, communication management, customer journey, knowledge base, ki-gestützte insights, services, information technology and services, customer data platform, inbound marketing, performance kampagnen, automatisierung, customer insights, b2b lead generation, real-time data, crm-integration, martech plattform, webanalyse integration, marketing automation, saas, marketing & advertising, enterprise software, enterprises, computer software, information technology & services, consumer internet, consumers, internet",'+49 71 121843140,"Gmail, Google Apps, Google Cloud Hosting, Nginx, Mobile Friendly, WordPress.org, Google Tag Manager, Remote, Azure Linux Virtual Machines, Zabbix, Grafana, C#, .NET, DATEV Accounting","","","","","","",69c281c647a8220001db7c7f,7375,54151,"matelso GmbH is a MarTech company based in Kaiserslautern, Germany, founded in 2006. With a team of around 45-50 experts, matelso focuses on transforming data into actionable business insights through cloud-based software solutions. The company emphasizes the positive impact of data on business success and aims to foster human communication through data-driven strategies. + +matelso specializes in various MarTech solutions, including call tracking, lead management, and communication management. Their software platforms help businesses optimize marketing campaigns, improve sales processes, and enhance customer care. By linking online campaigns to telephone conversions, matelso provides a comprehensive view of campaign effectiveness. Their SaaS offerings also support efficient data management and customer journey analysis, enabling clients to achieve better ROI and streamline operations. Notable partnerships include brands like Autoscout24, Nissan, and Vodafone, showcasing matelso's impact across multiple industries.",2006,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/683395bba5a9c400012e9113/picture,"","","","","","","","","" +Nexwave GmbH,Nexwave,Cold,"",14,staffing & recruiting,jan@pandaloop.de,http://www.nexwave.eu,http://www.linkedin.com/company/nexwave-gmbh,"","",28 Kurfuerstendamm,Berlin,Berlin,Germany,10719,"28 Kurfuerstendamm, Berlin, Berlin, Germany, 10719","relocation service, personalvermittlung, executive search, hro, recruiting, re und upskilling, itoffshoring, arbeitnehmerueberlassung, rpo, bpo, academy, it infrastructure, cybersecurity, consulting, information technology and services, erp, services, talent management, talent solutions, work-life balance, workforce management, sustainable values, business expansion, education, managed services, cultural synergy, software testing, global talent acquisition, b2b, computer systems design and related services, cloud computing, software development, utilities, mobile app development, it consulting, security, it services, healthcare, iot, management consulting, web development, human-centric approach, financial services, bi & data analytics, custom software development, cloud services, digital transformation, ai, finance, staffing & recruiting, information technology & services, enterprise software, enterprises, computer software, health care, health, wellness & fitness, hospital & health care",'+49 67 89040466,"Outlook, GoDaddy Hosting, Microsoft Azure Hosting, Microsoft Office 365, Bootstrap Framework, Mobile Friendly, Google translate API, Apache, Google translate widget, Google Tag Manager, WordPress.org, AI, Mitel, Snowflake, Scala, Databricks, Micro, Azure Devops, Docker, Android, Node.js, Remote, Reviews","","","","","","",69c281c647a8220001db7c87,8748,54151,"Nexwave GmbH is a talent management and IT solutions provider based in Berlin, Germany. As part of the global Nexwave group, the company has over 17 years of experience and operates offices in Berlin, Hyderabad, and Alpharetta. Nexwave focuses on connecting talent with opportunities through innovative services in recruitment, technology, and digital transformation. + +The company offers a wide range of services categorized into People Services, Technology, and Domain Expertise. People Services include Recruitment Process Outsourcing, Human Resources Outsourcing, and Executive Search. In Technology, Nexwave provides custom web and mobile application development, software testing, and IT consulting, among other services. The company also specializes in various industries, including Pharma, Financial Services, and Technology, ensuring tailored staffing solutions for diverse business needs.",2008,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/677cdcec4ce4df00017d37b5/picture,"","","","","","","","","" +mylantech GmbH,mylantech,Cold,"",24,information technology & services,jan@pandaloop.de,http://www.mylantech.de,http://www.linkedin.com/company/mylantech-gmbh,"","",160 Hohenzollernstrasse,Munich,Bavaria,Germany,80797,"160 Hohenzollernstrasse, Munich, Bavaria, Germany, 80797","analytics engineering, ai technologies, data engineering, cloud engineering, it services & it consulting, artificial intelligence, services, natural language processing, cloud computing, b2b, software development, machine learning, data automation, data privacy, predictive analytics, data architecture, automation, retail, digital twins, data security, predictive maintenance, real-time data processing, data integration, advanced analytics, data management & governance, ai agents, computer systems design and related services, data management, business intelligence, data quality, ai co-pilot, d2c, digital transformation, operational efficiency, custom web applications, computer vision, nlp, project management, e-commerce, devops, information technology and services, consulting, data catalogs, data analytics, financial planning, information technology & services, enterprise software, enterprises, computer software, computer & network security, analytics, productivity, consumer internet, consumers, internet","","Outlook, Microsoft Office 365, Google Cloud Hosting, Varnish, Mobile Friendly, Wix, Circle, Remote, Python, pandas, PySpark, SQL, Streamlit, Dash, Microsoft Azure Monitor, Azure App Service, Azure Functions, Azure Storage Explorer, Azure Devops","","","","","","",69c281c647a8220001db7c8b,7375,54151,"mylantech GmbH is a data and AI consulting company based in Munich. The company specializes in analytics engineering, providing high-quality data, analytics, and artificial intelligence solutions. Their mission is to simplify complex business environments through user-friendly digital tools that enhance human capabilities and focus on sustainable value creation. + +Founded with a commitment to clarity and efficiency, mylantech offers a comprehensive range of services. These include the development of intelligent AI systems, advanced analytics for improved planning and decision-making, and the creation of scalable data platforms. Their approach involves strategizing visions, building data foundations, delivering actionable insights, and embedding solutions into organizational processes. Led by CEO Christian Lingg, mylantech emphasizes the importance of people and processes in driving business impact.",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69b0f9dba01e25000146f739/picture,"","","","","","","","","" +TRILUX Digital Solutions GmbH,TRILUX Digital Solutions,Cold,"",44,information technology & services,jan@pandaloop.de,http://www.triluxds.com,http://www.linkedin.com/company/trilux-digital-solutions-gmbh,"","",24 Stockholmer Allee,Dortmund,North Rhine-Westphalia,Germany,44269,"24 Stockholmer Allee, Dortmund, North Rhine-Westphalia, Germany, 44269","sap variantenkonfiguration, visualisierung, sap consulting, sap, 3d visualisierung, kuenstliche intelligenz, sap cloud platform, automated offer generation, demand planning, grow with sap, digital ecosystem, sap grow with sap, system architecture, supply chain management, sap fp&a, inventory management, 3d configuration sap, ai software, business intelligence, sap analytics cloud, 3d konfiguration, data integration, 3d visualization, sap cloud migration, sap s/4hana, variant configuration sap, sap rise with sap, rise with sap, system migration, ppds, scenario analysis, automated backorder processing, sap data migration, rise or grow, services, production planning, real-time data, ai gate ai software, cloud computing, request analysis ai, operational efficiency, data analytics, sap system readiness check, sap cloud solutions, move to s/4hana, business process reengineering, b2b, software development, sap s/4hana greenfield, sap s/4hana transformation, information technology and services, sap ibp, digital transformation, it consulting, financial planning & analytics, sap core, sap core consulting, predictive analytics, consulting, supply chain simulation, computer systems design and related services, demand sensing ai, financial services, cloud-based sap solutions, sap s/4hana selective migration, process automation, consulting services, erp consulting, digital strategy, sap aatp, digital customer service, ai gate ai, end-to-end supply chain, supply chain visibility, data-driven decision making, sap ppds, ai customer inquiry processing, sap s/4hana brownfield, erp migration, process optimization, system integration, demand sensing, cloud migration, aatp, supply chain control tower, scenario planning, supply chain resilience, sap transformation, sap system integration, system optimization, change management support, sap system architecture optimization, change management, supply chain planning, business process consulting, supply chain optimization, demand forecasting, sap s/4hana cloud, supply chain, user interface design, finance, distribution, transportation & logistics, logistics & supply chain, analytics, information technology & services, enterprise software, enterprises, computer software, management consulting, marketing, marketing & advertising",'+49 23 122400200,"Route 53, Amazon SES, Sendgrid, Outlook, CloudFlare Hosting, Salesforce, Microsoft Office 365, Zendesk, Slack, Hubspot, Google Tag Manager, Bootstrap Framework, Google Font API, reCAPTCHA, Apache, Mobile Friendly, WordPress.org, YouTube, Remote, AI","","","","","","",69c281c647a8220001db7c90,7375,54151,"TRILUX Digital Solutions GmbH is a consulting and software development company based in Dortmund, Germany. The company specializes in digital transformation and enterprise resource planning (ERP) solutions, focusing on achieving digital excellence through innovative software and intelligent solutions. With a strong foundation in industrial manufacturing and the lighting industry, TRILUX combines technological expertise with sector-specific knowledge. + +The company offers a range of services, including SAP Core Consulting, which optimizes SAP S/4HANA processes, and intelligent production planning solutions that enhance inventory and capacity management. TRILUX also provides GATE AI software for efficient customer inquiry processing and 3D visualization software for product configuration within SAP. Their methodical project management approach ensures seamless integration across various business functions. + +TRILUX values sustainable collaboration and offers flexible working arrangements, promoting a people-centered workplace culture. The company actively recruits professionals and students, encouraging shared development and mutual respect among its team members.",2018,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67650b1c1cfe10000165a38c/picture,"","","","","","","","","" +Thorit,Thorit,Cold,"",34,information technology & services,jan@pandaloop.de,http://www.thorit.com,http://www.linkedin.com/company/thorit,https://www.facebook.com/thoritgermany/,"","",Sindelfingen,Baden-Wuerttemberg,Germany,"","Sindelfingen, Baden-Wuerttemberg, Germany","apps, crm, software, storage, supply chain software, design, webdesign, branchensoftware, content marketing, digitale marketingstrategie, erp, server, marketing, wordpress, sea, marketing automation, customer journey, lead generierung, social media marketing, it services & it consulting, performance optimization, hubspot add-ons, customer experience management, digital transformation, web development, digital commerce, software development, b2c, system migrations, computer systems design and related services, customer retention, ai transformation, consulting, seo services, b2b, inbound marketing, ai agents, system integrations, e-commerce, information technology and services, hubspot integrations, marketing and advertising, d2c, data-driven marketing, crm implementation, lead generation, content management, customer journey optimization, data strategy, revops, hubspot partner, services, it solutions, process automation, retail, it consulting, brand awareness, distribution, sales, enterprise software, enterprises, computer software, information technology & services, web design, marketing & advertising, saas, consumer internet, consumers, internet, search marketing, management consulting",'+49 70 313097695,"Gmail, Google Apps, Sendgrid, Outlook, Microsoft Office 365, Zendesk, Slack, Hubspot, Digital Ocean Spaces, Atlassian Cloud, Typeform, Active Campaign, Facebook Widget, Google Tag Manager, Mobile Friendly, Linkedin Widget, Facebook Login (Connect), Hotjar, Linkedin Login, Facebook Custom Audiences, DoubleClick Conversion, DoubleClick, Bing Ads, Linkedin Marketing Solutions, AdRoll, WordPress.org, Google Font API, YouTube, Bootstrap Framework, Google Maps, Multilingual, Google Dynamic Remarketing, Google Analytics, Google Maps (Non Paid Users), Typekit, AI","","","","","","",69c281c647a8220001db7c7d,7375,54151,"Thorit is a digital agency that specializes in CRM solutions and digital growth strategies. Founded in 2012 in Erlangen, Germany, the company has expanded its presence with offices in Stuttgart, Lisbon, and Melbourne. With a team of fewer than 25 employees, Thorit has been supporting international SMEs and large corporations for over a decade. + +The agency offers a wide range of services, including CRM and HubSpot implementation, IT consulting and support, and digital growth strategy development. Thorit employs its proprietary ""Plan, Build & Grow"" framework to enhance customer journeys and foster sustainable growth. Additionally, the company provides data intelligence and marketing services, focusing on multi-channel communication management to optimize client interactions. Thorit is recognized for its expertise in integrating data intelligence, technology, and marketing to deliver effective customer experience solutions.",2012,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/678b87ece79f160001dabfe1/picture,"","","","","","","","","" +TKUC,TKUC,Cold,"",11,information technology & services,jan@pandaloop.de,http://www.cyberkom.ai,http://www.linkedin.com/company/deutschecyberkom,https://www.facebook.com/deutschecyberkom/,"",25 Am Hohen Stein,Haibach,Bavaria,Germany,63808,"25 Am Hohen Stein, Haibach, Bavaria, Germany, 63808","it services & it consulting, cyber security für energieanlagen, endpoint management, darknet monitoring, dora-compliance, soc service, incident response, datensicherung, compliance management, it security, mikrosegmentierung, vulnerability assessment, cyber risikoanalyse, it-notfallplanung, cyber resilience windpark, security audit, dark web monitoring, sicherheitsarchitektur, edr und xdr, cybersecurity solutions, siem, ot security, cyber security im windpark, awareness training, cyber attack protection, managed security services, cybersecurity, ot-security, security monitoring, nis2, cyber threat intelligence, network detection, sicherheitsrichtlinien, cloud security, security consulting, sicherheitsstrategie, information technology and services, ki-bedrohungen, consulting, threat detection, kommunikationslösungen, penetration test, computer systems design and related services, b2b, finance, manufacturing, distribution, information technology & services, computer & network security, financial services, mechanical or industrial engineering",'+49 6021 3273838,"Outlook, Microsoft Office 365, Freshdesk, LearnDash, Flutter, Hubspot, Mobile Friendly, WordPress.org, Facebook Login (Connect), Facebook Custom Audiences, Google Tag Manager, Facebook Widget, Nginx, DoubleClick, Linkedin Marketing Solutions, Shutterstock, Google Analytics, Vimeo, Google Plus, YouTube, Google Font API, Ruby On Rails, reCAPTCHA, Remote, Avaya, Dialpad, Mitel","","","","","","",69c281c647a8220001db7c83,7375,54151,TKUC is implementing Unified communications and Collaboration to support your business.,2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68bde21d0537820001d75bb3/picture,"","","","","","","","","" +UEBERBIT,UEBERBIT,Cold,"",30,information technology & services,jan@pandaloop.de,http://www.ueberbit.de,http://www.linkedin.com/company/ueberbit,https://www.facebook.com/ueberbit/,https://twitter.com/ueberbit,7 Rheinvorlandstrasse,Mannheim,Baden-Wuerttemberg,Germany,68159,"7 Rheinvorlandstrasse, Mannheim, Baden-Wuerttemberg, Germany, 68159","strategie, wissensmanagement, ux, connecting systems, business solutions, konzeption, systemintegration, ki integration, managed services, seoanalytics, social intranets, data management, ecommerce, anwendungsarchitektur, softwareentwicklung, plattformen, intranets, business intelligence, beratung, corporate websites, marketing automation, elearning, digital workplace, custom applications, technology, information & internet, computer systems design and related services, progressive web apps, consulting, b2b-lösungen, drupal, information technology and services, ki-integration, multisite plattformen, cloud-services, webanwendungen, multidomain plattformen, web development, webentwicklung, digital marketing, software development, digital services, services, user centered design, customer experience, typo3, information technology & services, open-source-software, b2b, agile entwicklung, e-commerce, headless architecture, responsive design, consumer internet, consumers, internet, analytics, marketing & advertising, saas, computer software, enterprise software, enterprises, e-learning, education, education management",'+49 621 172050,"Amazon SES, Etracker, Mobile Friendly, Google Analytics, Apache, Google Tag Manager, React Native, Remote, AI, TypeScript, VueJS, PHP, Python, Drupal, TYPO3, Figma, Fluid Ads, Tailwind, Vitess, Git, HTML Pro, CSS, Javascript","","","","",489000,"",69c281c647a8220001db7c8f,7375,54151,"Wir sind eine der führenden deutschen Digitalagenturen für Schlüsselaufgaben der digitalen Transformation. 1996 gegründet und inhabergeführt, entwickeln wir passgenaue Individualsoftware auf Basis von Webtechnologien – für erfolgreiche Corporate Websites, Social Intranets, E-Commerce Solutions, Custom Applications und KI-Integrationen. + +In einer Verbindung von exzellenter Technologie und herausragendem Design entstehen bei UEBERBIT zukunftssichere Anwendungen und Plattformen mit Fokus auf Customer Experience. Die skalierbaren Lösungen integrieren sich flexibel auch in komplexe und gewachsene IT-Architekturen. Auf diese Weise unterstützen wir unsere Kunden bei digitalen Geschäftsprozessen. + +Als überregionales Technologie- und Beratungsunternehmen betreuen wir Auftraggeber unterschiedlicher Branchen in ganz Deutschland. Neben unserem Hauptsitz in Mannheim betreiben wir ein Büro in Stralsund. + +www.ueberbit.de + +Datenschutzerklärung: https://www.ueberbit.de/datenschutz",1996,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66deac77ec1c35000178a002/picture,"","","","","","","","","" +LANGEundPFLANZ digital GmbH,LANGEundPFLANZ digital,Cold,"",12,marketing & advertising,jan@pandaloop.de,http://www.lpsp.de,http://www.linkedin.com/company/langeundpflanz-digital,https://www.facebook.com/107447872615082,https://twitter.com/LANGE_PFLANZ,2 Joachim-Becher-Strasse,Speyer,Rheinland-Pfalz,Germany,67346,"2 Joachim-Becher-Strasse, Speyer, Rheinland-Pfalz, Germany, 67346","ux design, abm, leadgenerierung, vertriebsberatung, hubspot, social media marketing, inbound marketing, content marketing, sales, growth driven web design, prozessentwicklung, digitale vertriebsstrategie, seo, onlinemarketing, web design, vertrieb, monitoring, crm, advertising services, e-mail marketing, webinar software integration, webseiten-performance, performance marketing, consulting, weblösungen, services, sea, customer journey, digitalagentur, datenschutz grundverordnung, growth driven design, webinare, webseitenpersonalisation, cloud computing, marketing automation, data analytics, lead management, marketing and advertising, google ads, leadinfo, b2b marketing, b2b, software development, webdesign, digitalisierung von geschäftsprozessen, webseitenoptimierung, webseiten-tracking, content creation, information technology and services, webseitenanalyse, webseiten-conversion-optimierung, content management, web analytics, online marketing strategie, suchmaschinenoptimierung, customer engagement, customer relationship management, advertising agencies, account based marketing, dsgvo-konforme crm, consumer internet, consumers, internet, information technology & services, marketing & advertising, search marketing, marketing, enterprise software, enterprises, computer software, email marketing, saas",'+49 6232 60550,"Gmail, Outlook, Google Apps, Microsoft Office 365, Hubspot, Google Tag Manager, Google Analytics, Facebook Widget, Facebook Login (Connect), Mobile Friendly, Shutterstock, Facebook Custom Audiences","","","","",4615000,"",69c281c647a8220001db7c94,7375,54181,"LANGEundPFLANZ ist die Agentur für New Marketing - wir sind Experten für Social Media und Marketing. Wir sind Think Tank und Integrator. Als Full-Social-Service Anbieter konzipieren, planen, steuern und setzen wir soziale Kampagnen in kompletter Fertigungstiefe um.",1992,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66de2e49dd69a100010b4198/picture,"","","","","","","","","" +n:con gmbh,n:con,Cold,"",22,information technology & services,jan@pandaloop.de,http://www.ncon.de,http://www.linkedin.com/company/ncon-gmbh,"","",20 Duisburger Strasse,Schwetzingen,Baden-Wuerttemberg,Germany,68723,"20 Duisburger Strasse, Schwetzingen, Baden-Wuerttemberg, Germany, 68723","industrie 40, plm, logistics, simplification, iiot, optimization, sap, supply chain visualization, 3d, manufacturing, it services & it consulting, gamp 5, digitale transformation, cloud computing, prozessindustrie, automatisierung, pharma & biotech, industrieberatung, produktlebenszyklus-management, inventory management, project management, echtzeitdaten, digitale produktpass, lieferkettentransparenz, energy efficiency, cybersecurity, digitalisierung, prozessoptimierung, process optimization, 21 cfr part 11, gxp-compliance, nachhaltigkeit, qualitätskontrolle, predictive maintenance, audit-trails, big data, regulatory compliance, hinweisgebersysteme, eu-konforme nachhaltigkeitsprozesse, supply chain optimization, business consulting, it-consulting, workflow automation, business intelligence, data security, data management, change management, datenmanagement, digital factory services, management consulting services, smart factory, digital transformation, data analytics, medizintechnik, consulting, risk management, b2b, regulatorische anforderungen, innovation, software development, iot sensoren, fertigungsindustrie, digitale dokumentation, services, sap digital manufacturing, digitale zwillinge, industrie 4.0, iot-lösungen, supply chain management, cloud integration, energieeffizienz in der produktion, healthcare, distribution, mechanical or industrial engineering, information technology & services, enterprise software, enterprises, computer software, productivity, environmental services, renewables & environment, management consulting, analytics, computer & network security, logistics & supply chain, health care, health, wellness & fitness, hospital & health care","","Outlook, Apache, Mobile Friendly, WordPress.org, AI, React Native, Docker, Node.js","","","","","","",69c281c647a8220001db7c82,8748,54161,"n:con gmbh is a German consulting company. On the basis of best practice, we consult and implement services and solutions across all industries. From the aerospace industry, the automotive sector, machine and plant engineering and processindustry. +We are recognized experts in holistic product lifecycle management (PLM) and smart manufacturing concepts. + +With consulting services for the digital product, we support all lines of business of the extended supply chain of our customers in digital transformation within the context of Industry 4.0 and the Industrial Internet of Things (IIoT).",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66dc411279670900018cb766/picture,"","","","","","","","","" +Autowork GmbH,Autowork,Cold,"",12,information technology & services,jan@pandaloop.de,http://www.autowork.com,http://www.linkedin.com/company/autowork-gmbh,"","",111 Benrather Schlossallee,Duesseldorf,North Rhine-Westphalia,Germany,40597,"111 Benrather Schlossallee, Duesseldorf, North Rhine-Westphalia, Germany, 40597","cloud backup, itaas, saas, private cloud, virtual desktop, patchmanagement, godigital, msp, it service, mdm, familienunternehmen, logisitk, it beratung, siem, handel, it sicherheit, uem, cloud, edr, ncm, produktion, netzwerk firewall, it services & it consulting, papierloses büro, remote support, hybrid cloud strategie, it management, virtualisierung, b2b, security audit, data wiederherstellung, information technology and services, computer systems design and related services, datensicherung, it operations, it-beratung, data management, business continuity, smart support technologie, data security, interim it-management, business matrix, it systemhaus, it support, data recovery, it consulting, business intelligence, services, it provider, it security, it-infrastruktur, home office, consulting, hybrid cloud, managed service providing, digitalisierung, helpdesk/ticketsystem, it-notfallmanagement, rechenzentrum, cloud services, backup, it-sicherheit, it outsourcing, cybersecurity, it solutions, computer software, information technology & services, computer & network security, management consulting, analytics, cloud computing, enterprise software, enterprises, outsourcing/offshoring","","Microsoft Office 365, Slack, WordPress.org, Ubuntu, Apache, Mobile Friendly, Remote, Cisco Anyconnect Secure Mobility Client, Cisco Firepower 9300, Cisco Nexus Switches, CPI, Juniper Networks SRX-Series Firewalls, .NET, React Router, VLAN, Wireshark, Python, pandas, Aryson MySQL to MSSQL Converter, Jedox","","","","","","",69c281c647a8220001db7c89,7375,54151,"IT as a Service, + +MSP - Managed Service Providing +Ein wichtiges Element für den reibungslosen Betrieb von komplexen IT Lösungen ist, +dass diese ständig gewartet und alle Änderungen zeitnah ermöglicht werden. + +Die Änderungen sind vor allem wichtig, damit die Anforderung im Unternehmen unserer Kunden schnell und reibungslos erfüllt werden. +Im Weiteren sind ständige Sicherheitsupdates erforderlich, +die nach der jeweiligen Sicherheitslage schnell und effizient im System unserer Kunden eingebaut werden. + +Für Kunden, die diese Aufgaben nur zum Teil oder gar nicht inhouse lösen möchten, bietet die Autowork an, den kompletten Service für den Kunden bei ihm vor Ort, oder Remote als Managed Service Providing zu realisieren. + +BCM - business continuity management, +Sicherung der Daten im Unternehmen ist ein Muss. Nur wie sieht es mit der Konsistenz der Daten aus Haben Sie schon mal überprüft, was auf Ihrem Tape oder Ihrer Disk drauf ist Ok Ihre IT Abteilung hat alles im Griff und überprüft sich selber. Na mal Hand aufs Herz, hört sich alles nach vielen offenen Flanken an, die nicht zu einer Sicherheitsrichtlinie gehören.",2003,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67092646428c850001ecb535/picture,"","","","","","","","","" +DCON Software & Service AG,DCON Software & Service AG,Cold,"",120,information technology & services,jan@pandaloop.de,http://www.dcon.de,http://www.linkedin.com/company/dcon-gmbh,https://www.facebook.com/DCONGmbH,"",33 Europaallee,Kaiserslautern,Rhineland-Palatinate,Germany,67657,"33 Europaallee, Kaiserslautern, Rhineland-Palatinate, Germany, 67657","standardsoftware, itil, enterprise service management, it service management, servity, it services & it consulting, energy sector, problem management, cloud hosting, service catalog, service continuity, monitoring tools, services, partner collaboration programs, monitoring and event management, incident management, knowledge management, automotive industry, performance measurement, problem root cause analysis, resource management, security management, itil 4 practices, automotive, itsm best practices, resource and resource planning, public sector, knowledge base integration, user-friendly interface, event management, process optimization, information technology and services, user-centric ux design, service continuity planning, resource allocation, service reporting, computer systems design and related services, government, service optimization, partner ecosystem, partner network, availability and continuity, industry-specific solutions, industry solutions, resource planning, energy management tools, cloud technology, user-centric design, service request handling, computer software, service catalog and slas, customer success, future-proof it solutions, user experience design, user experience, b2b, capacity and performance optimization, knowledge base automation, sustainability, cloud-based software, healthcare it solutions, predictive maintenance, healthcare, itil 4 compliance, healthcare it, digital workplace tools, management consulting, capacity planning, incident and problem management, consulting, automation, servity platform, customer support, customer satisfaction, financial services, ai in service management, service level reporting, ai features, innovation, service catalog management, service configuration, change impact analysis, itil 4, energy, sustainable technology, capacity management, change enablement, incident prediction, ai-powered features, automation and ai, service level management, service automation, digital transformation, event correlation, service management platform, it security, workflow automation, automated workflows, finance, education, energy_utilities, information technology & services, cloud computing, enterprise software, enterprises, events services, ux, environmental services, renewables & environment, health care, health, wellness & fitness, hospital & health care, computer & network security",'+49 631 920820,"Outlook, Google Tag Manager, Mobile Friendly, Nginx, WordPress.org, AI, Remote, Microsoft Azure Monitor, Docker, Kubernetes, Microsoft Azure","","","","",14000000,"",69c281c647a8220001db7c93,7375,54151,"DCON Software & Service AG is a German technology company located in Kaiserslautern, specializing in Enterprise Service Management (ESM). Founded in 1994, DCON has over 30 years of experience in providing consulting and software solutions. The company focuses on enhancing ESM through its platform, Servity, which is designed to meet the diverse needs of enterprises across various sectors, including defense. + +In addition to its software, DCON offers consulting and implementation services tailored to address specific ESM challenges. The company emphasizes a human-centered approach, ensuring that the people behind services, processes, and tools are prioritized to create practical value. DCON also runs a Servity Partner Program to expand its offerings through strategic partnerships. The company actively participates in industry events to showcase its expertise and commitment to delivering customized solutions.",1994,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670cc5680729800001cdc4b5/picture,"","","","","","","","","" +GABO mbH & Co. KG,GABO mbH & Co. KG,Cold,"",56,information technology & services,jan@pandaloop.de,http://www.gabo.de,http://www.linkedin.com/company/gabo-mbh-&-co-kg,https://www.facebook.com/gabombh/,"",22 Wilhelm-Wagenfeld-Strasse,Munich,Bavaria,Germany,80807,"22 Wilhelm-Wagenfeld-Strasse, Munich, Bavaria, Germany, 80807","business intelligence, intranet, power apps, business process management, ms teams, collaboration, sql, azure, m365 governance compliance, powerbi, microsoft 365, m365 datenschutz, data warehouse, prozesse, trainings, microsoft sharepoint, dashboards, it services & it consulting, microsoft power platform, azure data factory, microsoft teams schulung, power bi templates, it consulting, power bi power platform integration, power bi, governance & compliance, services, power bi dashboards, power platform schulungen, power bi reporting, green bi, datenvisualisierung, consulting, it-support, corporate planning power bi, it services, microsoft 365 einführung, tenantkonfiguration, ibc s standards, einkaufsoptimierung power bi, data analytics, power automate, software development, business intelligence & analytics, data warehouse migration, information technology & services, computer systems design and related services, workflow automation, b2b, microsoft fabric, datenintegration, finance, analytics, management consulting, financial services",'+49 89 785900,"Outlook, Microsoft Office 365, reCAPTCHA, Google Tag Manager, Mobile Friendly, Nginx, WordPress.org, Apache, Remote, SAP, Microsoft 365, SAP S/4HANA, SAP Business Suite, SAP HANA, SAP Business Technology Platform, Microsoft Teams, Zoomdata, Webex, AWS Directory Service, ABAP, Red Hat JBoss Enterprise SOA Platform, NeoData, SAP Fiori, 3M 360 Encompass - Health Analytics Suite, AI, SAP Analytics Cloud, SAP Basis","",Merger / Acquisition,"",2026-03-01,"","",69c281c647a8220001db7c80,7375,54151,"GABO mbH & Co. KG is a German IT services and consulting company based in Munich, with additional offices in Dresden, Nuremberg, and Frankfurt. Founded in 1997, GABO specializes in optimizing digital business processes, digital collaboration, and business intelligence (BI) solutions. The company employs around 60 people and focuses on delivering industry-specific solutions that enhance decision-making, operational efficiency, and productivity through digital transformation. + +GABO offers a range of IT consulting and implementation services, including Power BI implementation, SAP-BI integration, and Microsoft 365 setup. Their services are practice-oriented and delivered in partnership with clients, covering everything from initial consulting to full implementation. GABO also provides specialized tools like the GABO Data Warehouse and various Microsoft 365 tools to support collaboration and data visualization. The company emphasizes customer understanding and works closely with partners like Microsoft, SAP, and HCL to provide effective solutions across different industries.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66fa402515d29b00018f3b29/picture,"","","","","","","","","" +Times TX GmbH,Times TX,Cold,"",14,information technology & services,jan@pandaloop.de,http://www.timestx.com,http://www.linkedin.com/company/timestx,https://www.facebook.com/timestx,"","",Hamburg,Hamburg,Germany,"","Hamburg, Hamburg, Germany","design, digital marketing, software development, digitalization, ai integration, data analytics, user experience design, change management, ai-driven insights, edge computing, generative ai, user-centric design, automation, microservices architecture, ethical ai, performance optimization, cybersecurity, iot, blockchain, services, remote collaboration, digital asset management, scalability, quality assurance, automation tools, scalable solutions, data-driven decision making, sustainable technology, predictive analytics, business process automation, ai-powered automation, digital solutions, cloud-native applications, information technology and services, devops, enterprise-level solutions, security measures, chatbot integration, ai chatbots, generative engine optimization, digital innovation, performance testing, scalable saas solutions, consulting, digital path streamlining, microservices, enterprise digitalization, automated testing, devops services, real-time analytics, customer experience, b2b, security compliance, scalable architecture, agile development, web development, enterprise software, remote team collaboration, modular software design, digital ecosystem integration, data privacy, data security, mobile app development, custom software, cloud-native development, api integration, digital strategy, cloud solutions, it consulting, user experience, digital transformation, sustainable it practices, custom ui/ux design, custom software development, iot integration, cloud computing, software solutions, computer systems design and related services, agile methodology, digital ecosystem, e-commerce, education, marketing & advertising, information technology & services, enterprises, computer software, computer & network security, marketing, management consulting, ux, consumer internet, consumers, internet",'+49 163 1708474,"Route 53, Amazon AWS, Facebook Custom Audiences, Google Tag Manager, Mobile Friendly","","","","","","",69c281c647a8220001db7c84,7375,54151,"Times TX GmbH is a Germany-based digital transformation and software development company that focuses on serving mid-sized businesses in the DACH region and the EU, with the ability to deliver services globally. The company aims to empower its clients with digital tools that enhance growth, streamline operations, and improve customer experiences. Times TX is committed to making digital transformation accessible to smaller companies, providing services typically available to larger enterprises. + +The company offers a range of digital services, including user-friendly design, marketing strategies like SEO and content marketing, and automation solutions that help businesses scale. Times TX also specializes in software and website development, enhancing speed, user experience, and conversion rates. Their structured engagement model includes a free consultation, project planning, solution building, and ongoing support to ensure client success. With a focus on collaboration and transparency, Times TX operates with German standards and serves clients in multiple languages.",2022,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6725caec39912d00010f57fb/picture,"","","","","","","","","" +MKW GmbH Digital Automation,MKW GmbH Digital Automation,Cold,"",13,mechanical or industrial engineering,jan@pandaloop.de,http://www.mkw.gmbh,http://www.linkedin.com/company/mkw-gmbh-digital-automation,https://www.facebook.com/mkwgmbhdigitalautomation/,https://twitter.com/MKWGmbH,15 Derken,Wuppertal,North Rhine-Westphalia,Germany,42327,"15 Derken, Wuppertal, North Rhine-Westphalia, Germany, 42327","informationstechnologie, automatisierungstechnik, mes, konstruktionsdienstleistungen, sondermaschinenbau, softwareentwicklung, anlagenbau, spsprogrammierung, industrieelle baeckereimaschinen, branchenübergreifende automatisierung, herstellerunabhängige shopfloor-konnektivität, automatisierte steuerungssysteme, digitale fabrik, industrie 4.0, industrial equipment & systems, elektrokonstruktion, konstruktion, herstellerunabhängige vernetzung, software development, software für produktion, automatisierte maschinensteuerung, consulting, automatisierte produktionssteuerung, industrial automation, automationslösungen, datenmanagement, echtzeitsteuerung, smart factory lösungen, data analytics, industrial machinery manufacturing, 3d printing, web apps, prozessautomation, project management, b2b, individuelle produktionssoftware, intelligente fertigungssysteme, industrie 4.0 software, desktop apps, herstellerunabhängige konnektivität, sps-programmierung, system integration, automatisierung, custom software development, services, individuelle softwarelösungen, maschinenbau, systemintegration, konnektivität, lohnfertigung, 3d-druck, mobile apps, industrie 4.0 implementierung, echtzeit produktionsüberwachung, echtzeit-datenmanagement, machinery manufacturing, manufacturing, distribution, information technology & services, mechanical or industrial engineering, web applications, productivity",'+49 20 29479140,"Outlook, Google Tag Manager, Apache, reCAPTCHA, Mobile Friendly, Google Maps, Remote","","","","","","",69c281c647a8220001db7c8e,3531,33324,"MKW GmbH | Wuppertal +Exzellenz in Engineering-Lösungen. + +🔧 Von der Planung bis zur Inbetriebnahme: Ihr Partner für das gesamte Engineering-Leistungsspektrum. +🌐 Spezialisiert auf individuell angepasste Sondermaschinen & Anlagen. +📊 MK|Ware: Revolutionäre Software für Echtzeit-Produktionsdaten & -optimierung. +🤖 Von Handarbeitsplätzen bis zu Linie 4.0: Integrierte und herstellerübergreifende Vernetzung. +🛠 Maßgeschneiderte modulare Software-Lösungen für Ihre spezifischen Anforderungen. +📈 Vertrauen Sie unserer langjährigen Branchenerfahrung. + +Unser Ziel: Ihre Produktionsprozesse auf ein neues Level zu heben. Lassen Sie uns gemeinsam Ihre Vision in die Realität umsetzen. Jetzt Kontakt aufnehmen!",1972,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670af2d413c687000170358d/picture,"","","","","","","","","" +aubex,aubex,Cold,"",35,information technology & services,jan@pandaloop.de,http://www.aubex.de,http://www.linkedin.com/company/aubex-gmbh,https://facebook.com/aubex,https://twitter.com/aubex,28 Erste Industriestrasse,Hockenheim,Baden-Wuerttemberg,Germany,68766,"28 Erste Industriestrasse, Hockenheim, Baden-Wuerttemberg, Germany, 68766","automotive, mobility, ki, training, it, it services & it consulting, digitale transformation, automatisierte serviceannahme, xmp/spps assist, effizienzsteigerung, outsourcing, self-service station, autohaus-lösungen, digitalberatung, b2b, package system assist, computer systems design and related services, kundenbindung, retail, rpa, leadgenerierung, services, it-lösungen, digitaler auftragscheck, serviceautomatisierung, automatisierte auftragsvorbereitung, prozessautomatisierung, digitalisierung autohaus, customer experience, consulting, information technology & services",'+49 62 052323240,"Outlook, Microsoft Office 365, YouTube, Google Tag Manager, Mobile Friendly, WordPress.org, Apache, Bootstrap Framework, Uipath, Android, Automation Anywhere, Remote, AI, Microsoft Excel, Python, Django, GitHub","","","","",3149000,"",69c281c26ce8cd0001af0e0c,7375,54151,"Aubex GmbH is a small German company founded in 2009 and based in Hockenheim, Baden-Württemberg. The company specializes in trade intermediation for office machinery, computers, peripheral equipment, and software. With a team of 11 to 50 employees, Aubex operates primarily in the information technology and services sector, as well as in plastics and automotive industries. + +The company focuses on agency services, facilitating the sale of office machinery, data processing equipment, peripheral devices, and software. Aubex GmbH is registered as a Gesellschaft mit beschränkter Haftung (GmbH) and has a strong financial profile, indicated by a very low credit risk score. The latest financial filings show stability, with an estimated turnover in the range of 11 million to 100 million euros.",2009,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69ad8e19c1310b00011ee2e7/picture,"","","","","","","","","" +amasol,amasol,Cold,"",100,information technology & services,jan@pandaloop.de,http://www.amasol.com,http://www.linkedin.com/company/amasol-gmbh,https://facebook.com/amasolAG,https://twitter.com/amasol_ag,3B Claudius-Keller-Strasse,Munich,Bavaria,Germany,81669,"3B Claudius-Keller-Strasse, Munich, Bavaria, Germany, 81669","tbm technologies business management, service level management, bizops business operations, apm application performance management, aiops, security operations, slm, next generation monitoring, observability, cx, itoa it operations analytics, itim it infrastructure management, dex, itxm, it services & it consulting, system stability, data security, cloud management, ai-powered incident correlation, accessibility analytics, ai behavior analysis, it cost management, computer software, managed services, experience level agreements (xla), it consultancy, cloud optimization, performance analytics, ai analytics, software solutions, green it practices, explainable ai in it operations, computer systems design and related services, root cause analysis, real-time monitoring, monitoring concepts, hybrid cloud monitoring, customer experience, compliance, security monitoring, threat detection, usability, security, it-reliability, application performance, business alignment, performance bottleneck detection, proactive security alerts, network performance, information technology and services, user behavior analytics, it monitoring, incident management, end-to-end automation, performance management, detectability, automation, b2b, e-commerce, healthcare, finance, information technology & services, computer & network security, cloud computing, enterprise software, enterprises, it consulting, consulting, management consulting, consumer internet, consumers, internet, health care, health, wellness & fitness, hospital & health care, financial services",'+49 89 18947430,"Sendgrid, Outlook, Microsoft Office 365, GoDaddy Hosting, Microsoft Azure Hosting, Slack, WordPress.org, Varnish, Mobile Friendly, Google Tag Manager, TYPO3, Ubuntu, Google Analytics, Apache, YouTube, Linkedin Marketing Solutions, Android, Browserstack","","","","",3215000,"",69c281c26ce8cd0001af0e0f,7375,54151,"amasol AG is an IT systems integrator, consultancy, and managed service provider based in Munich, Germany. Founded in 1999, the company specializes in monitoring concepts that enhance usability, observability, detectability, and IT reliability. With a focus on digital transformation and performance optimization, amasol helps clients build agile and reliable IT platforms. + +The company offers customized IT consulting, implementation, and managed services, utilizing advanced software solutions from partners like Dynatrace and Broadcom. Their services include real-time performance monitoring, IT optimization, security and compliance, and managed services. amasol aims to simplify IT processes by connecting business requirements with effective IT solutions. + +Employing around 54 people from 15 countries, amasol serves medium-sized and large enterprises across various sectors, including automotive, finance, healthcare, telecommunications, and insurance. The company has established a strong presence in the market, with significant revenue and a commitment to enhancing IT environments for its clients.",1999,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/695f914804a6fb0001c4d591/picture,"","","","","","","","","" +provalida,provalida,Cold,"",18,information technology & services,jan@pandaloop.de,http://www.provalida.de,http://www.linkedin.com/company/provalida,https://facebook.com/Provalida,https://twitter.com/provalidaGmbH,"",Bochum,North Rhine-Westphalia,Germany,"","Bochum, North Rhine-Westphalia, Germany","crm xrm extended relationship management, marketing, applicationmanagementservices, vertriebs und serviceprozesse, projekt und portfolio management, it services & it consulting, ki-generics, workflow automation, customer journey, digitalisierung, agile projektsteuerung, unternehmensweite ppm-lösungen, unternehmensweite lösungen, business process automation, customer relationship management, automatisierte forderungsmanagement, software publishing, ki-basierte software für automobilhandel, data security, sugarcrm plug-ins, electrical equipment manufacturing, ki-basierte softwarelösungen, consulting services, datenqualität, dezentrale zusammenarbeit, künstliche intelligenz, consulting, business intelligence, information technology and services, systemintegration, customer success management, computer systems design and related services, projektmanagement, business software, b2b, crm, softwareentwicklung, data mapping, sales automation, ki-analytics, customer experience, ki-basierte software für energieversorger, hybrid arbeitsmodelle, datenintegration, it-governance-lösungen, cloud solutions, crm software, transportation and logistics, software development, automatisierung, devops, datengetriebene vertriebssteuerung, branchenlösungen, projekt- und portfoliomanagement, unternehmenssoftware, services, vertriebsautomatisierung, kundenbeziehungsmanagement, distribution, transportation & logistics, information technology & services, sales, enterprise software, enterprises, computer software, computer & network security, electrical/electronic manufacturing, mechanical or industrial engineering, management consulting, analytics, saas, cloud computing",'+49 234 298797920,"Amazon SES, Outlook, Microsoft Office 365, Jira, Google Tag Manager, Apache, Mobile Friendly, WordPress.org, Render","","","","",3638000,"",69c281c26ce8cd0001af0e0b,7375,54151,"In jedem modernen Unternehmen ist die effiziente Steuerung der Prozessabläufe ein wichtiger Erfolgsfaktor. Die IT liefert dafür die Werkzeuge und Methoden. Die Komplexität einer IT-Landschaft kann allerdings schon mal das Gefühl vermitteln, den Wald vor lauter Bäumen nicht mehr zu sehen. + +provalida unterstützt Sie praxiserfahren und kompetent und richtet den Blick auf die wesentlichen Erfolgsfaktoren.",2007,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68bd3a343d3ef9000158333b/picture,"","","","","","","","","" +mpmX,mpmX,Cold,"",45,information technology & services,jan@pandaloop.de,http://www.mpmx.com,http://www.linkedin.com/company/mpmx,"","",88 Karlsruher Strasse,Karlsruhe,Baden-Wuerttemberg,Germany,76139,"88 Karlsruher Strasse, Karlsruhe, Baden-Wuerttemberg, Germany, 76139","qlik, business process management, process discovery, process enhancement, process intelligence & process mining, operational excellence, business process analysis, sap, big data, process mining, digital transformation, bpm, business analytics, conformance checking, business intelligence, process excellence, data analytics, software development, process mining for supply chain optimization, healthcare, process mining with real-time monitoring, predictive analytics, computer systems design and related services, consulting, process mining for industry-specific use cases, data integration, ai-driven insights, data security, self-service analysis, modular process mining, ai and machine learning, process monitoring, process automation, process mining for complex environments, process intelligence, process visualization, process mining with ai assistance, data platform integration, qlik extension, b2b, real-time analytics, process modeling, process mining in heterogeneous data landscapes, hybrid data environments, process mining for customer journey mapping, object-centric process mining, distribution, manufacturing, process mining automation, process optimization, snowflake integration, information technology and services, services, process transparency, databricks compatibility, workflow visualization, process optimization tools, data infrastructure compatibility, workflow analysis, process mining for large data volumes, object-centric process mining (ocpm), finance and insurance, process bottleneck detection, process mining platform, data-driven decision making, e-commerce, finance, enterprise software, enterprises, computer software, information technology & services, analytics, health care, health, wellness & fitness, hospital & health care, computer & network security, mechanical or industrial engineering, consumer internet, consumers, internet, financial services",'+49 721 95794620,"Salesforce, Cloudflare DNS, Outlook, Microsoft Office 365, Hubspot, Slack, Google Dynamic Remarketing, Facebook Login (Connect), WordPress.org, Mobile Friendly, Google Tag Manager, Woo Commerce, Gravity Forms, Facebook Widget, Cornerstone On Demand, DoubleClick Conversion, Linkedin Marketing Solutions, Facebook Custom Audiences, DoubleClick, YouTube","","","","","","",69c281c26ce8cd0001af0e10,7375,54151,"mpmX by MEHRWERK is a process intelligence software platform that specializes in modular, open-architecture process mining solutions. It integrates seamlessly with existing data platforms to analyze, visualize, and optimize complex business processes. The platform is designed for enterprises with fragmented data environments and serves over 150 customers across more than 10 countries, particularly in the DACH region and expanding into North America and Europe. + +The mpmX platform features several key components, including a real-time visualizer for process mapping, an advanced data modeling engine, and analytics tools that combine business intelligence with process mining. It also offers automation capabilities for notifications and workflows, leveraging AI for real-time recommendations. With support for on-premises or SaaS deployments, mpmX ensures connectivity across various environments and integrates with leading data platforms like Qlik, Snowflake, and Databricks. The platform is recognized for its ability to handle large data volumes and provide self-service analysis, making it a valuable tool for organizations seeking operational excellence.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69a4a7da6c83cb00014bc736/picture,Fortino (fortino.capital),54a1214169702da10f3fc202,"","","","","","","" +ZDS Zander Digital Services,ZDS Zander Digital Services,Cold,"",15,marketing & advertising,jan@pandaloop.de,http://www.zds.online,http://www.linkedin.com/company/zds-zander-digital-services,"","",7 Zweibruecker Hof,Herdecke,Nordrhein-Westfalen,Germany,58313,"7 Zweibruecker Hof, Herdecke, Nordrhein-Westfalen, Germany, 58313","shkelektro, digitalisierung, konfiguratoren, adserver, crm, social selling, landingpages, iot, marketing automation, lead nurturing, dreistufiger vertrieb, digitaler reifegrad, wissensdatenbanken, seo, selfservices, shk, elektro, grosshandel, online marketing, digitaler vertrieb, advertising services, sales, enterprise software, enterprises, computer software, information technology & services, b2b, marketing & advertising, saas, search marketing, marketing",'+49 2302 9490012,"Microsoft Office 365, Outlook, DigitalOcean, Mobile Friendly, Google Tag Manager, Ubuntu, Apache, WordPress.org, Google Font API, reCAPTCHA, Bootstrap Framework, AI, Remote, Deel","","","","","","",69c281c26ce8cd0001af0e12,"","","ZANDER Digital Services is the e-business service provider for the ZANDER Group. We offer ready-to-use and proven e-business solutions for business partners' ""Plug & Play"" focused on industry, trade and commerce. Tried and tested daily in the ZANDER Group wholesale in over 100 locations and with over €120M online turnover plus IoT. + +""We build the digital data highway from the manufacturer to the customer and the networked device"". + +With the foundation of ZANDER Digital Services, the ZANDER Group is investing in the expansion of the digital competence of manufacturers, trade and craftsmanship. We believe that the digital link between independent companies along the entire value chain will provide the best services the companies in the 3-stage distribution will be able to offer alongside large online retailers, their future own brands and installation services. Together, we would like to move a step forward towards the digitalization of the trade!",2022,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/672660c83bff9900013cf6f7/picture,"","","","","","","","","" +mvneco GmbH,mvneco,Cold,"",15,information technology & services,jan@pandaloop.de,http://www.mvneco.com,http://www.linkedin.com/company/mvneco-gmbh,"","",165 Oberbilker Allee,Duesseldorf,North Rhine-Westphalia,Germany,40227,"165 Oberbilker Allee, Duesseldorf, North Rhine-Westphalia, Germany, 40227","payments, bss, managed services, ecommerce, vas, m2m, mobile app, mvno, mvne, telecommunication, b2b b2c b2b2c telco insurance, digital solutions, consulting, it services & it consulting, services, cloud services, e-commerce, devops, telecommunications, retail, b2b, software development, financial services, consumer internet, consumers, internet, information technology & services, cloud computing, enterprise software, enterprises, computer software",'+49 211 54762222,"Microsoft Office 365, WordPress.org, Mobile Friendly, Apache, Docker","","","","","","",69c281c26ce8cd0001af0e1d,"","","MVNECO is a creative, attractive, specialised team in providing the best solutions in SAP CX - B2B, B2C, B2B2C, Telecom, Insurance and in network provider in Germany. MVNECO has strong base on design, development, deployments, operations including 24/7 production support. It is ISO 27001 certified in terms of operational security. + +We deliver all necessary building blocks for successful products to our customers. + +Why MVNECO: +• Strong technical background +• German and English speaking architects, managers and operations +• Cost effective and fixed bidding approaches +• Agile methodology +• Own services to solve major payment problems in e-commerce solutions +• Support and development from the teams in Germany, Serbia and India",2007,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670ba22b952d19000177e6fb/picture,"","","","","","","","","" +Macaw Deutschland,Macaw Deutschland,Cold,"",91,information technology & services,jan@pandaloop.de,http://www.macaw.de,http://www.linkedin.com/company/macaw-deutschland,"","",63 Oberbergische Strasse,"","",Germany,42285,"63 Oberbergische Strasse, Germany, 42285","influencer marketing, commerce, analytics, data science, campaigning, user experience, ai, sitecore, microsoft, b2b marketing, customer data platform, business apps, b2c marketing, digital marketing, social media marketing, content marketing, conversion optimization, microsoft azure, microsoft power platform, data, technical development, microsoft fabric, digital experience, it services & it consulting, microsoft partner, ai roadmap, customer journey, data insights, power platform, ai for business optimization, ai inspiration workshop, ai-driven data insights, ai for customer experience, digital innovation, computer systems design and related services, ai automation, data strategy, data solutions, data & analytics, ai chatbot, analytics & bi, customer engagement, ai success stories, ai services, ai in cloud migration, data transformation, cloud migration, data strategy & governance, software development, business applications, ai for data strategy, ai content writer, cloud solutions, artificial intelligence, cloud security, data platforms, information technology and services, ai content hub, customer experience, ai in digital experience, digital transformation, data analytics platforms, ai-driven solutions, cloud computing, sustainable digital solutions, data analytics, ai strategy, data management, data governance, ai implementation, data solutions & insights, ai customer service, b2b, information technology & services, ux, marketing & advertising, consumer internet, consumers, internet, enterprise software, enterprises, computer software",'+31 23 206 0600,"Amazon SES, Outlook, Microsoft Office 365, Amazon AWS, Microsoft Azure Hosting, Salesforce, Figma, SharpSpring, Hubspot, Microsoft Dynamics 365 Marketing, Atlassian Cloud, Microsoft Azure, WordPress.org, Hotjar, reCAPTCHA, YouTube, Gravity Forms, Mobile Friendly, Google Tag Manager, Nginx, Cedexis Radar, Vimeo, Adobe Media Optimizer, Bing Ads, Linkedin Marketing Solutions, Microsoft Power Platform, Microsoft Power Apps, Microsoft Power Automate, DATAVERSE LTD, PowerBI Tiles, SharePoint, Microsoft Teams Rooms, Microsoft 365, Copilot, .NET, ASP.NET, Azure Devops, Microsoft Azure Monitor","",Merger / Acquisition,0,2021-03-01,22600000,"",69c281c26ce8cd0001af0e07,7375,54151,"Macaw Deutschland, also known as Macaw Germany Cologne GmbH, is a prominent provider of digital services with a focus on Data & AI, Business & Cloud Applications, and Digital Experience. Founded in 1994, the company has over 30 years of experience and operates as a full-service digital partner, helping businesses navigate artificial intelligence and digital transformation. With more than 400 employees across locations in Cologne, Wuppertal, Amsterdam, and Vilnius, Macaw emphasizes innovative project methods and a strong company culture. + +The company offers a wide range of digital solutions, including cloud migration, custom development, and analytics. Its expertise spans various areas such as AI-powered solutions, cloud application management, UX/UI design, and digital marketing. Macaw Deutschland serves over 150 clients, including well-known brands like Heineken, Porsche Holding, and Siemens, across industries such as automotive, energy, consumer goods, and financial services. The company is recognized as a Microsoft Certified Partner and holds several key certifications in AI, Data & Analytics, and Cloud solutions.",1994,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69183343a33f0a0001de37bb/picture,Macaw (macaw.nl),54a1bc5e74686958604a930c,"","","","","","","" +Techflow.ai,Techflow.ai,Cold,"",12,information technology & services,jan@pandaloop.de,http://www.techflow.ai,http://www.linkedin.com/company/techflow-ai,https://www.facebook.com/TechflowAI/,https://twitter.com/Techflow_AI,"",Darmstadt,Hesse,Germany,64295,"Darmstadt, Hesse, Germany, 64295","nocode automation, it consulting, bpa, ecommerce, fitness automation, shopify, teaching automation, business process automation, it services & it consulting, digital transformation, workflow automation, ai automation, automation training, automation for small business, business process optimization, automation roi, custom ai solutions, consulting, data integration, information technology and services, complex logics, computer systems design and related services, b2b, no-code automation, ai-driven tools, business services, automation consulting, ai agents, process optimization, automation case studies, automation solutions, software development, workflow optimization, no-code tools, ai-powered integrations, api integration, business consulting, services, information technology & services, management consulting, e-commerce, consumer internet, consumers, internet, enterprise software, enterprises, computer software",'+49 176 32380288,"Cloudflare DNS, Gmail, Google Apps, Zapier, React Redux, Webflow, Square, Inc., Slack, Active Campaign, Visual Website Optimizer, Google Font API, Mobile Friendly, Facebook Login (Connect), Amadesa, Facebook Widget, Vimeo, Facebook Custom Audiences, Google Tag Manager, Google Analytics, AI","","","","","","",69c281c26ce8cd0001af0e15,7375,54151,Tired of wasting time with repetitive tasks? Discover how Techflow.ai's no-code automation services transform your workflow and free up valuable time.,"",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/675efb06d6ce83000122cc85/picture,"","","","","","","","","" +SOLVVision AG,SOLVVision AG,Cold,"",99,information services,jan@pandaloop.de,http://www.solvvision.de,http://www.linkedin.com/company/solvvision-ag,"","",29 Rheinstrasse,Frankfurt,Hesse,Germany,60325,"29 Rheinstrasse, Frankfurt, Hesse, Germany, 60325","prozesse, qualifizierung, devops, itsmplattformbetrieb, servicenow, agiles prozessmanagement, itsmstrategieberatung, itsmtoolauswahl, apollo13, phoenix project, projektmanagement, toolberatung, bsi grundschutz, unternehmensberatung, security business continuity management, organisationsberatung, managed platform service, managed service, digitalisierung, prozessoptimierung, itil, itsecurity, service operations, atlassian, prozessberatung, itrisikomanagement, atlassian intelligence, usu, marslander, cyber security assessment, ki, management consulting services, process automation, data analytics, platform support, change management, itil 4 foundation, process optimization, it operations, managed services, business consulting, risk management, information technology and services, it governance, ai in itsm, itsm, automation, it infrastructure, b2b, security compliance, security strategy, service management, servicenow platform, tool customization, atlassian itsm, platform integration, platform consulting, cloud solutions, it consulting, usu value packages, it strategy, digital transformation, enterprise service management (esm), services, platform migration, consulting, security operations (secops), management consulting, business process services, security management, marslander simulation, agile methodology, itom optimization, security automation, information technology & services, cloud computing, enterprise software, enterprises, computer software",'+49 69 83049965,"MailJet, Outlook, Microsoft Office 365, Atlassian Cloud, reCAPTCHA, Linkedin Marketing Solutions, Gravity Forms, Apache, WordPress.org, Google Analytics, Mobile Friendly, Google Tag Manager, Circle, Remote","",Merger / Acquisition,0,2024-06-01,"","",69c281c26ce8cd0001af0e19,7375,54161,"SOLVVision AG is a German business consulting firm that specializes in value-based service management, process optimization, and digital transformation. The company focuses on aligning employee identification with company goals to foster an ""owner mentality,"" which enhances performance and supports long-term growth. They emphasize agile and digital competencies through their SOLVVision Transformation and Turnaround Management services, providing clients with sustainable competitive advantages. + +The firm offers comprehensive consulting services, including business consulting, requirements engineering, service process optimization, and digital transformation. Their approach involves expert-led workshops to define business goals and requirements, ensuring stakeholder involvement for early results and recognized business value. SOLVVision's unique integration of business and technical consultants allows them to deliver maximum value quickly, often within three months, and their methodology supports agile implementation and early value realization. They also provide free initial consultations to discuss client needs.",2013,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/696299fda6be9a0001ecd95c/picture,"","","","","","","","","" +Oracom GmbH - Experte für Kommunikation,Oracom,Cold,"",12,information technology & services,jan@pandaloop.de,http://www.oracom.de,http://www.linkedin.com/company/oracom-gmbh,"","",189 Regattastrasse,Berlin,Berlin,Germany,12527,"189 Regattastrasse, Berlin, Berlin, Germany, 12527","bewohnerkommunikation, smarte kommunikation, intelligence, itdienstleistung, it services & it consulting, weiterbildungs-flatrate, parkraumwirtschaft, b2b, google bewertungen automatisiert beantworten, ki-basierte kundenkommunikation, energy, information technology and services, computer systems design and related services, api-vernetzung, rezensionsmanagement, echtzeit-reporting, notfall- und havariehotline 24/7, künstliche intelligenz, services, information technology & services, mieteranliegen automatisiert bearbeiten, digitaler empfang, automatisierte kundenservice, consulting, contactcenter-dienste, chatbots und voicebots, financial services, facilities services, reputation management, bewerberinterview-bot, facility management, real estate, immobilienverwaltung, terminvereinbarungs-bot, technology",'+49 30 3229521690,"SendInBlue, Outlook, Woo Commerce, Facebook Widget, Facebook Login (Connect), Vimeo, Google Tag Manager, Apache, Facebook Custom Audiences, WordPress.org, Mobile Friendly, reCAPTCHA","","","","","","",69c281c26ce8cd0001af0e08,7375,54151,"Wir helfen unseren zufriedenen Kunden ihre Kommunikation mit Kunden effektiver zu gestalten, um wieder entspannt wachsen zu können.",2006,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6705fc9e7e16ac00017def96/picture,"","","","","","","","","" +PD Connect,PD Connect,Cold,"",18,information technology & services,jan@pandaloop.de,http://www.pdconnect.de,http://www.linkedin.com/company/pdconnect,"","","",Lingen,Lower Saxony,Germany,"","Lingen, Lower Saxony, Germany","wwwpdconnect24de, software development, zeitarbeit software, information technology & services, branchenlösungen, skalierbarkeit, cloud solutions, consulting, services, software, best-of-breed, zeitarbeitssoftware, branchenfokus personaldienstleister, systemoffenheit, ki-weiterbildung, api-integration, human resources software, branchenkompetenz, beratung, managed services, zeitarbeitsbranche digitalisierung, webinare, effizienzsteigerung, ki-online-kurs, digitalisierung, software consulting, webinare für personaldienstleister, prozessautomatisierung, automatisierte routineaufgaben, zeitarbeit prozessoptimierung, softwarelösungen, ki für mitarbeiter, b2b, systemintegration, datenmanagement, consulting services, computer systems design and related services, individualsoftware, schnittstellen, datenfluss, hr schnittstellen, branchenfokus, ki für entscheider, human resources, zeitarbeit workflow, automatisierung, zeitarbeit, api-schnittstelle, branchenlösung, system integration, hr-it-integration, api-connector, staffing, custom software, branchenlösung personaldienstleister, branchenlösung zeitarbeit, workflow-optimierung, hr-tools, digital transformation, hr-software, data management, ki-kurse, education, cloud computing, enterprise software, enterprises, computer software, management consulting","","Microsoft Office 365, Google Cloud Hosting, SendInBlue","","","","","","",69c281c26ce8cd0001af0e0e,7375,54151,"PD Connect is a German company that specializes in personnel services and temporary employment. They provide cloud-based software solutions designed for staffing agencies and personnel service providers. Their main product, the PD Commander, acts as a central operating system that streamlines essential business processes such as applicant intake, recruitment, time tracking, invoicing, and sales. This platform is user-friendly and emphasizes legal compliance, helping over 100 personnel service providers enhance their efficiency. + +In addition to PD Commander, PD Connect offers PD Master, a specialized solution that utilizes AI and automation to significantly speed up sales and recruiting processes. The company also provides personalized team support to ensure users achieve sustainable success, focusing on collaboration and innovation.",2023,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67032b66068a210001d6ee02/picture,"","","","","","","","","" +Ginkgo Cybersecurity,Ginkgo Cybersecurity,Cold,"",23,"",jan@pandaloop.de,http://www.ginkgo-cybersec.com,"","","","",Hamburg,Hamburg,Germany,"","Hamburg, Hamburg, Germany","management consulting services, transportation & logistics, ot security, cyber defense, information technology and services, automation, cyber attack simulation, energy & utilities, financial services, manufacturing, b2b, identity & access management, privacy & compliance, cloud security, cybersecurity, technology consulting, industry expertise, healthcare, digital transformation, services, consulting, management consulting, data & ai, cyber security & privacy, digital business & innovation, sourcing advisory, technology & platforms, it advisory, regulatory compliance, resilience development, government, strategy and mergers & acquisitions, finance, information technology & services, mechanical or industrial engineering, health care, health, wellness & fitness, hospital & health care","",Outlook,"","","","","","",69c281c26ce8cd0001af0e1a,7371,54151,"Ginkgo Management Consulting is Getting Digital Done. We believe that sustainable added value in the field of digitalization can only work in the future if cybersecurity receives the necessary attention. That is why we founded Ginkgo Cybersecurity. Together we will get digital done, but securely. +Ginkgo Cybersecurity builds on many years of experience in cybersecurity and consulting. Our clients range from well-known Fortune 500, DAX listed, and mid-sized companies to hidden champions. Our team has all the necessary technical knowledge to make secure digitalization happen. We work independently, but closely connected to the other Ginkgo teams to ensure optimal results for your digital needs. We treat your business as if it is our own. This is our commitment.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/64b2d4a91dc7c60001724ca6/picture,"","","","","","","","","" +anaxima GmbH | wir liefern Lösungen,anaxima,Cold,"",19,information technology & services,jan@pandaloop.de,http://www.anaxima.com,http://www.linkedin.com/company/anaxima-gmbh,"","",20 Hangstrasse,Marburg,Hesse,Germany,35043,"20 Hangstrasse, Marburg, Hesse, Germany, 35043","predictive analytics, versicherungen, handel, managed services, multikanalmanagement, digitales crm, java entwicklung, data mining, business intelligence, big data, marketing optimierung, banking, vertriebssteuerung, portfoliomanagent, sas gold partner, business analytics, sas, consulting, customer intelligence, customer experience, customer marketing, cpg, marketing automation, implementierung und betrieb, smart data, reporting, customerexperiencemanagement, it services & it consulting, self-service bi, data modeling, data enrichment, event stream processing, data monitoring tools, sas software, data quality management, data infrastructure, data monitoring, analytics plattformen, data warehouse, data cleansing, data quality, ai in business intelligence, data management, data compliance, data visualization, services, data architecture, data lake implementation, data security, cloud analytics, b2b, data integration, data quality automation, data governance frameworks, data science, data analytics, bi beratung, data science consulting, information technology and services, data-driven decision making, customer journey analytics, real-time data processing, omni-channel data integration, data optimization, management consulting services, data governance, bi-strategie, data compliance solutions, finance, information technology & services, enterprise software, enterprises, computer software, analytics, financial services, marketing & advertising, saas, computer & network security",'+49 642 1942990,"Bootstrap Framework, Mobile Friendly, Apache","","","","","","",69c281c26ce8cd0001af0e11,7375,54161,"Lösungen. Für unsere Kunden. Seit 20 Jahren. + +Digitalisierung ist in aller Munde. Jede Menge neuer Begriffe geistern durch Medien, Newsletter und Meetings: Big Data? Hadoop? Data Mining? Customer Intelligence? Wahrhaft nicht leicht, da den Überblick zu behalten. Geschweige denn, die richtigen Entscheidungen zu treffen. Da ist es gut, wenn man einen Partner an seiner Seite hat, der mit spezifischem Know-How und Erfahrung nicht nur berät, sondern auch umsetzen kann. +Seit 20 Jahren sind wir für unsere Kunden genau das: Partner, Berater und Macher. Unsere Schwerpunkte liegen in den Bereichen Big Data, Advanced Analytics, Data Science, Customer Intelligence und Self-Service BI. Als SAS Gold Partner stellen wir sicher, dass unser Team aus 50 Consultants, Fachexperten, Plattform-Architekten und Systemtechnikern in allen Senioritäten immer auf dem neuesten Stand ist. + +Werten Sie Ihre Kunden nicht aus - Wir helfen Ihnen, sie zu verstehen. + +anaxima. Wir liefern Lösungen.",2000,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/672b5b9e0aa1e40001ec19c9/picture,"","","","","","","","","" +Globl.Contact,Globl.Contact,Cold,"",84,telecommunications,jan@pandaloop.de,http://www.globl.contact,http://www.linkedin.com/company/globl-contact,"","","",Vallendar,Rhineland-Palatinate,Germany,56179,"Vallendar, Rhineland-Palatinate, Germany, 56179","customer retention, work from anywhere, scalable solutions, cx services, customer experience insights, talent pool management, customer engagement, system integration, customer support automation, business services, customer experience, services, virtual teams, sales & retention services, remote-first approach, virtual operating model, process automation, customer support tools, work-life balance, community driven, consulting, remote work, customer support, process optimization, customer care, cloud platform, employee wellbeing, systemintegration, learning ecosystem, technical support, data security, edge methodology, it services, biometric security, training & coaching, hybrid & virtual training, flexible work hours, global experience, community support, cloud contact center, customer loyalty, business process automation, security & privacy, data analytics, customer journey design, omnichannel approach, information technology and services, customer support services, cx journey, customer satisfaction, ai & data analytics, global ambassadors, performance data, cybersecurity, language support, computer systems design and related services, communities, b2b, customer experience services, multilingual support, digital transformation, emotional customer connection, talent development, multichannel support, operational excellence, enterprise software, enterprises, computer software, information technology & services, computer & network security","","Gmail, Outlook, Google Apps, Microsoft Office 365, Workable, Mobile Friendly, Apache, Circle","","","","","","",69c281c26ce8cd0001af0e13,7375,54151,"Globl.Contact GmbH is a global business process outsourcing (BPO) company that focuses on remote customer engagement, digital transformation, and customer experience insights. Founded as a hyper-growth provider, it operates in 27 countries and employs a fully remote model, adding 40-50 hires each month. The company empowers its remote agents, known as ""Ambassadors,"" to deliver premium support for international brands through innovative technologies and a strong emphasis on training and community. + +The company offers a range of scalable, cloud-based solutions for complex customer interactions. These include remote customer engagement and technical support, sales and retention strategies, digital transformation insights, and cloud contact center services. Globl.Contact prioritizes data security and privacy, ensuring a secure environment for its operations. Its mission is to create exceptional customer experiences through personal connections and a commitment to continuous learning and improvement.",2023,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6713870d7152310001846d62/picture,"","","","","","","","","" +3iMedia GmbH,3iMedia,Cold,"",11,information technology & services,jan@pandaloop.de,http://www.3imedia.de,http://www.linkedin.com/company/3imedia-gmbh,"","",14 Johann-Georg-Schlosser-Strasse,Karlsruhe,Baden-Wuerttemberg,Germany,76149,"14 Johann-Georg-Schlosser-Strasse, Karlsruhe, Baden-Wuerttemberg, Germany, 76149","it services & it consulting, microsoft teams, telecommunications, telefonsysteme für finanzdienstleister, telefonsysteme, unified communications, helpdesk, customer service, business it, software development, wallboard, telefonanlagen virtual, contact center, it-security, e-mail archivierung, reporting services, cloud contact center, business services, it-service, softwareentwicklung, it-consulting, call queue controller, information technology and services, business-kommunikation, warteschlangen, smartsearch, individuelle contact center, it-infrastruktur, datenschutz, voip, business-lösungen, call center, computer software, b2b, telekommunikation, it-outsourcing, microsoft teams integration, zertifizierungen, netzwerküberwachung, it-solutions, netzwerkmanagement, it-sicherheitslösungen, metaservices, it-beratung, sip-trunk, support services, event controller, services, swyx, consulting, integration erp crm, reporting tools, call center software, starface cloud, support, virtuelle tk-anlagen, cloud computing, it-support, swyx gold partner, warteschlangenmanagement, metaservices erp crm, computer systems design and related services, finance, information technology & services, enterprise software, enterprises, financial services",'+49 721 781670,"Apache, LiveZilla, Mobile Friendly, Android, Remote, Micro, Centro, Microsoft 365, Azure Analysis Services, Microsoft Windows Server 2000, Azure Active Directory B2C, Akamai CDN Solutions, Infoblox DHCP, Microsoft Advanced Group Policy Management, Microsoft Exchange Online","","","","","","",69c281c26ce8cd0001af0e17,7375,54151,"Entdecke die innovativen IT-Lösungen der 3iMedia GmbH. + +Als Systemhaus für Informations- und Telekommunikationstechnologie (ITK) machen wir deine Kommunikation lebendig. + +- KI-Lösungen +- Telekommunikation +- Netzwerktechnik +- Softwareentwicklung",1995,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69ac74f8836387000104d173/picture,"","","","","","","","","" +Infosim®,Infosim®,Cold,"",88,information technology & services,jan@pandaloop.de,http://www.infosim.net,http://www.linkedin.com/company/infosim,https://www.facebook.com/infosimhq/,https://twitter.com/infosimdotcom,4 Landsteinerstrasse,Wuerzburg,Bavaria,Germany,97074,"4 Landsteinerstrasse, Wuerzburg, Bavaria, Germany, 97074","network configuration amp change management, end of life, end of support, dynamic rules generation, research innovation, vulnerability, service assurance, customer domain management, service fulfillment, software as a service, research amp innovation, unified network services management, serviceoriented architecture, internet of things, application monitoring, services management, network configuration change management, network management, unified network amp services management, it services & it consulting, telecommunications, energy & utilities, custom software development, it consulting, stablenet, services, circular value chain, consulting, configuration management, multi-vendor network automation, proactive network monitoring, fault management, cloud-based network management, ai-driven network management, business intelligence, network discovery, information technology, erp solutions, performance monitoring, manufacturing, automation, graph-based solutions, computer systems design and related services, b2b, it solutions, sustainable plastics solutions, vendor-neutral network management, saas, computer software, information technology & services, management consulting, analytics, mechanical or industrial engineering",'+49 931 20592200,"Outlook, Microsoft Office 365, Ontraport, WordPress.org, Mobile Friendly, Adobe Media Optimizer, Linkedin Marketing Solutions, Bing Ads, reCAPTCHA, YouTube, Typekit, Vimeo, Google Font API, Nginx, Cedexis Radar, Google Tag Manager, Simpli.fi, DoubleClick, Remote, Ansible, Docker, .NET","",Merger / Acquisition,0,2023-11-01,10000000,"",69c281c26ce8cd0001af0e18,3571,54151,"Infosim® is a German software company founded in 2003, originating from the University of Würzburg. With headquarters in Würzburg and additional offices in Austin, Texas, and Singapore, the company specializes in vendor-independent network and service management solutions. It has established itself as a global provider of automated Service Fulfillment and Service Assurance solutions for the IT sector, focusing on customer-centric development and high-quality software. + +The core product of Infosim® is StableNet®, a comprehensive network and service management platform designed for telecommunications and enterprise customers. This platform includes features for discovery and inventory, configuration and change management, fault and root cause analysis, performance management, and service quality optimization. The company also offers individual software development, consulting services, and StableNet® Managed Services. Infosim® operates as part of the Infosim® Group, which includes the subsidiary Anaptis and the startup praqtics, expanding its portfolio in ERP solutions and circular economy tools.",2003,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69a47aa5dab2560001adf2fd/picture,"","","","","","","","","" +sortimat technology GmbH & Co.,sortimat technology,Cold,"",59,mechanical or industrial engineering,jan@pandaloop.de,http://www.sortimat.com,http://www.linkedin.com/company/sortimat-technology-gmbh-&-co.,https://www.facebook.com/atscorporation,https://twitter.com/atscorporation,"",Winnenden,Baden-Wuerttemberg,Germany,71364,"Winnenden, Baden-Wuerttemberg, Germany, 71364","pharmaceutical automation, aseptic containment systems, sustainable manufacturing, food & beverage automation, engineering and design, energy, consulting, services, retail, industrial robotics, custom manufacturing, automation solutions, contract manufacturing, end-to-end solutions, automation product manufacturing, automation system design, primary and secondary packaging, automation system installation, automation service, food & beverage, life sciences, asset management, transportation, data analytics, custom factory automation, specialized manufacturing, production control, optical sorters, high-value automated systems, project management, b2b, inspection and packaging machines, linear blow molding machines, water purification solutions, supply chain automation, industrial machinery manufacturing, diagnostics automation, electronics, manufacturing, automation engineering, automation system maintenance, automation project management, global capabilities, energy automation, robotic systems, system integration, healthcare, industry-leading knowledge, risk management, consumer goods, process optimization, tube filling machines, process automation, reliable automation products, automation technology, x-ray inspection machines, medical device automation, global manufacturing, fluid dispensing systems, digital transformation, robotic palletizing, robotic automation, industrial automation, life sciences automation, food, mechanical or industrial engineering, consumers, productivity, computer hardware, hardware, health care, health, wellness & fitness, hospital & health care",'+49 519 6536500,"Salesforce, Mimecast, Pardot, Atlassian Cloud, Oracle Commerce Cloud, React, SuccessFactors (SAP), Wordpress VIP, Slack, Hubspot, Salesforce Live Agent, Facebook Custom Audiences, Linkedin Widget, YouTube, Facebook Widget, WordPress.org, New Relic, Google Dynamic Remarketing, Google Analytics, Linkedin Login, Google Font API, DoubleClick, Bootstrap Framework, DoubleClick Conversion, Nginx, Mobile Friendly, Google Tag Manager, reCAPTCHA, Typekit, Facebook Login (Connect), Remote","","","","",5670000,"",69c281c26ce8cd0001af0e16,7380,33324,"sortimat technology GmbH & Co. KG is a German company located in Winnenden, specializing in industrial automation and production systems for the medical, pharmaceutical, and cosmetics industries. The company develops precision machine parts and assembly systems, focusing on complete production lines for packaging, assembly, and logistics. + +sortimat offers a variety of machines and systems, including equipment for sorting, erecting, and feeding packaging, as well as machines for assembling components like dosing pumps and syringes. Their product range also includes filling and sealing equipment, palletizing solutions, and conveying and storage systems. The company is known for its high-precision automation solutions, which are essential in regulated industries. They have international shipping capabilities, including exports to partners in the U.S.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66b04acc7ecff20001f6bfb2/picture,"","","","","","","","","" +The Relevance Group,The Relevance Group,Cold,"",31,management consulting,jan@pandaloop.de,http://www.therelevance.group,http://www.linkedin.com/company/therelevancegroup,"","",1A Gorch-Fock-Wall,Hamburg,Hamburg,Germany,20354,"1A Gorch-Fock-Wall, Hamburg, Hamburg, Germany, 20354","data analytics, data driven business, customer relevance, investment, marketing technology, customer centricity, business consulting & services, consulting, data-driven marketing, market research, data orchestration, customer lifetime value, customer profiling, campaign optimization, information technology and services, data science, ai targeting, real-time data integration, campaign automation, business growth, external data integration, market & consumer insights, personalization engines, data architecture design, channel optimization, data platforms, b2b, behavioral insights, advanced analytics, management consulting services, b2c, business intelligence, e-commerce, personalized campaigns, marketing automation, information technology, customer data platforms, business consulting, end-to-end approach, customer journey management, predictive modeling, retail, d2c, ai, customer experience, predictive analytics, services, insights & analytics, marketing and advertising, digital transformation, growth activation, data strategy & infrastructure, data clean rooms, customer segmentation, management consulting, information technology & services, analytics, consumer internet, consumers, internet, marketing & advertising, saas, computer software, enterprise software, enterprises",'+49 40 471134830,"Outlook, Mobile Friendly, WordPress.org, Apache, Google Tag Manager, Personio, Zeplin, Siemens SIMOCODE, Act!, DATEV Accounting, Pleo, HasOffers, Facebook Conversion Tracking, CEMAR, Microsoft PowerPoint, Looker Studio, PowerBI Tiles, Adjust, AppsFlyer, Clari, Adverity, Google Sheets, .NET, Angular, Aryson MySQL to MSSQL Converter, NUnit, Cypress, SQL, Python, Braze, Hubspot, Meta Ads Manager, MoEngage, TikTok, Google Analytics, Adobe Analytics, Linkedin Marketing Solutions, Salesforce CRM Analytics, YouTube, Pinterest, AFAS, Tor, Google Play, LEAP, Microsoft Excel","",Debt Financing,0,2025-01-01,"","",69c281c26ce8cd0001af0e1c,7375,54161,"Relevant Group is a design-focused real estate development company based in Los Angeles, California. Founded in 2007, it specializes in creating distinctive hospitality, real estate, and lifestyle destinations. The company emphasizes revitalizing urban neighborhoods through high-quality developments, with a portfolio exceeding $1 billion, including historic properties in Hollywood and Downtown Los Angeles. + +The company offers a comprehensive range of real estate development services, including hospitality development and management, restaurant and nightlife venue creation, and residential development. Relevant Group has completed or is developing 12 hotel projects, operates 12 dining and nightlife venues, and has secured 5 multi-family residential projects totaling around 1,400 units. Their integrated approach allows them to manage multiple stages of the development process, supported by a workforce of approximately 500 employees.",2022,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67350e60195c7500019a12eb/picture,"","","","","","","","","" +Synnotech AG,Synnotech AG,Cold,"",14,information technology & services,jan@pandaloop.de,http://www.synnotech.de,http://www.linkedin.com/company/synnotech-ag,https://www.facebook.com/synnotech/,"",2A Hermann-Koehl-Strasse,Regensburg,Bavaria,Germany,93049,"2A Hermann-Koehl-Strasse, Regensburg, Bavaria, Germany, 93049","net, individualsoftware, xaml, oracle, wpf, machine learning, smartlop, prozessdatenassessment, c, kiai, wertschoepfungspotenzial, regensburg, typescript, aufgabenmanagement, prozessdaten, prozessaudit, it services & it consulting, custom software, prozessdaten-assessment, tailored software projects, deep learning, digital transformation, data management, business intelligence, künstliche intelligenz, software development, ai process assessment, digital strategy, consulting, artificial intelligence, application development, automation, data analytics, customer experience, data security, sustainable digital solutions, maßgeschneiderte softwarelösungen, big data, computer systems design and related services, b2b, cloud computing, enterprise software, ml, software engineering, ai, system integration, digitale transformation, process optimization, information technology and services, it consulting, business process optimization, natural language processing, technology consulting, services, value creation through ai, business consulting, information technology & services, analytics, marketing, marketing & advertising, app development, apps, computer & network security, enterprises, computer software, management consulting",'+49 941 2978830,"WordPress.org, Apache, Ubuntu, Mobile Friendly, React Native, Android, Node.js, Deel, Remote, AI","","","","","","",69c281c26ce8cd0001af0e1f,7375,54151,"Seit 18 Jahren entwickelt SYNNOTECH hochwertige, maßgeschneiderte Anwendungssoftware für mittelständische und große Unternehmen aus allen Branchen. Wir sind immer dann gefragt, wenn eine Standardsoftware nicht ausreicht.",2000,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e92d2ef726440001486eae/picture,"","","","","","","","","" +Intero Consulting,Intero Consulting,Cold,"",72,management consulting,jan@pandaloop.de,http://www.intero-consulting.de,http://www.linkedin.com/company/intero-consulting,"",https://twitter.com/interoconsult,30 Arabellastrasse,Munich,Bavaria,Germany,81925,"30 Arabellastrasse, Munich, Bavaria, Germany, 81925","insurance, cost optimization, consulting, projektmanagement, pmo, strategy, kostensteuerung, unternehmensberatung, telecommunication, transformation, it management, digital transformation, software asset management, change management, it transfer, process optimization, agile methodology, operations, it steuerung, procurement, scrum, banking, compliance, software cost optimization, itsteuerung, business consulting & services, asset management digitalisierung, it-finanzmanagement, compliance-beratung, managementberatung, information technology & services, threat modeling, generative ai finanzsektor, telekommunikation, dora-compliance, cloud cost management, banken, it-steuerung, finops, data security, tco dashboard, b2b, künstliche intelligenz, grc, data management, automation, innovation, technology consulting, it infrastructure, cybersecurity, eu ai act, cloud computing, kostenoptimierung, digitalisierung, financial services, data analytics, it-management, it-controlling, data governance, tokenisierung, saas-management, it outsourcing, order2cash, telecommunications, ai, business transformation, it-kostenmanagement, automatisierung, risk management, einkaufsoptimierung, it-sicherheitsmanagement, cloud, management consulting, it-outsourcing, regulatory compliance, cloud-strategie, platform economy banking, management consulting services, governance risk & compliance, asset management, einkauf, finance, transportation & logistics, computer & network security, enterprise software, enterprises, computer software, outsourcing/offshoring",'+49 89 27370140,"Route 53, MailJet, Outlook, Amazon AWS, VueJS, OneTrust, Mobile Friendly, Nginx","","","","","","",69c281c26ce8cd0001af0e09,8742,54161,"Intero Consulting GmbH is a management consulting firm based in Munich, founded in 2005. The company specializes in providing practical and sustainable solutions for digital transformation, procurement optimization, compliance, cost management, and IT governance. With a focus on long-term client success, Intero primarily serves DAX40 companies and small to medium-sized enterprises (SMEs). + +The firm employs around 67 people and generates approximately $2 million in annual revenue. Intero Consulting emphasizes a value-driven philosophy, aiming to bridge the gap between theoretical concepts and practical implementation. Their approach combines strategic expertise with hands-on implementation, ensuring that solutions are effective in practice. Intero has been recognized among Germany's top 10 medium-sized management consultancies for its expertise and customer focus.",2005,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6713c59141817900016eb5e9/picture,"","","","","","","","","" +M&L AG - Unternehmensberatung,M&L AG,Cold,"",50,management consulting,jan@pandaloop.de,http://www.mlconsult.com,http://www.linkedin.com/company/mundlag,"","",122 Schwarzwaldstrasse,Frankfurt,Hesse,Germany,60528,"122 Schwarzwaldstrasse, Frankfurt, Hesse, Germany, 60528","smart data solution, big data, artificial intelligence, kuenstliche intelligenz, itberatung, managementsupport, projektmanagement, geomarketing, retailmanagement, training, outsourcing, informationssysteme, innovation, sso, top consultant, berater des jahres, frankfurt am main, dashboards, iiot, innovationsmanagement, business consulting & services, enterprise software, enterprises, computer software, information technology & services, b2b, management consulting","","Outlook, Microsoft Office 365, Jira, Atlassian Confluence, Slack, Apache, Mobile Friendly","","","","","","",69c281c26ce8cd0001af0e0a,"","","As a strategic management consultancy, M&L AG analyses data and markets for your company's success. Our expertise: Big Data, Smart Data, Artificial Intelligence (AI)",1993,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66fe2c0b2a5db7000121ac4c/picture,"","","","","","","","","" +Dr. A. Safaric Consulting GmbH,Dr. A. Safaric Consulting,Cold,"",18,management consulting,jan@pandaloop.de,http://www.safaric-consulting.com,http://www.linkedin.com/company/dr-a-safaric-consulting-gmbh,"","",371 Alteburger Strasse,Cologne,North Rhine-Westphalia,Germany,50968,"371 Alteburger Strasse, Cologne, North Rhine-Westphalia, Germany, 50968","business consulting & services, end-to-end process modeling, category management, it infrastructure, consulting, devops, retail, e-commerce, services, information technology and services, digital business models in retail, omni-channel business model, artificial intelligence, ai in retail, ai @ aktionsgeschäft, it architecture, data analytics, advanced analytics, enterprise software, ai-powered reporting, project management, ai-driven category management, b2b, it modernization, ki @ sortimentsmanagement, ai @ sortimentsmanagement, cloud computing, ai solutions, post-merger integration, change management, disruptive innovation in commerce, it governance, management consulting, process optimization, digitalization, process automation, digital strategy, it strategy, agile it, ai @ stammdatenmanagement, management consulting services, business transformation, process management, digital transformation, robotic process automation, data management, it health check, non-profit, distribution, information technology & services, consumer internet, consumers, internet, information architecture, enterprises, computer software, productivity, marketing, marketing & advertising, nonprofit organization management",'+49 1516 1058279,"Outlook, Microsoft Office 365, reCAPTCHA, Mobile Friendly, Vimeo, Google Tag Manager, Apache, Shutterstock, WordPress.org, Remote, AI, Lytics, SAP S/4HANA","","","","","","",69c281c26ce8cd0001af0e0d,8742,54161,"Dr. A. Safaric Consulting GmbH is a management consulting firm based in Cologne, Germany. The company specializes in strategy and management consulting for the retail, consumer goods, and digitalization sectors. With a team of 11-50 employees, it promotes an entrepreneurial mindset and emphasizes quick decision-making and short-term measures to meet client needs. + +Led by Dr. Alexander Safaric, who has over 20 years of experience, the firm fosters a performance-based culture that values individual merit and diversity. It offers regular feedback sessions, external coaching, and networking opportunities, particularly for female employees. The firm is committed to equal pay and partnership-based collaboration with clients. Dr. A. Safaric Consulting GmbH is also a signatory to the Women's Empowerment Principles, reflecting its dedication to promoting diversity and inclusion in the workplace.",2018,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670f79cb672b270001797e8d/picture,"","","","","","","","","" +Thought Leader Systems,Thought Leader,Cold,"",12,management consulting,jan@pandaloop.de,http://www.thoughtleadersystems.com,http://www.linkedin.com/company/thought-leader-systems,"","","",Frankfurt,Hesse,Germany,"","Frankfurt, Hesse, Germany","marketing, marketing automation, sales consulting, crm systems, thought leadership, customer success management, data analytics, business strategy, business consulting & services, digital customer acquisition, microsoft dynamics crm, adobe experience platform, active sourcing, finanzdienstleistungen, business consulting, industrie, customer engagement, customer experience cloud, inbound marketing, tourismus, dealhub cpq, oracle eloqua, tealium audiencestream, gesundheitswesen, customer advocacy, retail, pharma, content creation, multi-channel-vertrieb, brand strategy, business services, oracle crm, customer loyalty, zoho crm, thought leadership marketing, hightech, consulting, services, buyer persona, crm and cpq systems, e-commerce software, customer behavior, inbound recruiting, digital marketing strategy, thought leadership strategy, content marketing, crm systeme, information technology & services, b2b, handel, public relations, it system implementation, customer data platform, inbound sales, change leadership, user experience, e-commerce, customer journey, marketing & sales alignment, customer intelligence, hubspot sales hub, adobe campaign, change management in companies, d2c, social media marketing, oracle unity, customer retention, agile marketing, management consulting services, digital transformation, management consulting, customer relationship management, sap sales cloud, digital strategy, lead generation, saas, healthcare, finance, consumer products & retail, marketing & advertising, computer software, enterprise software, enterprises, financial services, ux, consumer internet, consumers, internet, crm, sales, health care, health, wellness & fitness, hospital & health care",'+49 40 97415000,"Cloudflare DNS, CloudFlare Hosting, Slack, Hubspot, Salesforce, Shopify, Google Maps, Google Maps (Non Paid Users), WordPress.org, Google Tag Manager, Facebook Login (Connect), Facebook Custom Audiences, Facebook Widget, Yahoo Analytics, Mobile Friendly, Typekit, Google Font API, Gravity Forms, YouTube, Yelp, reCAPTCHA","","","","","","",69c281c26ce8cd0001af0e14,8742,54161,"Thought Leader Systems GmbH is a management consultancy firm based in Hattersheim am Main, Germany, founded in 2015 by Britta Schlömer. The company specializes in helping businesses and individuals achieve long-term market leadership through strategic consulting, digital transformation, and inbound marketing. As a HubSpot partner, it effectively utilizes the platform to generate marketing leads and supports clients in developing new business models and growth strategies. + +The firm offers a comprehensive range of services, including management consulting, inbound marketing, business strategy, and integrated solutions. It focuses on data-driven strategies to enhance market success and targets mid-sized companies in traditional sectors like automotive and healthcare. With a team of 7-31 employees, Thought Leader Systems is committed to expanding its reach across Europe and has contributed to the field with resources such as Britta Schlömer's book, *Inbound! The manual for modern marketing*.",2015,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67ed60801a08c60001c71858/picture,"","","","","","","","","" +Enreach DE,Enreach DE,Cold,"",98,information technology & services,jan@pandaloop.de,http://www.enreach.de,http://www.linkedin.com/company/enreachde,https://facebook.com/swyxinternational,https://twitter.com/Swyx_EN,1 Robert-Bosch-Strasse,Bochum,Nordrhein-Westfalen,Germany,44803,"1 Robert-Bosch-Strasse, Bochum, Nordrhein-Westfalen, Germany, 44803","ippbx, cloud contact center, collaboration, voiceoverip, telefonanlagen, cloud, unified communications, software development, remote support, speech recognition, real-time call analytics, webinar, call queues, ai chatbot integration, automated call distribution, ki-gestützte kundenservice, warteschlangenmanagement, whatsapp integration, smart voicemail, smart voicemails, customer engagement, flexible betriebsmodelle, ki-tools, automated appointment scheduling, call transfer, mobilfunkintegration, mobile apps, real-time analytics, multi-language support, erp integration, multi-channel customer engagement, data protection, information technology and services, automated scheduling, presence management, telecommunications, ai chatbots, smart ivr, flexible deployment, business services, multi-channel-kommunikation, presence status, call recording, multi-device support, remote work support, telefonanlagen für kmu, digital customer interaction, unified messaging, services, support per fernwartung, webchat, webrtc, hybrid cloud telephony, crm-integration, contact widget, call management, ki-assistent shomi, mobile integration, ai-driven customer insights, sip provider compatibility, voip, automated call routing, ai customer support, ai contact center, multi-channel communication, ai voicebots, cloud-telefonanlage, whatsapp business, ki-marktplatz, data security, smart apps, ai marketplace, integration with microsoft teams, business telephony, ai customer service, präsenzanzeige, business continuity, sip-trunk, business communication platform, anrufmanagement, contact center solutions, crm integration, cloud-based phone system, dynamic call distribution, auto attendant, industry-specific communication solutions, crm connectivity, voice-to-text voicemail, service bots for customer support, queue management, ai call screening, call routing, interactive voice response, smart applications, contact center ai, microsoft teams integration, cloud communication, smb communication solutions, cloud pbx, multi-tenant cloud solutions, cloud-kommunikation, webchat integration, automatisierte terminbuchungen, digitale kommunikation, b2b, microsoft teams phone system, mobile app support, kontakt-widget, custom ai bot development, ai-powered contact center, multi-language voice recognition, speech analytics, intelligente anrufverteilung, webchat & whatsapp bots, distribution, transportation & logistics, information technology & services, artificial intelligence, computer & network security",'+49 231 47770,"Cloudflare DNS, SendInBlue, Outlook, Microsoft Office 365, Zendesk, Rackspace MailGun, Sendgrid, Hubspot, VueJS, Jira, Atlassian Confluence, React Redux, Flutter, Slack, Mobile Friendly, YouTube, Nginx, Google Tag Manager, Google Maps, reCAPTCHA, Facebook Login (Connect), Google AdWords Conversion, DoubleClick, Linkedin Marketing Solutions, Facebook Custom Audiences, DoubleClick Conversion, Google Dynamic Remarketing, Google Analytics, Google AdSense, Facebook Widget, Google Font API, Vimeo, Microsoft Windows Server 2012","",Merger / Acquisition,0,2018-07-01,30000000,"",69c281c26ce8cd0001af0e1b,7375,517,"Enreach DE is the German division of Enreach, a prominent European provider of unified communications (UC) solutions. With over 25 years of experience, the company has evolved from its origins as Swyx, focusing on replacing traditional phone systems with IP-based software. Enreach DE serves more than 2 million users across Europe, offering both cloud and on-premises communication platforms. + +The company provides a comprehensive suite of communication solutions tailored for medium to large enterprises. Its offerings include unified communications features such as telephony, chat, video calls, and intelligent call management. Enreach DE also integrates AI-powered tools, including personal assistants and automated chatbots, to enhance customer interactions. Additionally, it offers a cloud contact center with real-time monitoring capabilities and various integrations with popular platforms like Microsoft Teams and CRM systems. Enreach DE emphasizes collaboration and innovation, supporting a wide range of customers from small businesses to multinational corporations through a robust partner network.",1999,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6728020d1b91e200018c5874/picture,Enreach (enreach.com),5e57848b7defa50001b60db6,"","","","","","","" +IT-Improvement Deutschland GmbH,IT-Improvement Deutschland,Cold,"",17,information technology & services,jan@pandaloop.de,http://www.it-improvement.com,http://www.linkedin.com/company/it-improvement,"","",Allensteiner Ring,Duisburg,North Rhine-Westphalia,Germany,47279,"Allensteiner Ring, Duisburg, North Rhine-Westphalia, Germany, 47279","digitale transformation, softwareentwicklung, azure, cloud, sharepoint, modern workplace, bottechnologie, backup und recovery, devops, logistik, webentwicklung, consulting, power bi, datensicherheit, office 365, microsoft, microsoft lizensierung, itinfrastruktur, teams, prozessberatung, windows 365, improvement programme, datenschutz, microsoft 365, it services & it consulting, services, security services, azure infrastructure, security, digital business enablement, data & ai, information technology & services, cloud computing, smart business solutions, b2b, software development, data visualization, apps & workflows, business automation, azure services, sharepoint services, digital workplace transformation, cloud security, data security, process automation, cyber resilience, hybrid work solutions, cloud security compliance, digital workplace, cloud solutions, remote work solutions, computer systems design and related services, data management, modern work, business intelligence, teams collaboration, cloud infrastructure, it security, workflow automation, digital apps, digital transformation, change management, cybersecurity, employee digital adoption, information technology and services, it consulting, it support, managed services, microsoft technologies, business consulting, data analytics, distribution, transportation & logistics, enterprise software, enterprises, computer software, computer & network security, analytics, internet infrastructure, internet, management consulting","","Outlook, Microsoft Azure Hosting, Microsoft Application Insights, Microsoft Power BI, Active Campaign","","","","","","",69c281c26ce8cd0001af0e1e,7375,54151,"Bei IT-Improvement sind wir von Kopf bis zur Zehenspitze auf digitale Technologien in der Cloud eingestellt. Als IT-Beratungsunternehmen helfen wir Unternehmen, nicht nur ihre Prozesse zu digitalisieren und in die Cloud zu bringen, sondern auch digital zu denken. Unser Motto: Run your business smarter begleitet uns jeden Tag bei allen Kunden. Und wir werden dabei auch jeden Tag ein bisschen schlauer. Was Sie bei uns finden: + +100% Cloud - weil wir davon überzeugt sind, dass die Cloud für sämtliche Unternehmen vom kleinen Mittelständler um die Ecke bis hin zum Konzern nur Vorteile bietet. + +100% Microsoft - aus Überzeugung! Microsoft bietet für unsere KundInnen sämtliche Technologien und Werkzeuge für digitales Business am Modern Workplace. + +100% New Work - weil unsere Arbeit Sinn macht und Unternehmen nach vorne bringen soll. Und vor allem weil MitarbeiterInnen das wertvollste im Unternehmen sind. Wir sind davon überzeugt, dass jeder Mensch sich nur in einer modernen, offenen und respektvollen Umgebung wirklich entfalten und sogar an manchen Tagen über sich hinaus wachsen kann. + +100% Team - weil partnerschaftlicher Umgang sowohl im Unternehmen wie mit KundInnen und GeschäftspartnerInnen die besten Ergebnisse bringt. + +Mit welchem Kompetenzen wir Ihr Business unterstützen: + +☁️Cloud-Infrastruktur inklusive Betreuung + +☁️ Modern Workplace mit Microsoft 365 inklusive Teams und Telefonie und Windows 365. + +☁️ IT-Security von A bis Z + +☁️ Digital & App Innovations von der Individualentwicklung bis hin zur Power Plattform + +Lassen Sie uns über Ihr Business sprechen, wir freuen uns auf Sie!",2007,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/682ec28df333030001ba7dd1/picture,"","","","","","","","","" +CINTELLIC Consulting Group,CINTELLIC Consulting Group,Cold,"",45,management consulting,jan@pandaloop.de,http://www.cintellic.com,http://www.linkedin.com/company/cintellic,"",https://twitter.com/Cintellic,16 Remigiusstrasse,Bonn,North Rhine-Westphalia,Germany,53111,"16 Remigiusstrasse, Bonn, North Rhine-Westphalia, Germany, 53111","customer analytics, real time decision management, business intelligence, data science, marketing optimierung, marketing automation, omnichannelmarketing, customer experience, cem, customer loyalty, it, kampagnenmanagement, marketing operations management, crm, customer relationship management, business analytics, kuenstliche intelligenz, business consulting & services, b2b, information technology and services, crm strategie, partner adobe, partner sas, bi reporting, dynamic pricing, management consulting, data lakehouse, data analytics, ki assessment, next best offer, e-commerce, next best action (nba), marketing automation toolbox, produktsortierung, customer experience management, cloud migration, omni channel marketing, software development, cloud data lakehouse, business intelligence strategy, data science explorative datenanalyse, permission marketing, data quality management, cloud data management, trigger based marketing, prognosemodelle, partner microsoft, data warehouse, data science anwendungen, data lake, customer analytics beratung, customer value, customer data platform, scoringmodell, web mining, marketing mix modeling, retail, customer journey, natural language processing, cloud analytics, fraud prevention, real time marketing, cloud computing, cloud middleware, cloud management, kundensegmentierung, data governance, recommender systems, generative ki, a/b-testing, services, management consulting services, text mining, campaign reporting, customer data platform software-auswahl, partner sap, cloud readiness, attributionsmodellierung, consulting, churn prevention, data management, customer feedback system, künstliche intelligenz, geomarketing, data management beratung, metadatenmanagement, data-driven company, predictive analytics, data security, finance, distribution, analytics, information technology & services, marketing & advertising, saas, computer software, enterprise software, enterprises, sales, consumer internet, consumers, internet, artificial intelligence, computer & network security, financial services",'+49 22 892651820,"Outlook, Microsoft Office 365, Atlassian Cloud, Slack, Google Dynamic Remarketing, DoubleClick, Vimeo, Nginx, WordPress.org, Apache, reCAPTCHA, Mobile Friendly, DoubleClick Conversion, Google Analytics, Google Tag Manager, Braze, Adobe, Hubspot, PowerBI Tiles, Python, R, SAS Enterprise Guide, Spark, SQL, Tableau","","","","","","",69c281bd6ce8cd0001af0891,8742,54161,"CINTELLIC Consulting Group is a German management consultancy firm based in Bonn, with additional offices in Frankfurt am Main and München. Founded over 10 years ago, the company specializes in digital customer management, CRM, customer experience management, marketing automation, business intelligence, data management, data science, and cloud solutions. With a team of approximately 50-70 employees, CINTELLIC generates an estimated annual revenue of $13.1 to $14.8 million. + +The firm offers comprehensive services that range from strategy development to technical implementation. CINTELLIC focuses on delivering measurable results through hands-on implementation of concepts, helping clients achieve growth, increased revenue, and improved profitability. They cater to medium-sized companies and larger corporations, providing tailored solutions that integrate data processing with modern technologies to enhance sales and marketing processes. CINTELLIC has successfully completed hundreds of projects across various industries, establishing itself as a leader in CRM and digital customer management consulting in Germany.",2010,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6907f9440b7ab80001494be0/picture,"","","","","","","","","" +Vision11,Vision11,Cold,"",68,information technology & services,jan@pandaloop.de,http://www.visioneleven.com,http://www.linkedin.com/company/vision11-gmbh,https://facebook.com/vision11gmbh,https://twitter.com/vision11_gmbh,33 Pettenkoferstrasse,Muenchen,Bayern,Germany,80336,"33 Pettenkoferstrasse, Muenchen, Bayern, Germany, 80336","online integration, business service, marketing services, customer experience, loyalty management, business consulting, business solutions, business analytics, sap crm, kampagnen management, crm consulting, marketing automation, salesforce, sap cx, it services & it consulting, b2b, marketing & advertising, management consulting, information technology & services, saas, computer software, enterprise software, enterprises",'+49 89 416152410,"Salesforce, Outlook, Pardot, Atlassian Cloud, Slack, Mobile Friendly, Hotjar, WordPress.org, Vimeo, Nginx, Google Font API, Google Tag Manager, Salesforce Marketing Cloud, Hubspot, HubSpot Marketing Hub, HubSpot Sales Hub, HubSpot Service Hub, HTML Pro, CSS, Javascript","","","","","","",69c281bd6ce8cd0001af0893,"","","Vision11 GmbH is a consulting and service company focused on enhancing Customer Experience (CX) and Customer Relationship Management (CRM). They provide a range of digital, data-driven, and automated solutions to help clients create positive customer interactions. Their approach, known as Digital Experience Services (DXS), integrates CX Consulting, CX Technologies, and CX Services to support clients throughout the customer journey. + +The company offers various services, including strategy development for digital experiences, implementation of marketing and sales platforms, and managed CRM operations. They also provide UX design, content management strategies, and quality assurance for digital rollouts. Vision11 emphasizes the importance of a CRM mindset and aims to streamline processes by uniting all necessary competencies. Additionally, they share insights through the Vision11 Academy, webinars, and a blog focused on customer centricity and data-driven CRM.",2011,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67861584cce5690001da2aad/picture,"","","","","","","","","" +CK7 GmbH,CK7,Cold,"",12,information technology & services,jan@pandaloop.de,http://www.ck7.de,http://www.linkedin.com/company/ck7-gmbh,"","",171 Friedrichstrasse,Berlin,Berlin,Germany,10117,"171 Friedrichstrasse, Berlin, Berlin, Germany, 10117","prozessberatungplanung, entwicklung addons, itsm, managed services, consulting, network monitoring, endpoint management, service management, help desk, it services & it consulting, password security, it automatisierung, it management software, it monitoring, it network management, it security patch management, transportation & logistics, inventory management, it-service-management, software deployment, remote management, it service automation, ck7 service & support, it asset relationship mapping, it service desk automation, information technology and services, b2b, it security, it automation tools, asset management, it asset tracking, it asset discovery, it infrastructure management, it infrastructure automation, it network asset management, helpdesk system, it support software, it change management, it system monitoring, distribution, user experience, digital transformation, prozessdigitalisierung, helpdesk-lösungen, client management, bmc helix discovery, services, helpdesk ticketing system, it compliance, prtg network monitor, it asset management, it system performance monitoring, computer systems design and related services, bmc track-it!, netwrix password secure, it asset inventory, information technology & services, computer & network security, ux",'+49 339 17392310,"Mobile Friendly, WordPress.org, Google Tag Manager, Vimeo, Adobe Media Optimizer, Bootstrap Framework, Linkedin Marketing Solutions, Apache, reCAPTCHA, Cedexis Radar, Remote, AI","","","","","","",69c281bd6ce8cd0001af089a,7375,54151,"CK7 GmbH is an IT management and software solutions provider based in Germany, specializing in process digitization and enterprise technology asset management. With over fifteen years of experience, CK7 serves more than 500 customers across Germany, Austria, and Switzerland. The company operates as a Managed Service Provider (MSP) and offers independent IT consulting for organizations managing complex technology environments. + +CK7 provides a range of services, including IT infrastructure management consulting, professional technical support, and employee training programs. The company also offers software certifications through licensed vendors. Its product offerings include IT management software solutions such as BMC Client Management, FootPrints, and various monitoring and automation tools, along with custom software solutions tailored to specific IT network needs. CK7 focuses on supporting enterprises undergoing growth or transformation, helping IT departments effectively manage and maintain their technology infrastructure.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6712146f4c9fc400017eb83c/picture,"","","","","","","","","" +DVG Operations GmbH,DVG Operations,Cold,"",20,information technology & services,jan@pandaloop.de,http://www.digitalvision-group.com,http://www.linkedin.com/company/dvg-operations,"","",20 Hilpertstrasse,Darmstadt,Hessen,Germany,64295,"20 Hilpertstrasse, Darmstadt, Hessen, Germany, 64295","service management, itoperation, iot, application services, desktop services, smart services, managed services, itconsulting, cloud services, it services & it consulting, iaas, end-to-end-verantwortung, digitalisierung, manufacturing, datensicherheit, branchenexpertise healthcare, consulting, it-support, hybrid cloud, services, cloud migration, it-infrastrukturmanagement, itil, maßgeschneiderte lösungen, disaster recovery, automatisierte tests, computer systems design and related services, it-beratung, it-sicherheit, software audit, cloud computing, qualitätsmanagement, it-strategie, cloud & application services, agile methoden, it-services, softwareentwicklung, devops, automotive, saas, paas, iso 9001, private cloud, healthcare it, b2b, it-prozesse, scrum, containerisierung, it-management, software development, it-architektur, it-infrastruktur, cybersecurity, edge cloud, information technology and services, healthcare, iso/iec 27001, telecommunications, automatisierung, ci/cd, it-optimierung, it-transformation, enterprise software, enterprises, computer software, information technology & services, mechanical or industrial engineering, health care, health, wellness & fitness, hospital & health care",'+49 800 4466100,"Outlook, Slack, Apache, WordPress.org, Mobile Friendly, Remote, Circle","","","","","","",69c281bd6ce8cd0001af0888,7375,54151,"DIE FRAGE ALLER FRAGEN + +Warum kompliziert, wenn es auch ganz easy geht? + +Falls Sie sich diese Frage manchmal selbst stellen, sind Sie bei DVG genau richtig. Als Teil der DIGITAL VISION GROUP haben wir uns spezialisiert, die Digitalisierung zu vereinfachen und sie mit smarten Tools und Lösungen auch in Ihrem Unternehmen möglich werden zu lassen. + +Dafür bieten wir Ihnen neben einer fundierten Strategieberatung eine Vielzahl smarter IT-Services, die Ihnen Ihr Business erleichtern und so nachhaltigen Mehrwert schaffen: von einzigartigen Managed Services bis hin zur End-to-End-Verantwortung für businesskritische Clouds und Plattformen. + +Damit sind wir von der DVG in einer immer vernetzter und komplexer werdenden Welt Ihr zuverlässiger und kompetenter Partner, der sich ganz auf Ihre Bedürfnisse und Wünsche fokussiert – und so für mehr Einfachheit bei Ihrem digitalen Change sorgt. Eben ganz nach unserem Motto + +SIMPLIFY YOUR DIGITAL WORLD! + +Impressum: + +DVG Operations GmbH +Hilpertstraße 20 +64295 Darmstadt +Germany + +Geschäftsführer: +Steffen Zulauf + +Kontakt: +Telefon: +49 (0) 800 44 66 100 +E-Mail: hello@dvg.services + +Handelsregistereintrag beim Amtsgericht Darmstadt: HRB 106810",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/683d63c58e0de70001ffe037/picture,"","","","","","","","","" +Futurelab,Futurelab,Cold,"",11,management consulting,jan@pandaloop.de,http://www.futurelab.net,http://www.linkedin.com/company/futurelab,https://www.facebook.com/pages/Futurelab/89000458534,https://www.twitter.com/Futurelab,66E Ganghoferstrasse,Munich,Bavaria,Germany,80339,"66E Ganghoferstrasse, Munich, Bavaria, Germany, 80339","innovation, value proposition design, nps, customer experience, net promoter score, customer strategy, cem, business consulting & services, professional services, customer experience roi, cx strategy, voc program, customer satisfaction metrics, voc, management consulting, customer engagement, b2b, customer insights, customer satisfaction, management consulting services, customer feedback collection, customer experience roadmap, customer experience innovation, customer experience maturity assessment, customer feedback, consulting, customer experience management, customer loyalty, business services, customer journey mapping, customer experience frameworks, customer experience improvement, services, professional training & coaching","","Outlook, MailChimp SPF, Microsoft Office 365, reCAPTCHA, Google Tag Manager, Nginx, WordPress.org, Mobile Friendly, AI","","","","",4147000,"",69c281bd6ce8cd0001af088f,8742,54161,"Futurelab is a leading customer experience consultancy based in Europe, established in 2003. The company specializes in customer centricity, helping clients effectively manage and enhance customer experiences and journeys. Futurelab acts as ""Customer Experience Architects,"" guiding clients through the entire process of designing, launching, and implementing customer experience programs. + +The consultancy combines research and practical strategies to develop customer-focused approaches. Their services include creating customer strategies, deriving insights from data, and designing improved products and services. Futurelab works across various industries, including automotive, financial services, telecom, lifestyle, and B2B, emphasizing profitability and actionable improvements. Their hands-on approach ensures that recommendations are practical and geared towards fostering customer-centric business cultures and enabling digital transformation.",2004,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6707b0bc7791a90001dca333/picture,"","","","","","","","","" +TeleSys Kommunikationstechnik GmbH,TeleSys Kommunikationstechnik,Cold,"",33,telecommunications,jan@pandaloop.de,http://www.telesys.de,http://www.linkedin.com/company/telesys-kommunikationstechnik-gmbh,https://www.facebook.com/telesys.de,https://twitter.com/TS_TeleSys,14 Industriering,Breitenguessbach,Bavaria,Germany,96149,"14 Industriering, Breitenguessbach, Bavaria, Germany, 96149","servicecenter software, softwareloesungen, netzwerktechnik, kiloesungen, telefonanlagen, integrationen, telecommunications, business communication, iso-zertifizierte rechenzentren, speech-text-analytics, services, herstellerunabhängige lösungen, customer experience, cybersecurity, computer systems design and related services, barrierefreie kommunikation, systemintegration, voice over ip, consulting, ms teams integration, cloud-telefonie, voip, software development, sip-trunk, government, microsoft teams, softwareentwicklung, netzwerksicherheit, voice- & chatbots, data protection, project management, kommunikationssysteme, netzwerk-analysen, contact center, webinare, live call translation, lichtrufsysteme, it-beratung, sip trunk, langfristige kundenbeziehungen, it-infrastruktur, cloud computing, managed services, it und telekommunikation, ki & chatbot, schulungen, ki-gestützte contact center, automatisierte geschäftsprozesse, information technology and services, unified communications, alarmserver, b2b, network security, remote work, managed service, cybersecurity consulting, it-support, healthcare, finance, non-profit, manufacturing, distribution, information technology & services, productivity, enterprise software, enterprises, computer software, health care, health, wellness & fitness, hospital & health care, financial services, nonprofit organization management, mechanical or industrial engineering",'+49 9544 9250,"Outlook, Microsoft Office 365, reCAPTCHA, Facebook Login (Connect), Facebook Custom Audiences, Apache, Google Tag Manager, Mobile Friendly, Facebook Widget, BugHerd, WordPress.org, AI","","","","","","",69c281bd6ce8cd0001af0896,7375,54151,"Wir sind TeleSys - communication for business Frankens größtes, herstellerunabhängiges Systemhaus. +Seit über 30 Jahren gestalten wir Kommunikation mit Leidenschaft. Als Experte für Telekommunikation und IT im B2B-Bereich sind wir Ihr Ansprechpartner für alle Kommunikationsthemen rund um die Themen Netzwerktechnik, KI-gestützte Kommunikation, Cloud-Telefonie, Contact Center & klassischer Telekommunikation.",1994,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/673f1459e2d6c500013827f6/picture,"","","","","","","","","" +Zirkel Technologies GmbH,Zirkel,Cold,"",64,information technology & services,jan@pandaloop.de,http://www.zirkeltech.com,http://www.linkedin.com/company/zirkeltech,"","",1 Taunustor,Frankfurt,Hesse,Germany,60310,"1 Taunustor, Frankfurt, Hesse, Germany, 60310","development support, iot, digital transformation, mobility solutions, 24x7 global l1, salesforce, agile, extended workbench, industry 40, legacy modernization, l2 l3 support, empathy coworking, expertise as a service, sap s4 hana, mittelstand ecosystem, open source frameworks, cloud devops, ai, dynamics 365, innovation, uix services, enterprise applications, sap shared services, data analytics, it services & it consulting, data science & analytics, business consulting, cloud computing, data management, iot device management, natural language processing, ai for healthcare data analysis, computer systems design and related services, containerization, construction and real estate, ai strategy and roadmap, finance and insurance, education technology, process optimization, blockchain security, ai for energy management, cloud infrastructure management, business process automation, industry solutions, iot security protocols, ai-powered business insights, saas, customer engagement, iot data integration, digital ecosystem, business intelligence, devops, business process optimization, agile software development, logistics, consulting, predictive maintenance in industry, iot development services, smart city solutions, performance optimization, logistics and transportation, ai for digital transformation, managed shared services, consulting services, edge computing, predictive maintenance, cloud and devops services, managed it services, cloud services, financial services, smart building solutions, ai for edtech platforms, data analytics and machine learning, manufacturing, b2b, e-commerce, sap s/4hana migration, enterprise software solutions, iot (internet of things), predictive analytics, connected industry 4.0 applications, software development, financial data analytics, computer vision, crm optimization, real-time data analytics, legacy system modernization, connected solutions, sap, ai-driven market analysis, ai for manufacturing, ai in finance and banking, information technology and services, continuous delivery, services, ai-enabled drone surveillance, ai for retail customer experience, automation, process automation tools, security and compliance, iot for logistics and supply chain, custom ai solutions, internet of things, data science, system integration, cybersecurity, ai (artificial intelligence), iot security, machine learning, application development, ai model management, big data, industry-specific digital solutions, retail, custom software engineering, bim software for construction, microservices architecture, analytics, healthcare, finance, education, distribution, consumer_products_retail, transportation_logistics, energy_utilities, construction_real_estate, information technology & services, management consulting, enterprise software, enterprises, computer software, artificial intelligence, e-learning, internet, education management, mechanical or industrial engineering, consumer internet, consumers, app development, apps, health care, health, wellness & fitness, hospital & health care",'+49 69 50504529,"Outlook, Microsoft Office 365, Slack, Google Font API, Sitelock, Mobile Friendly, SAP Analytics Cloud, Avaya, Acumatica","","","","","","",69c281bd6ce8cd0001af0883,7375,54151,"Zirkel Technologies GmbH is a German IT services company based in Frankfurt, founded in 2018. The company specializes in digital consulting and engineering, focusing on supporting mid-sized enterprises in their digital transformation efforts. With a team of 200-500 employees, Zirkel aims to enhance business efficiency by providing expertise that accelerates time-to-market and addresses IT challenges. + +Zirkel offers a wide range of services, including digital transformation solutions for platforms like SAP S/4 HANA and Salesforce, as well as product engineering and development for mobile applications. The company also provides managed services with 24/7 support, AI and data solutions, and expertise in agile methodologies and IoT. Zirkel is dedicated to understanding business workflows and delivering innovative, secure, and sustainable technology solutions tailored to the needs of small and medium-sized enterprises.",2018,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6825cb4532f5190001f7a528/picture,"","","","","","","","","" +best-blu consulting with energy GmbH,best-blu consulting with energy,Cold,"",29,information technology & services,jan@pandaloop.de,http://www.best-blu.de,http://www.linkedin.com/company/best-blu,https://facebook.com/677780878987230,https://twitter.com/best_blu_man,6 Anne-Conway-Strasse,Bremen,Bremen,Germany,28359,"6 Anne-Conway-Strasse, Bremen, Bremen, Germany, 28359","everythingasaservcice, softwareentwicklung, uc4, automation, automic, devops, bpm, agentic ai, sap signavio, service orchestration, infrastructure automation, business process automation, business process management, release automation, jobscheduling, erpautomation, process consulting, automation services, camunda, rzautomation, robotic process automation, uipath, it services & it consulting, innovation in business, it-beratung, process controlling, process digitization, automation consulting, automation platform integration, process standardization, sap signavio process mining, automatisierung, process automation reifegrad, cloud automation, process documentation, camunda 8 implementation, automation technologies, process automation in industry 4.0, workflow automation, process standardization strategies, services, business consulting, java software development, hybrid cloud automation, process monitoring tools, process reengineering, process management, uipath rpa, b2b, process governance frameworks, software development, prozessdigitalisierung, information technology and services, kundenprojekte, digital transformation, custom software development, automic automation, process modeling, process performance metrics, business efficiency, consulting, process performance management, intelligent process automation, computer systems design and related services, rpa, end-to-end process automation, process modeling tools, camunda bpm, process improvement, process lifecycle management, process automation for digital transformation, automation in business services, it solutions, best4automic, automic managed service, process optimization tools, automic v24 upgrade, process automation workshop, sap signavio bpm, process optimization, digitalisierung, process monitoring, process governance, automatisierungsprojekte, requests4automation, technologiepartner, prozessoptimierung, process optimization in sap, scalability solutions, managed services, technology integration, java-entwicklung, workflow design, process orchestration, process analysis, uipath agentic automation, process execution, information technology & services, management consulting",'+49 534 1853930,"Outlook, WordPress.org, Apache, Mobile Friendly, Shutterstock, Remote","","","","",96000,"",69c281bd6ce8cd0001af0885,7375,54151,"Wir automatisieren die Zukunft – mit Daten, KI und klarem Fokus auf Wirkung. +  +Wir sind Experten für Automation, Data & AI – mit dem Ziel, Unternehmen dabei zu unterstützen, Prozesse intelligenter, Entscheidungen datengetriebener und Geschäftsmodelle zukunftssicher zu machen. +  +Wir helfen Unternehmen in der Industrie, Energiewirtschaft, dem Öffentlichen sowie im Finanz Sektor, ihre Prozesse schneller zu gestalten - durch zielgerichtete Automatisierung, belastbare Dateninfrastrukturen und produktive KI-Lösungen. +  +Unsere Leistungen:
 +🔹 Prozessautomatisierung (von Agentic AI, RPA bis BPM intelligente Workflows) – für mehr Effizienz und weniger manuelle Aufwände. +🔹 Beratung & Enablement – wir helfen Teams, daten- und automatisierungsfähig zu werden – kulturell und technologisch. +  +Was uns auszeichnet:
 +🔹 Klare Ergebnisse statt Buzzwords +🔹 Technologiekompetenz gepaart mit Prozessverständnis +🔹 Skalierbare Lösungen mit echtem Business Impact +  +Ob Mittelstand oder Konzern – wir begleiten unsere Kunden von der Strategie bis zur Umsetzung. Mit messbarem Erfolg und einem klaren Blick auf das, was wirklich zählt. +  +➡️ Lust auf die nächsten Schritte in Richtung digitale Exzellenz? 
Let's connect. +  +Unser Standort ist im Technologiepark Bremen. +  +Member of BTC Group. BTC – Business Technology Consulting AG. One of Germany's leading IT consulting companies. We are passionate about technology, processes and digitalization.",1998,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/690ad801209d7b0001756978/picture,BTC Bilişim Hizmetleri (btc-ag.com.tr),54a138d569702d24d39b1700,"","","","","","","" +METRO MGI Information Technology GmbH,METRO MGI Information Technology,Cold,"",14,information technology & services,jan@pandaloop.de,http://www.mgi.de,http://www.linkedin.com/company/metro-mgi-information-technology-gmbh,"","","",Duesseldorf,North Rhine-Westphalia,Germany,40235,"Duesseldorf, North Rhine-Westphalia, Germany, 40235","","","Outlook, Microsoft Office 365, Microsoft Azure Hosting, Remote","","","","","","",69c281bd6ce8cd0001af0889,"","","The MGI METRO Group Information Technology GmbH with subcompanies in Poland, Romania, Russia, Turkey and Ukraine is the national and international IT service provider for all companies of the METRO Group. + +The scope of duties consists of system-engineering and -consulting, operation of data centers, providing network services and coordinating the IT strategy of the METRO Group.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/63edac0a998f12000100b12d/picture,Wipro (wipro.com),5cc2036087db610920e26ff2,"","","","","","","" +1st solution consulting gmbh,1st solution consulting,Cold,"",92,information technology & services,jan@pandaloop.de,http://www.1st-solution-group.com,http://www.linkedin.com/company/1st-solution-consulting-gmbh,"","",3 Prinzenallee,Duesseldorf,North Rhine-Westphalia,Germany,40549,"3 Prinzenallee, Duesseldorf, North Rhine-Westphalia, Germany, 40549","supplier consolidation, personaldienstleistung, netzwerk services, permanent placement, itconsulting, staffing, professional managed services, temp labor, contracting, it services & it consulting, cybersecurity measures, digital workplace solutions, robotic process automation (rpa), automation, iot-enabled systems, digital strategy, software engineering, cloud solutions, ai and automation, b2b, system integration, end-to-end managed services, information technology and services, computer systems design and related services, network expansion, project management, smart chatbots, construction & real estate, utilities, technology integration, custom software development, transportation & logistics, technology consulting, software development, it consulting, large language models (llms), change management, digitalization strategies, services, agile methodologies, digital transformation, artificial intelligence, critical infrastructure, ai-driven automation, cloud computing, consulting, user-centered design, business consulting, government, ai automation, custom software, saas, managed services, cloud infrastructure, infrastructure development, infrastructure solutions, iot, cybersecurity, retrieval augmented generation (rag), it solutions, cybersecurity services, distribution, energy & utilities, information technology & services, marketing, marketing & advertising, enterprise software, enterprises, computer software, productivity, management consulting, internet infrastructure, internet",'+49 211 1598350,"Outlook, Microsoft Office 365, Amazon AWS, Mobile Friendly, Remote, Process automation package for service request creation in SAP S/4HANA Utilities, .GIS","","","","","","",69c281bd6ce8cd0001af088b,7375,54151,"1st Solution Consulting GmbH is a German IT services and consulting company based in Düsseldorf. Founded in 1999, it specializes in engineering services for computer systems, custom software development, staffing, and strategic consulting. With over 25 years of experience, the company connects experts with the project needs of large organizations in both the private and public sectors. + +The company offers a wide range of IT consulting and solutions, including engineering services for computer systems, custom software development, management consulting, and staffing services. It emphasizes agile methods and innovation, providing tailored solutions from ideation to implementation. 1st Solution Consulting GmbH operates with a team of over 100 internal specialists and a network of external experts across six international locations, ensuring responsiveness to clients throughout Europe.",1998,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68b681654be4f6000167ceec/picture,"","","","","","","","","" +REALTECH AG,REALTECH AG,Cold,"",69,information technology & services,jan@pandaloop.de,http://www.realtech.com,http://www.linkedin.com/company/realtech-ag,https://facebook.com/realtech.usa,https://twitter.com/realtech_com,1 Paul-Ehrlich-Strasse,Leimen,Baden-Wuerttemberg,Germany,69181,"1 Paul-Ehrlich-Strasse, Leimen, Baden-Wuerttemberg, Germany, 69181","sap integration jira, servicenow und co, itil, change management fuer sap, sap transporte einfach automatisieren, sap change management, kuenstliche intelligenz, incident management fuer sap, chatbot, it service management, sap grc, configuration management, management consulting, cmdb, service portfolio & catalogue management, automatisiertes retrofitting von sapsystemen, sap consulting, devops for sap, enterprise service management, incident management, itsm sap, process automation, sap solution manager, artifical intelligence, ticket automation, configuration management fuer sap, solution manager, application lifecycle management, focused solutions, agile itsm, service asset configuration management, automated retrofitting of sap systems, automate sap transports easily, compliance sap security, sap bi, user productivity integration, software development, information technology & services",'+49 6227 8370,"Cloudflare DNS, MailJet, Outlook, Microsoft Office 365, CloudFlare Hosting, Amazon AWS, CloudFlare, Jira, Atlassian Confluence, Atlassian Cloud, Slack, Hubspot, WordPress.org, Mobile Friendly, Etracker, Vimeo, Remote, SAP, AI, SAP Build Process Automation, ",5000000,Venture (Round not Specified),5000000,1999-02-01,10607000,"",69c281bd6ce8cd0001af0892,"","","REALTECH AG is a German IT services company founded in 1994 and based in Leimen, Baden-Württemberg. The company specializes in SAP automation, IT service management solutions, and consulting services, with a focus on simplifying SAP landscapes. With a team of around 66 employees, REALTECH has successfully completed over 2,000 projects and generates approximately €10.5 million in revenue. + +The company offers a range of services, including SAP automation solutions that enhance process efficiency, IT service management solutions for various operational needs, and AI solutions integrated into ITSM for advanced automation. REALTECH also provides managed and assessment services for SAP systems and customized consulting to help clients navigate complexity and support digital transformation. Led by CEO Daniele Di Croce, REALTECH emphasizes intelligent automation and deep SAP expertise to foster effective operations and purposeful change.",1994,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6958d4a2aad7200001e664e1/picture,"","","","","","","","","" +connectiv!,connectiv!,Cold,"",52,information technology & services,jan@pandaloop.de,http://www.connectiv.de,http://www.linkedin.com/company/connectiv-esolutions,https://facebook.com/connectiv,https://twitter.com/connectiv_de,24 Kaiserstrasse,Lingen,Lower Saxony,Germany,49809,"24 Kaiserstrasse, Lingen, Lower Saxony, Germany, 49809","crmimplementierung, suchmaschinenmarketing, microsoft power bi, change management, shopware, microsoft dynamics crm, microsoft dynamics 365 sales, microsoft dynamics 365 customer service, microsoft dynamics 365 field service, microsoft power platform, oxid, microsoft sharepoint, suchmaschinenoptimierung, internet service providing, microsoft dynamics 365, beratung im customer relationship management, microsoft power virtual agents, social media marketing und onlinepr, sicherheitstechnologie, webcontrolling, crmconsulting, webseitenerstellung und shopsysteme, microsoft 365, microsoft teams, document link for microsoft dynamics 365, microsoft dynamics 365 marketing, ebusiness, microsoft dynamics 365 customer engagement, crm2cleverreach, microsoft power apps, custom software on symfony, customer journey mapping, api integration, software development, customer retention, webportale, automatisierungstools, information technology and services, customer engagement solutions for mittelstand, content marketing, webentwicklung, lead generation, web apps, schnittstellen, crm, automatisierte marketingprozesse, power apps, customer service, retail, api development, erp-anbindung, microsoft dynamics 365 customer insights, power platform, digital transformation, webportal development symfony, digital commerce, customer data platform, power automate, symfony, marketing automation, data intelligence, erp integration, symfony middleware, cms sulu, crm strategie, d2c, user experience optimization, power virtual agents, services, shopware 6 migration, schnittstellenentwicklung, native apps, api middleware integration, erp-anbindung ecommerce, individuelle programmierung, computer systems design and related services, b2b, customer experience, website development, automatisierung im marketing, e-commerce, customer data platform (cdp), ux design, power bi, cms, data analytics, web portale, ecommerce lösungen, ecommerce platforms, app entwicklung, data-driven customer insights, symfony development, customer interaction optimization, customer engagement, b2c, consulting, symfony framework, user experience optimization for ecommerce, prozessautomatisierung, kundenzufriedenheit, individuelle crm-erweiterungen, individuelle softwareentwicklung, digital marketing, ecommerce b2b b2c, conversion rate optimization, customer journey, middleware solutions, middleware, process automation, kundenbindung, customer relationship management, distribution, information technology & services, marketing & advertising, sales, web applications, enterprise software, enterprises, computer software, saas, web development, consumer internet, consumers, internet",'+49 591 800320,"Outlook, Microsoft Office 365, Mobile Friendly, Etracker, Linkedin Marketing Solutions, Apache, Google Tag Manager, Shopware, Oxid, Symfony, PHP, MySQL, Microsoft Dynamics 365 CE, Microsoft Power Platform","","","","",442000,"",69c281bd6ce8cd0001af0897,7375,54151,"connectiv! eSolutions GmbH is a German IT service provider that specializes in digital solutions for mid-sized businesses, particularly in the areas of Digital Commerce and Customer Engagement. The company aims to enhance customer outcomes through innovative technologies and offers a range of services including consulting, Microsoft Dynamics 365 implementations, eCommerce platforms, and website development. + +In Digital Commerce, connectiv! provides eCommerce solutions featuring webshops with intuitive navigation and extensive filter functions, supporting platforms like Shopware 6. For Customer Engagement, the company offers services related to Microsoft Dynamics 365, including cloud migrations that facilitate sales digitalization. connectiv! has established partnerships with various mid-sized German companies, showcasing its expertise in creating engaging online shopping experiences and seamless software implementations.",1998,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/695b1d7b1be10b000156b99e/picture,"","","","","","","","","" +entero AG,entero AG,Cold,"",94,management consulting,jan@pandaloop.de,http://www.entero.de,http://www.linkedin.com/company/entero-ag,https://facebook.com/pages/entero-AG/158587350854093,https://twitter.com/entero_AG,12 Koelner Strasse,Eschborn,Hesse,Germany,65760,"12 Koelner Strasse, Eschborn, Hesse, Germany, 65760","professional services automation psa, business intelligence, integration, fertigungsunternehmen, personaldienstleistungen, salesforce, hrloesungen, sap, consulting, business consulting & services, analytics, information technology & services, management consulting",'+49 619 677125800,"Salesforce, Gmail, Pardot, Google Apps, Microsoft Office 365, Mobile Friendly, Shutterstock, YouTube, Google Font API, Nginx, WordPress.org, Google Tag Manager","","","","",3506000,"",69c281bd6ce8cd0001af0899,7380,"","entero AG is a business and IT consultancy based in Eschborn, Hessen, Germany, founded in 2000. The company specializes in digital transformation, process optimization, and technology implementation for manufacturing companies and B2B service providers. With a team of approximately 70-86 professionals from various fields, entero AG emphasizes reliable execution of technology-based projects, generating around $5.7 million in annual revenue. + +The firm offers integrated consulting services focused on digitalization across key value chains, including sales, service, marketing, procurement, and order processing. Their expertise includes Salesforce and SAP implementations, business process optimization, and industry-specific solutions for manufacturing, professional services, and staffing. Additionally, entero AG provides ERP integrations, data visualization with Tableau, and support for corporate strategy and change management.",2000,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6707f5c9579e29000102b119/picture,"","","","","","","","","" +Leafworks | Your customer service can do better!,Leafworks,Cold,"",31,information technology & services,jan@pandaloop.de,http://www.leafworks.de,http://www.linkedin.com/company/leafworks,"","",2 Travestieg,Norderstedt,Schleswig-Holstein,Germany,22851,"2 Travestieg, Norderstedt, Schleswig-Holstein, Germany, 22851","zendesk, customerservice, itconsulting, crm, it marketing, businessintelligence, erp, kundenservice, cx, it services & it consulting, customer service optimization, ai customer service, workflow automation, kundenportal, customer data platform, computer systems design and related services, information technology & services, cloud development, business intelligence, business intelligence solutions, api development, customer service & support, support system optimization, customer support automation, cloud strategy consulting, real-time data analytics, automated support solutions, b2b, zendesk customization, crm consulting, self-service portale, cloud migration, customer portal development, customer experience, customer journey mapping, middleware solutions, automated ticket routing, data analytics, support prozessoptimierung, support workflow automation, project management tools, services, business consulting, zendesk ai integration, custom zendesk apps, knowledge base optimization, automatisierung, support ticket management, multi-channel support, systemintegration, software development, zendesk beratung, custom app entwicklung, customer experience management, crm-integration, consulting, multi-cloud support strategies, system integration services, customer satisfaction enhancement, e-commerce, sales, enterprise software, enterprises, computer software, analytics, management consulting, consumer internet, consumers, internet",'+49 40 69638696,"Sendgrid, Gmail, Google Apps, MailChimp SPF, Microsoft Office 365, Zendesk, CloudFlare Hosting, Hubspot, YouTube, Facebook Custom Audiences, Linkedin Marketing Solutions, Facebook Login (Connect), Facebook Widget, DoubleClick, Google Dynamic Remarketing, Mobile Friendly, Google Analytics, Google Font API, Google Tag Manager, DoubleClick Conversion, WordPress.org, AI, Deel, Aircall","","","","","","",69c281bd6ce8cd0001af089b,7375,54151,"Leafworks GmbH is a dynamic IT services and consulting firm based in Norderstedt, Germany, with operations in Germany and Switzerland. The company specializes in Zendesk customer service platforms, CRM systems, custom portals, and digital transformation solutions. As a leading Zendesk Premier Partner in the DACH region, Leafworks employs over 30 specialists focused on enhancing customer service through technical implementations, process optimization, and customer experience consulting. + +The company offers a range of services, including multi-channel customer service solutions, strategic digital transformation consulting, and full customization of Zendesk capabilities. Leafworks emphasizes customer-centric approaches and ROI-driven solutions, aiming to turn customer service into a competitive advantage. Their expertise includes automation, system integrations, and tailored solutions for enterprise clients, ensuring efficient workflows and improved customer satisfaction.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69b294e13961a000015ffb3b/picture,"","","","","","","","","" +ciSio GmbH,ciSio,Cold,"",13,information technology & services,jan@pandaloop.de,http://www.cisio-gmbh.com,http://www.linkedin.com/company/cisio-gmbh,"","",6 Amtsgerichtstrasse,Regen,Bavaria,Germany,94209,"6 Amtsgerichtstrasse, Regen, Bavaria, Germany, 94209","prozesse optimieren, technologien und innovationen, kuenstliche intelligenz, sap bw, change management, experten gewinnen, analytics, automatisierung, menschen mitnehmen, strategien entwickeln, kulturwandel, sap bi, neues wissen generieren, ki, regelungen und gesetze sinnvoll umsetzen, grundlagen fuer die digitalisierung schaffen, ai, unternehmen foerdern, unternehmen begleiten, rpa, robotics process automation, business intelligence, sap, realisierung individueller anforderungen, digitalisierung, robotic process automation, business warehaus, vertrieb und absatz ankurbeln, mehr informationen, consulting, prozessautomatisierung, bw4hana, loesung, plattform, prozessexperten, beratung, sap s4hana, it services & it consulting, branchenübergreifend, agile methoden, gesundheitswesen digitalisierung, automobilindustrie, open source data-science-tools, change management beratung, digital transformation, öffentlicher sektor, digitalisierungszentrum aberland, software development, cloud-computing, it-infrastruktur, branchenlösungen, gesundheits-it, b2b, digitale transformation, deep learning ai pilotprojekte, public sector technology, schulungen und coachings, nachhaltigkeit, information technology and services, healthcare technology, deep learning, fördermittel, fördermittelberatung, kommunale digitalisierung, business services, automatisierung von geschäftsprozessen, technologieintegration, it-sicherheit, projektmanagement agil, management consulting services, cloud-lösungen, gesundheitswesen, digitales schulungszentrum, business intelligence lösungen, data analytics, digitales whitepaper gesundheitswesen, innovative technologien, veränderungsmanagement, maßgeschneiderte strategien, smart building technologien, maßgeschneiderte lösungen, datenanalyse, data management, virtueller stammtisch für kommunen, kommunale prozessautomatisierung, business intelligence and data analytics, services, bafa-förderung, consulting services, ki-anwendungen, government, schulungen, digitalisierungsberatung, agiles projektmanagement, ki-basierte rechnungsverarbeitung, technologieberatung für kmu, it consulting, smart technologies, prozessoptimierung, open source technologien, digitales lernen, rpa-implementierung, technologieberatung, healthcare, education, information technology & services, artificial intelligence, management consulting, health care, health, wellness & fitness, hospital & health care",'+49 99 219714000,"Outlook, Microsoft Office 365, Hubspot, Apache, WordPress.org, Mobile Friendly, Google Tag Manager, reCAPTCHA, DoubleClick, Remote, Reviews, AI, Circle, ","","","","","","",69c281bd6ce8cd0001af0887,8742,54161,"Die digitale Transformation ist längst kein Zukunftsthema mehr – sie ist Realität und stellt vor allem Unternehmen und Organisationen vor große Herausforderungen. Die Möglichkeiten sind riesig: Effizienz steigern, Prozesse optimieren, Innovationen fördern. Doch oft fehlt es an der passenden Strategie oder den richtigen Technologien, um diese Potenziale erfolgreich zu nutzen. + +Genau hier setzt die ciSio GmbH an. Wir begleiten Unternehmen dabei, Digitalisierung greifbar zu machen – mit praxisnaher Beratung, individueller Unterstützung und einem klaren Fokus auf den Menschen im digitalen Wandel. Unser Ziel ist es, nicht nur Prozesse zu digitalisieren, sondern Unternehmen nachhaltig wettbewerbsfähig zu machen. + +Wir entwickeln gemeinsam mit unseren Kunden maßgeschneiderte Lösungen, die nicht nur auf dem Papier gut aussehen, sondern in der Praxis funktionieren. Digitalisierung ist kein Selbstzweck – sie muss echten Mehrwert schaffen. Und genau dafür stehen wir. + +Über 10 Jahre haben wir Lösungen, Leistungen und Services evaluiert, ausgewählt und für Ihre Aufgaben und Möglichkeiten präpariert. Unsere Experten scannen beständig den Markt bezüglich weiterer Innovationen. Mit unseren umfangreichen und vollständigen Portfolio werden wir Sie und Ihr Team begeistern.   + +Mehr über uns erfahren Sie auf unserer Homepage.",2013,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67c3a1a67442920001de1477/picture,"","","","","","","","","" +enVoice - Scalable IT Business Growth,enVoice,Cold,"",27,management consulting,jan@pandaloop.de,http://www.envoice.de,http://www.linkedin.com/company/envoice-scalable-it-business-growth,https://www.facebook.com/enVoice-132890246789611/,"",20 Hohemarkstrasse,Oberursel,Hesse,Germany,61440,"20 Hohemarkstrasse, Oberursel, Hesse, Germany, 61440","business continuity management, instore analytics, telemarketing, allflasharrays, sdwan, observability, cloud computing, digitale transformation, big data analysis, adressmanagement, iiot, machine learning, managed soc, kritis, innovation placement, disaster recovery, sales ready leads, planbares umsatzwachstum, it resilience, predictive maintenance, rpa, artificial intelligence, ki, automatisierung, cold calling b2b, sales funnel optimization, industrie 40, zero trust, itil, kaltaquise, neukundengewinnung, hyperconverged infrastructure, managed services, itinfrastruktur, leadgenerierung, csma, itsecurity, edr, itvertrieb, sase, optimierung vertriebsprozesse, digital twin, scalable it business growth, business consulting & services, neukundenakquise, ot-lösungen, vertriebscontrolling, fachliche expertise, vertriebsstrategie it-infrastruktur, kundenansprache, vertriebs-training, komplexe technische themen, vertriebsoptimierung, vertriebsprozess, information technology and services, b2b, marktfähigkeitsanalyse, vertriebsprozessanalyse, vertriebsprozess digitalisierung, methodische kompetenz, b2b neukundenakquise, marktanalyse, zielgruppenmanagement, vertriebsstrategie, vertriebsprozess automatisierung, marktpenetration, kaltakquise, vertriebsberatung, komplexer vertrieb, services, vertriebsstrategie ot-lösungen, b2b-vertrieb, business services, roi-steigerung, vertriebsautomatisierung, vertriebsoptimierung it/ot, management consulting, vertriebscoaching, it/ot solutions, management consulting services, it-infrastruktur, consulting, b2b marketing, neukundenbindung, marktforschung, marktanteilsteigerung, latente marktpotenziale, enterprise software, enterprises, computer software, information technology & services, marketing & advertising",'+49 61 71694950,"Outlook, Microsoft Office 365, Apache, Mobile Friendly, Bootstrap Framework, Linkedin Marketing Solutions, F5 NGINX Ingress Controller","","","","","","",69c281bd6ce8cd0001af0884,8742,54161,"Mit unserer Sales Funnel Optimization verfügen wir über einen holistischen Ansatz zur dauerhaften Optimierung vertrieblicher Prozesse und damit der +Unternehmensergebnisse. Sie beginnt bei der Beratung zur optimalen Auswahl von Portfolioelementen für die Marktansprache. Im nächsten Schritt findet sie den perfekten Message Market Fit und definiert die optimale Sales Story für die zu vermarktende Lösung. Mit Fokus auf maximale Opportunity- und Abschlussquoten sorgen hochqualifizierte +und spezialisierte Vertriebsmitarbeiter mit Hilfe erprobter Methodiken für bestmögliche Effizienz und Effektivität in der Erstansprache potentieller Neukunden und der Generierung von Sales Ready Leads.",2004,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/675d339fa7819800017aff5f/picture,"","","","","","","","","" +Spot Consulting GmbH,Spot Consulting,Cold,"",19,management consulting,jan@pandaloop.de,http://www.spotconsulting.de,http://www.linkedin.com/company/spot-consulting-gmbh,https://facebook.com/spot.consulting.gmbh,https://twitter.com/spotconsultants,96G Ober-Ramstaedter Strasse,Muehltal,Hessen,Germany,64367,"96G Ober-Ramstaedter Strasse, Muehltal, Hessen, Germany, 64367","itprojektmanagement, technologieberatung, consulting, strategieberatung, itprojektmanagement training, prozessberatung, innovationsmanagement, digitale transformation, itberatung, managementberatung, digitalisierung, offentliche verwaltung, itprozessmanagement, itprojektcoaching, human resources, hr lifecycle, business consulting & services, supply chain automation, cloud solutions, information technology & services, projektmanagement, hr transformation, government, management consulting services, financial services, hr strategie, hr 4.0, public sector digitalization, cloud-lösungen, services, public administration, robotic process automation, logistics & supply chain, change management, hr prozesse, b2b, data analytics, hr self-service, prozessmanagement, rpa & ki, datenanalyse, automatisierung, hr digitalisierung, hr it architektur, künstliche intelligenz, management consulting, finance, non-profit, distribution, transportation & logistics, cloud computing, enterprise software, enterprises, computer software, nonprofit organization management",'+49 615 14937910,"Outlook, Microsoft Office 365, Amazon CloudFront, Route 53, Amazon AWS, Slack, Google Tag Manager, WordPress.org, Apache, Mobile Friendly, Google Font API, React Native, Remote","","","","","","",69c281bd6ce8cd0001af088a,7379,54161,"Spot Consulting GmbH is a leader in IT consulting and project management services, facilitating connections between software providers and end customers. The company focuses on enabling organizations to achieve comprehensive digitalization across various sectors. + +Their services include HR 4.0 and Human Resources Transformation, where they implement intelligent technology connections and agile workforce planning. They also specialize in Business Process Digitalization and Automation, assisting organizations in streamlining operations from suppliers to customers. In the banking and finance sector, Spot Consulting helps financial institutions navigate digital transformation, enhancing efficiency and transparency. Additionally, they support public sector organizations in digitalization efforts, guiding projects from conception to execution. + +Spot Consulting employs a holistic approach, examining organizational change through the lenses of organization, process, and technology. This methodology helps identify key areas for modernizing HR and IT systems, ensuring that client goals and project milestones are consistently reviewed and met. The company has established best practices in HR, retail, banking and finance, and the public sector.",2010,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6815abf824eeca00017e2fb3/picture,"","","","","","","","","" +puntus GmbH,puntus,Cold,"",110,information technology & services,jan@pandaloop.de,http://www.puntus.com,http://www.linkedin.com/company/puntus-gmbh,"","",1 Spitalhof,Moeglingen,Baden-Wuerttemberg,Germany,71696,"1 Spitalhof, Moeglingen, Baden-Wuerttemberg, Germany, 71696","it services & it consulting, information technology & services",'+49 714 137530,"Outlook, Microsoft Office 365, Slack, Google Tag Manager, Mobile Friendly, Nginx, AWS SDK for JavaScript, LinkedIn Recruiter, Salesforce CRM Analytics, Linkedin Marketing Solutions, Liferay, Pega Case Management, Salesforce Service Cloud, Data Analytics","","","","","","",69c281bd6ce8cd0001af088e,"","","USU Digital Consulting GmbH is a digital transformation consulting firm based in Möglingen, Germany. Established in 1977, it operates as a subsidiary of USU Software AG. The company focuses on guiding organizations through their digital transformation journeys with a value-oriented consulting approach. USU Digital Consulting has completed over 200 projects and maintains long-term partnerships with clients, averaging 10 years of engagement. + +The firm offers a range of services, including strategic analysis, IT solution design, and the implementation of digital projects. Key areas of focus include optimizing customer service through automation, modernizing IT infrastructures, and digitizing administrative processes. USU Digital Consulting utilizes low-code/no-code platforms for efficient project execution and provides solutions such as centralized data architectures and automated business processes. The company collaborates with technology partners like Pegasystems and Liferay to enhance its offerings.",1977,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69acf79c6a1c460001d54fb2/picture,"","","","","","","","","" +standpunkt digital,standpunkt digital,Cold,"",13,information technology & services,jan@pandaloop.de,http://www.standpunkt.com,http://www.linkedin.com/company/standpunkt-digital,https://www.facebook.com/standpunktdigital,https://twitter.com/standpunkt_digi,20 Chemnitzer Strasse,Dortmund,North Rhine-Westphalia,Germany,44139,"20 Chemnitzer Strasse, Dortmund, North Rhine-Westphalia, Germany, 44139","software development, e-commerce lösungen, content management, digital strategy, modulare software, customer journey, digitale barrierefreiheit, user experience, change management, api-first-entwicklung, webentwicklung, customer insights, systemintegration, hybride systemarchitektur, data analytics, mvp-entwicklung, microservices-architektur, energy, cloud-native anwendungen, mach-architektur, api-first-ansatz, retail, b2c, automatisierte prozesse, digitalisierung, generative ai, generative ai integration, software- und weblösungen, multichannel kampagnenmanagement, barrierefreie weblösungen, barrierefreiheit, content management systeme, information technology & services, gamification-elemente, softwareentwicklung, e-commerce, security, hybride systeme, kampagnenplattform, digital transformation, api-first, multi-channel marketing, content personalization, omnichannel selling, headless cms, innovation, low-code plattformen, microservices, performance optimierung, data-driven marketing, prototyping, financial services, performance monitoring, consulting, daten- und informationsfluss, headless commerce, customer experience, api-integration, services, datenschutzkonformität, security-lösungen, datenmanagement, cloud-integration, d2c, headless e-commerce, progressive web apps, systemarchitektur, ux/ui design, interaktive gewinnspiele, information technology and services, microservice-architektur, automatisierte fulfillment-prozesse, datenschutzkonforme lösungen, automatisierung, user experience design, computer systems design and related services, künstliche intelligenz, prototyping-tools, b2b, customer data plattform, user-centered design, cloud-hosting, gamification, finance, consumer_products_retail, energy_utilities, marketing, marketing & advertising, ux, consumer internet, consumers, internet",'+49 231 93700231,"Outlook, DigitalOcean, Rackspace MailGun, Atlassian Cloud, Slack, Amazon SES, WordPress.org, Mobile Friendly, Google Maps (Non Paid Users), Nginx, Hubspot, Google Maps, Remote, Android","","","","","","",69c281bd6ce8cd0001af0890,7375,54151,"standpunkt berät bei Prozessentwicklung, Softwarearchitektur und digitalen Geschäfts- und Marketingstrategien. + +Wir entwickeln webbasierte Softwarelösungen, die sich auf höchstem Technologieniveau sicher in die vorhandenen Infrastrukturen der Kunden integrieren.",2015,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/687dc90417b2f6000189a332/picture,"","","","","","","","","" +Insignio GmbH,Insignio,Cold,"",32,information technology & services,jan@pandaloop.de,http://www.opencx.de,http://www.linkedin.com/company/open-cx,"","","",Kassel,Hesse,Germany,"","Kassel, Hesse, Germany","online solutions, advertising, digitalisierung, corporate community, change management, crm, corporate publishing, marketing automation, technology, information & internet, crm solutions, customer experience, sales automation, customer service automation, hubspot services, zendesk integration, sugarcrm consulting, application development, e-commerce solutions, digital transformation, performance optimization, user experience design, agile development, tech-driven solutions, business strategy, lead generation, custom development, cloud integrations, b2b ecommerce, social commerce integration, content management systems, ai integration, data synchronization, data analytics, user engagement, responsive design, mobile app development, digital marketing strategy, seo optimization, user interface design, open source technology, enterprise software, saas solutions, enterprise architecture, workflow automation, multi-channel support, omnichannel experience, process automation, customer insights, conversion rate optimization, digital campaign management, integrated marketing solutions, business process automation, customer retention strategies, sales performance improvement, sales, enterprises, computer software, information technology & services, b2b, marketing & advertising, saas, marketing, app development, apps, software development, e-commerce, consumer internet, consumers, internet, design",'+49 561 3166630,"","","","","","","",69c281bd6ce8cd0001af0886,"","","Insignio is an owner-managed group of companies headquartered in Kassel, Germany and has sales branches in Munich and Hamburg. Our team of around 100 permanent staff and our network of freelance specialists enables us to provide an optimum level of support to our international clients. + +Our key drivers are smart business processes and integrated communication. What spurs us on are powerful brands, effective communication and systematic customer relationship management. Consistently coherent and seamless. + +On the CRM side, Insignio has partnered with SugarCRM Inc. since 2007. By 2009 the company had already attained Gold Partner status and it is now one of the largest Sugar integrators in Europe. Insignio has represented the interests of German partners on the global Partner Advisory Board since 2010. + +As a participant in the Sugar Developer+ Program, Insignio incorporates German and European requirements into the enhancement of the system.",2002,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66ef1096d5369200013270df/picture,"","","","","","","","","" +uniqbit AG,uniqbit AG,Cold,"",37,information technology & services,jan@pandaloop.de,http://www.uniqbit.de,http://www.linkedin.com/company/uniqbit-ag,"","","",Augsburg,Bavaria,Germany,"","Augsburg, Bavaria, Germany","cloud, digitalisierung, beratung, t, gitale, energiewirtschaft, selfserviceanwendungen, vergabe, ai, handel, digital experience, business intelligence, web app entwicklung, offentliche auftraggeber, ecommerce, user experience, consulting, digitale transformation, it security, it dienstleistungen, devops, itk, web appentwicklung, prozessautomatisierung, it services & it consulting, multi-brand-website-systeme, retail, ux/ui design, software development, branchenexpertise, b2c, migration, information technology and services, maßgeschneiderte lösungen, b2b, e-commerce, legacy-systeme, automatisierung, cloud solutions, d2c, datenanalyse, services, self-service anwendungen, web- & app-entwicklung, eu-ausschreibungen, computer systems design and related services, itk-vergabe, government, consumer_products_retail, analytics, information technology & services, consumer internet, consumers, internet, ux, computer & network security, cloud computing, enterprise software, enterprises, computer software",'+49 821 7476520,"Outlook, Amazon AWS, Wix, Mobile Friendly, Varnish, Google Tag Manager, Remote, Android","","","","","","",69c281bd6ce8cd0001af088c,7375,54151,"Wir formen Ihre digitale DNA! + +Mit tiefgreifender Branchenexpertise in der Energiewirtschaft, im Handel und mit öffentlichen Auftraggebern entwickeln wir individuelle digitale Lösungen, die Prozesse effizienter, nachhaltiger und zukunftssicher machen. Unser menschenzentrierter Ansatz stellt den Endanwender konsequent in den Mittelpunkt – mit dem Ziel, echten Mehrwert für Kunden und Mitarbeitende zu schaffen. + +Unsere Leistungen auf einen Blick: +• Strategische Beratung +• Web- & App-Entwicklung +• eCommerce-Lösungen +• Business Intelligence +• ITK-Vergabeprozesse +• DevOps & agile IT + +Als agiler Partner in digitaler Transformation verbinden wir moderne Technologien mit maßgeschneiderter Softwarearchitektur und begleiten Unternehmen zuverlässig bei der Umsetzung anspruchsvoller Digitalprojekte.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67441410ce8f5c0001a4ee01/picture,"","","","","","","","","" +Automation Factory GmbH,Automation Factory,Cold,"",13,information technology & services,jan@pandaloop.de,http://www.automation-factory.net,http://www.linkedin.com/company/automation-factory-gmbh,"","",19 Volkartstrasse,Munich,Bavaria,Germany,80634,"19 Volkartstrasse, Munich, Bavaria, Germany, 80634","digitale transformation, it strategie beratung, robotic process automation, business analyse, prozessautomatisierung, it services & it consulting, business consulting, rpa support und betrieb, rpa change management, process analysis, it support, it strategy, security automation, network integration, rpa in healthcare, information technology & services, automatisierungsstrategien, cato networks security, rpa for digital workplaces, network security, automatisierungsprozess, b2b, lizenz management, rpa licensing, change management, it security solutions, rpa rapid prototyping, it security services, automation framework, sase, security solutions, computer systems design and related services, it-strategieberatung, process discovery, cybersecurity & data protection, rpa in finance, it security, software development, business process management, digital transformation, rpa development, it support services, automation learning hub, process mining, cybersecurity, cloud security, network optimization, process optimization, rpa strategie beratung, uipath partner, consulting, it infrastructure, agile development, rpa, netzwerksicherheit, it consulting, rpa lifecycle management, process automation, automation consulting, rpa in business processes, computer software & services, workflow automation, rpa support, ai in rpa, rpa for compliance, rpa licensing optimization, rpa entwicklung, rapid prototyping, security monitoring, sase security, services, secure access service edge, cato networks partner, education, management consulting, computer & network security",'+49 89 37017485,"Outlook, Microsoft Office 365, Google Analytics, Shutterstock, Nginx, Avaya, Remote","","","","","","",69c281bd6ce8cd0001af0898,7375,54151,"Wir begleiten unsere Kunden auf Ihrem Weg der digitalen Transformation. Hierbei legen wir den Fokus auf die Reduzierung von Durchlaufzeiten, Fehlerquoten und manueller Tätigkeiten in bestehenden Geschäftsprozessen. + +Mit unseren Services in den Bereichen Robotic Process Automation (RPA) und Digital Consulting unterstützen wir Sie von der Strategieentwicklung über die Analyse einzelner Geschäftsprozesse bis hin zur Implementierung und dem Betrieb von Automatisierungslösungen.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/671466a3b928a80001d6a554/picture,"","","","","","","","","" +port-neo - THE CX-AGENCY,port-neo,Cold,"",83,information technology & services,jan@pandaloop.de,http://www.port-neo.com,http://www.linkedin.com/company/port-neo,https://facebook.com/portneo,"",80 Relenbergstrasse,Stuttgart,Baden-Wuerttemberg,Germany,70174,"80 Relenbergstrasse, Stuttgart, Baden-Wuerttemberg, Germany, 70174","markt und bedarfsanalyse, conversion optimierung, content marketing, dialogmarketing, digitalstrategie, analytics und reporting, digitale markenfuehrung, strategic planning, internationale markenwebsiten, data marketing platform, email marketing, crossmediale kampagnen, marketing strategie, customer journey, technology, information & internet, customer loyalty management, data-driven marketing, customer experience strategy development, omnichannel marketing, user experience design, customer satisfaction, web development, customer experience benchmarking, customer feedback management, customer data management, customer data centralization, cx consulting, customer data platforms (cdp), services, customer-centric, customer journey mapping, personalization, customer feedback, marketing automation, data analytics, customer data governance, cx management, customer insights, customer experience audit, customer engagement platforms, customer experience analytics, customer experience strategy, b2b, software development, customer data security, content creation, information technology and services, cx lounge, customer experience transformation, customer experience optimization, data security, customer journey analytics, customer experience tools, customer engagement, customer relationship management, ai, consulting, customer journey optimization, digital experience, customer experience consulting, customer experience workshops, customer touchpoints, cx plattformen, data management, customer experience metrics, ux design, d2c, customer data platform (cdp), customer data management platforms, cx monitoring, cx deep dive, customer journey orchestration, customer experience software, conversion optimization, customer data platform, customer data integration, customer experience innovation, customer lifecycle, customer experience technology, customer experience, customer relationship management (crm), b2c, customer data analytics, customer loyalty programs, management consulting services, cx strategie, customer feedback tools, marketing and advertising, customer loyalty, cloud solutions, customer service, e-commerce, customer data strategy, personalized customer experience, customer insights platform, customer data enrichment, customer data platform integration, cx strategy, omnichannel, retail, finance, consumer_products_retail, marketing & advertising, information technology & services, saas, computer software, enterprise software, enterprises, computer & network security, crm, sales, cloud computing, consumer internet, consumers, internet, financial services",'+49 711 1235000,"MailJet, Outlook, Microsoft Office 365, Slack, reCAPTCHA, Google Analytics, Adobe Media Optimizer, Linkedin Marketing Solutions, Nginx, Shutterstock, WordPress.org, DoubleClick Conversion, DoubleClick, Google Dynamic Remarketing, Mobile Friendly, Vimeo, Google Tag Manager, Cedexis Radar, YouTube, Etracker, Xt-commerce, Remote, Vercel, Netlify, Git, GitLab, Pimcore","","","","","","",69c281bd6ce8cd0001af088d,8742,54161,"port-neo is a full-service customer experience (CX) and digital marketing agency based in Stuttgart, Germany. Founded in 2000, the company has around 75 employees across six locations. It focuses on creating innovative CX concepts and digital platforms tailored to clients' needs, guided by the motto ""Data meets Empathy."" With over 20 years of experience, port-neo emphasizes strategic consulting, data-driven insights, and empathetic design to enhance customer journeys. + +The agency offers a wide range of services, including strategic consulting, customer journey optimization, digital platform development, data analytics, and digital brand management. It specializes in creating multichannel, mobile-first experiences that integrate digital and personal elements. Port-neo develops customized digital products and platforms, particularly in e-commerce, using technologies like Shopware, Magento, and TYPO3. The agency also engages with clients through its CX Lounge, hosting discussions and sharing insights on customer experience trends.",2000,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/673a9b3d0c0b0700014f1d9a/picture,"","","","","","","","","" +affinis,affinis,Cold,"",170,information technology & services,jan@pandaloop.de,http://www.affinis.de,http://www.linkedin.com/company/affinis-ag,https://www.facebook.com/affinisag,"",14 Cuxhavener Strasse,Bremen,Bremen,Germany,28217,"14 Cuxhavener Strasse, Bremen, Bremen, Germany, 28217","servicenow, business intelligence, s4hana, enterprise performance management, sap on azure, erp, digitalisierungsberatung, managed services, integrations und transformationsmanagement, prozess und datenintegration, bi analytics, automatisierung, data analytics, sap consulting, microsoft, machine learning, microsoft dynamics 365, sap, sap hana, cloud infrastructure services, s4 hana, application management, adobe, sap s4hana, kuenstliche intelligenz, crm, microsoft dynamics 365 business central, it services & it consulting, data quality, cloud, process optimization, low code entwicklung mit citizen development, data hubs, power bi, consulting, project management, data-driven solutions, data contracts, data architecture, services, cloud migration, generative ai, computer systems design and related services, data products, energie- und versicherungsdatenlösungen, data mesh in der ki-architektur, microsoft copilot ai-tool, ai and cloud services, sap s/4hana-brownfield-migration, low code development, cloud computing, it-strategie, cloud services, sustainability & transformation, customer-centric solutions, data mesh zur skalierbaren ki, data integration, consulting services, change management, risk management, process management, data management, data contracts im data mesh, data products für unternehmen, cloud solutions, european it company, sap s/4hana, data & analytics, b2b, software development, power bi für marketing reporting, information technology and services, data science, artificial intelligence, performance dashboards, automatisierung in der energiewirtschaft, digital transformation, data security, data engineering, business process optimization, automation, it consulting, it-strategie beratung, data governance, data, customer engagement, industry-specific solutions, data mesh, ai, healthcare, finance, analytics, information technology & services, sales, enterprise software, enterprises, computer software, productivity, management consulting, computer & network security, health care, health, wellness & fitness, hospital & health care, financial services",'+49 421 43810000,"Outlook, Atlassian Cloud, Active Campaign, Apache, Mobile Friendly, Cedexis Radar, Vimeo, DoubleClick Conversion, Adobe Media Optimizer, Google Tag Manager, Google Dynamic Remarketing, WordPress.org, Linkedin Marketing Solutions, DoubleClick, , SAP, Siemens PLM, Microsoft Office, Microsoft Excel, SS&C, Microsoft Application Insights, Azure Data Lake Analytics, Azure Storage Explorer, Azure SQL Database, Azure Synapse Analytics, Azure Data Factory, Azure Functions, Azure OpenAI Service, Azure Machine Learning, Dynamics 365 Customer Service, Microsoft 365, Microsoft Azure Monitor, Microsoft Teams Rooms, SharePoint, Azure Virtual Desktop, Adobe Experience Platform, PRO.FILE, ebs, Skedge.me, Adobe Campaign, Adobe Journey Optimizer, Braze, Javascript, SQL, REST, Red Hat JBoss Enterprise SOA Platform, , Dynamics 365 Customer Insights, Dynamics 365 Sales, , PowerBI Tiles, Snowflake, Databricks, dbt, Dynamics 365 CRM, SAP Analytics Cloud, SAP BusinessObjects Business Intelligence (BI), SAP HANA, Microsoft Azure, Terraform, Microsoft PowerShell, Bash, Python, Aryson MySQL to MSSQL Converter, PostgreSQL, MariaDB","","","","","","",69c281bd6ce8cd0001af0894,7375,54151,"affinis AG is a German IT technology company founded in 2002 and headquartered in Bremen. The company specializes in data-driven ERP solutions, focusing on SAP and Microsoft technologies, along with Data & AI services. With over 150 employees across five locations in Germany, affinis AG provides transformation, cloud, and platform services that leverage data and AI to enhance decision-making and automation. + +The company operates under the affinis Gruppe, which includes subsidiaries like affinis solutions GmbH and affinis data & ai. affinis AG is a certified partner of SAP and Microsoft, offering a range of services that include business intelligence, analytics, and custom-tailored solutions. The company emphasizes long-term customer relationships, averaging over eight years, and aims to strengthen agility in dynamic markets through targeted investments.",2002,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/687cb64ec5b6f50001b89a02/picture,"","","","","","","","","" +PENTADOC AG,PENTADOC AG,Cold,"",56,management consulting,jan@pandaloop.de,http://www.pentadoc.com,http://www.linkedin.com/company/pentadoc-ag,https://facebook.com/pages/Pentadoc-KnowHouse-GmbH/340649715964386,https://twitter.com/PDKnowHouse,1 Goethestrasse,Wuerzburg,Bavaria,Germany,97072,"1 Goethestrasse, Wuerzburg, Bavaria, Germany, 97072","kundenzentrierung, organisationsberatung, prozessoptimierung, inputmanagement, coaching, ecm, versicherung, gapanalyse, agile work, unternehmensberatung, multichannel, gesetzliche krankenversicherung, digitalisierung im gesundheitswesen, informationsmanagement, digitale transformation, unabhaengige beratung, eakte, digitale strategie, prozessanalyse, digitalisierung, digitalisierungsstrategie, private krankenversicherung, outputmanagement, new work, digitalisierungsberatung, changemanagement, dms, unternehmenskultur, prozessberatung, kuenstliche intelligenz, business consulting & services, cloud computing, it strategy, operational efficiency, regulatory data handling, omnichannel, regulatory compliance, management consulting, organizational transformation, digital maturity assessment, cloud solutions, digital strategy, customer experience, b2b, insurance digitalization, insurance consulting, ai in insurance, content classification, input management, information technology, business intelligence, software integration, management consulting services, ai prototyping, automation tools, data analytics, digital transformation, content automation, cybersecurity, process optimization, digital workflows, machine learning, digital innovation, consulting, end-to-end automation, insurance process reengineering, rpa, customer journey, ki-prototyping, data security, market-specific insurance solutions, process automation, customer communication management, omnichannel input management, workflow automation, enterprise content management, modular input systems, content management, bespoke automation, artificial intelligence, regtech, insurance, customer-centric automation, services, finance, enterprise software, enterprises, computer software, information technology & services, marketing, marketing & advertising, analytics, computer & network security, financial services",'+49 931 26079110,"Outlook, Microsoft Office 365, Atlassian Cloud, Slack, Apache, WordPress.org, Content.ad, Google Tag Manager, Mobile Friendly, Shutterstock, YouTube, Bootstrap Framework","","","","",504000,"",69c281bd6ce8cd0001af0895,8742,54161,"PENTADOC AG is a manufacturer-independent business consulting firm based in Würzburg, Germany. With over 25 years of experience, the company specializes in digital transformation and enterprise process optimization. PENTADOC focuses on integrating digital visions into everyday business operations. + +The firm employs its proprietary 5-D Model, which encompasses strategy, technology, processes, culture, and organization to facilitate organizational change. PENTADOC offers services in document management and digital document control, assisting organizations with paperwork management, scanning, file organization, and digital document processes. The company also engages in process-oriented business consulting, solution development, research, and analysis. + +PENTADOC has collaborated with notable clients in the healthcare sector, such as AOK Baden-Württemberg and IKK Südwest, helping them enhance business process efficiency and improve customer service experiences. The company is also a member of the PDF Association, reflecting its commitment to document standards and digital document management.",1998,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/679a60df8893d40001df54ae/picture,"","","","","","","","","" +OH-SO Digital,OH-SO Digital,Cold,"",49,management consulting,jan@pandaloop.de,http://www.oh-so.com,http://www.linkedin.com/company/oh-so-agency,"","",83 Kaiser-Wilhelm-Strasse,Hamburg,Hamburg,Germany,20355,"83 Kaiser-Wilhelm-Strasse, Hamburg, Hamburg, Germany, 20355","growth agents, delivery acceleration, pervasive ai & foundation, building & running, operating models, adobe cloud, creative production, headless, salesforce cloud, composable architecture, hooked audiences, marketing autopilot, design, security, ai, digital products, content, frontend cloud, marketing automation, ecommerce optimisation, content ecosystem, tisax, deep commerce, narrative consulting, vercel, llm, contentful, automation, digital product ideation, cdp data engineering, webperformance, ecom optimization, business consulting & services, digital brand management, ai brand resonance, data protection, advertising agencies, brand strategy, chatbot analysis, conversational data analysis, ai conversation analysis, ai in brand management, marketing, brand monitoring, ai brand positioning in chatbots, services, digital marketing, digital agency, ai analytics, prompt engineering, predictive analytics, software development, market research in ai, information technology and services, brand reputation management, ai brand mention mapping, ai-driven market research, ai mention tracking, technology, brand insights, ai brand perception, prompt data analysis, customer acquisition, brand positioning, consulting, brand visibility analysis, ai response tracking, visual brand analysis, ai-driven content, business intelligence, ai influence on purchase decisions, ai response analysis, ai platform analysis, digital experience, ai visibility tools, llm monitoring, content marketing, b2b, customer engagement, ai marketing tools, brand sentiment analysis, ai response mapping, enterprise software, lead generation, llm brand analysis, ai sentiment classification, brand awareness measurement, prompt data science, brand attribute scoring, marketing and advertising, growth strategy, ai sentiment in marketing, ai prompt optimization, content creation, brand attribute tracking, ai platform comparison, enterprise automation, multi-platform marketing, ai-powered marketing, ai sentiment scoring, ai in e-commerce, cloud solutions, ai impact measurement, market research, user experience, ai chat analysis, digital transformation, automated enterprise solutions, competitive insights, ai content optimization, e-commerce, marketing & advertising, saas, computer software, information technology & services, enterprises, management consulting, analytics, sales, cloud computing, ux, consumer internet, consumers, internet","","Cloudflare DNS, Gmail, Outlook, Google Apps, Slack, Vimeo, Mobile Friendly, React, Next.js, HTML Pro, CSS, TypeScript, Inkling, 1-Click Ready Windows Tool LDAP on Windows 2016, Adobe Creative Suite, Keynote","",Venture (Round not Specified),0,2024-02-01,"","",69c2818b1e946c0001ef972d,7311,54181,"OH-SO Digital is an AI, marketing, and technology agency based in Hamburg, Germany, with additional offices in Prague, Berlin, and Munich. The company focuses on creating intelligent experiences and shaping intelligent enterprises through a combination of creativity, automation, and AI-driven solutions. Operating as OH-SO Digital GmbH, it emphasizes making brands ""shine in every pixel"" and aims to enhance brand interactions across the customer journey. + +The agency offers a range of services that include ingenious creativity, anticipatory sales, magnetic digital services, and strategy development. It supports businesses with digital solutions, social media management, web development, and media management. OH-SO Digital promotes an integrated approach to brand growth, leveraging AI-powered tools to drive excitement and engagement. The company is backed by WPP, enhancing its capabilities and reach in the market.",2024,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67563dda1d5a0d00015c974e/picture,"","","","","","","","","" +mesakumo,mesakumo,Cold,"",25,information technology & services,jan@pandaloop.de,http://www.mesakumo.com,http://www.linkedin.com/company/mesakumo,"","","",Ulm,Baden-Wuerttemberg,Germany,"","Ulm, Baden-Wuerttemberg, Germany","mitarbeiter bei digitalisierung mitnehmen, digitalisierung, ubersetzungsarbeit businessit, organisationsentwicklung, datensicherheit, microsoft azure, it architektur, change management, cloud architektur, mittelstand, digitale roadmap, it zielbild, familienunternehmen, it betriebskosten senken, it sicherheit, itstrategie, beentheredonethat, befaehigung, itasaservice, digitale transformation, innovationstransfer itbusiness, digitalstrategie, it services & it consulting, digital strategy blueprint, management consulting, it architecture, digital talent acquisition, it modernization, cloud strategy, it governance frameworks, change communication, digital transformation in mittelstand, digitalization consulting, ai-powered tools, it transformation, data analytics, it budget, stakeholder engagement, it budget planning, it service management, it security, it consulting, innovation management, business model alignment, cloud computing, it compliance, it project management, it and business alignment, sustainable it solutions, digital transformation roadmap, digital strategy development, digital maturity, remote work tools, digital leadership development, business intelligence, customer-centric approach, strategy implementation, digital transformation, customer-centric, cross-functional teams, digital innovation, digital strategy workshop, digital culture change, digital project execution, it cost optimization, operational change management, it infrastructure, process optimization, program management, digitalization projects, it vendor management, project execution, digital strategy, it program success, stakeholder management, digital skills, cloud adoption, cybersecurity, digital project delivery, transformation consulting, digital ecosystem integration, digital ecosystem, sustainable it practices, digital leadership, digital maturity assessment, process automation, mid-sized company consulting, digital burger analogy, digital maturity model, digital skills development, it project planning, digital skills training, agile transformation, technology consulting, management consulting services, digitalization support, it governance, digital culture, digital transformation support, digital workplace, it strategy, digital roadmap, 10-week strategy development, operational excellence, b2b, information technology & services, information architecture, computer & network security, enterprise software, enterprises, computer software, analytics, marketing, marketing & advertising","","Outlook, Slack, Bootstrap Framework, Nginx, Google Tag Manager, Linkedin Widget, Mobile Friendly, Active Campaign, WordPress.org, Linkedin Login, reCAPTCHA, DoubleClick, Hotjar, Google Dynamic Remarketing, Hubspot, DoubleClick Conversion, Linkedin Marketing Solutions, Remote, AI","","","","","","",69c2818b1e946c0001ef9733,8742,54161,"mesakumo GmbH is a digital and IT strategy consulting firm based in Ulm, Germany, with a subsidiary in Switzerland. Founded in May 2021 by Dr. Fabian Kracht and a partner, the company specializes in supporting medium-sized enterprises (Mittelstand) in their digital transformation efforts. + +The firm offers a range of services designed to enhance digitalization, including the development of tailored digital and IT strategies, IT-efficiency programs, and strategy assessments. They also focus on talent acquisition, helping businesses quickly fill key IT roles with specialized experts. Notable clients include Ahrend GmbH & Co. KG, Kiesling, and NETZSCH Group, showcasing mesakumo's ability to drive effective digital strategies and solutions for mid-sized companies.",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f28066cc314800013c4d77/picture,"","","","","","","","","" +dbeyond ag,dbeyond ag,Cold,"",22,management consulting,jan@pandaloop.de,http://www.dbeyond.group,http://www.linkedin.com/company/dbeyond,https://facebook.com/pages/kk-information-services-GmbH/258684137497770,https://twitter.com/kukis_fellbach,"",Stuttgart,Baden-Wuerttemberg,Germany,"","Stuttgart, Baden-Wuerttemberg, Germany","digitalisierung, it beratung, consulting, strategieberatung, business consulting & services, data-driven digitalization, sap integration, computer systems design and related services, it consulting, customer journey, consulting services, information technology and services, future product development, b2b, product development, software engineering, innovation, technology consulting, community management, community marketing, system engineering, cybersecurity, customer experience, digital ecosystem, erp modernization, community building, people-centric approach, user experience, customer community management, digital strategy, technology modernization, process optimization, services, digital transformation, business transformation, customer engagement, software development, system integration, integrated erp platforms, product creation, management consulting, information technology & services, ux, marketing, marketing & advertising",'+49 711 5788130,"Outlook, Microsoft Office 365, Gmail, Google Apps, Google Cloud Hosting, Hubspot, Nginx, Mobile Friendly","","","","","","",69c2818b1e946c0001ef973e,7375,54151,"dbeyond group ag is a holding company based in Zug, Switzerland, focused on acquiring and managing companies and stakes in the financial sector. Established on April 11, 2023, the company is involved in various business activities, including the establishment of branches and subsidiaries abroad. + +The company oversees specialized subsidiaries that provide consulting and engineering services, particularly in digital transformation. dbeyond at+ offers expertise in data-driven products, software engineering, and process transparency tools like WissIntra®, which integrates management systems. dbeyond me+ focuses on modernization for mid-market companies, combining technical insight with leadership. The company targets mid-sized businesses and international OEMs, particularly in the mobility industry.",2024,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6714f753990c9d00014191ae/picture,"","","","","","","","","" +e-TRIBE AB,e-TRIBE AB,Cold,"",14,information technology & services,jan@pandaloop.de,http://www.etribe.se,http://www.linkedin.com/company/e-tribe-ab,"","","",Frankfurt,Hesse,Germany,"","Frankfurt, Hesse, Germany","automotive, mobility, manufacturing, automation, digital solutions, ict, cybersecurity, iot, functional safety, android, software development, mechanical or industrial engineering, mobile, internet, information technology & services","","Outlook, Amazon AWS, Mobile Friendly, YouTube, Google Font API, Reviews","","","","","","",69c2818b1e946c0001ef972c,7371,54151,"We are a Passionate TRIBE of Engineers with Vision to provide Technology and Engineering Solutions. + +Pioneer in Engineering & Technology Solutions +With expertise in critical areas of Industry and digitalization, we provide the core knowledge from our TRIBE which is needed to discover innovative solutions for urgent global problems. We understand the aspects of the customer challenges with a broad view. By integrating wide and different perspectives, we can make a solution possible in an effective way to make your business viable and sustainable.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6789e7077db67e0001ed3eb4/picture,"","","","","","","","","" +objective partner,objective partner,Cold,"",70,information technology & services,jan@pandaloop.de,http://www.objective-partner.de,http://www.linkedin.com/company/objective-partner,https://www.facebook.com/objectivepartner/,"",45/1 Bergstrasse,Weinheim,Baden-Wuerttemberg,Germany,69469,"45/1 Bergstrasse, Weinheim, Baden-Wuerttemberg, Germany, 69469","big data, s4hana, generative ai, cloud und digitale loesungen, digital business models, sap processes, kuenstliche intelligenz, digitale prozesse, integration von nonsap und sapsystemen, softwareentwicklung, digital services, iot, decision models, architekturen fuer digitalisierung, predictive analytics, individuelle softwareentwicklung, industry 40, sustainable production, smart manufacturing, realisierung von mobilen loesungen, digital twin, industrie 40, sap, business intelligence data warehouse, business intelligence amp data warehouse, innovation apps, sap s4hana transformation, location intelligence, digitale services, asset as a service, it services & it consulting, utilities, digitaler produktpass, lifecycle management, asset management, regulatorische compliance, services, webinare, design thinking, predictive analytics industrie, datengetriebenes unternehmen, einhaltung eu-batterieverordnung, nachhaltigkeit, basyx enterprise, automatisierung, digitaler batteriepass, process optimization, sap integration, user experience, batteriepass, interoperabilität, customer engagement, open source, asset administration shell, machine learning, digital transformation, computer systems design and related services, industrie 4.0, digitale zwillinge in der produktion, open source industrie 4.0 software, consulting, eclass, custom software development, manufacturing, data management, verwaltungsschalen-generator, ki-basierte automatisierung, asset administration shell management, recycling- und second life lösungen, it-strategie, ki im mittelstand, künstliche intelligenz, information technology and services, b2b, standardisierte schnittstellen, industrie 4.0 plattformen, cloud computing, smart factory, predictive maintenance, blockchain in industrie 4.0, smart data, energy_&_utilities, enterprise software, enterprises, computer software, information technology & services, ux, artificial intelligence, mechanical or industrial engineering",'+49 6201 39860,"Outlook, Microsoft Office 365, Atlassian Cloud, Typeform, Hubspot, Figma, Amazon SES, Slack, WordPress.org, Facebook Widget, Nginx, DoubleClick, Vimeo, Facebook Login (Connect), Bing Ads, Mobile Friendly, Linkedin Marketing Solutions, reCAPTCHA, Google Tag Manager, Remote, AWS SDK for JavaScript, ABAP, , SAP, SAP S/4HANA","","","","","","",69c2818b1e946c0001ef972f,3531,54151,"objective partner AG is a German IT consulting and software development company based in Weinheim, Baden-Württemberg. Founded in 1995, it employs approximately 85-95 people and generates annual revenue of $13.1 million. The company focuses on helping clients enhance their digital businesses through agile IT strategies that promote stability and innovation. + +The services offered by objective partner include IT consulting, digital transformation, and custom software solutions. They specialize in SAP integration, AI and automation tools, Industry 4.0 and IoT solutions, compliance and sustainability initiatives, and innovation methodologies. Their approach emphasizes delivering quick, measurable business value and fostering collaboration across departments and technologies. The company aims to support businesses in achieving revenue growth, cost reduction, and improved decision-making through technology-driven solutions.",1995,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670d4a70df0af4000125b8f7/picture,"","","","","","","","","" +Comparus GmbH,Comparus,Cold,"",46,management consulting,jan@pandaloop.de,http://www.comparus.de,http://www.linkedin.com/company/comparus-gmbh,"","",4 Essener Strasse,Hamburg,Hamburg,Germany,22419,"4 Essener Strasse, Hamburg, Hamburg, Germany, 22419","ai, agiles management, platformcloud application, ai ki, software migration, agile softwareentwicklung, prozessintelligenz, daten migration, softwaremigration, digitale business migration, datenmigration, digitale businesstransformation, business consulting & services, it infrastructure, consulting, digital transformation, b2b, enterprise software, devops, cloud solutions, cloud computing, software development, cloud services, it security, it solutions, software engineering, services, machine learning, it consulting, cloud infrastructure, management consulting, information technology & services, enterprises, computer software, computer & network security, artificial intelligence, internet infrastructure, internet",'+49 40 41009070,"MailJet, Grafana, Microsoft Azure Monitor, React Redux, Google Font API, Google Tag Manager, Google Maps (Non Paid Users), Mobile Friendly, WordPress.org, Apache, Google Maps, reCAPTCHA, Remote, Jira, Confluence, Google Cloud Platform, AWS Analytics, VMware, Kubernetes, OpenStack, KVM, Ubuntu, IBM MaaS360, Tenable Security Center, Qualys Penetration Testing, Burp Suite, McAfee Total Protection for Data Loss (DLP), AWS WAF, Siemens PROFIBUS, Pipedrive, Trend Micro XDR, GitHub, GitLab, Jenkins, Python, Bash, Terraform, Ansible, Wider Planet, Yahoo! Japan Promotional Ads, COBOL, SQL, AI, AWS SDK for JavaScript, BMC Compuware Abend-AID, BMC Compuware File-AID, BMC Compuware ISPW, CA Endevor, Cisco Meraki MS, Connect, Eclipse, Git, IBM CICS Transaction Server, IBM Db2 for Linux, UNIX, and Microsoft Windows, Micro, Spring, Red Hat OpenShift, Amazon EKS Anywhere, OpenAPI, pandas, NumPy, Sqlalchemy, Conviva Operational Data Platform","","","","","","",69c2818b1e946c0001ef9730,"","","Comparus GmbH is a German IT company based in Hamburg, established in 2006. The company specializes in strategy consulting, software development, and AI solutions, primarily for the financial sector, including banks. With over 20 years of experience and more than 250 completed projects, Comparus focuses on digital transformation and optimization, helping clients enhance their business models through innovative technology and agile implementation. + +The company offers a range of services, including strategy consulting for digitalization initiatives, software development for complex IT services, and AI integration. Their products, such as TiONA, feature user interface enhancements with chatbots and support enterprise AI solutions in collaboration with IBM. Comparus also addresses skilled labor shortages by streamlining over 1,200 banking processes, significantly reducing effort and improving efficiency for financial institutions. The company maintains a Ukrainian-German team to provide tailored IT services for the European financial sector, fostering long-term client relationships through flexible communication.",2001,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/687894fd5ea77b0001bec453/picture,"","","","","","","","","" +DE software & control GmbH,DE software & control,Cold,"",33,information technology & services,jan@pandaloop.de,http://www.de-gmbh.com,http://www.linkedin.com/company/de-software-&-control-gmbh,https://www.facebook.com/DEsoftware,"",21 Mengkofener Strasse,Dingolfing,Bavaria,Germany,84130,"21 Mengkofener Strasse, Dingolfing, Bavaria, Germany, 84130","intralogistik, worker assistance sytems, lean office, werkerassistenzsysteme, lean production, manufacturing execution systems, erp, software development, industry 4.0, process solutions, consulting, system integration, managed services, real-time production planning, data analysis, business intelligence, smart workplaces, information technology, digitalization, automation, project management, custom software solutions, production optimization, it platform, collaboration, supply chain optimization, automation technology, data integration, remote monitoring, source code transparency, incident management, change management, availability management, support services, industrial software solutions, user-friendly interfaces, production data management, erp systems, data visualization, machine learning, computer science, engineering, customer support, project lifecycle, compliance, data-driven decision making, smart manufacturing, intelligent shopfloor, production efficiency, resource planning, application integration, data analytics, flexible it solutions, information technology & services, analytics, productivity, enterprise software, enterprises, computer software, b2b, artificial intelligence",'+49 873 137970,"Outlook, Microsoft Office 365, Hubspot, Bootstrap Framework, Apache, Mobile Friendly, Google Analytics, WordPress.org, Android, Remote, AWS SDK for JavaScript, C#, Office365, SAP, Microsoft Windows Server 2012, Aryson MySQL to MSSQL Converter, Oracle Analytics Cloud, Maven, Gradle, npm, Jenkins, ENTERPRISE ARCHITECT","","","","","","",69c2818b1e946c0001ef9731,"","","Welcome to DE software & control GmbH, your partner in pioneering bespoke software solutions for Lean Production and Lean Office. Specializing in key sectors like Automotive, Electronics, Intralogistics, Surface Technology, and Furniture Manufacturing, we craft tailor-made solutions that enhance manufacturing efficiency and productivity. + +Our mission is to develop custom IT solutions that meet the unique needs of production enterprises, ensuring seamless integration of systems and processes. We strive to empower employees with real-time, accurate data, fostering informed decision-making and reinforcing manufacturing excellence. + +Envisioning a future of interconnected production environments, our DESC product family encapsulates all MES processes, adhering to VDI 5600 standards. Our modular approach allows for flexible customization, meeting precise customer requirements and optimizing workflows with pride in our reputable clients' satisfaction. +Innovation, customer orientation, and reliability are our core values. We build trust through high-quality, secure solutions and are committed to sustainability, knowledge sharing, and continuous improvement. We aim to make Industry 4.0 accessible, creating an inclusive workforce and contributing to a better production.",1997,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670cb62e0225160001ad7887/picture,"","","","","","","","","" +busitec GmbH,busitec,Cold,"",35,information technology & services,jan@pandaloop.de,http://www.busitec.de,http://www.linkedin.com/company/busitec,https://facebook.com/busitec,https://twitter.com/busitecgmbh,8 Martin-Luther-King-Weg,Muenster,North Rhine-Westphalia,Germany,48155,"8 Martin-Luther-King-Weg, Muenster, North Rhine-Westphalia, Germany, 48155","business intelligence, modern workplace, office 365, enterprise content management, individualentwicklung, nintex partner, microsoft technologien, elo partner, ecspand partner, anwendungsdesign, projektmanagement, modern apps, smart it, itstrategieberatung, cloud services, dokumentenmanagement, cloud solutions, prozessberatung, cloudmachbarkeitsanalyse, microsoft azure, business solutions, microsoft gold partner, schulungen, prozessautomatisierung, microsoft powerapps, softwareevaluationen, microsoft 365, low-code development, workflow automation, workshops, e-rechnung, computer systems design and related services, microsoft solutions partner, it consulting, microsoft fabric, dox42, data security, azure, power apps, information technology and services, b2b, customer relationship management, security, power automate, sustainable it, belegmanagement, automated document creation, integration expertise, ecm suite, it services, schnittstellenentwicklung, data driven company, skybow, data infrastructure, zero trust, custom software, data analytics, full-code development, digital strategy, process optimization in energy sector, process optimization, support, dms/ecm tools, microsoft power platform, services, digital transformation, process automation, ai, microsoft dynamics 365, application development, it security, hybrid development, reifegradmessung, rechnungsverarbeitung, power bi, consulting, green cloud infrastructure, data visualization, analytics, information technology & services, cloud computing, enterprise software, enterprises, computer software, management consulting, computer & network security, crm, sales, marketing, marketing & advertising, app development, apps, software development",'+49 251 133350,"Sendgrid, Outlook, Microsoft Application Insights, Netlify, Microsoft Azure, Hubspot, Zendesk, Google Tag Manager, Linkedin Marketing Solutions, Facebook Login (Connect), Nginx, WordPress.org, DoubleClick, Mobile Friendly, DoubleClick Conversion, YouTube, Google Dynamic Remarketing, Bing Ads, Facebook Widget, Google Font API, Facebook Custom Audiences, Etracker, Microsoft Power Platform, Copilot, WorkFusion AI Digital Agents, Microsoft Power Apps, Microsoft Power Automate, PowerBI Tiles, Pages, Azure Data Factory, Microsoft Fabric, Microsoft Azure Monitor, Gem, Microsoft 365","","","","","","",69c2818b1e946c0001ef973a,7375,54151,"busitec GmbH is an IT service provider focused on process automation and digitalization for enterprises. With over 25 years of experience, the company operates offices in Münster, Berlin, and Karlsruhe, Germany. It positions itself as a partner for digital transformation, emphasizing the importance of clear strategies and competent implementation. + +The company offers a range of services, including digitalization services that help clients automate processes and develop modern applications. busitec also creates industry-specific business solutions tailored to various sectors such as sales, customer service, human resources, and energy supply. Additionally, it provides IT consulting, low-code development for rapid application results, and solutions for modern workplace environments. The full-service model supports clients from initial planning through implementation and ongoing operations, utilizing established templates and best practices.",1999,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66dcdaf8dbd8aa00013aab79/picture,"","","","","","","","","" +Neofonie GmbH,Neofonie,Cold,"",51,information technology & services,jan@pandaloop.de,http://www.neofonie.de,http://www.linkedin.com/company/neofonie,https://www.facebook.com/Neofonie/,https://twitter.com/neofonie,4 Robert-Koch-Platz,Berlin,Berlin,Germany,10115,"4 Robert-Koch-Platz, Berlin, Berlin, Germany, 10115","ecommerce, communities, cms, data mining, digital transformation, dxp, big data, search, mobile solutions, portals, text mining, artificial intelligence, development, it services & it consulting, b2c, mobile apps, content optimization techniques, e-commerce, services, content microservices, business intelligence, content security protocols, content integration in legacy systems, content structures, data analytics, content experience, b2b, computer systems design and related services, machine learning, content performance, content integration, content management, content scalability, full-service agentur, content seo tools, shopify, content flexibility, content governance, content seo, content governance models, content multichannel, d2c, content analytics tools, content workflow automation, content flexibility design, content performance optimization, content headless deployment, content personalization tools, content development, conversion optimization, agile projektumsetzung, content strategy, magnolia cms, content plattformen, content workflow management, content personalization algorithms, content api management, typo3, marketing automation, digital content management, content multisite, content experience platforms, contentful, content modular architecture, managed it services, content security, content multisite management, consulting, content api, content multilingual, content automation with generative ki, commerce solutions, content flexibility solutions, systemintegration, software development, content workflow, content analytics, content automation tools, digital agency, content multilingual strategies, cloud solutions, retail, content integration platforms, information technology and services, content accessibility, digital marketing, government, digitalagentur, content scalability solutions, content security measures, content orchestration, ki, content personalization, content optimization, content development frameworks, strapi, content accessibility compliance, web development, content automation, headless cms, content scalability architecture, content microservices architecture, consumer products & retail, consumer internet, consumers, internet, information technology & services, enterprise software, enterprises, computer software, analytics, marketing & advertising, saas, cloud computing",'+49 30 246270,"Gmail, Google Apps, DoubleClick Conversion, Google Tag Manager, Google Dynamic Remarketing, Mobile Friendly, DoubleClick, Google Play, WordPress.org, Android, Remote, AWS SDK for JavaScript, Magnolia, Spring, Docker, Microsoft Excel, Microsoft Dynamics NAV",60000,Seed,30000,1999-01-01,2234000,"",69c2818b1e946c0001ef9727,7375,54151,"Neofonie GmbH is a full-service digital agency based in Berlin, founded in 1998 as a spin-off from the Technical University of Berlin. The company is recognized among the top 50 digital agencies in Germany and ranks in the top 20 for e-commerce and mobile solutions. With a team of 50-249 employees, Neofonie generates approximately $22.9 million in revenue and operates from its headquarters in Berlin. + +Neofonie specializes in developing tailored solutions in mobile, e-commerce, content management, and artificial intelligence. Their core services include technology consulting, UX/UI design, web and software development, as well as IT consulting and secure hosting. The agency emphasizes research-driven innovation and offers end-to-end services from consulting to operation across various platforms. Neofonie has expanded through several subsidiaries, enhancing its capabilities in mobile solutions, UX design, and AI. The agency serves a diverse range of clients, including notable names like AUDI and mobile.de, focusing on long-term projects that leverage its extensive experience.",1998,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/687e1c050d2b3b00016a2496/picture,"","","","","","","","","" +Service Innovation Group,Service Innovation Group,Cold,"",64,investment management,jan@pandaloop.de,http://www.serviceinnovation.com,http://www.linkedin.com/company/service-innovation-group-gmbh,"","",128 Pforzheimer Strasse,Ettlingen,Baden-Wuerttemberg,Germany,76275,"128 Pforzheimer Strasse, Ettlingen, Baden-Wuerttemberg, Germany, 76275","sales, vertrieb, projektmanagement, international projects, international, pos optimizing, posdienstleistungen, pos services, holding companies, digital network celero one, marketing and advertising, retail, pos optimization, management consulting services, customer engagement, customer experience transformation, digital infrastructure, customer relationship management, sales trend innovation, iot data for market research, digital workforce management, global sales support, brand awareness enhancement, international sales structures, market data collection tools, consulting, pos maintenance, iot services, information technology, sales promotion, campaign implementation, sales trend setting, data analytics, real-time resource control, b2b, field marketing, resource planning software, workforce optimization, distribution, business services, brand awareness, customer experience, sales and marketing activities, point of sale solutions, brand ambassadors, mystery shopping, bespoke field sales solutions, customer engagement strategies, global brand ambassador network, mobile team coordination, client project development, complex project execution, multinational pos campaigns, market research data collection, international business expansion, mobile team planning, workforce management software, customer loyalty programs, services, investment management, financial services, marketing & advertising, crm, enterprise software, enterprises, computer software, information technology & services","","Gmail, Google Apps, Outlook, Microsoft Office 365, Slack, Salesforce, Apache, Mobile Friendly, Google Tag Manager, Typekit, WordPress.org, AI","","","","","","",69c2818b1e946c0001ef9728,7389,54161,"Service Innovation Group (SIG) is a corporate group based in Watford, United Kingdom, specializing in intelligent point-of-sale (POS) solutions and field marketing services since 1994. The company provides tailored outsourcing solutions for sales, marketing, and in-store logistics, supported by a network of over 25,000 brand ambassadors across Europe, the Middle East, Africa, and beyond. + +SIG's core services include field marketing, merchandising, and sales optimization at the point of sale. Their offerings encompass merchandising and replenishment, POS installations, promotional activations, and in-store training. The company utilizes a syndicated model with trained teams to ensure effective in-store execution and exceed sales targets. Their proprietary cloud-based platform, Celero One, enhances workforce management with features like live dashboards and real-time geo-mapping. + +With a strong presence in key European markets and a global reach, SIG serves blue-chip companies and major brands, focusing on long-term partnerships that align with client values. The company emphasizes innovation through data-driven strategies and process optimization to achieve marketing success.",1994,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6963bc121324fd0001652fab/picture,"","","","","","","","","" +dialocx,dialocx,Cold,"",15,outsourcing/offshoring,jan@pandaloop.de,http://www.dialocx.de,http://www.linkedin.com/company/dialocx,https://www.facebook.com/dialocx,"",29-37 Gartenfelder Strasse,Berlin,Berlin,Germany,13599,"29-37 Gartenfelder Strasse, Berlin, Berlin, Germany, 13599","customer experience, customer journey, kundenservice, backofficeservices, onmichannel management, outsourcing & offshoring consulting, outsourcing/offshoring","","Outlook, Microsoft Office 365, Microsoft Azure Hosting, Mobile Friendly, Facebook Custom Audiences, Facebook Widget, WordPress.org, Facebook Login (Connect), Etracker","","","","","","",69c2818b1e946c0001ef9738,"","","Wir von dialocx verbinden Dialogexpertise mit exzellentem Kundenservice. Für eine optimale Customer Experience. + +Mit uns können Sie und Ihre Kunden auf langjähriges Branchen Know-How, Professionalität und Empathie vertrauen. Denn wir wissen: Höchste Servicequalität und Menschlichkeit stehen im Kundenservice an erster Stelle. Ein nahtloser Service entlang der gesamten Customer Journey ist heute weit mehr als nur die Visitenkarte eines Unternehmens, sie ist der Schlüssel zum nachhaltigen Erfolg. +Deshalb sorgen unsere erfahrenen Kommunikationsprofis in unseren multikanalfähigen dialocx-Centern nicht nur für eine optimale Kundenbetreuung an der Schnittstelle zum Endkunden oder im B2B-Geschäft, sondern sie entwickeln die Beziehung zu Ihren Kunden stetig weiter. +Mit uns gelingt das Kundenservice-Outsourcing leicht und schnell. Unsere Leistungen umfassen sowohl Plug & Play Lösungen als auch individuelle Serviceleistungen. Je nach Wunsch und Anforderung. +Weitere Informationen finden Sie auf unserer Webseite oder vereinbaren Sie doch einfach ein unverbindliches Beratungsgespräch mit uns. + +Wir freuen uns auf Sie!","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f0eb2a55f738000177d2cd/picture,"","","","","","","","","" +Spotler DACH,Spotler DACH,Cold,"",31,information technology & services,jan@pandaloop.de,"",http://www.linkedin.com/company/spotler-dach,"","",5 Bertha-Benz-Strasse,Berlin,Berlin,Germany,10557,"5 Bertha-Benz-Strasse, Berlin, Berlin, Germany, 10557","customer prediction, ki, automated machine learning, customer data platform, marketing automation, crosschannel marketing, data, crm, campaign management, marketing, customer data, software as a service, segmentation, tech, ai, marketing hub, artificial intelligence, clv, integration, machine learning, email marketing, crm consulting, saas, sales & marketing, big data, predictive analytics, enterprise software, software, information technology, software development, marketing & advertising, computer software, information technology & services, enterprises, b2b, sales",'+49 30 25766033,"",5814271,Venture (Round not Specified),5814271,2017-11-01,"","",69c2818b1e946c0001ef9739,"","","Spotler DACH is a division of Spotler focused on the DACH region, which includes Germany, Austria, and Switzerland. Formed in 2023 through the acquisition of CrossEngage, it specializes in data-driven marketing SaaS solutions. The company is headquartered in Berlin and has additional offices in Hamburg. It employs around 30-55 people and reported $14.6 million in revenue in 2024. + +Spotler DACH offers a range of marketing SaaS solutions within Spotler's Marketing Cloud. Their key offerings include a Customer Data and Prediction Platform that collects and analyzes customer data, along with cross-channel tools for website personalization, product recommendations, and email campaigns. They also provide customer journey management tools to help businesses prioritize customers and build targeted campaigns while ensuring compliance with privacy regulations. The company supports various industries, including commerce and B2B, with a focus on AI-enhanced data platforms and channel integrations.",2015,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e85b9d4ef40a000144f6b6/picture,Spotler Group (spotlergroup.com),6023bc9b08df1200e222ec5b,"","","","","","","" +UBH SOFTWARE & ENGINEERING GmbH,UBH SOFTWARE & ENGINEERING,Cold,"",21,machinery,jan@pandaloop.de,http://www.ubh.de,http://www.linkedin.com/company/ubhsoftwareandengineering,https://www.facebook.com/ubhgroup/,"",2 Jubatus-Allee,Ebermannsdorf,Bavaria,Germany,92263,"2 Jubatus-Allee, Ebermannsdorf, Bavaria, Germany, 92263","innovation, 247 service, produktionsautomation, lagerlogistik, sondermaschinenbau, intralogistik, it, wms, steuerungssysteme, systemintegration, automatisierung, software, generalunternehmer, scada, smart factory, elektrotechnik, logistikplanung, warehouse, erpsystem, lagerautomation, industrie 40, retrofit, wcs, automation machinery manufacturing, custom software, production automation, simulation, robotics, fire safety solutions, iot, project realization, automated storage and retrieval systems, intralogistics systems, material flow control, automated guided vehicles, safety and security systems, high-tech assembly, automated packaging systems, distribution, automation software, manufacturing, industry 4.0, b2b, lifetime services, automation engineering, warehouse management system, smart logistics software, information technology, mes, bicycle and automotive logistics, system integration, it solutions, erp, flexible manufacturing, automated transport under ceilings, mes solutions, material handling equipment manufacturing, software development, ki materialflusssteuerung, retrofit automation solutions, logistics planning, process optimization, flexible manufacturing lines, automated transport systems, visualization, high-tech assembly lines, data-driven automation, consulting, automated packaging, retrofit solutions, high-dynamic handling systems, industrial automation, silobauweise hochregallager, big data, manufacturing automation, fire protection, fire safety in warehouses, safety systems, automated storage and retrieval, material handling systems, custom automation solutions, warehouse automation, services, automotive and bicycle logistics, information technology & services, mechanical or industrial engineering, enterprise software, enterprises, computer software, government administration","","Mobile Friendly, Bootstrap Framework, Remote, ePlan, Senior Sistemas","","","","","","",69c2818b1e946c0001ef972a,3589,33392,"ERP, WMS/WCS, warehouse automation, production automation, special machinery construction, retrofitting, SCADA, system integration and reliable 24/7 support—UBH has been providing these services since 1983. +As an internationally active general contractor, we implement comprehensive IT and automation projects along the entire value chain—from concept to turnkey handover. +Our portfolio includes our own IT products such as the modular ERP suite wEBV along with our customized software solutions LogiCS, ProdiCS und ScadiCS for WMS/WCS and SCADA systems – and seamlessly integrates these with sophisticated warehouse automation and production automation in special machinery construction. We have successfully future-proofed existing systems in numerous modernization and retrofit projects. +With a deep understanding of processes, cutting-edge technology and consistent system integration, we support SMEs and corporations alike with individual, scalable solutions. A strong service organization with 24/7 support ensures maximum availability and reliable operation. +UBH has been synonymous with connected technologies, collaborative partnerships and customer-specific solutions – for over 40 years.",1983,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68ce7e5bbcff84000177b39a/picture,"","","","","","","","","" +AV Software Solutions 360°,AV Software Solutions 360°,Cold,"",11,information technology & services,jan@pandaloop.de,http://www.av360.io,http://www.linkedin.com/company/avsoftwaresolutions,https://www.facebook.com/av360grad,"",41 Schanzenstrasse,Cologne,North Rhine-Westphalia,Germany,51063,"41 Schanzenstrasse, Cologne, North Rhine-Westphalia, Germany, 51063","digitalisierung, it services, it beratung, new work, enterprise architecture management, business intelligence, kuenstliche intelligenz, machine learning, deep learning, softwareentwicklung, big data analytics, collaborative work, salesforce, digital transformation, it services & it consulting, information technology & services, analytics, artificial intelligence, enterprise software, enterprises, computer software, b2b","","Pardot, Salesforce, Nginx, WordPress.org, Google Tag Manager, Mobile Friendly","","","","","","",69c2818b1e946c0001ef972b,"","","Als Competence Center des Bechtle IT-Systemhauses Bonn befasst sich AV Software Solutions 360° sowohl mit der klassischen Softwareentwicklung als auch mit Themen, die die Zukunftsmärkte bestimmen. Mit AVS bietet Bechtle eine einzigartige Entwicklerkompetenz, die von der ersten Beratung bis hin zur umfassenden Projektabwicklung in jedem Schritt dedizierte Ressourcen und Expertisen zur Verfügung stellt. AV steht für „Angle of View"", also Blickwinkel Software Lösungen in der vollständigen Perspektive. AVS befähigt Organisationen in den öffentlichen und privaten Sektoren, die Zukunft mit Zuversicht zu gestalten. Ob Regierungsbehörde, Universität oder Krankenhaus – AVS unterstützt den Weg zur digitalen Exzellenz.",2012,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68f6029cab8d7d0001f00e46/picture,"","","","","","","","","" +MCS GmbH,MCS,Cold,"",31,information technology & services,jan@pandaloop.de,http://www.mcs.de,http://www.linkedin.com/company/mcs-it-systemhaus,"","",23 Essener Bogen,Hamburg,Hamburg,Germany,22419,"23 Essener Bogen, Hamburg, Hamburg, Germany, 22419","itinfrastruktur, individualsoftware, itconsulting, mcscloud, itmanagement, it services & it consulting, consulting, patch management, managed services, it-implementierung, it-consulting, managed it services, firewall configuration, information technology and services, backup solutions, it-services, it-systemhaus, custom software development, virtualization, it schulungen, cloud solutions, datacenter services, endpoint security, it-administration, it-transformation, data center, it-security, private cloud, it-compliance, computer systems design and related services, it-strategie, government, data security, hybrid cloud infrastructure, b2b, cybersecurity, it-sicherheit, german data hosting, softwareentwicklung, iso 27001, data center services, it migration, it-lösungen, software as a service, it-projekte, software development, system integration, hybrid cloud, it-hosting, it-beratung, services, computer software and services, cloud computing, it-architektur, digital transformation, it-infrastruktur, it-management, project management, it monitoring, it-support, it-optimierung, distribution, transportation & logistics, information technology & services, enterprise software, enterprises, computer software, internet service providers, computer & network security, saas, productivity",'+49 40 537730,"Outlook, Mobile Friendly, WordPress.org, Apache, Woo Commerce, Microsoft Windows Server 2012, Apple macOS, Docker, Azure Linux Virtual Machines, Akamai CDN Solutions, JTL-Shop 3","","","","","","",69c2818b1e946c0001ef972e,7375,54151,"We are MCS – your system house for future-proof IT infrastructure, agile software development, modern IT management, and powerful cloud services. +With MCS.Cloud – 100% Made & Hosted in Germany, we provide maximum security, flexibility, and data protection. + +We see ourselves as part of your IT team. That's why we deliver manufacturer-independent solutions that perfectly match your needs – whether for individual components, complex data centers, or full-service operations. + +✅ High-availability Cloud & Data Center solutions +✅ IT infrastructure & IT management (including monitoring, patch management & security) +✅ Custom software & database development +✅ IT consulting, training & managed services + +💡 Whether temporary or long-term, specialized or all-round: Our IT experts are here for you – reliable, collaborative, and forward-thinking. + +👉 Let's talk about your IT future. Connect now or get in touch directly.",1992,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68775bbbb15e6a0001f12ce1/picture,"","","","","","","","","" +Sandmeier Consulting,Sandmeier Consulting,Cold,"",25,management consulting,jan@pandaloop.de,http://www.sandmeier-consulting.de,http://www.linkedin.com/company/sandmeier-consulting,"","",71-73 August-Bebel-Strasse,Bielefeld,Nordrhein-Westfalen,Germany,33602,"71-73 August-Bebel-Strasse, Bielefeld, Nordrhein-Westfalen, Germany, 33602","digitalisierung, sap lizenzmanagement, sap lizenzberatung, rpa, sap lizenzmanagement & sap lizenzberatung, sap authorization management, business consulting & services, sap lizenzvermessung, power platform, sap lizenz- und berechtigungsautomatisierung, consulting, project management, sap lizenzregeln, sap lizenztools, system integration, sap berechtigungsmanagement, sap security, sap compliance, services, rpa ki automatisierung, automatisierte sap lizenzvermessung, sap lizenzkostenreduktion durch digitale methoden, sap lizenz- und berechtigungsstrategie, sap consulting, sap lizenzmanagement in cloud-umgebungen, low-code saas lösungen, sap berechtigungskonzepte, sap lizenz- und berechtigungsautomatisierung mit rpa, management consulting services, sap lizenz- und berechtigungsprozesseoptimierung, cloud computing, regelwerk für sap star service, operational efficiency, it services, sap lizenzvermessung in sap s/4hana, sap lizenz- und berechtigungsberatung, sap lizenz- und berechtigungsstrategieentwicklung, sap lizenzstrategieentwicklung, sap lizenzkosten, data management, sap lizenz- und berechtigungsoptimierung, sap lizenz- und berechtigungswerkzeuge, automatisierung rpa ki, b2b, sap s/4hana, sap lizenzstrategie, s/4hana migration, sap lizenzwerkzeuge, digitale transformation, sap lizenz- und berechtigungsmanagement mit ki, sap lizenz- und berechtigungsanalyse, sap lizenz- und berechtigungsregeln, artificial intelligence, sap star regelwerk, sap lizenz- und berechtigungsmanagement, sap lizenz- und wartungsoptimierung, sap lizenz- und berechtigungsdigitalisierung, sap lizenzmanagement für rise with sap, digital transformation, automatisierte sap berechtigungskonzepte, sap lizenzkostenreduktion, sap lizenz- und berechtigungsmanagementsysteme, sap lizenz- und berechtigungsimplementierung, it consulting, sap audit, ki-gestützte sap lizenzoptimierung, sap vertragsanalyse, sap lizenz- und berechtigungsmanagementlösungen, sap lizenz- und berechtigungsprozesse, sap lizenzoptimierung, sap automatisierung, digitaler sap lizenzmanager, sap audit sicherheit, ai, finance, education, legal, distribution, transportation & logistics, management consulting, productivity, enterprise software, enterprises, computer software, information technology & services, financial services",'+49 52 192279640,"Outlook, Remote, , SAP, Microsoft Power Platform, Microsoft Azure Monitor, Microsoft 365, SAP S/4HANA","","","","","","",69c2818b1e946c0001ef9735,8742,54161,"Sandmeier Consulting GmbH is a prominent management consultancy based in Bielefeld, Germany, founded in 2009 by Dr. Michael Sandmeier. The firm specializes in SAP license consulting, digitalization, and IT strategy services. It is recognized for its product- and vendor-neutral approach, focusing on customer needs. Sandmeier Consulting has received the TOP CONSULTANT award multiple times, reflecting its commitment to professionalism and client satisfaction. + +The company operates through two main business units: SAP License Excellence and Digital Excellence. SAP License Excellence offers services such as contract analysis, intelligent SAP license management, and support for S/4HANA conversions. Digital Excellence focuses on sourcing enterprise applications, business model innovation, and intelligent automation using AI and robotic process automation. Sandmeier Consulting is dedicated to providing innovative solutions and maintaining neutrality in the SAP environment, helping clients achieve cost savings and compliance.",2009,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/677962f6507488000120bac4/picture,"","","","","","","","","" +Lio,Lio,Cold,"",58,information technology & services,jan@pandaloop.de,http://www.asklio.ai,http://www.linkedin.com/company/lio-ai,"","",10A Winthirstrasse,Munich,Bavaria,Germany,80639,"10A Winthirstrasse, Munich, Bavaria, Germany, 80639","software development, operational efficiency, ai for procurement compliance checks, ai for procurement decision-making, ai for procurement market analysis, erp integration, information technology and services, services, ai-powered procurement workflow, it security, business intelligence, ai algorithms, ai for free text request handling, government, user experience, procurement automation, free text request automation, procuretech awards, strategic procurement support, ai co-pilot for procurement, ai procurement assistant, procurement process automation, ai in procurement, generative ai for procurement, ai in procurement automation, ai procurement platform, ai co-pilot, b2b, ai-powered procurement workforce, ai assistants, free text requests, computer software, ai decision support, microsoft teams integration, ai agents, gdpr compliant, data enrichment, ai for procurement process optimization, gdpr compliance, ai-driven decision support, guided buying, ai integration in erp, unstructured data processing, procuretech award winner, process optimization, ai procurement assistant in microsoft teams, ai procurement workforce, ai workflow automation, ai in supply chain, ai procurement solution, strategic procurement, data security, supply chain management, software publishers, software publishing, generative ai, saas, information technology & services, computer & network security, analytics, ux, logistics & supply chain",'+49 6467 764657,"Outlook, Microsoft Office 365, Hubspot, Google Font API, Vimeo, Apache, Hotjar, Google Tag Manager, Mobile Friendly, AI, SAP, ISO+™, Varonis GDPR Patterns, Act!, Oracle Analytics Cloud, Microsoft Dynamics, SAP R/3, SAP ECC, SAP S/4HANA, Oracle Cloud Infrastructure, Process automation package for service request creation in SAP S/4HANA Utilities, Amazon Associates",30130000,Series A,30000000,2026-03-01,"","",69c2818b1e946c0001ef9737,7375,51321,"askLio is a pioneering multi-agent AI system designed for enterprise procurement. It automates the entire purchase request process through specialized AI agents that manage vendor research, negotiations, approvals, and delivery tracking simultaneously. The platform aims to reduce operational tasks, allowing procurement professionals to focus on strategic roles. + +The core offering includes a network of AI agents that streamline various procurement functions. Users can benefit from five key layers: simplifying buying, automating operations, scaling savings, enhancing buyer capabilities, and managing an ""Agentic Workforce."" This layered approach allows companies to adopt solutions that best fit their needs. askLio is positioned as a transformative tool in procurement, reshaping traditional processes and improving efficiency for enterprise teams globally.",2022,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68b5177552e53a00011f2bad/picture,"","","","","","","","","" +actcon GmbH,actcon,Cold,"",12,information technology & services,jan@pandaloop.de,http://www.actcon-gmbh.de,http://www.linkedin.com/company/actcon-gmbh,https://de-de.facebook.com/Actcon-GmbH-1023171847815493/,"",22 Schanzenstrasse,Cologne,North Rhine-Westphalia,Germany,51063,"22 Schanzenstrasse, Cologne, North Rhine-Westphalia, Germany, 51063","managed services, digital farming, itprojects, customer support, it services & it consulting, it-security, it-rollout, consulting, projektmanagement, it-infrastruktur, personalvermittlung, it-workforce flexibilität, information technology and services, b2b, it-fachkräfte, it-contracting, cloud services, project management, it-training, it-service level agreements, computer systems design and related services, it-projekt support, it infrastructure, it-consulting köln, it consulting, services, operational efficiency, flutter entwickler nepal, data management, it-dienstleistungen, software development, it-expertenvermittlung international, it-consulting, data security, it-security management, it-expertenvermittlung, systemadministration, it-support, freelancing, nachhaltige it-lösungen, it-projekte, cybersecurity, softwareentwicklung, it solutions, digitalisierung, kundenbetreuung, information technology & services, cloud computing, enterprise software, enterprises, computer software, productivity, management consulting, computer & network security, freelancers",'+49 221 97583050,"Outlook, Google Tag Manager, Mobile Friendly, Google Maps, Nginx, React Native, Android, Remote, AI","","","","","","",69c2818b1e946c0001ef973c,7375,54151,"actcon GmbH is an IT consulting and services company based in Cologne, Germany, founded in 2014. With around 85 employees, the company specializes in connecting skilled IT professionals with prominent enterprises while offering tailored IT solutions. The founders have extensive experience in the IT sector, having previously worked as internal IT service providers for Bayer AG. + +The company provides three main service areas: Managed Services for ongoing IT management and support, IT-Contracting for supplying IT specialists on a contractual basis, and Personnel Consulting for recruitment and advisory services in permanent IT positions. actcon GmbH focuses on efficient matchmaking between IT experts and clients, leveraging its deep IT heritage and process expertise. The company collaborates with major industry players, including Bayer AG, BASF AG, and Atos SE, and has been involved in agile project management development since 2018.",2014,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e76fdccf048200010551d6/picture,"","","","","","","","","" +"omniIT • IT Security, Cloud Engineering & Projektverstärkung. Ohne Sprach- und Kulturbarrieren",omniIT • IT Security Cloud Engineering & Projektverstärkung. Ohne Sprach- und Kulturbarrieren,Cold,"",19,information technology & services,jan@pandaloop.de,http://www.omniit.de,http://www.linkedin.com/company/omniit-gmbh,"","","",Munich,Bavaria,Germany,81369,"Munich, Bavaria, Germany, 81369","software engineering, saas, agile development, iaas, paas, machine learning, cybersecurity, managed services, data analytics, cicd, cloud transformation, xaas, project management, cloud engineering, devops, managed devops, logmanagement, iot, devsecops, it services & it consulting, cloud architecture, application modernization, cloud-lösungen, security audits, endpoint security, suse linux support, hybrid cloud, ai operations, cloud solutions, multi-cloud compliance, micro focus software support, genesis cloud gpu, mimecast email security, knowbe4 security training, services, it management, ml model development, professional services, hashicorp devops tools, systemintegration, security monitoring, data engineering, information technology and services, computer systems design and related services, cloud computing, vulnerability management, resource optimization, cloud architecture design, atlassian jira & trello, cloud security compliance, security reports, infrastructure optimization, data stream processing, fortinet firewalls, it-sicherheit, cloud security, consulting, security consulting, application refactoring, security training, devops services, trend micro security, hornetsecurity cloud security, incident response, threat detection, microsoft 365, data governance, ai & data engineering, security solutions, cost management, software development, data security, disaster recovery, security incident response, microsoft azure cloud, cloud migration, real-time performance monitoring, hybrid it management, dynamic resource allocation, hybrid cloud integration, amazon web services integration, security automation, b2b, cloud migration & modernization, graylog log management, it consulting, security operations center, patch management, voltage fusion devops, ai-operations, it projektmanagement, network security, security monitoring tools, finance, computer software, information technology & services, enterprise software, enterprises, artificial intelligence, productivity, professional training & coaching, computer & network security, management consulting, financial services",'+49 89 998241923,"Cloudflare DNS, Sendgrid, Outlook, MailChimp SPF, Microsoft Office 365, CloudFlare Hosting, Atlassian Cloud, Hubspot, Google Tag Manager, Mobile Friendly, Multilingual, IoT, Android, Remote, AI, CyberArk, EnergyCAP SmartAnalytics, CPMStar, Connect","","","","","","",69c2818b1e946c0001ef973b,7379,54151,"omniIT GmbH is an IT services and consulting company based in Munich, Germany. The company specializes in IT security, cloud engineering, DevOps, platform engineering, and AI. Founded by experts from across Europe, omniIT supports businesses in navigating complex IT landscapes while overcoming language and cultural barriers. With a team of approximately 18 staff members, omniIT focuses on fostering close collaboration between consultants, developers, and clients to align business and IT goals. + +The company offers a range of services, including IT security solutions, cloud infrastructure management, and project reinforcement. omniIT emphasizes a holistic approach to projects, ensuring effective implementation and maintenance across various sectors. They have established strong partnerships with key technology providers like Fortinet, IBM, Microsoft, and others, enabling them to deliver tailored solutions that address the evolving challenges of cybersecurity and IT integration.",2018,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66efd7472ccae100015c0702/picture,"","","","","","","","","" +e-velopment GmbH,e-velopment,Cold,"",33,information technology & services,jan@pandaloop.de,http://www.e-velopment.de,http://www.linkedin.com/company/e-velopment-gmbh,https://facebook.com/e-velopment-gmbh-491033818003786,https://twitter.com/evelopment,49 Bahrenfelder Chaussee,Hamburg,Hamburg,Germany,22761,"49 Bahrenfelder Chaussee, Hamburg, Hamburg, Germany, 22761","coding, versandhandel, scrum, ecommerce software, logistiksoftware, wms, warenwirtschaftssystem, javascript, angular, erpsoftware, warenwirtschaft, warehousemanagement, it services & it consulting, custom software, automated order routing, shipping management, flexible output templates, e-commerce logistics, payment solutions, d2c, customer support, document output management, automated picking systems, supply chain, project management, inventory management, real-time data, custom modules, cloud, payment integration, cloud-based warehouse management, multichannel logistics, b2b, logistics platform, e-commerce, logistics automation, warehouse management system, computer systems design and related services, system integration, logistics software, erp, scalability, customizable software, security standards, software development, real-time inventory tracking, integration with marketplaces, wms software, marketplace integration, cloud software, automated warehouse, enterprise resource planning, cloud hosting, consulting, multichannel support, performance monitoring, user-friendly interface, api integration, automation modules, automated shipping calculations, multi-location inventory, supply chain management, scalable logistics solution, performance optimization, e-commerce software, output management, b2c, software updates, logistics and supply chain management, payment processing, customizable dashboards, cloud erp, order fulfillment software, retail, information technology and services, order processing, integration, multichannel retail, enterprise software, erp software, services, saas, distribution, consumer products & retail, transportation & logistics, information technology & services, productivity, consumer internet, consumers, internet, enterprises, computer software, cloud computing, logistics & supply chain",'+49 40 851870,"Outlook, Microsoft Office 365, Hubspot, Google Tag Manager, YouTube, WordPress.org, Mobile Friendly, AI, Linkedin Marketing Solutions, WMS, Salesforce CRM Analytics, AWS SDK for JavaScript, LinkedIn Ads, 3M 360 Encompass - Health Analytics Suite, Jira, Instagram, Canva, Adobe Photoshop, SQL, Angular","","","","","","",69c2818b1e946c0001ef9729,7375,54151,"Logistik, die sich an deinen Handel anpasst – nicht umgekehrt. + +Als Softwarepartner für mittelständische E-Commerce-Händler entwickeln wir seit 25 Jahren skalierbare Lösungen, die Prozesse intelligent abbilden und beschleunigen – vom manuellen Lager bis zur vollautomatisierten Skalierung.",2000,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f89d9cd3cfca0001c31540/picture,"","","","","","","","","" +Rothbaum Consulting Engineers GmbH,Rothbaum Consulting Engineers,Cold,"",20,management consulting,jan@pandaloop.de,http://www.rothbaum-consulting.com,http://www.linkedin.com/company/rothbaum,https://www.facebook.com/rothbaumconsultingengineers/,"",13 Hohe Bleichen,Hamburg,Hamburg,Germany,20354,"13 Hohe Bleichen, Hamburg, Hamburg, Germany, 20354","operational excellence, lean management, automatisierung, wertschoepfungsnetzwerke, digitalisierung, distributionslogistik, fabrikplanung, supply chain, digitale fabrik, produktionslogistik, lieferfaehigkeit, projektmanagement, werkstrukturplanung, produktion, montageplanung, produktionsplanung, standortsuche, prozessoptimierung, logistik, makeorbuy, business consulting & services, project management, technology consulting, operations management, digital transformation, manufacturing, management consulting, organizational development, supply chain resilienz, end-to-end process optimization, consulting, b2b, kpi development, supply chain optimization, green factory, supply chain resilience, information technology and services, digital twin, it system integration, factory planning, advanced analytics in manufacturing, system configuration, digital supply chain strategy, management consulting services, data analytics, change management, transportation management systems, manufacturing execution systems, krisenmanagement in supply chains, supply chain strategy, process mining in production and logistics, services, business process optimization, smart factory planning, process mining, process automation, logistics optimization, digital twin as a service, warehouse management systems, supply chain control tower, erp consulting, supply chain management, finance, distribution, transportation & logistics, productivity, mechanical or industrial engineering, information technology & services, logistics & supply chain, financial services",'+49 40 22632720,"Outlook, Microsoft Office 365, Mobile Friendly, WordPress.org, Google Tag Manager, Nginx, DoubleClick Conversion, Google Dynamic Remarketing, Hubspot, DoubleClick, Linkedin Marketing Solutions, Google Analytics","","","","","","",69c2818b1e946c0001ef9732,7375,54161,"Rothbaum Consulting Engineers GmbH is a consulting firm based in Hamburg, Germany, established in 2019. The company specializes in the digital transformation of operations, focusing on integrating efficient processes with advanced information technology. With a team of 11-50 employees, Rothbaum offers technical consulting in areas such as production, logistics, supply chain management, digitization, factory planning, and process optimization. + +The firm employs a holistic approach to operations consulting, providing strategic, process-related, and technical advice. Their services include consulting, implementation, support and maintenance, training, and custom development. Rothbaum has successfully completed over 200 projects across various industries, enhancing profitability and flexibility for their clients. They serve a wide range of sectors, including mechanical engineering, pharmaceuticals, automotive, and energy, delivering tailored solutions that meet specific market requirements.",2019,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66ee7c9fd2981300015b2341/picture,"","","","","","","","","" +BS Sales Academy,BS Sales Academy,Cold,"",25,education management,jan@pandaloop.de,http://www.bssales.de,http://www.linkedin.com/company/bestselfsalesacademy,"","",Im Mediapark,Cologne,North Rhine-Westphalia,Germany,50670,"Im Mediapark, Cologne, North Rhine-Westphalia, Germany, 50670","vertrieb, sales, b2b, crm, b2c, salesasaservice, education, sales kpis, sales workflows, sales process digitalization, sales team building, b2b sales automation, sales system building, sales analytics, sales performance, sales pipeline management, sales automation, sales system development, services, sales coaching, sales automation tools, lead generation, sales system scaling, sales technology, edutec sales, sales enablement tools, sales consulting, consulting, crm setup, sales team development, sales process analysis, sales training, crm integration, sales process automation, sales reporting, sales enablement, professional services, sales process consulting, information technology, sales growth, sales as a service, predictable sales, management consulting services, sales performance dashboards, automated sales processes, sales process optimization, crm implementation, growth hacking, performance management, sales process design, sales system integration, information technology and services, sales team automation, sales pipeline automation, performance optimization, sales system training, sales system implementation, sales strategy, automated outreach, sales funnel optimization, high-ticket sales, sales efficiency, sales system consulting, enterprise software, enterprises, computer software, information technology & services, saas, marketing & advertising, professional training & coaching",'+49 170 4732618,"Route 53, Gmail, Outlook, Google Apps, Microsoft Office 365, Hubspot, Active Campaign, Nginx, Google Font API, Vimeo, Google Tag Manager, Mobile Friendly, Typekit, WordPress.org, Facebook Login (Connect), Google AdSense, Wistia","","","","","","",69c2818b1e946c0001ef9734,8742,54161,"BS Sales Akademie GmbH, based in Cologne, Germany, specializes in sales training, consulting, and process automation aimed at enhancing sales performance for education and technology firms. The company focuses on building effective sales teams and supports businesses in improving sales knowledge and skills, while automating processes from lead acquisition to deal closure. Their approach is performance-driven and emphasizes transparency and partnership. + +The services offered include sales training and development, professional sales consulting, and process automation. They provide both digital and traditional sales strategies and assist in recruiting and deploying sales experts tailored to client needs. BS Sales Akademie GmbH also offers an initial non-binding consultation to discuss opportunities for automation and growth. The company is recognized for its collaboration with market-leading brands in the edutec sector, contributing to their clients' success in the DACH region.",2023,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e7735981df29000133870f/picture,"","","","","","","","","" +blu BEYOND GmbH,blu BEYOND,Cold,"",51,information technology & services,jan@pandaloop.de,http://www.blu-beyond.com,http://www.linkedin.com/company/blu-beyond-gmbh,"","",11 Keltenring,Oberhaching,Bavaria,Germany,82041,"11 Keltenring, Oberhaching, Bavaria, Germany, 82041","innovate, internet of things, web engineering, software engineering, mobile engineering, portale, platforms & standards, iot, digital solutions, content management systeme, develop, operate, smart manufacturing, data-driven business models, iot prototyping, data migration, data lakes, large language models, edge computing, industrial iot, ai models, data mesh architecture, low-code plattformen, consulting, data insights, data-driven decision making, b2b, data architecture design, innovation management, ar & vr in produktion, edge data processing, data pipelines automation, custom software development, cloud solutions, construction, compliance, digital use cases, cloud infrastructure, automation, data analytics, business process optimization, generative ai, data pipelines, computer systems design and related services, data visualization dashboards, ki & analytics, data strategy, smart factory digitalisierung, services, managed services, no-code plattformen, data mesh, iiot & digital production, data security, generative ki anwendungen, business innovation, data management, end-to-end data solutions, technology consulting, project management, smart factory, partnernetzwerk, predictive analytics, digital strategy, predictive maintenance ki, citizen development, data architecture, predictive maintenance, real-time data, cybersecurity, prototyping, security by design, data lifecycle management, digital workplace, systemintegration, digital twins, customer experience, devops services, data platforms, unified namespace, data governance, it consulting, distribution, data lifecycle optimization, manufacturing, machine learning, digital transformation, digital ecosystem, data visualization, system integration, software development, data security by design, large language models in produktion, information technology & services, cloud computing, enterprise software, enterprises, computer software, internet infrastructure, internet, computer & network security, management consulting, productivity, marketing, marketing & advertising, mechanical or industrial engineering, artificial intelligence",'+49 89 244116600,"Outlook, Microsoft Office 365, Microsoft Azure Hosting, Mobile Friendly, Google Tag Manager, Android, Remote, Homestead, LabWare LIMS, Intel Nios, IBM Spectrum LSF, Google Analytics","","","","","","",69c2818b1e946c0001ef9726,7375,54151,"blu BEYOND GmbH is a German IT consulting and digital transformation firm based in Oberhaching, near Munich. Founded in 2011, the company specializes in strategic consulting and full solution development, leveraging technologies such as AI, IoT, and analytics. With a team that has over 20 years of experience, blu BEYOND focuses on accelerating innovation cycles for enterprises and mid-sized companies across various sectors, including automotive, finance, medical, telco, and IT. + +The firm offers a comprehensive range of services that cover the entire project lifecycle, from IT and digital consulting to full solution development and implementation. Key areas of expertise include AI and analytics, IIoT, and digital production. blu BEYOND emphasizes partnership and end-to-end innovation, guiding clients through phases of ideation, prototyping, and operational support to simplify their digital transformation journeys.",2011,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67140cea4181790001702498/picture,"","","","","","","","","" +ITCG AG,ITCG AG,Cold,"",41,information technology & services,jan@pandaloop.de,http://www.itcg.de,http://www.linkedin.com/company/itcg-ag,https://www.facebook.com/audiusgroup/,"","",Munich,Bavaria,Germany,"","Munich, Bavaria, Germany","citrix, sharepoint, projektmanagement, windows 10, virtualisierung, moderne itarbeitsplatzgestaltung, managed services, windows amp office, development amp automation, itconsulting, windows azure, professional services, professional training & coaching",'+49 71 51369000,"Outlook, Microsoft Office 365, Drupal, React, Hubspot, AddThis, YouTube, Mobile Friendly, Google Tag Manager, Google Play, Apache, Vimeo, Google Analytics, Adobe Media Optimizer, Cedexis Radar, Facebook Custom Audiences, Facebook Widget, Linkedin Marketing Solutions, Facebook Login (Connect), Remote, Android, AI","","","","","","",69c2818b1e946c0001ef9736,"","","Durch unsere gelebte Partnerschaft mit Herstellern haben wir den Vorsprung, das Sinnvolle möglich zu machen und das Vertrauen des Kunden in uns und die neuesten Technologien zu fördern.\\Wir sind für Sie stets auf der Suche nach der optimalen Lösungen und schrecken auch vor neuen Wegen nicht zurück.\\Junges, aber erfahrenes Team\\Wir sind hungrig: Wir gehen gerne neue Wege und wollen den Erfolg für den Kunden und natürlich auch für uns selbst.\\Wir sind überzeugend: Durch unser strategisches Vorgehen und unsere maßgeschneiderten Methoden übertreffen wir nicht selten die Erwartung unserer Kunden.\\Wir sind erfahren: Unsere Consultants sind deutschlandweit in verschiedensten Kundenprojekten unterwegs und greifen daher auf einen großen Erfahrungsschatz zurück.\\Wir sind kompetent: Werkzeuge wie Standardisierung, Virtualisierung, Hochverfügbarkeit und Automatisierung legen wir den Grundstein für eine effektivere Arbeit mit und in Ihrer Infrastruktur.\\Consulting heißt Beratung – aber was macht einen guten Berater aus?\•Ehrlichkeit als Basis für vertrauensvolle und langfristige Zusammenarbeit\•ein gutes Gefühl für Sie und uns\•offenes und ehrliches Miteinander\\Wir sehen es als unsere Tugend an, auch Nein zu sagen, wenn wir von einer Lösung nicht überzeugt sind. Dieses ehrliche „Nein"" differenziert uns von anderen Beratungsunternehmen und untermauert unsere Integrität.\\Selbstverständnis\\Wir denken und leben unsere Aufgaben, haben die Bereitschaft ein offenes und ehrliches Wort auszusprechen, um langfristig Zufriedenheit auf beiden Seiten zu erreichen.\\http://www.itcg.de/impressum/",2000,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/5c2d0e6c80f93e943c9a4bf8/picture,"","","","","","","","","" +TeleAktiv,TeleAktiv,Cold,"",32,information services,jan@pandaloop.de,http://www.teleaktiv.de,http://www.linkedin.com/company/teleaktivgmbh,https://www.facebook.com/TeleAktivGmbH/,"",2 Edith-Stein-Strasse,Wuerzburg,Bavaria,Germany,97084,"2 Edith-Stein-Strasse, Wuerzburg, Bavaria, Germany, 97084","digitale leadanbahnung, marktanalyse potenzialausschoepfung, projekt objektverfolgung, telesales outbound marketing, messefollowup support, externer vertriebsinnendienst, leadqualifizierung, stammdatenmanagement fuer die industrie, b2bvertriebsstrategie, reaktivierung von altkunden, vertriebsconsulting prozessoptimierung, closingsupport angebotsmanagement, datenanreicherung crmpflege, kaltakquisecoaching onthejobtraining, inside sales telemarketing, strategische neukundenakquise, qualifizierte terminierung, vertriebscoaching sales training, aftersalesservice kundenbindung, leadgenerierung kaltakquise",'+49 931 610060,"Hubspot, Mobile Friendly, Google Tag Manager, YouTube, GoToWebinar, Facebook Custom Audiences, Squarespace ECommerce, Typekit, Facebook Login (Connect), Linkedin Marketing Solutions, Facebook Widget, Salesforce CRM Analytics, Facebook, Instagram","","","","","","",69c2818b1e946c0001ef973d,"","","We have been living sales since 1996 – Germany's No. 1 for customer-oriented sales in construction, industry, and mechanical engineering. + +Why choose TeleAktiv as the market leader? +Because in Würzburg, we don't just make phone calls, we prepare real deals. As an owner-managed family business, we have been combining Lower Franconian reliability with state-of-the-art sales performance for over 30 years. We are the external driving force for your sales force and the authentic voice of your brand. + +Why TeleAktiv? Our expertise for your success: +We understand the language of your industry – whether it's heating technology, compressors, or the building materials trade. We turn data into appointments and contacts into contracts. + +Our core competencies for your growth: +🔹 Strategic acquisition & new customer acquisition: We open doors that remain closed to others. +🔹 Intelligent object tracking & data tracking: So you don't lose any projects in the pipeline. +🔹 Efficient appointment scheduling: We fill your sales team's calendars with qualified leads. +🔹 Professional quote tracking: We persist until the deal is closed. +🔹 Service sales center & telemarketing: First-class customer service on equal terms. + +Our vision: Enthusiasm through quality +Behind our success are people who understand their craft. Our employees are specialized sales professionals who guarantee professionalism, reliability, and absolute customer focus. We don't communicate according to a script, but with understanding and passion for your product. + +Ready for the next level in B2B sales? Let's become market leaders together or consolidate your position. +And who knows, maybe you've already spoken to us on the phone in Würzburg?",1996,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66fa0026d6aa740001ba4113/picture,"","","","","","","","","" +IN3 Group - Intelligent Innovation & Integration,IN3 Group,Cold,"",16,information technology & services,jan@pandaloop.de,http://www.in3-group.com,http://www.linkedin.com/company/in3group,"","","",Walldorf,Baden-Wuerttemberg,Germany,"","Walldorf, Baden-Wuerttemberg, Germany","it services & it consulting, enterprise strategy, process optimization, logistics projects, it staffing, consulting, enterprise software, project management, system integration, management consulting, services, logistics, business transformation, management consulting services, logistics consulting, operational efficiency, data analytics, consulting services, logistics automation, risk management, professional services, sap applications management, b2b, sap s/4hana, technology integration, enterprise it solutions, digital supply chain, talent acquisition, it infrastructure, business services, sap logistics, digital transformation, custom software development, it consulting, project coordination, sap s/4hana migration, logistics optimization, finance, distribution, information technology & services, staffing & recruiting, enterprises, computer software, productivity, professional training & coaching, financial services",'+49 621 30764665,"Rackspace MailGun, Outlook, Microsoft Office 365, Slack, Mobile Friendly, WordPress.org, Google Tag Manager, Nginx, Remote, IoT, AI","","","","","","",69c2818e1cba2c0001f0fd59,8748,54161,"IN3 Group unterstützt Unternehmen bei dem ganzheitlichen Einsatz von Softwaretechnologie, der Integration von Technologien und Prozessen in die Unternehmenssoftware, der Auswahl und Implementierung zielführender Innovations-Technologien und der intelligenten Nutzung von Technologie und Software.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6778c3b0198bc80001063750/picture,"","","","","","","","","" +Infocore Engineering & IT Services Group,Infocore Engineering & IT Services Group,Cold,"",25,information technology & services,jan@pandaloop.de,http://www.infocore-group.com,http://www.linkedin.com/company/infocore-engineering-&-it-services-group,https://facebook.com/infocore-group-151963008525394,"",41 Sebastian-Kneipp-Strasse,Frankfurt,Hesse,Germany,60439,"41 Sebastian-Kneipp-Strasse, Frankfurt, Hesse, Germany, 60439","implementation, support, pdm, it support desk, administration, product lifecycle management, plm, itil, consulting, manufacturing digitalization, low-code development, product development software, energy sector software, computer systems design and related services, digital twin, supply chain optimization, enterprise resource planning (erp) integration, mendix no-code/low-code, aerospace, product lifecycle management (plm), high tech electronics software, consumer goods, manufacturing operations management (mom), engineering software, industry 4.0, mes integration, system customization, b2b, manufacturing, aerospace industry software, capital electrical cad, consumer goods software, enterprise software, cloud-based solutions, rapid start plm, digital asset management, product data management, industry 4.0 solutions, data analytics, manufacturing software implementation, manufacturing data analytics, supply chain integration, siemens partner, software consulting, industry-specific plm, high tech electronics, supply chain management, services, siemens simcenter, digital transformation, process automation, supply chain digitalization, manufacturing efficiency, energy, enterprise applications, system integration, manufacturing process improvement, automotive industry software, siemens nx, teamcenter t4s sap integration, software deployment, manufacturing software, automotive, custom software solutions, distribution, consumer_products_retail, transportation_logistics, energy_utilities, consumers, mechanical or industrial engineering, enterprises, computer software, information technology & services, logistics & supply chain","","SAP, Remote, Micro","",Merger / Acquisition,0,2023-02-01,"","",69c2818e1cba2c0001f0fd5a,7375,54151,"Infocore Engineering & IT Services Group is an internationally recognized service provider specializing in Product Lifecycle Management (PLM), Manufacturing Operations Management (MOM), and IT services. Incorporated on December 16, 2013, the company is active in the manufacturing and industrial software sectors, focusing on digital manufacturing and automotive-embedded solutions. + +Infocore partners with Siemens Industry Software, enhancing its capabilities in the industry. The company has received multiple awards, including the Siemens Partner of the Year designation, highlighting its strong reputation. Infocore operates internationally, with a presence in various regions, including Germany, where it offers software development and IT consulting services.",2014,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/673a24ee23959d00014448fd/picture,"","","","","","","","","" +Along AI,Along AI,Cold,"",16,information technology & services,jan@pandaloop.de,http://www.alongagents.ai,http://www.linkedin.com/company/alongai,"","",7 Gipsstrasse,Berlin,Berlin,Germany,10119,"7 Gipsstrasse, Berlin, Berlin, Germany, 10119","sales, b2b, procurement, furniture & furnishings, ffe, saas, hospitality, retail, digital, real estate, property development, business intelligence, negotiations, design, airbnb, ai, artificial intelligence, technology, startup, interior sourcing, remote work, future of work, marketplace, product sourcing, ecommerce, marketing, interior design, shortterm rental, software, software development, crm updates, buyer signals, lead management, information technology and services, call preparation, sales workflow saas, ai chatbots, sales enablement tools, crm data capture ai, digital sales room integration, crm automation, ai-powered workflows, personalized sales follow-ups, buyer intent signals, call prep automation, sales workflow ai, email automation, computer systems design and related services, call briefing ai, ai integration, sales automation saas, sales engagement, hyper-personalized email ai, sales analytics, sales team productivity, automated follow-ups, ai for sales reps, customer relationship management, ai sales automation, sales pipeline, email follow-up automation, digital sales room ai, ai for deal management, software as a service (saas), sales data insights, sales process automation, digital sales platform, ai-driven sales insights, workflow automation, buyer intent detection, automated deal updates, pipeline management, sales productivity tools, sales enablement, computer software, information technology & services, leisure, travel & tourism, analytics, e-commerce, consumer internet, consumers, internet, crm, enterprise software, enterprises",'+49 162 4975381,"Cloudflare DNS, Gmail, Google Apps, Microsoft Office 365, Amazon AWS, Typeform, Webflow, Slack, Google Tag Manager, Mobile Friendly, YouTube, DoubleClick Conversion, Adobe Media Optimizer, Google Font API, Typekit, Vimeo, Cedexis Radar, Hotjar, Google Dynamic Remarketing, DoubleClick, Xt-commerce, Intercom, WordPress.org, Circle, Remote, AI","","","","","","",69c2818e1cba2c0001f0fd67,7375,54151,Along Al builds custom AI agents that fit the unique workflows of B2B companies and provide tangible ROI.,2022,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69b1116ef4e52d0001f77412/picture,"","","","","","","","","" +Novatec Consulting GmbH,Novatec Consulting,Cold,"",65,information technology & services,jan@pandaloop.de,"",http://www.linkedin.com/company/novatec-gmbh,"","",5 Benzstrasse,Leinfelden-Echterdingen,Baden-Wuerttemberg,Germany,70771,"5 Benzstrasse, Leinfelden-Echterdingen, Baden-Wuerttemberg, Germany, 70771","data center automation, enterprise application developement, agile leadership, digital ai operations, application archictecture, bpmtechnologieberatung, agile collaboration tooling, value engineering, agile testing, devops, cloud computing, enterprise architecture management, bpmsauswahlverfahren, performance management, enterprise application development, agile methodes amp scrum, business agility, architectural review, business process management, it4it einfuehrung, agile training, eam assessment, management 30, data intelligence, eam operationalisierung, eam werkzeugauswahl und einfuehrung, digital experience engineering, artificial intelligence, agile coach, professional agile development, open digital experience management, it architecture, eam business case, enterprise application integration, atlassian, agile transformation, scrum master, digital experience analytics, digital experience monitoring, enterprise mobility, lasttest, digital experience governance, data analytics, eam etablierung, itarchitecture und cloud, prozessoptimierung, data engineering, digital experience, enterprise task management, bpm, enterprise application, agile methodes scrum, lizenzmanagement, apm, agile security, agile quality engineering, it services & it consulting, enterprise software, enterprises, computer software, information technology & services, b2b, information architecture",'+49 71 122040700,"Outlook, Microsoft Office 365, Apache, Mobile Friendly, Google Tag Manager, Google Font API, Google Analytics, YouTube, WordPress.org","","","","",25000000,"",69c2818e1cba2c0001f0fd6a,"","","Novatec Consulting GmbH is an independent IT consulting firm based in Leinfelden-Echterdingen, Germany. Founded in 1996, the company specializes in software engineering, IT architecture, digital transformation, and integrated system lifecycle management. With a workforce of approximately 250-300 employees across nine locations in Germany and mentions of Spain, Novatec has established itself as a key player in guiding clients through their digital journeys. + +The firm offers a wide range of IT consulting services, including digital transformation strategies, agile software engineering, and IT architecture management. Novatec emphasizes performance optimization and employs agile methods in its approach. The company also provides customized training programs on various topics, such as artificial intelligence and robotic process automation. Novatec serves clients in sectors like automotive, financial services, and manufacturing, working with both large corporations and medium-sized businesses on international projects.",1996,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68c0a8e6e53fad0001a1be05/picture,CGI (cgi.com),54a12a5669702d9b8bbb1202,"","","","","","","" +AIC Service & Call Center GmbH,AIC Service & Call Center,Cold,"",27,outsourcing/offshoring,jan@pandaloop.de,http://www.aic-services.com,http://www.linkedin.com/company/aic-services-callcenter-gmbh,https://facebook.com/aickarriere,"",36 Gottfried-Hagen-Strasse,Cologne,North Rhine-Westphalia,Germany,51105,"36 Gottfried-Hagen-Strasse, Cologne, North Rhine-Westphalia, Germany, 51105","kreuzfahrten, versicherungen, call center, pauschaltouristik, tourismus, airline, reiseberatung, ecommerce, kundenservice, businesstravelagents, energie, customer experience, outsourcing & offshoring consulting, e-commerce, consumer internet, consumers, internet, information technology & services, outsourcing/offshoring",'+49 221 9637215,"","","","","","","",69c2818e1cba2c0001f0fd56,"","","AIC - Der Spezialist für Multichannel Kundenservice seit über 25 Jahren. +Ein starkes Team für starke Kundenbeziehungen. + +Unsere Spezialisten sorgen mit ihrer Technik- und Dialogkompetenz dort, wo es darauf ankommt für nachhaltige Erfolge – die positive Markenerlebnisse für die Kunden unserer Auftraggeber. + +Dabei setzen wir uns anspruchsvolle Ziele und geben durch Flexibilität, Skalierbarkeit und Verfügbarkeit ein starkes Leistungsversprechen: die Steigerung der Markentreue ihrer Kunden, ihres Markterfolgs und ihres Images. Hier macht unsere langjährige Branchenkenntnis und Expertise den Unterschied. + +Die AIC Service & Call Center GmbH wurde 1994 von Andreas Diederich als Vertretung für ausländische Fluggesellschaften in Deutschland gegründet. + +Bis heute ist AIC ein inhabergeführtes Unternehmen für Kundenservice mit rund 900 Mitarbeitern (m/w/d) an 6 Standorten in Deutschland gewachsen. + +Als Marktführer betreuen wir das who is who der Tourismusbranche und wachsen dank neuer Auftraggeber in den Bereichen eCommerce, Energie, und Consumer-Produkte nach wie vor dynamisch. Immer mit hoher Qualität, immer in überschaubaren Teamgrößen. + +Dabei ist das Telefon schon lange nicht mehr der einzige Kanal, in dem wir mit den Kunden unserer Auftraggeber kommunizieren. Chats, Social Media und E-Mail gehören heute ganz selbstverständlich dazu. + +In unserem eigenen Trainingscenter können wir unsere Mitarbeiter schnell, flexibel und in enger Zusammenarbeit mit unseren Auftraggebern schulen, weiterqualifizieren und ihre Persönlichkeiten wachsen lassen.",1994,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66ed1cae8d3f62000189e210/picture,"","","","","","","","","" +IT4IPM GmbH,IT4IPM,Cold,"",66,information technology & services,jan@pandaloop.de,http://www.it4ipm.de,http://www.linkedin.com/company/it4ipm,"","",11 Rosenheimer Strasse,Munich,Bavaria,Germany,81667,"11 Rosenheimer Strasse, Munich, Bavaria, Germany, 81667","it operations, documentation, software development, consulting, distribution, licensing, it-leistungen, artificial intelligence, project management, neuronale netze, prozessdefinition, management consulting, lizenzmanagement, branchenexpertise, rechtemanagement, services, cloud plattformen, systementwicklung, innovationskraft, cloud hosting, full-service-provider, musikerkennung, künstliche intelligenz, big data, it-infrastruktur, systemintegration, urheberrechtsschutz, ki-lösungen, prozessberatung, data security, projektmanagement, agile arbeitsweisen, rechteverwaltung, platform as a service, av-produkt matching, gema analytics platform, machine learning, systembetrieb, legal services, dubletten-erkennung, it-beratung, datenmanagement, information technology & services, fraud detection, devops, non-profit organization, computer systems design and related services, cloud-strategie, b2b, verwertungsgesellschaften, digital transformation, kulturförderung, analytik plattform, reklamationsbearbeitung, maßgeschneiderte it-lösungen, lizenzabrechnung, saas, legal, non-profit, productivity, cloud computing, enterprise software, enterprises, computer software, computer & network security, paas, nonprofit organization management",'+49 89 48003255,"Microsoft Office 365, Mobile Friendly, Remote, Google Cloud","","","","","","",69c2818e1cba2c0001f0fd58,7375,54151,"IT4IPM GmbH is a software development and IT services company based in Munich, Germany, with an additional office in Berlin. Founded in 2014, it operates as a subsidiary of GEMA, the German collecting society for musical works and mechanical rights. The company specializes in creating intelligent IT platforms that support copyright management across documentation, licensing, and distribution. + +As a full-service provider, IT4IPM offers customized IT solutions for collecting societies and rights management organizations. Its services include rights and license management, data analytics through the GEMA Analytics Platform, and cloud-based Platform as a Service (PaaS) solutions. The company also develops AI-based solutions for copyright protection, such as music recognition and fraud detection. IT4IPM focuses on agile methodologies and prioritizes client collaboration to deliver tailored solutions while maintaining high data security standards.",2014,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66dc105574637300017604eb/picture,"","","","","","","","","" +iT.D | Georg Dreckmann GmbH & Co. KG,iT.D,Cold,"",16,telecommunications,jan@pandaloop.de,http://www.dreckmann.de,http://www.linkedin.com/company/itdreckmann,"","",5 Kopenhagener Strasse,Muenster,North Rhine-Westphalia,Germany,48163,"5 Kopenhagener Strasse, Muenster, North Rhine-Westphalia, Germany, 48163","it products, server storage, wlan ausleuchtung, telekommunikation, dect systeme, handelspartner, tuersprechstellen, netzwerk, videoueberwachung, wlansysteme, strukturierte datenverkabelung, it-upgrade, videokonferenzsysteme, sip-trunk, it-optimierung, it-services, microsoft teams / 365, netzwerktechnik, cloud-telefonie, gebäudetechnik, telecommunications, gebäudekommunikation, cybersecurity, it-architektur, kabelverlegung, it-migration, videoüberwachung, computer systems design and related services, netzwerkausbau, it-support-tickets, it consulting, datensicherheit, videokonferenzen, cloud-lösungen, business internet, it-performance-optimierung, it-security, server & switches, mobile device management, firewall-lösungen, remote monitoring, it-management, infrastruktur, it-projektmanagement, b2b, netzwerkverkabelung, it-sicherheit, it-schulungen, it-fachberatung, it-finanzierung, it-compliance, glasfaserverkabelung, cloud computing, kabelmanagement, glasfaser, backup, services, it-implementierung, richtfunk, back-up, homeoffice-lösungen, it-check, interaktive displays, it-wartung, wlan, datenschutz, managed services, video conferencing, voip-telefonie, support ticket, information technology and services, consulting, netzwerkoptimierung, kabelspleißen, it-backup, glasfaseranschluss, it-asset-management, firewall, it-notfallmanagement, it-infrastruktur, kabelerneuerung, security services, network infrastructure, it-sicherheitsaudit, telefonie, remote management, it-support, it-consulting, healthcare, education, information technology & services, management consulting, enterprise software, enterprises, computer software, computer & network security, health care, health, wellness & fitness, hospital & health care",'+49 251 3908080,"Outlook, Microsoft Office 365, Apache, Mobile Friendly, Remote, Etsy","","","","","","",69c2818e1cba2c0001f0fd69,7379,54151,"Unsere Mission ist klar: Ihre IT-Bedürfnisse sind unsere Leidenschaft. + +Mit einem Team von rund 30 engagierten Fachleuten bieten wir Ihnen eine breite Palette an IT-Lösungen für Ihr Unternehmen. + +Unsere Kernkompetenzen umfassen dabei: +– Verkabelungen, Spleissungen & Messungen (Kupfer & Glasfaser) +– Netzwerke & Infrastruktur +– WLAN-Ausleuchtung und -Installation +– DECT-Ausleuchtung und -Installation +– IT-Sicherheit +– managed Services +– moderne Arbeitsplätze +– Telefonielösungen (On-Premise & Cloud) +– Konferenzraumlösungen +– Branchenlösungen für Bildung & Pflege (digitale Flipcharts, Alarmserver uvm.) +– Providerleistungen (DSL-, SIP-, & Glasfaseranbindung) + +Was uns auszeichnet? +Nicht nur unsere umfangreiche Erfahrung, sondern auch unser Teamgeist. Wir verstehen, dass Technologie mehr ist als Programmierungen und Kabel. Es geht um Menschen, Partnerschaften und den Weg in die Zukunft. Wir hören zu, arbeiten eng mit Ihnen zusammen und gestalten Lösungen, die Ihr Unternehmen langfristig auf die nächste Stufe heben. + +Gemeinsam gestalten wir Ihre IT-Zukunft. + +Wir freuen uns auf Ihre Kontaktaufnahme. Herzlichst, + +Ihr iT.D-Team!",1998,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6760c3902ed29e00019061db/picture,"","","","","","","","","" +datom GmbH,datom,Cold,"",35,information technology & services,jan@pandaloop.de,http://www.datom.de,http://www.linkedin.com/company/datomgmbh,"","",59 Hamburger Strasse,Dresden,Saxony,Germany,01157,"59 Hamburger Strasse, Dresden, Saxony, Germany, 01157","digitalisierungsberatung, cloudtelefonie, mietloesungen wie infrastructure, amagno co, softwareentwicklung, consulting, telekommunikations telefonieloesungen, itinfrastruktur security, itservices, software, ki, workplaceasaservice, cloudloesungen, schnittstellenprogrammierung ua fuer ms dynamics, managed services, it services & it consulting, it-security, cloud-lösungen, it-sicherheitsmanagement, computer systems design and related services, it-partner, it-infrastrukturberatung, automatisierte backups, it-prozessanalyse, datensicherheit, data protection, telecommunications, remote support, cyber security solutions, it-infrastrukturmigration, it-compliance-beratung, automatisierung, it-sicherheitsaudits, digitalisierungsstrategie, it-optimierung, information technology & services, it-dienstleister, mobile device management, it-beratung, it-support, microsoft 365 business, process automation, it-notfallhandbuch, agile it-prozesse, automatisierte sicherheitslücken-analyse, multi-faktor-authentifizierung, cloud computing, prozessautomatisierung, b2b, hybrid cloud, teamviewer support, it-strategieentwicklung, ki-workshops, it-sicherheits-training, it-notfallmanagement, microsoft 365, software development, it-sicherheitskonzept, computer software & services, it-compliance, it-sicherheit, it-sicherheits-check, it in der cloud, cloud-telefonie, cybersecurity, telecommunication solutions, security as a service, ticket system, it-infrastruktur, it-consulting, verschlüsselungstechnologien, firewall solutions, cloud backup, it-sicherheitszertifikate, it-sicherheitskonzepte, microsoft power platform, services, telekommunikation, it-training, cyberangriffsschutz, data encryption, distribution, transportation & logistics, energy & utilities, construction & real estate, enterprise software, enterprises, computer software",'+49 35 1403540,"Outlook, Apache, Google Tag Manager, Mobile Friendly, WordPress.org, Microsoft AdCenter, Fujitsu, Sophos, SonicWall, .NET, Gem","","","","","","",69c2818e1cba2c0001f0fd5f,7375,54151,"datom GmbH is an IT service provider and consulting firm located in Dresden, Germany. With over 25 years of experience, the company specializes in agile IT processes and offers a comprehensive range of technology solutions. It is formally registered as ""datom – Gesellschaft für produktive Computergemeinschaften mbH"" and is recognized among the top IT services and consulting companies in Germany. + +The company provides a holistic approach to IT optimization, including services in IT security, infrastructure, telecommunications, software development, cloud solutions, and business process optimization. datom also develops integration solutions, such as the CleverReach Connector for Microsoft Dynamics 365, which facilitates data synchronization between email marketing platforms and CRM systems. datom serves a diverse clientele, helping companies enhance productivity through efficient IT solutions and technology integration.",1997,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e3e9c195608f00010ea649/picture,"","","","","","","","","" +H&Z.digital,H&Z.digital,Cold,"",22,information technology & services,jan@pandaloop.de,http://www.hz.digital,http://www.linkedin.com/company/hz-digital,"","","",Munich,Bavaria,Germany,"","Munich, Bavaria, Germany","planning, digital transformation, advanced analytics, management consutling, sap analytics cloud, reporting, application development, it consulting, business intelligence, board, qlik, data gym, digital processes, power bi, sap, it services & it consulting, customer success, genai, supply chain management, cloud solutions, innovation, predictive analytics, data management, financial planning, supply chain optimization, software development, supply chain reporting, change management, data science, consulting, business analytics, artificial intelligence, data strategy, data analytics, ai ethics, process intelligence, data security, strategic consulting, holistic reporting, ai implementation, workflow automation, management consulting services, project management, b2b, data visualization, cloud computing, data analysis, data-driven decision making, enterprise software, technology partnerships, technology integration, process optimization, information technology and services, technology consulting, services, data governance, forecasting, management consulting, data & analytics, app development, apps, information technology & services, analytics, logistics & supply chain, enterprises, computer software, computer & network security, productivity",'+49 89 215362320,"Outlook, Microsoft Office 365, Salesforce, Hubspot, React, Mobile Friendly, Google Tag Manager, Quantcast, Linkedin Marketing Solutions, WordPress.org, YouTube, Nginx, Google Dynamic Remarketing, DoubleClick, DoubleClick Conversion, Cloudinary","","","","","","",69c2818e1cba2c0001f0fd61,8742,54161,"H&Z.digital is the digital unit of the H&Z Group, a management and transformation consulting firm with over 25 years of experience. Launched in February 2024, H&Z.digital combines the digital capabilities of H&Z Management Consulting and the acquired company Transform8. The firm focuses on digital transformation, business intelligence, process intelligence, data and analytics, and responsible AI to help businesses achieve long-term success. + +Operating from its headquarters in Munich, along with locations in Oldenburg and Porto, H&Z.digital employs a team of over 850 consultants across more than 20 global locations. The company emphasizes a collaborative approach, integrating strategic vision, passionate partnerships, and technological implementation to deliver comprehensive solutions. Their services include end-to-end consulting, from strategy and project management to implementation and operations, partnering with technology providers like Microsoft and SAP to create tailored solutions. H&Z.digital also offers proprietary products, such as the Lizzy GenAI platform, which enhances productivity and supports secure AI integration.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6739d8c4cef6c50001c64ca7/picture,"","","","","","","","","" +NIC Systemhaus GmbH,NIC Systemhaus,Cold,"",31,information technology & services,jan@pandaloop.de,http://www.nic-team.com,http://www.linkedin.com/company/nic-systemhaus-gmbh,https://www.facebook.com/NICSystemhaus,"",50 Stuttgarter Strasse,Goeppingen,Baden-Wuerttemberg,Germany,73033,"50 Stuttgarter Strasse, Goeppingen, Baden-Wuerttemberg, Germany, 73033","managed services, service desk, itberatung und konzeptentwicklung, itbetrieb, full serviceoutsourcing, it services & it consulting, managed network, it-architekturplanung, it support outsourcing, it-optimierung, cloud migration, virtualisierung, it compliance, it-deployment, consulting, it support, it-security, it-upgrade, backup-lösungen, it consulting, it security, it-infrastruktur, services, it-remote support, it-modernisierung, it-asset management, microsoft 365, it-performance optimization, it cloud management, it-integration, it-zertifizierung, disaster recovery, virtual server, it-helpdesk, it-experten, it-wartung, it-performance, it-projektmanagement, managed server, it lifecycle management, it-server management, it-beratung, information technology and services, it infrastructure, it-client management, it-support, it-infrastrukturmanagement, data center, managed client, it security audit, it-risikoanalyse, it-sicherheitslösungen, private cloud, it-architektur, patch-management, digital transformation, it vulnerability assessment, it-solutions, public cloud, remote monitoring, colocation, it-consulting, it-sicherheitsaudit, it-implementierung, it-helpdesk support, b2b, it asset management, it-strategie, cloud computing, it-konsolidierung, it-service-management, it-training, it governance, technology consulting, firewall-management, it-performance monitoring, storage virtualization, it-sicherheitssysteme, it-workplace, datenschutzmanagement, it-transformation, it service desk, cybersecurity, it-management, cloud services, it-services, datenschutz, it outsourcing, datensicherung, it-partner, it risk management, it-compliance, server virtualization, business continuity, it penetration testing, workflow automation, computer systems design and related services, it infrastructure outsourcing, it-remote management, system integration, it-standards, it cloud migration, hybrid cloud, it-outsourcing, saas, healthcare, information technology & services, management consulting, computer & network security, internet service providers, enterprise software, enterprises, computer software, outsourcing/offshoring, health care, health, wellness & fitness, hospital & health care",'+49 7161 65320,"Mailchimp Mandrill, Outlook, MailChimp SPF, Autotask, Microsoft Office 365, Barracuda Networks, Slack, Shutterstock, Apache, YouTube, WordPress.org, DoubleClick, Mobile Friendly, Google Tag Manager, Facebook Login (Connect), Remote, Micro, AI","","","","","","",69c2818e1cba2c0001f0fd68,7375,54151,"IT für DICH gemacht! 🖥️ + +Das NIC Systemhaus aus Göppingen ist Ihr perfekter Ansprechpartner um Ihre IT-Landschaft zukunftsfähig, planbar und stabil zu gestalten. + +💡 Die Informationstechnologie ist unser Zuhause – smarte Lösungen sind unsere Leidenschaft. + +🤝 Lernen Sie uns als zielorientiertes IT-Systemhaus kennen, das auf Augenhöhe mit Ihnen kommuniziert und die qualitativ beste und effizienteste IT für Ihr Unternehmen realisiert. + +💥 IT-Outsourcing +💥 IT-Beratung +💥 Managed Services +💥 IT-Support + +💪🏻 Bereit für den digitalen Wandel? Lassen Sie uns starten und gemeinsam Ihre IT-Zukunft gestalten!",2004,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67050413794be40001d00023/picture,"","","","","","","","","" +BITS GmbH,BITS,Cold,"",53,information technology & services,jan@pandaloop.de,http://www.mybits.de,http://www.linkedin.com/company/mybits-gmbh,https://www.facebook.com/mybitsgmbh/,"",22 Welfenstrasse,Munich,Bavaria,Germany,81541,"22 Welfenstrasse, Munich, Bavaria, Germany, 81541","erp, kubernetes, azure, it qualitaetssicherung, aws, automatisierung, itconsulting, digitale transformation, ki, it beratung, technologie modernisierung, kollaborationsmanagement, it consulting, cloud, itventures, digital solutions, softwareentwicklung, kuenstliche intelligenz, individualsoftware, itprojektmanagement, it projektmanagement, consulting, crm, datenmanagement, java, project management, ai, prozessoptimierung, software development, machine learning, itinfrastruktur, it services & it consulting, services, big data, custom software, it-beratung, api-integration, saas, legacy modernisierung, it-dekarbonisierung, bidirektionale datensynchronisierung, b2b, data analytics, openai api integration, datacenter migration, web- und mobile-entwicklung, it-sicherheit, cloud-services, it services, automatisierte testverfahren, data security, branchenübergreifende it-lösungen, agile methoden, e-commerce plattformen, systemintegration, system integration, industrie 4.0 lösungen, it-strategie, cloud services, mobile development, cloud migration, computer systems design and related services, it-dienstleister, data management, business intelligence, web-progressive web apps, data warehousing, datenbanken, ki und machine learning, digital transformation, technologie-modernisierung, cybersecurity, it infrastructure, devops, digitalisierung, web development, information technology and services, it-infrastruktur, it-projektmanagement, ki-basierte supportlösungen, mobile app entwicklung, infrastruktur, application development, process optimization, risk management, e-commerce, information technology & services, management consulting, sales, enterprise software, enterprises, computer software, productivity, artificial intelligence, computer & network security, cloud computing, analytics, app development, apps, consumer internet, consumers, internet",'+49 89 1215850,"Cloudflare DNS, Outlook, Microsoft Office 365, CloudFlare Hosting, Hotjar, DoubleClick, Mobile Friendly, WordPress.org, YouTube, DoubleClick Conversion, Google Dynamic Remarketing, Google Tag Manager, Remote, IoT, Android, Microsoft Azure Monitor, AWS Trusted Advisor, ServiceNow, AWS SDK for JavaScript, Springboot, TypeScript, Node.js, Imperva Serverless Protection, AWS Lambda","","","","","","",69c2818e1cba2c0001f0fd6b,7375,54151,"BITS GmbH is an IT service provider based in Munich, Germany, with over 20 years of experience in digital transformation. Founded by Alexander Dempf, the company focuses on supporting medium-sized businesses, corporations, and startups in planning, implementing, and operating digital solutions. BITS employs more than 100 IT experts, including consultants, project managers, and programmers, and emphasizes teamwork, open communication, and long-term partnerships. + +The company offers a range of services divided into two main areas: Digital Solutions and Digital Consulting & Project Management. Their Digital Solutions include custom software development, web and mobile applications, system integration, and data management. In Digital Consulting & Project Management, BITS provides support for quality assurance, process improvement, and overall IT project management from conception to operation. They utilize various technologies and tools to deliver tailored IT solutions, focusing on digital transformation, web/app development, and infrastructure optimization.",2000,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69562e2c7e708500010f6d02/picture,"","","","","","","","","" +Y1,Y1,Cold,"",78,information technology & services,jan@pandaloop.de,http://www.y1.de,http://www.linkedin.com/company/y1digital,https://facebook.com/pages/Leonhardt-Multimedia-GmbH/177586705645307,"",21 Immenhofer Strasse,Stuttgart,Baden-Wuerttemberg,Germany,70180,"21 Immenhofer Strasse, Stuttgart, Baden-Wuerttemberg, Germany, 70180","d2c strategy, ux training, digital branding, ux enabling, b2b ecommerce, b2b strategy, pwa, digital marketing, fashion ecommerce, individiualentwicklung, ux testing, mobile apps, b2c strategy, cloud devops, shopify, ai-driven personalization, business consulting, custom software, complex b2b projects, pim and cms, ai and generative ai, high-tech projects, innovative digital strategies, content creation, business strategy, d2c, system selection, data-driven projects, pim cms development, technology consulting, market leader fashion and lifestyle, customer experience, b2b, e-commerce, app development, content and commerce solutions, e-commerce strategy, computer systems design and related services, ux and cx optimization, system integration, ux design, operational scaling, ai, business intelligence, market leadership, shopware, digital transformation, customer experience consulting, high-performance projects, health check, digital consulting, agile methodology, generative ai, digital roadmap, custom software development, system integration expertise, accessibility optimization, agile development, consulting, digital maturity audits, customer journey, multichannel e-commerce, system comparison, digital storytelling, risk assessment, high-tech custom solutions, system audits, b2c, b2b solutions, content management, retail, technology roadmap, market differentiation, magento, information technology and services, accessibility, shopify plus, services, consumer products & retail, marketing & advertising, management consulting, consumer internet, consumers, internet, information technology & services, apps, software development, analytics",'+49 416 25613760,"Outlook, Microsoft Office 365, Amazon AWS, Gmail, Google Apps, Cloudflare DNS, CloudFlare Hosting, UptimeRobot, Atlassian Cloud, Hubspot, Google Tag Manager, Hotjar, DoubleClick Conversion, Facebook Login (Connect), WordPress.org, Mobile Friendly, Vimeo, Google Dynamic Remarketing, Multilingual, Facebook Custom Audiences, Apache, Google Analytics, Facebook Widget, DoubleClick, Google AdWords Conversion, Linkedin Marketing Solutions, IoT, Android, React Native, Docker, Remote, Circle, Browserstack, AI, Node.js","","","","","","",69c2818e1cba2c0001f0fd5c,7375,54151,"Y1 Digital AG is a digital agency based in Karlsruhe, Germany, specializing in e-commerce solutions with over 20 years of experience. The company employs more than 100 professionals, including strategists, designers, and developers, and generates approximately $8.9 million in revenue. Y1 focuses on creating sustainable digital commerce projects through consulting, design, development, and technology integration. + +The agency offers a range of services, including digital commerce consulting, user experience design, app development, and platform integration. Y1 leverages advanced technologies such as artificial intelligence, product information management, and content management systems to enhance online shopping experiences. As a certified partner, Y1 implements leading e-commerce technologies like Shopware, Shopify, and Magento, along with various PIM and CMS solutions. They cater to diverse industries, including retail, fashion, beauty, and electronics, emphasizing the importance of effective product data management.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69a5772cceeafe0001c20521/picture,"","","","","","","","","" +platform X,platform X,Cold,"",110,marketing & advertising,jan@pandaloop.de,http://www.pl-x.de,http://www.linkedin.com/company/platformxgmbh,https://facebook.com/pages/PraxisCampus-der-Deutschen-Wirtschaft/312050579005912,"","",Bonn,North Rhine-Westphalia,Germany,"","Bonn, North Rhine-Westphalia, Germany","marketing services, customer engagement, publishing, customer service, consulting, content-paywall, performance advertising, big data, voicefile analyse, email marketing, e-commerce, seo, content management, reporting & analytics, content-apps, multichannel marketing, elearning-plattformen, machine learning, a/b testing, automatisierte content-erstellung, content creation, micro-frontends, subscription billing, project management, content-management-systeme, data & ki, inventory management, media & publishing, paywall solutions, digitale produkte, cloud infrastructure, elearning, data visualization, ki-gestützte personalisierung, conversion optimization, digital transformation, ki-gestützte automatisierung, ki-voicefile-analyse, web tracking, abo-services, predictive customer insights, ki-gestützte lead-scoring, predictive scoring, marketing automation, cloud computing, content-subscription, b2c, reichweitenaufbau, predictive analytics, subscription management, webinar hosting, software development, digital publishing, user management, data aggregation, b2b, user experience, voice analysis, outreach campaigns, customer relationship management, content monetization, video & audio produktion, ki-modelle, lizensverwaltung, webseitenentwicklung, abo-management, content apps, elearning plattformen, aws, payment processing, widgets, content-engagement-tools, ki-review-management, performance marketing, computer systems design and related services, subscription services, customer management, automatisierte datenanalyse, crm integration, content plattformen, automatisierte kampagnen, data security, automatisierte kundenkommunikation, content monetarisierung, paywall & membership, webinar-streaming, content-distribution, data analytics, wiederkehrendes geschäft, information technology & services, services, reichweitenvermietung, digital products, lead generation, api-first strategie, webentwicklung, d2c, social media marketing, education, distribution, marketing & advertising, media, enterprise software, enterprises, computer software, consumer internet, consumers, internet, search marketing, marketing, artificial intelligence, productivity, internet infrastructure, e-learning, education management, saas, ux, crm, sales, computer & network security","","Route 53, Outlook, Microsoft Office 365, Amazon AWS, Vimeo, Mobile Friendly, Apache, Nginx, WordPress.org, Google Tag Manager, TYPO3, reCAPTCHA","","","","","","",69c2818e1cba2c0001f0fd60,7375,54151,"platform X ist dein zuverlässiger Partner für wiederkehrendes Geschäft und besteht aus drei Kernbestandteilen: Der Marketing Platform für datengetriebene Entscheidungen im Marketing und der Produktentwicklung, der Fulfillment Platform für die Abwicklung deiner Bestelleingänge und Kundenverträge inkl. Customer Service und der Digital Platform für die Umsetzung neuer digitaler Produkte.",2010,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67d252f8823eb20001d8fcd9/picture,"","","","","","","","","" +Trans4mation IT GmbH,Trans4mation IT,Cold,"",120,information technology & services,jan@pandaloop.de,http://www.trans4mation.de,http://www.linkedin.com/company/trans4mation-it-gmbh,https://www.facebook.com/Trans4mationIT,https://twitter.com/trans4mationit,55 Glashuetter Strasse,Dresden,Saxony,Germany,01309,"55 Glashuetter Strasse, Dresden, Saxony, Germany, 01309","it strategy architecture, managed services, client operations, portals collaboration, engineering development, workshops, project program management, technology consulting, infrastructure engineering, managed infrastructure, project amp program management, portals amp collaboration, assessments workshops, it services, software device management, consulting, creative services, accountant consulting, business solutions, application development, microsoft, workplace, device livecycle management, security, software amp device management, development, service desk, it services & it consulting, security & compliance, it assessment, it infrastructure, naturalistic driving data, information technology and services, workplace security, it consulting, data protection, compliance, engineering, green it, custom software development, workplace modernization, workplace collaboration, cloud solutions, it consulting services, workplace compliance solutions, microsoft technology, it strategy, innovation, workplace security solutions, remote work solutions, computer systems design and related services, it infrastructure management, device lifecycle management, managed service provider, sustainability, process automation, it service desk, client design automation, b2b, cybersecurity, workplace analytics, citizen developer enablement, cloud management, it support, flight drone navigation software, application rollout, software development, cloud services, digital workplace, data management, it operations, hybrid work optimization, services, remote device management, cloud computing, digital transformation, business continuity, it monitoring, workplace transformation, management consulting, information technology & services, app development, apps, enterprise software, enterprises, computer software, environmental services, renewables & environment",'+49 351 501949099,"Sendgrid, Outlook, Microsoft Office 365, Microsoft Azure Hosting, Leadfeeder, Active Campaign, Zendesk, Mobile Friendly, MouseFlow, Facebook Custom Audiences, Apache, Nginx, WordPress.org, reCAPTCHA, Bootstrap Framework, Remote, AI, Avaya, Data Analytics, Android, Node.js, Circle, React Native, Microsoft Azure Monitor","","","","",15000000,"",69c2818e1cba2c0001f0fd5d,7375,54151,"Trans4mation IT GmbH is a German IT services and consulting company founded in 2001, with its headquarters in Dresden and additional offices in major cities across Germany and Switzerland. The company specializes in managed services for digital workplaces and IT infrastructure, focusing on delivering secure and reliable solutions that enhance productivity and support digital transformation. + +Trans4mation offers a wide range of services, including managed workplace solutions, cloud services, IT consulting, and custom software development. Their expertise encompasses endpoint management, service desk support, and Microsoft Office 365 implementations. The company emphasizes innovation and quality, often collaborating with Microsoft to provide tailored solutions for clients. With a dedicated team of 108 to 200 employees, Trans4mation serves clients throughout Germany, Austria, and Switzerland, positioning itself as a trusted partner in the IT landscape.",2001,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6731c4e747e68f00014982bc/picture,"","","","","","","","","" +Pactos,Pactos,Cold,"",22,information technology & services,jan@pandaloop.de,http://www.pactos.ai,http://www.linkedin.com/company/pactos,"","",33 Pettenkoferstrasse,Munich,Bavaria,Germany,80336,"33 Pettenkoferstrasse, Munich, Bavaria, Germany, 80336","whitecollar, zeitarbeit, contractor, sourcing, workforce management system, management verwaltung, outsourcing, hiring, procurement, digitale personalbeschaffung digital procurement digital staffing, personnel, people, global, fremdpersonal, marktplatz, hr, talent, entleiher, freelancer, hrms, recruiting, verleiher, vendor management system vms, erecruiting, bedarfsmanagement, saas, arbeitnehmerueberlassung, leiharbeit, arbeitnehmerueberlassung anu, externes personal, bewerberverwaltung, bluecollar, management, arbeitnehmerueberlassungsgesetz aug, software fuer die zeitarbeit, software development, lieferantenauswahl, echtzeit-reporting, automatisierte vertragsverwaltung, ki-software, workforce management, hospitality and hotels, datenintegration, freelancer management, prozessoptimierung, freelancer-management, digitale plattform, automatisierte compliance-prüfung, blacklistsystem, systemintegration, personalbedarf, food production, vendor management system, ki-gestützte dienstleistersuche, manufacturing, b2b, automatisierte cv-scoring, schnittstellen zu erp-systemen, rechtssicherheit, bewerbermanagement, personalverwaltung, echtzeitanalysen, datenbasierte entscheidungsfindung, operational efficiency, tender management, automatisierung, branchenspezifische lösungen, datenanalyse, healthcare, compliance, ki-gestütztes betriebssystem, lieferantenmanagement, services, consulting, prozessautomatisierung, cloud-based software, logistics and transportation, vendor management, eu-datenschutzkonform, talentepool-management, zeitarbeit-optimierung, regulatory compliance, computer systems design and related services, fremdpersonal management, finance, legal, distribution, human resources, computer software, information technology & services, mechanical or industrial engineering, health care, health, wellness & fitness, hospital & health care, financial services","","Cloudflare DNS, Gmail, Google Apps, Microsoft Office 365, Slack, Mobile Friendly, Google Tag Manager, Google Font API, Paypal, Google AdSense, Hubspot, Google AdWords Conversion, Linkedin Marketing Solutions, Notion, Figma, Make, Glide, Zapier, Airtable, SQL, Zoho CRM, NLP, CAT, Act!, Aircall, LinkedIn Sales Navigator",2970000,Seed,2970000,2025-09-01,"","",69c2818e1cba2c0001f0fd62,7375,54151,"Pactos is an AI-powered operating system designed for managing contingent workforces, founded in 2023. The platform aims to simplify and digitalize the management of external workers for medium-sized and large companies. It offers a centralized solution that automates HR processes, enhances transparency, and improves the efficiency of workforce procurement and management. + +Pactos provides several integrated solutions, including a Vendor Management System (VMS) for secure process automation and compliance, a Workforce Management System (WMS) for optimizing planning and resource management, and Pactos Tender, an AI-powered assistant for quick staffing solutions. The platform also supports staffing providers in digitizing their collaboration with clients. With a focus on transparency and customized solutions, Pactos integrates data from ERP and HR systems to facilitate informed decision-making. The company is based in Germany and has secured €2.7 million in seed funding to support its growth and product development.",2023,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6873d8eac15f380001f7942a/picture,"","","","","","","","","" +D&G-Software GmbH,D&G-Software,Cold,"",19,information technology & services,jan@pandaloop.de,http://www.dug-software.de,http://www.linkedin.com/company/d&g-software-gmbh,https://www.facebook.com/people/DG-Software-GmbH/100087279708661/,"",6 Im Ermlisgrund,Waldbronn,Baden-Wuerttemberg,Germany,76337,"6 Im Ermlisgrund, Waldbronn, Baden-Wuerttemberg, Germany, 76337","webshop, software development, erpsystem, multichannel, ecommerce, onlineshop, itsupport, shopanbindung, warenwirtschaft, omnichannelsoftware, software fuer vesandhandel, it services & it consulting, payment integration, marktplatzanbindung, cloud computing, b2c, services, erp-systeme, ki-basierte lösungen, automatisierung, ki-integration, d2c, retail, schnittstellen zu marktplätzen, mobile commerce, omnichannel retailing, pos integration, multichannel management, e-commerce-integration, sicherheit & compliance, consulting, warenwirtschaftssystem, versandsoftware, cloud erp, multichannel erp, logistiksoftware, versandhandelsoftware, cloud-lösungen, retourenmanagement, branchenspezifische anpassungen, e-commerce, e-commerce schnittstellen, datenanalyse, pos-systeme, kundenmanagement, skalierbare erp-lösungen, echtzeit-datenanalyse, multi-channel fulfillment, shop-systeme, erp, logistics, manufacturing, omnichannel-handel, information technology & services, computer systems design and related services, workflow automation, b2b, bi-tools, kundenservice-optimierung, automatisierte bestellabwicklung, ki im marketing, wholesale trade, filialanbindung, automatisierte workflows, omnichannel, cloud, automation, ki, consumer internet, consumers, internet, enterprise software, enterprises, computer software, mechanical or industrial engineering",'+49 72 433440,"Mobile Friendly, Nginx, Google Tag Manager, Delphi, PostgreSQL","","","","","","",69c2818e1cba2c0001f0fd63,7375,54151,"Die D&G-Software GmbH ist Ihr kompetenter Partner für perfekte Omnichannel-Software. Als Pionier der ersten Stunde unterstützen wir unsere Kunden bei der digitalen Transformation ihrer Workflows. Und machen den Omnichannel-Handel so einfacher, sicherer und effizienter. Unsere Lösung: Das D&G-Versandhaus-System VS/4. + +Ob als Out-of-the-box-Lösung oder hochindividualisiertes Setup – das ERP-System VS/4 deckt nicht nur nahezu alle versandhandelstypischen Anforderungen ab, sondern bietet auch jede Menge leistungsstarker E-Commerce- und POS-Lösungen. Mengenoptimierte Workflows und eine hohe Automatisierung steigern die Effizienz, sparen wertvolle Ressourcen und bilden so die Basis für Ihren Erfolg. + +Mehr als 340 nationale und internationale Versand-, E-Commerce- und Omnichannel-Händler verschiedenster Sortimentsbereiche und Unternehmensgrößen setzen auf unsere prämierte Softwarelösung, die darüber hinaus regelmäßig vom TÜV zertifiziert wird. + +Profitieren auch Sie von über 35 Jahren Branchenexpertise und ebnen Sie jetzt den Weg zum erfolgreichen digitalen Handel. + +Mehr zu uns und unseren Lösungen finden Sie unter www.dug-software.de.",1987,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/675a867f3284a50001846322/picture,"","","","","","","","","" +integrate-it Netzwerke GmbH,integrate-it Netzwerke,Cold,"",17,information technology & services,jan@pandaloop.de,http://www.integrate-it.net,http://www.linkedin.com/company/integrate-it-netzwerke,https://www.facebook.com/integrateitgmbh,https://twitter.com/integrate_it,5 Voltastrasse,Berlin,Berlin,Germany,13355,"5 Voltastrasse, Berlin, Berlin, Germany, 13355","managed services, itsecurity, infrastrukturanalyse, managed server, itservice, rechenzentrum, managed antivirus, helpdesk, managed firewall, cloudsolutions, managed clients, security audit, itsupport, itconsulting, managed monitoring, itstrategie, it services & it consulting, data security, it security audits, it training, cloud backup solutions, it-consulting, cyberattack prevention, green it, information technology and services, it support, it infrastructure, b2b, remote monitoring, it security, ngo it support, microsoft teams integration, sustainable digital transformation, it audits, cybersecurity, managed itsm, cloud solutions, sustainable it, it strategy, virtual desktop infrastructure, services, virtualization, consulting, microsoft 365, infrastructure analysis, climate-neutral data center, active directory, computer systems design and related services, cloud backups, non-profit, information technology & services, computer & network security, cloud computing, enterprise software, enterprises, computer software, nonprofit organization management","","Outlook, Microsoft Office 365, Citrix, SparkPost, SendInBlue, Google Tag Manager, Nginx, Google Analytics, Vimeo, Mobile Friendly, WordPress.org","","","","","","",69c2818e1cba2c0001f0fd6c,7371,54151,"Unser Anspruch ist, Ihnen in allen IT-Fragen kompetent zur Seite zu stehen. Respekt, Vertrauen und Sorgfalt sind die Maßstäbe unseres Handelns. Unsere Stärke ist die IT-Kompetenz, mit der unser Team durch ständige Qualifizierungen und Zertifizierungen auf höchstem Niveau arbeitet. Unsere Dienstleistungen werden von mittelständischen Firmen und NGOs in Anspruch genommen, die sich Kundennähe und einen hohen Servicelevel wünschen. + +IT-Full-Service aus einer Hand + +Wir bieten Ihnen vom kompetenten IT-Consulting, über die Konzeption Ihrer Netzwerke bis zur Umsetzung Ihrer IT-Landschaft alles, um Ihre Arbeitsabläufe zu optimieren und Ihre Effektivität zu steigern. Unsere Lösungen stehen für hohe Performance, Stabilität, Ausfall- und Datensicherheit. Unser IT-Support und unser Monitoring sorgen für einen reibungslosen Ablauf in Ihrer IT-Landschaft. + +Unsere Leistungen im Überblick + +* IT-Consulting +* Managed Services +* Cloud Solutions +* IT-Security + +Haben Sie gefunden, wonach Sie suchen? +Rufen Sie uns doch einfach einmal an oder besuchen Sie unsere Website. + +Impressum: https://www.integrate-it.net/impressum/",1999,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/687376f355876000016cacb4/picture,"","","","","","","","","" +Syncwork Ag,Syncwork Ag,Cold,"",130,information technology & services,jan@pandaloop.de,http://www.syncwork.de,http://www.linkedin.com/company/syncworkag,"","",26A Franklinstrasse,Berlin,Berlin,Germany,10587,"26A Franklinstrasse, Berlin, Berlin, Germany, 10587","itberatung, projektmanagement, data warehouse, sapconsulting, egovernment, management consulting, meldewesen, security information & event management, onlinezugangsgesetz, ausschreibungsmanagement, software development, testmanagement, robotic process automation, compliance, digital validation, it services & it consulting, digital strategy development, digitalization, digital innovation, it consulting, business optimization, digital marketing strategy, strategy, user experience design, business consulting, digital project management, process optimization, digital design, services, it solutions, digital solutions, digital customer engagement, digital platform development, design, management consulting services, digital ecosystem, consulting services, digital product design, digital experience design, technology consulting, strategy consulting, digital process automation, b2b, design services, digital strategy, digital business models, digitalization for enterprises, digital consulting, consulting, innovation, digital infrastructure, digital services, digital workflow, digital transformation, information technology & services, strategic consulting, marketing, marketing & advertising","","Outlook, Microsoft Azure Hosting, Mobile Friendly, Oracle Analytics Cloud, SAP","","","","","","",69c2818e1cba2c0001f0fd55,8742,54161,"Syncwork AG is a medium-sized consulting firm based in Germany, founded in January 2001. The company specializes in optimizing complex business processes through tailored IT solutions. It operates under owner-led management, which fosters long-term client relationships and supports internal career development. + +The firm offers a range of services, including management consulting, business intelligence, SAP solutions, and IT development. Syncwork AG provides strategic advice to enhance business efficiency, delivers data-driven insights for informed decision-making, and implements customized SAP systems for digital transformation. The company focuses on experienced professionals to manage complex projects, emphasizing its expertise in process optimization and technology integration.",2001,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f7e2fa5551be0001b8de99/picture,"","","","","","","","","" +Confexx Consulting GmbH,Confexx Consulting,Cold,"",15,information technology & services,jan@pandaloop.de,http://www.confexx-consulting.de,http://www.linkedin.com/company/confexx-consulting,"","",2 Bergstrasse,Andechs,Bayern,Germany,82346,"2 Bergstrasse, Andechs, Bayern, Germany, 82346","datawarehousing, azure cloud services, aws, dsgvo, machine learning, sap bw, it projektleitung, risikomanagement, power bi, business analytics, talend etl, snowflake, it services & it consulting, strategisches it-management, b2b, technologieberatung, it-projektmanagement, data analysis, data migration, consulting, cloud-services, it-lösungen, snowpro zertifiziert, ai, automatisierung, artificial intelligence, cloud-architektur, compliance, predictive analytics, digitale transformation, devops, services, it-dienstleistungen, data vault 2.0, sap, snowflake service-partner, business intelligence, innovation, data science, data security, data optimization, data cloud, data analytics, maßgeschneiderte it-lösungen, data governance, information technology and services, data lake, data warehousing, big data, data engineering, azure, datenmanagement, hybrid cloud, cloud computing, computer systems design and related services, datenintegration, information technology & services, enterprise software, enterprises, computer software, analytics, computer & network security",'+49 8152 9839321,"Outlook, Microsoft Office 365, WordPress.org, reCAPTCHA, Mobile Friendly, Typekit, Apache, Google Font API, Circle, Android, React Native, Remote, Acumatica, AI","","","","","","",69c2818e1cba2c0001f0fd57,7375,54151,"IT Consulting für Cloud, Big Data, Business Analytics und ETL Lösungen",2008,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68679dbe45a1d90001df58fd/picture,"","","","","","","","","" +Business Systemhaus AG,Business Systemhaus AG,Cold,"",41,information technology & services,jan@pandaloop.de,http://www.bsh-ag.de,http://www.linkedin.com/company/business-systemhaus-ag,https://www.facebook.com/businesssystemhausag/,https://twitter.com/BSH_AG,18 Himmelkronstrasse,Bayreuth,Bavaria,Germany,95445,"18 Himmelkronstrasse, Bayreuth, Bavaria, Germany, 95445","microsoft dynamics nav, sharepoint, sage hr personalwirtschaft, it unternehmensberatung, jet reports, agiles projektmanagement, itinfrastruktur, it security, power bi, microsoft dynamics nav sharepoint sage hr personalwirtschaft itinfrastruktur jet reports office 365 c, microsoft 365, azure, exchange migration, prozessdigitalisierung, office 365, cloud computing, dynamics 365 business central, digital workplace, modern workplace, it-beratung, information technology, information technology and services, digitalisierung, rechnungswesen software, support/hotline, datev schnittstelle, hardware, project management, projektmanagement, systembetreuung, computer systems design and related services, vertragsmanagement, software development, crm, microsoft power bi, partnernetzwerk, it infrastructure, digital transformation, change management, support & hotline, security, it schulungen, b2b, cloud, business intelligence, it consulting, security beratung, it wissensdatenbank, business services, dox42 dokumentenautomation, geschäftsprozesse, it-unternehmensberatung, training, it-strategie, system integration, support, agile projektplanung, business software, datenanalyse, erp, personalmanagement software, prozessoptimierung, services, it-lösungen, softwareentwicklung, it-infrastruktur, consulting, computer & network security, information technology & services, enterprise software, enterprises, computer software, productivity, sales, analytics, management consulting",'+49 921 5950,"Outlook, MailChimp SPF, reCAPTCHA, Google Tag Manager, WordPress.org, Vimeo, Mobile Friendly, Google Analytics, Remote, , Microsoft Dynamics NAV, ","","","","","","",69c2818e1cba2c0001f0fd5b,7379,54151,"🚀 Moderne IT seit 1952: Business Systemhaus AG 🚀 + +🔍 Komplexe Prozesse? Wir machen sie einfach! +Wir sind die Business Systemhaus AG – Ihr Partner für praxisorientierte IT-Lösungen, die Ihre Geschäftsprozesse optimieren und Ihr Unternehmen nach vorne bringen. + +💡 Was wir bieten: +- ERP-Systeme: Maßgeschneiderte Lösungen mit Dynamics 365 Business Central für reibungslose Abläufe. +- Modern Workplace: Effizienter und digitaler arbeiten mit Microsoft 365 (#ModernWorkplace). +- Business Intelligence: Datengestützte Entscheidungen mit Jet Reports, Jet Analytics und Power BI. +- HR-Management: Rundum-Betreuung mit der Sage HR Suite – von Implementierung bis Support. +- IT-Infrastruktur: Von Lizenzberatung bis Backup – alles aus einer Hand. + +👥 Warum mit uns? +Mit unserem agilen Beratungskonzept 365XPERT reagieren wir flexibel auf Ihre Bedürfnisse und begleiten Sie von der Strategieentwicklung bis zum täglichen Support – schnell, zuverlässig, kompetent. + +👉 Lassen Sie uns gemeinsam die digitale Zukunft gestalten!",1952,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/695ace89950b0a0001c0b9a4/picture,"","","","","","","","","" +quattec,quattec,Cold,"",46,information technology & services,jan@pandaloop.de,http://www.quattec.de,http://www.linkedin.com/company/quattec,"","","",Wiesbaden,Hesse,Germany,"","Wiesbaden, Hesse, Germany","software development, custom software, it support, it-consulting, business analyse, ki-modelle entwicklung, it-infrastruktur, project management, legacy-system modernisierung, software engineering, customer engagement, cloud solutions, maßgeschneiderte software, b2b, app development, digitalisierung, computer systems design and related services, ki-lösungen, data science, customer relationship management, legacy modernisierung, software integration, ki-entwicklung, ki-readiness-analyse, data analytics, business process optimization, digital transformation, custom software development, process optimization, digitale transformation, machine learning, consulting, projektmanagement, schulungen in ki, open source software, it consulting, it-beratung, ai solutions, data science beratung, künstliche intelligenz, it transformation, ki-schulungen, it-dienstleistungen, artificial intelligence, custom software engineering, information technology and services, softwareentwicklung, individuelle softwarelösungen, it projektumsetzung, services, legacy-systeme, education, information technology & services, productivity, cloud computing, enterprise software, enterprises, computer software, apps, crm, sales, management consulting",'+49 61 19458690,"Outlook, Microsoft Office 365, Apache, Mobile Friendly, Remote","","","","","","",69c2818e1cba2c0001f0fd5e,7371,54151,"Die quattec IT-Dienstleistungen GmbH ist dein Partner für maßgeschneiderte Softwarelösungen und IT-Beratung. Seit 2007 entwickeln wir individuelle Lösungen für Unternehmen jeder Größe im DACH-Raum – von der ersten Beratung bis zur erfolgreichen Integration in die Geschäftsprozesse. Unser Team mit Sitz in Wiesbaden besteht aus 80 Experten, die durch ihr technisches Know-how und ihre Beratungskompetenz deine Herausforderungen in innovative Lösungen verwandeln. + +Unter der Leitung von Oliver Friedrich und Felix Hess begleitet quattec ihre Kunden nicht nur in der klassischen Softwareentwicklung, sondern bietet auch spezialisierte Dienstleistungen im Bereich Künstliche Intelligenz und Data Science. Unser Ziel ist es, nachhaltige Werte durch fortschrittliche Technologie zu schaffen und Unternehmen dabei zu unterstützen, ihr volles Potenzial zu entfalten. Wir denken mit dir voraus – für langfristigen Erfolg und eine zukunftssichere IT-Landschaft. + +Möchtest du mehr erfahren? Kontaktiere uns noch heute und lass uns gemeinsam nachhaltige und wirkungsvolle Lösungen für deine Zukunft gestalten! + +Kontaktdaten unseres Vertriebsteams: +📧 crm@quattec.de +📞 0611 9458 6993",2007,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/671a3993b6ef0900011bb111/picture,"","","","","","","","","" +Weflow,Weflow,Cold,"",23,information technology & services,jan@pandaloop.de,http://www.getweflow.com,http://www.linkedin.com/company/getweflow,"",https://twitter.com/getweflow,32 Tempelhofer Ufer,Berlin,Berlin,Germany,10963,"32 Tempelhofer Ufer, Berlin, Berlin, Germany, 10963","sales technology, salesforce, revenue teams, sales productivity, sales pipeline management, forecasting, sales performance, pipeline management, revenue intelligence, sales process adherence, salesforce productivity, software development, sales and marketing, ai deal predictor, ai-powered workflows, sales enablement, services, information technology and services, deal risk detection, ai sales assistants, salesforce data capture, meeting transcription, ai email composer, salesforce automation, forecasting & analytics, sales coaching, forecast accuracy, b2b, sales forecasting, ai deal monitor, pipeline health, computer systems design and related services, ai field updater, ai notetaker, software as a service (saas), revenue operations, deal insights, information technology & services, sales & marketing","","Cloudflare DNS, Route 53, Gmail, Google Apps, Microsoft Office 365, CloudFlare Hosting, Typeform, Webflow, Hubspot, Mobile Friendly, YouTube, Google AdWords Conversion, Visual Website Optimizer, Eventbrite, Google Tag Manager, Google AdSense, DoubleClick, DoubleClick Conversion, Linkedin Marketing Solutions, Intercom, WordPress.org, Google Dynamic Remarketing, Segment.io, Hotjar, Google Workspace, Android, AI, Gong, Remote, Salesforce",6900000,Seed,3200000,2023-07-01,756000,"",69c2818e1cba2c0001f0fd64,7375,54151,"Weflow is an AI-powered revenue intelligence and Salesforce productivity platform based in Berlin, Germany. Founded in 2020, it focuses on automating data capture and enhancing pipeline visibility for sales, RevOps, customer success, and revenue teams. Weflow aims to streamline revenue processes by minimizing time spent on non-selling activities, such as data entry and CRM maintenance. + +The platform offers a modular suite of products that integrate seamlessly with Salesforce, Google Workspace, and Microsoft 365. Key features include activity capture for logging interactions, conversation intelligence for meeting management, pipeline intelligence for deal tracking, and advanced forecasting and analytics. Weflow provides various pricing plans, including a free option and tailored enterprise solutions, catering to startups, SMBs, mid-market, and enterprise clients. The company emphasizes user-friendly interfaces and customizable workflows to enhance productivity and improve sales performance.",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/695626590ac97200018a72e0/picture,"","","","","","","","","" +IPI GmbH,IPI,Cold,"",51,information technology & services,jan@pandaloop.de,http://www.ipi-gmbh.com,http://www.linkedin.com/company/ipi-gmbh,https://www.facebook.com/ipi.net/,https://twitter.com/sharepoint2ipi,"",Ansbach,Bavaria,Germany,"","Ansbach, Bavaria, Germany","it services & it consulting, content management, community management, mitarbeiter-app, power platform & nintex, microsoft 365 beratung, ki im intranet, digital workplace, content management mit m365, ki-strategie, information technology and services, b2b, prozessautomatisierung, employee experience, software development, content strukturierung, digitaler wissensaustausch, consulting services, intranet, microsoft teams, microsoft 365 copilot, webinare, intranet migration, viva engage, project management, digitalisierung, automatisierte workflows, ki-gestützte prozesse, computer systems design and related services, power platform, ki-agenten, softwareentwicklung, change management, user experience, user-centered design, responsive design, sharepoint online, digital transformation, m365 migration, content management system, automatisierung, user journey, mitarbeiterkommunikation, enterprise software, microsoft 365, collaboration, intranet lösung, schulungen, prozessdigitalisierung, gelenkte dokumente, individuelle business apps, information technology & services, management consulting, productivity, ux, enterprises, computer software",'+49 98 165050890,"Outlook, Microsoft Office 365, Mobile Friendly, Apache, WordPress.org, Google Tag Manager, Microsoft Windows Server 2012, Microsoft 365, Microsoft Azure Monitor, Microsoft Exchange Online, Microsoft Teams Rooms, SharePoint, Microsoft Intune Enterprise Application Management, Microsoft Active Directory Federation Services, Azure Active Directory, Microsoft Hyper-V Server, VMware, Microsoft Power Platform, Microsoft Power Apps, Microsoft Power Automate, PowerBI Tiles, Pages","","","","","","",69c2818e1cba2c0001f0fd65,7375,54151,"IPI GmbH is a full-service agency based in Lichtenau, Bavaria, specializing in digital workplaces, intranets, and Microsoft 365 solutions. The company supports businesses in their digital transformation journey, offering services that range from strategy development to implementation and ongoing support. With a team of around 80 employees, IPI GmbH generates approximately $6.6 million in revenue. + +As one of the largest intranet agencies in the German-speaking region, IPI GmbH combines expertise in communication, information architecture, system integration, and design. Their offerings include social intranets, collaboration solutions, and process digitization tailored to enhance employee experience and internal communication. The company emphasizes high usability and user experience in its digital workplace solutions, leveraging Microsoft technologies like SharePoint. With over 20 years of experience, IPI GmbH is committed to delivering effective and innovative solutions for businesses looking to improve their digital environments.",1996,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/683e91115e04d30001963c99/picture,"","","","","","","","","" +Scheer PAS,Scheer PAS,Cold,"",45,information technology & services,jan@pandaloop.de,http://www.scheer-pas.com,http://www.linkedin.com/company/scheer-pas,"","","",Saarbruecken,Saarland,Germany,66123,"Saarbruecken, Saarland, Germany, 66123","software development, workflow automation, sap s/4hana integration, digitalisierung, process automation tools, api management, hybrid cloud integration, consulting, process mining and analytics, automatisierte prozessüberwachung, sap integration, ki-agenten orchestrierung, business process modeling, konnektivitätsmanagement, ki-basierte plausibilitätsprüfung, services, integration plattform, ki-gestützte prozessoptimierung, application development, automatisierungstools, real-time data processing, systemkonnektivität, computer systems design and related services, cloud computing, enterprise software, process monitoring, finance, api verwaltung, business rules management, compliance management, system integration, retail, workflow orchestration, automatisierungsarchitektur, process orchestration, process transparency, legacy system integration, end-to-end prozesse, composability, low-code plattform, automation framework, government, analytics, business efficiency, process insights, enterprise connectivity, workflow management, cloud integration, business process management, partner integration, prozessautomatisierung, datenintegration, geschäftsprozessautomatisierung, low-code development, geschäftsprozess-design, digital workflow, legacy system connectivity, real-time monitoring, process mining, automatisierungsplattform, data security, api gateway, cloud-native architecture, prozessorientierte it-integration, enterprise integration, e-commerce, process ipaas, b2b, multi-system integration, data synchronization, system interoperability, manufacturing, multichannel e-commerce, e-rechnung integration, process lifecycle management, distribution, hybrid it, process optimization, process governance, business transformation, prozessanalyse, data governance, consumer_products_retail, information technology & services, app development, apps, enterprises, computer software, financial services, computer & network security, consumer internet, consumers, internet, mechanical or industrial engineering","","Outlook, MailChimp SPF, Microsoft Office 365, Jira, Atlassian Confluence, Hubspot, Google Font API, Woo Commerce, Mobile Friendly, YouTube, Apache, WordPress.org, Google Tag Manager, SAP, Concur, SAP Ariba Platform, SAP S/4HANA, SAP SuccessFactors, ANGEL LMS, RISE with SAP, , Kodak Alaris, SAP Activate, SAP BTP for Spend Management, Signavio, Kubernetes, Docker, Microsoft Azure Monitor, AWS Trusted Advisor, IONOS, CAT, Azure Linux Virtual Machines, AWS Transfer for SFTP, MDaemon Email Server, ARES, AI, Amazon Web Services (AWS), Azure Blockchain Service, SQL, C#","","","","","","",69c2818e1cba2c0001f0fd66,7375,54151,"Scheer PAS is a process automation and integration platform designed to support business processes and applications with flexibility and agility. It enables digitization, automation, and connectivity across both legacy and modern systems, whether on-premise or in the cloud. As the flagship product of Scheer GmbH, part of the Scheer Group, it focuses on linking people, processes, and systems while utilizing existing IT infrastructure to create composable enterprises. + +The platform combines application development, integration, and low-code business process automation into a single solution. It features seamless connectivity between applications, end-to-end orchestration of business processes, and tools for data exchange and automation. Key components include the Scheer PAS Business Modeler for graphical modeling and capabilities for API management. Recognized in the Gartner Magic Quadrant for Integration Platform as a Service, Scheer PAS offers quick ROI, flexible adaptability, and reduced operating costs, making it suitable for various sectors, including government, retail, and logistics.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68c5af75f968330001c2f935/picture,Scheer Group,67d8f2060234900001dde65e,"","","","","","","" +etomer GmbH,etomer,Cold,"",48,information technology & services,jan@pandaloop.de,http://www.etomer.com,http://www.linkedin.com/company/etomer,https://facebook.com/pages/Systemhaus-etomer-GmbH/387318404703281,"",27 Winkler Strasse,Berlin,Berlin,Germany,14193,"27 Winkler Strasse, Berlin, Berlin, Germany, 14193","monitoring appliance, computer systems design and related services, datensicherheitslösungen, remote it services, sicherheitsmanagement, it-management, it-sicherheitszertifizierung, isms, nachhaltige it-lösungen, devops, informationssicherheit, it-compliance-beratung, kubernetes, it-sicherheit, cloud-services, compliance, consulting, cloud migration support, zertifiziert, cloud services, hybrid cloud, openstack, cloud-readiness assessment, sap-basis, hybrid cloud management, it-sicherheitsaudits, oracle-datenbanken, cloud-readiness-check, iso/iec 27001:2022, krisenmanagement it, b2b, it-automatisierungstools, backup auditor, automatisierung, security monitoring, it-infrastruktur, nachhaltigkeit, services, it-beratung, oracle rman, automatisierte systemüberwachung, kundenorientiert, managed services, tisax, it-betrieb, it-support, it-transformation, datacenter, it-optimierung, information technology and services, cloud computing, enterprise software, enterprises, computer software, information technology & services",'+49 30 33503725,"Outlook, Atlassian Cloud, Slack, WordPress.org, Nginx, Mobile Friendly, Bootstrap Framework","","","","","","",69c2818e1cba2c0001f0fd6d,7379,54151,"Als technisches Beratungshaus für Datacenter und Cloud befasst sich etomer seit 2002 mit den besonderen Anforderungen von verteilten Infrastrukturen produktionskritischer und unternehmensrelevanter IT. Wir erbringen seit 2002 Planungs-, Implementierungs-, Optimierungs- und Betriebsleistungen und setzen hier von Anfang an auf die Leistungserbringung durch entsprechend technisch und organisatorisch gesicherte Verbindungen. + +Unser Name spiegelt somit sowohl unseren Beratungsschwerpunkt, als auch unseren bevorzugten Weg der Leistungserbringung wider: + +etomer remote. + +Wir verstehen uns heute als technischer Wegbereiter digitaler Business-Transformation, weil wir die Herausforderungen des Datacenters genauso antizipieren wie die Herausforderungen moderner Cloud-Infrastrukturen. Unsere Stärke ist die technische Verzahnung beider Welten und die damit verbundene Handhabung der sich daraus ergebenen und sprunghaft steigenden Komplexität in Bezug auf die Anforderungen Sicherheit, Verfügbarkeit, Skalierbarkeit und Effizienz. + +https://www.etomer.com/impressum",2002,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66ffa3a39858f30001667308/picture,"","","","","","","","","" +Batten & Company,Batten,Cold,"",34,management consulting,jan@pandaloop.de,http://www.batten-company.com,http://www.linkedin.com/company/batten-&-company-bbdo-consulting-,"","",92 Koenigsallee,Duesseldorf,Nordrhein-Westfalen,Germany,40212,"92 Koenigsallee, Duesseldorf, Nordrhein-Westfalen, Germany, 40212","brand management, customer analytics, sales, change management, business marketing strategy, business innovation, marketing sales organisation, marketing sales automation, marketing amp sales organisation, sales excellence price management, marketing amp sales automation, design thinking, marketing sales organization, marketing, culture change management, customer experience digitalization, organisation, crm, brand management communication, business consulting & services, market research, sales excellence, customer experience customer insights, brand positioning, brand experience management, customer value proposition, data analytics, customer experience customer journey mapping tools, content marketing, brand management & communication, brand measurement, customer journey optimization, digital tools, customer behavior analysis, e-commerce, customer journey mapping, customer experience design, brand architecture, market insights, customer experience customer feedback loop, customer feedback, customer experience metrics & kpis, leadership in marketing, d2c, customer experience, customer experience design thinking, customer segmentation, customer experience technology, customer insights, customer loyalty programs, marketing metrics, customer centricity, lead generation, customer experience strategy, process optimization, customer experience organizational design, organizational design, customer engagement platforms, customer experience optimization, digital marketing, b2c, price management, marketing consulting, organizational transformation, customer experience automation, performance management, retail, customer retention, omnichannel strategy, agile marketing, digital transformation, customer experience personalization, customer loyalty, marketing strategy, market positioning, consulting, marketing & sales strategy, customer experience management, marketing technology, management consulting services, customer satisfaction, customer experience metrics, crm strategy, strategic marketing, customer experience & digitalization, customer data management, analytics, customer engagement, management consulting, customer experience analytics, customer experience technology stack, customer experience transformation, customer experience culture change, customer data analytics, customer experience customer loyalty programs, sales performance, b2b, customer journey, customer data-driven marketing, customer experience customer satisfaction measurement, marketing automation, customer relationship management, customer experience framework, sales organization, customer experience innovation, digital customer service, brand development, customer experience innovation strategies, omnichannel customer experience, customer experience improvement, services, market trends, business strategy, enterprise software, enterprises, computer software, information technology & services, marketing & advertising, consumer internet, consumers, internet, saas",'+49 211 13798291,"UltraDns, Outlook, Hubspot, Microsoft PowerPoint","","","","","","",69c281871cba2c0001f0f8d9,8742,54161,"Batten & Company encompasses multiple entities operating in different sectors. One notable firm is a boutique consulting company founded in 2010, specializing in brand strategy development, internal transformation, and business culture analysis. This firm aims to help organizations grow with purpose by connecting business, brand, consumer, and culture. + +Another entity under the same name focuses on commercial construction and maintenance services, with over 25 years of experience serving clients in North Carolina. Additionally, there is a German-based strategic consulting firm that offers services in analysis, strategy development, and implementation management. Each of these firms brings unique expertise to their respective industries.",2000,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68be97ea3a538c0001a4d075/picture,"","","","","","","","","" +Join GmbH,Join,Cold,"",59,information technology & services,jan@pandaloop.de,http://www.join.de,http://www.linkedin.com/company/join-de,https://www.facebook.com/join.gmbh,https://twitter.com/join_gmbh,10A Klausenerstrasse,Magdeburg,Sachsen-Anhalt,Germany,39112,"10A Klausenerstrasse, Magdeburg, Sachsen-Anhalt, Germany, 39112","big data, microsoft, prozessmanagement, digitale transformation, sharepoint, open data plattform, enterprise search, information management, business intelligence, application management, blockchain anwendungen, microsoft 365, legal tech, quam, vertragsmanagement, sinequa, digital workplace, prozess digitalisierung, data mining, projektmanagement, application hosting, cloud, auditmanagement, legal operations, company chatgpt, cpm, individualentwicklung, office 365, collaboration, service management, ki, b2b, contract lifecycle management, security automation sharepoint, ki-gestützte suche, consulting, software development, compliance & security, e-mail signaturen, digital transformation, cloud backup, datenmanagement, legal services, information technology & services, ki-optimiertes prozessmanagement, automatisierung, led0x365, microsoft sharepoint, tourismusdatenbank, power platform, non-profit, sharepoint security solution, digitaler zwilling organisation, data analytics, it infrastructure, microsoft search, enterprise search beratung, collaboration tools, microsoft partner, it-dienstleistungen, digitalisierung, touristisches datenmanagement, vertragsmanagement in office 365, custom workflow automation, security management, infrastruktur & betrieb, it-infrastruktur, computer systems design and related services, it consulting, data hub tourismus, services, datenanalyse, microsoft teams, cloud-lösungen, azure, cloud-to-cloud backup, legal, enterprise software, enterprises, computer software, it management, analytics, nonprofit organization management, management consulting",'+49 36 91709000,"Outlook, Microsoft Office 365, Cloudflare DNS, CloudFlare Hosting, Jira, Atlassian Confluence, Atlassian Cloud, Amazon SES, Remote, React Native, Android, IoT, AI, Microsoft 365, SharePoint, Office365, Microsoft Office, Salesforce CRM Analytics","",Merger / Acquisition,0,2024-12-01,"","",69c281871cba2c0001f0f8dd,7375,54151,"Join GmbH is a German IT solutions and software development company that specializes in digital transformation, communication, and collaboration solutions for enterprises. Founded in 1999, the company has over 25 years of IT project experience and employs more than 60 experts across various locations in Germany, including Magdeburg, Eisenach, Frankfurt, Hamburg, Dresden, Leipzig, and Szczecin. + +The company offers a range of IT consulting and implementation services that cover the entire digitalization lifecycle. These include strategy consulting, data integration, enterprise search solutions, process management, and AI-powered solutions. Join GmbH is also known for its proprietary product, LEDOX365, a Contract Lifecycle Management System that simplifies contract, matter, and dispute management. As a long-standing Microsoft partner, the company develops tailored Microsoft 365 solutions to meet client needs. Join GmbH serves over 700 customers across more than 3,000 projects in 30 countries, working with clients in various industries such as automotive, healthcare, pharmaceuticals, and banking.",1999,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/681785083c05c400018f73bf/picture,"","","","","","","","","" +TrendView GmbH,TrendView,Cold,"",22,marketing & advertising,jan@pandaloop.de,http://www.trendview.de,http://www.linkedin.com/company/trendview-gmbh,https://www.facebook.com/trendviewgmbh,"",7 Ferdinand-Nebel-Strasse,Koblenz,Rhineland-Palatinate,Germany,56070,"7 Ferdinand-Nebel-Strasse, Koblenz, Rhineland-Palatinate, Germany, 56070","abverkaufsloesung fuer den moebel amp kuechenhandel, seo, abverkaufsloesung fuer den moebel kuechenhandel, sea, reichweite, kreation entwicklung, online kommunikation, social media, multichannelmarketing, endkunden informationsportale, wwwplanungsweltende, visualisierungsloesungen, dataanalytics, performance marketing, social media marketing, advertising services, user experience design, data analytics, restposten abverkauf, customer journey, construction portal, multilingual voice ai, kalkulationssoftware, system integration, online marketing, kalkulationsportal, e-commerce, chatbot, services, voice agent, ai in b2b, restposten abverkaufstool, multilingual ki, ai in performance marketing, software development, ai chatbot, ai in content creation, digital solutions, complex product data kalkulation, information technology and services, ux-design, ai for lead qualification, ai in customer service, automated call handling, online marketing strategy, content management systems, customer engagement tools, customer support automation, ai for customer reviews, digitale strategie, webentwicklung, webportal development, review management, ai in construction, cloud integration, consulting, digital marketing and advertising, management transformation, online marketing tools, construction, user interface design, product data kalkulation, webdesign, campaign planning, ai review manager, social media management, content marketing, b2b, omnichannel marketing, ai-driven campaigns, performance monitoring, customer journey analysis, marketing automation, multichannel marketing, online rezensionsmanagement, ai support-assistent, automated customer service, portal bauen & einrichten, bauen & einrichten portal, process automation, data management, legal ai context, automated customer support, performance analytics, mobile app development, custom software, ai support systems, content creation, review manager, ki-beratung, ai-integration in business, b2b marketing, digital marketing dashboard, restposten verkaufstool, webanwendungen, ai support, online-shops, digital transformation, custom software development, customgpts, computer systems design and related services, multilingual support, legal, distribution, information technology & services, search marketing, marketing, marketing & advertising, consumer internet, consumers, internet, web design, saas, computer software, enterprise software, enterprises",'+49 26 11349640,"MailJet, Outlook, Microsoft Office 365, Freshdesk, Shutterstock, Facebook Custom Audiences, Google Tag Manager, Apache, Google Plus, Mobile Friendly, Etracker, WordPress.org, Nginx, AI","","","","","","",69c281871cba2c0001f0f8e3,7375,54151,"Der Name ist hier Programm: Die TrendView hat den „Blick für Trends"" und davon profitieren unsere Kunden aus dem Mittelstand und der Industrie. Ob Social Media Marketing, Content Marketing, Performance Marketing oder die Erstellung Ihrer Website – wir machen Ihre Marke oder Ihr Produkt nicht nur bekannt, sondern begehrenswert. Manchmal sind wir sogar Ihre eigene Digital-Abteilung. Eben ganz, wie Sie es sich wünschen. + +Dabei helfen uns unsere hochfrequentierten Portale www.planungswelten.de oder herzregion.at. Hier finden Endkunden nicht einfach nur Produkte, sondern lernen auch die Marke dahinter kennen. Dank unserer Webview-Tools ist es zudem möglich, Produkte in Echtzeit zu visualisieren und auszuprobieren, in welcher Farbe das neue Sofa am besten zu den neuen Vorhängen passt. Emotionen beim Kunden zu wecken wird immer wichtiger und darin sind wir Spezialisten. + +Überzeugen Sie sich von unseren innovativen Lösungen und denken Sie mit uns gemeinsam „outside the box"". Unser junges Team ist mit Spaß und Leidenschaft bei der Sache und brennt darauf, Ihren Produkten Leben einzuhauchen. + +https://trendview.de/impressum +https://trendview.de/datenschutz",2007,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6727a3b70f451f000119d0a8/picture,"","","","","","","","","" +creativestyle GmbH,creativestyle,Cold,"",15,information technology & services,jan@pandaloop.de,http://www.creativestyle.de,http://www.linkedin.com/company/creativestylede,https://www.facebook.com/creativestyle.de/,https://twitter.com/creativestylede,53 Erika-Mann-Strasse,Munich,Bavaria,Germany,80636,"53 Erika-Mann-Strasse, Munich, Bavaria, Germany, 80636","magento 2, ecommerce, web design, uxui, magento, web development, technology, information & internet, content commerce platform, d2c, shopware, ui design, performance marketing, magento magesuite, multistore management, open source community, performance optimization, cloud infrastructure, content commerce, data security, open source community contributions, digital transformation b2c, customer experience, software development, bot protection, product data management, cloud hosting, consulting, digital experience, digital transformation b2b, open source, autoscaling, b2b e-commerce, information technology and services, custom plugin development, b2c, b2c e-commerce, system integration, pwa, supply chain integration, performance monitoring, gdpr compliance, customer journey optimization, configurator development, shopify, conversion rate optimization, customer self-service portals, content management, content management system, adobe commerce, b2b, content production, digital marketing, devops, multishop management, headless cms, retail, headless technologies, computer systems design and related services, a/b testing, agile project management, erp integration, erp connector, ux design, services, symfony, open source ecosystem, e-commerce, consumer products & retail, consumer internet, consumers, internet, information technology & services, marketing & advertising, enterprise software, enterprises, computer software, internet infrastructure, computer & network security, cloud computing",'+48 12 354 62 23,"Amazon CloudFront, Route 53, Gmail, Google Apps, Zendesk, Amazon AWS, Hubspot, Google Tag Manager, Mobile Friendly, Varnish, Google Analytics, Remote","","","","",350000,"",69c281871cba2c0001f0f8e5,7375,54151,"Die creativestyle GmbH ist Spezialist für responsive E-Commerce. Umsatzstarke Online-Shops vertrauen uns den wichtigsten Teil ihrer Wertschöpfungskette an – den Bestellprozess. Bei uns stehen die Käufer im Mittelpunkt. Wir sorgen schnell für eine konsequente Verringerung der Kaufabbrüche. So erreichen wir stets die beste Conversion über alle Endgeräte. Heute und in Zukunft. Wir bieten im wahrsten Sinne des Wortes ausgezeichnete, kreative Lösungen für Marktführer im E-Commerce. Unsere Developer und Designer in PL und DE arbeiten nicht nur äußerst effizient, sondern auch zu einem unschlagbaren Preis. Als eingespieltes Team liefert creativestyle schnell beste Qualität zum fairen Preis – und das seit 2001. 💻",2001,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6873649cc15f380001f599d4/picture,creativestyle (creativestyle.pl),55e169eaf3e5bb0d06000076,"","","","","","","" +ososoft GmbH,ososoft,Cold,"",50,information technology & services,jan@pandaloop.de,http://www.ososoft.de,http://www.linkedin.com/company/ososoft,"","","",Wuerzburg,Bavaria,Germany,"","Wuerzburg, Bavaria, Germany","sap automotive, app development, sap consulting, sap ki, ai, sap btp, sap car, kuenstliche intelligenz, seminars, sap retail, sap ui5fiori, abap oo development, web development, ki, sap ai, sap s4 hana, automotive consulting, sap cloud platform, cloud computing, sap s/4hana, e-commerce, manufacturing, brownfield migration, information technology, information technology & services, omnichannel management, digital transformation, ai portfolio, services, process automation, event-driven architecture, cloud solutions, utilities, b2b, software development, retail, sap integration, computer systems design and related services, process optimization, consulting, supply chain management, distribution, apps, enterprise software, enterprises, computer software, consumer internet, consumers, internet, mechanical or industrial engineering, logistics & supply chain",'+49 931 78099887,"Outlook, Hubspot, Mobile Friendly, Apache, Facebook Login (Connect), Google Tag Manager, Facebook Widget, Facebook Custom Audiences, Linkedin Marketing Solutions, Google Analytics, SAP Analytics Cloud, Remote, AI, ","","","","","","",69c281871cba2c0001f0f8d0,7375,54151,"ososoft GmbH is an IT consulting firm based in Würzburg, Bavaria, specializing in IT innovation and SAP implementations, including S/4HANA, CAR, and EWM. The company focuses on cloud projects and digitalization initiatives, primarily serving the Retail, Automotive, and Industrie sectors. Founded with a mission to simplify complex IT challenges, ososoft emphasizes practical, customer-centric solutions through strategy, process consulting, and technical implementation. + +The firm operates from its headquarters in Würzburg and an additional office in Munich, providing modern workspaces that foster collaboration and community. ososoft is known for its fast-paced culture, prioritizing honesty, transparency, and quick decision-making. With an estimated revenue of 10M-50M USD, the company utilizes a range of technologies, including ABAP, Java, and Python, to deliver tailored solutions for large-scale IT projects.",2005,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/687d32c1b14a790001a04a08/picture,"","","","","","","","","" +Tectag Group,Tectag Group,Cold,"",12,information technology & services,jan@pandaloop.de,http://www.tectag.group,http://www.linkedin.com/company/tectag-group,"","",1 Wandweg,Dortmund,North Rhine-Westphalia,Germany,44149,"1 Wandweg, Dortmund, North Rhine-Westphalia, Germany, 44149","software development, digital marketing, cybersecurity, security, it services & it consulting, digital transformation, security solutions, software solutions, data protection, endpoint security, firewall configuration, incident management, penetration testing, security awareness training, vpn services, digital consulting, web development, artificial intelligence, automation, data encryption, risk assessment, managed security, cloud security, it compliance, intelligent solutions, custom software, network security, identity management, data breach prevention, vulnerability management, business continuity planning, threat detection, security auditing, security architecture, incident response, data storage solutions, system integration, technology innovation, customer success, it infrastructure, service delivery, business intelligence, process optimization, user management, security protocols, user experience design, big data solutions, it strategy, real-time monitoring, digital risk management, enterprise security, api security, b2b, consulting, services, information technology & services, marketing & advertising, computer & network security, privacy, analytics",'+49 231 99770800,"Gmail, Google Apps, DigitalOcean, Amazon AWS, Bootstrap Framework, reCAPTCHA, Mobile Friendly, Android, AI, Remote","","","","","","",69c281871cba2c0001f0f8d1,7375,54151,"Tectag Group is an international security and software provider with focus on digital transformation and cybersecurity. We help clients grow exponentially and stream their processes with comprehensive and innovative tools. + +Our services include software development, cybersecurity, security as well as digital marketing and have one thing in common: all of our work focuses on the latest technological innovations that help improve business' practices while increasing productivity and revenue.",2015,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6755c365b454830001f77059/picture,"","","","","","","","","" +'+Pluswerk,'+Pluswerk,Cold,"",17,information technology & services,jan@pandaloop.de,http://www.pluswerk.digital,http://www.linkedin.com/company/pluswerk,"",https://twitter.com/pluswerkag,8 Konrad-Zuse-Platz,Munich,Bavaria,Germany,81829,"8 Konrad-Zuse-Platz, Munich, Bavaria, Germany, 81829","ecommerce, websites portale, online marketing design, strategie consulting, technologie systementwicklung, operations, it services & it consulting, web development, digital experience economy, multichannel commerce, custom software development, ux/ui design, responsive design, consulting, cloud-hosting, agile management, e-commerce, b2b, pimcore, dev days pimcore, user experience, performance optimization, accessibility standards, government, online-marketing, shopware, digital transformation, multi-site management, webentwicklung, typo3, computer systems design and related services, open-source-software, gdpr-konformität, digital marketing, b2c, cms integration, online marketing, barrierefreiheit, d2c, web development and design, digitalagentur, services, content management, open source plattformen, information technology and services, api schnittstellen, education, non-profit, consumer_products_&_retail, consumer internet, consumers, internet, information technology & services, ux, marketing & advertising, nonprofit organization management",'+49 89 41325800,"Outlook, Microsoft Office 365, Mobile Friendly, TYPO3","","","","","","",69c281871cba2c0001f0f8dc,7375,54151,"👉🏽 🇬🇧 👇🏽 🇩🇪 ++Pluswerk: Your digital experience specialists + +As a digital solution provider, we make significant and measurable contributions to the digital transformation and realization of digital potential for our customers. For us, digital experience means going beyond the services of a traditional agency. + +We create holistic solutions along the digital value chain at all marketing and service touchpoints in the B2B and B2C sectors. For our projects, we rely on technologies such as TYPO3, Pimcore, Shopware, Drupal and other offerings, preferably from the open source sector. + +",2010,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69acf3ad70937f0001ddd8d3/picture,"","","","","","","","","" +plusmeta,plusmeta,Cold,"",13,information technology & services,jan@pandaloop.de,http://www.plusmeta.de,http://www.linkedin.com/company/plusmeta,"","","",Karlsruhe,Baden-Wuerttemberg,Germany,"","Karlsruhe, Baden-Wuerttemberg, Germany","metadata, cloud services, artificial intelligence, technical documentation, it services & it consulting, ki-basierte automatisierung, ki, metadaten, energy & utilities, content delivery plattformen, content classification, plugins, ki-gestützte informationsprozesse, cloud-lösungen, ki für technische dokumente, content delivery in industrie 4.0, automatisierte metadatenvergabe, content automation, automatisierte content-integration, content upload, digital data chain, technische inhalte, ki-gestützte content-optimierung, content delivery, content quality assurance, api-basierte automatisierung, open source tools, iirds validation tool, ki-plugins, automatisierte dokumentenprüfung, customer relationship management, transportation & logistics, technische dokumentation, content engineering, autoid iec 61406, open source, cloud-based software, metadatenautomatisierung, b2b, computer systems design and related services, content validation, wartungsplanung automatisierung, content management system, knowledge graphen, api-integration, content optimization, vdi 2770 container, automatisierung, datensicherheit, content management, knowledge graph modeling, automatisierte wartungspläne, iirds standard, services, automatisierte dokumentenklassifikation, content lifecycle automation, verschlüsselte datenspeicherung, vde spec 90009, industrie 4.0, digitaler zwilling, content data extraction, process optimization, ocr texterkennung, meta-metadaten, vdi 2770 standard, industrie 4.0 anwendungen, distribution, manufacturing, systemintegration, datenmanagement, cloudsoftware, content lifecycle management, prozessoptimierung, standardisierung, standardkonforme dokumentation, content standard compliance, meta-datenvergabe, data security, content export, industrial automation, ki in der prozessindustrie, machine learning, software development, content synchronization, pdf/a-konvertierung, knowledge graphs, digitalisierung, schulungen und support, content delivery automation, iso/iec 27001:2017 zertifizierung, workflow automation, meta-daten standards, content automation in anlagenbau, content portale, transportation_logistics, energy_utilities, cloud computing, enterprise software, enterprises, computer software, information technology & services, crm, sales, mechanical or industrial engineering, computer & network security",'+49 721 95977777,"Amazon CloudFront, Route 53, Outlook, Amazon AWS, UptimeRobot, GitHub Hosting, SendInBlue, Google Tag Manager, YouTube, Mobile Friendly, Remote","",Merger / Acquisition,0,2023-07-01,"","",69c281871cba2c0001f0f8d6,7375,54151,"plusmeta GmbH is a technology company based in Karlsruhe, Germany, founded in 2019. It specializes in AI-driven, cloud-based software designed for technical documentation, industrial information management, and document digitalization. The company was established by Dr. Jan Oevermann and Stephan Steurer, emerging from Oevermann’s PhD research. In 2023, plusmeta was acquired by Quanos Group GmbH, allowing it to operate independently while continuing to support various vendor systems. + +The core offering of plusmeta is the plusmeta platform, which automates and accelerates technical documentation workflows. This platform analyzes unstructured data, generates metadata, and facilitates collaboration, potentially saving up to 80% of working time. It is designed to integrate seamlessly into existing systems and supports intelligent information applications and standards-compliant data exchange. plusmeta emphasizes IT security and participates in various industry initiatives, receiving recognition for its contributions to AI and energy efficiency in industrial settings.",2019,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66ef768fba1e6700011f780e/picture,"","","","","","","","","" +BRICKLOG Deutschland GmbH & Co KG,BRICKLOG Deutschland GmbH & Co KG,Cold,"",13,management consulting,jan@pandaloop.de,http://www.bricklog.digital,http://www.linkedin.com/company/bricklog-gmbh-co-kg,"","",81 Balthasarstrasse,Cologne,North Rhine-Westphalia,Germany,50670,"81 Balthasarstrasse, Cologne, North Rhine-Westphalia, Germany, 50670","supply chain, technologie, prozessberatung, academy, qualifizierung amp coaching, personalberatung vermitlung, sales marketing, interim management, organisationsentwicklung, consulting, einkaufsoptimierung, qualifizierung coaching, personalberatung amp vermitlung, datenanalyse, sales amp marketing, business consulting & services, logistics, process optimization, automation, digital transformation, technology integration, ai in logistics, rpa solutions, agile methodologies, customer satisfaction, employee empowerment, data-driven decision making, transport management systems, innovation, employee training, digital assistants, flexible processes, sustainability, workforce optimization, executive search, digital services, data analytics, job placement, team development, compliance, networking, transportation solutions, efficiency, customer-centric processes, transformational leadership, cost reduction, logistical excellence, strategic consulting, transparency in logistics, ai academy, backend automation, real-time tracking, business process reengineering, methodology implementation, communication optimization, predictive analytics, it integration, value creation, supply chain strategies, productivity enhancement, client relationships, knowledge transfer, service innovation, best practices, smart logistics, management consulting, environmental services, renewables & environment, staffing & recruiting, b2b, information technology & services, enterprise software, enterprises, computer software",'+49 22 113008940,"Outlook, Google Font API, Mobile Friendly, Apache, WordPress.org, Node.js, Android, Remote","","","","","","",69c281871cba2c0001f0f8cf,"","","Wir kümmern uns um die Menschen in Logistik & Supply Chain. +Wir sind in Deutschland, Niederlanden, Schweiz und Spanien vertreten. +Und mit Partnern in 20 Offices in USA, Latein Amerika, EMEA und APAC. + +Unsere 3 Kompetenzfelder : +PEOPLE /// PROCESS /// AI + +Unser multidisziplinäres Team besteht aus branchenerfahrenen Logistikspezialisten, Personalberatern, Coaching-Fachleuten, Prozessoptimierern, Sales & Marketing - Gurus, IT-Experten und Techies. + +💙 PEOPLE /// PERSONAL & EXECUTIVE SEARCH +Unser Geschäftsbereich BRICKTALENT ist Spezialist im Bereich Human Ressources. Wir unterstützen Sie kompetent in der Personalberatung, sowie bei der Karriereplanung und Personalentwicklung. Unsere Profis entwickeln individuelle Schulungs- und Weiterbildungsmaßnahmen. Wir finden Logistik-Profis in Festanstellung für Sie. + + +⚙️PROCESS /// INTERIM MANAGEMENT +Wir analysieren gemeinsam mit Ihnen die besten Optionen für Ihr Unternehmen. Wir schauen genau hin, beraten und setzen um. +Die Steuerung von Prozessen in der Logistik ist entscheidend, wenn Sie beste Effizienz erzielen und Ihre Kundenzufriedenheit verbessern wollen. „Wer macht was, wann, wie und womit?"" Wie können Sie kostengünstiger arbeiten und bessere Ergebnisse erzielen? +Unsere INTERIM MANAGER optimieren Prozesse im operativen Geschäft. Im Landverkehr, der Kontraktlogistik und im Bereich See-und Luftracht. + +🤖AI /// KI-LÖSUNGEN +Wir begleiten Sie auf strategischer & operativer Ebene. Bei der Digitalisierung ihrer Wertschöpfung und ihrer Prozesse. Wir helfen Ihnen Daten als Rohstoff nutzbar zu machen. Machen aus Daten Rendite. Mit unserem ganzheitlichen Beratungsansatz erarbeiten wir mit Ihnen eine Automatisierungs- und KI-Strategie. +Wir helfen Ihnen Automatisierungspotenziale zu erkennen und umzusetzen.",2015,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6768eb03aa352b0001efdd08/picture,"","","","","","","","","" +mindcurv group,mindcurv group,Cold,"",120,information technology & services,jan@pandaloop.de,http://www.mindcurvgroup.com,http://www.linkedin.com/company/mindcurv-group,"",https://twitter.com/mindcurv,66 Alfredstrasse,Essen,Nordrhein-Westfalen,Germany,45130,"66 Alfredstrasse, Essen, Nordrhein-Westfalen, Germany, 45130","data analysis, business intelligence, microservices, digital commerce, agile, continuous delivery, managed services, oracle commerce, strategy, devops, hybris, java, endeca, amazon web services, cloud, ui ux, it services & it consulting, enterprise architecture, data analytics, integrations, customer journey, container orchestration, edge computing, b2c, edge ai, business transformation, data governance, b2b and b2c solutions, automation, system integration, digital platforms, manufacturing, microservices architecture, iot-enabled commerce, marketing, e-commerce, headless commerce, digital ecosystems, operational efficiency, devops practices, cloud platforms, cloud migration, business agility, personalization engines, cloud security solutions, ai and machine learning, strategic consulting, services, scalability, cloud migration tools, automation tools, digital marketing, cloud security architecture, scalable solutions, data-driven decision making, retail, kubernetes, financial technology, predictive analytics, software development, chemicals, e-commerce solutions, life sciences, personalization, cloud-native applications, global technology partner, branding, consumer goods, information technology and services, personalization technology, agile methodologies, micro frontends, cloud cost management, multi-tenant saas, cloud security tools, e-commerce platforms, customer data platforms, industry-specific solutions, multi-tenant cloud, digital twin technology, digital innovation, content management systems, real-time customer insights, cloud infrastructure management, api-first, consulting, content personalization, data mesh, ux design, cloud infrastructure, customer data platform, digital experience, multi-cloud, ci/cd pipelines, software engineering, api integrations, automated testing, search solutions, real-time analytics, data lake architecture, multi-channel commerce, customer experience, containerization, b2b, agile development, microservices-based platforms, kubernetes management, customer engagement, integrated systems, performance monitoring, automated deployment, cloud-native, ai solutions, d2c, technology consulting, enterprise software, digital twin, data & ai integration, cloud cost optimization, composable commerce, serverless applications, data & ai, composable architecture, ai-driven personalization, data analytics platforms, devops automation, custom software, digital experience platforms, logistics, cloud-native saas, accenture song, headless architecture, api-first development, digital strategy, cloud security, security solutions, multi-cloud strategies, serverless computing, mach architecture, application development, cloud orchestration, customer experience optimization, headless cms, content management, enterprise personalization, user experience, digital transformation, custom software development, data visualization, iot integration, data lakes, api gateway, observability tools, computer systems design and related services, edge computing for retail, cloud orchestration tools, multi-cloud management, business advisory, ai integration, product information management, omnichannel commerce, marketplace design, crm systems, real-time insights, ux/ui design, multi-channel marketing, data-driven solutions, legacy system migration, digital solutions ecosystem, software customization, performance optimization, remote working solutions, ai-driven insights, distributed teams, digital storytelling, interactive platforms, real-time monitoring, product data optimization, collaborative platforms, business model innovation, cloud-based analytics, cross-platform solutions, scalable architecture, content management system, distribution, consumer_products_retail, transportation_logistics, energy_utilities, analytics, information technology & services, mechanical or industrial engineering, consumer internet, consumers, internet, management consulting, marketing & advertising, finance technology, financial services, enterprises, computer software, internet infrastructure, app development, apps, ux",'+49 201 9998630,"Microsoft Office 365, Pardot","",Merger / Acquisition,0,2024-02-01,"","",69c281871cba2c0001f0f8d3,7375,54151,"Mindcurv Group specializes in composable commerce solutions that help businesses modernize their digital commerce infrastructure. The company focuses on providing flexible and modular approaches that enable rapid responses to market changes and seamless scaling without disrupting existing systems. + +Their solutions are designed to accelerate checkouts and create adaptable ecosystems for commerce platforms. This approach addresses the challenges posed by traditional all-in-one commerce platforms, allowing businesses to offer innovative shopping experiences that meet evolving customer needs. + +Mindcurv Group is led by a team of experienced professionals, including Managing Directors Amjad Liaquat, Markus Tillmann, and Caroline Krauss, along with Senior Manager Jasmin Guthmann.",2011,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/687bf3b0c5b6f50001b55194/picture,"","","","","","","","","" +Bertsch Innovation GmbH,Bertsch Innovation,Cold,"",57,information technology & services,jan@pandaloop.de,http://www.bertschinnovation.com,http://www.linkedin.com/company/bertsch-innovation-gmbh,https://facebook.com/bertschinno,https://twitter.com/BertschInno,25 Kronenstrasse,Stuttgart,Baden-Wuerttemberg,Germany,70174,"25 Kronenstrasse, Stuttgart, Baden-Wuerttemberg, Germany, 70174","publishing, gs1, omnichannel, etim, pcm, dam, digital asset management, product information management, electronic catalogs, mobile, customer experience management, online, pim, bmecat, mdm, media asset management, product content management, product content syndiaction, it services & it consulting, data quality, manufacturing, media tagging, workflow automation, channel management, ai for product data, customer experience, ai data enrichment, services, content optimization, ai workflow automation, content synchronization, computer systems design and related services, media management, machinery, ai content personalization, automotive aftermarket, distribution, api integration, automotive, ai for media tagging, ai for content quality, ai image recognition, b2b, ai-driven content creation, ai content optimization, content publishing, e-commerce, construction, product lifecycle management, content creation, content personalization, ai video extraction, media format support, d2c, master data management, content distribution, e-commerce integration, media library, product data structuring, retail, consumer_products_retail, transportation_logistics, media, internet, information technology & services, mechanical or industrial engineering, consumer internet, consumers",'+49 711 707108100,"Route 53, Outlook, Microsoft Office 365, Amazon AWS, Jira, Atlassian Confluence, Hubspot, Slack, Google Tag Manager, Mobile Friendly, Shutterstock, Multilingual, Google Dynamic Remarketing, DoubleClick Conversion, Linkedin Marketing Solutions, DoubleClick, reCAPTCHA, WordPress.org","","","","",216000,"",69c281871cba2c0001f0f8df,7375,54151,"Bertsch Innovation GmbH is a German software company based in Stuttgart, specializing in Product Information Management (PIM) and Digital Asset Management (DAM) solutions. With over 20 years of experience, the company employs around 120 people and has successfully completed more than 1,000 projects. Bertsch Innovation focuses on linking product data with creative content to enhance brand communication, accelerate time-to-market, and improve customer experiences for medium-sized and large B2B/B2C businesses. + +The company's flagship platform, mediacockpit, serves as a central system for managing product content and digital assets. It supports data governance, quality assurance, and automated processes. Other offerings include mediapublisher for content distribution across various channels, e-proCAT for electronic catalogs, and additional solutions for Product Experience Management and Brand Asset Management. These tools aim to enhance operational efficiency, reduce costs, and improve e-commerce performance across diverse industries, including automotive, electrical, pharmaceuticals, and retail.",1996,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68698d377daa4e0001b3d426/picture,"","","","","","","","","" +NAXCON GROUP,NAXCON GROUP,Cold,"",49,information technology & services,jan@pandaloop.de,http://www.naxcon.com,http://www.linkedin.com/company/naxcon,https://www.facebook.com/naxcongmbh/,"",3 Am Kesselhaus,Weil am Rhein,Baden-Wuerttemberg,Germany,79576,"3 Am Kesselhaus, Weil am Rhein, Baden-Wuerttemberg, Germany, 79576","agile & traditional project management, artificial intelligence, automotive engineering, electronics engineering, simulation engineering, machine learning, industrial automation, engineering, consulting, information technology, embedded systems, power electronics, it, leadership, software engineering, development, internet of things, quality assurance & testing, product lifecycle management, management, embedded software development, control engineering, technical supplier development, virtual reality, hardware engineering, software, recruitment, leadership & management, embedded hardware development, semiconductor solutions, it services & it consulting, knowledge transfer, software development, industrial iot, hardware development, 3d scanning, ai solutions, cloud solutions, virtual reality applications, automation, project management, aerospace, automotive electronics, innovative r&d, global collaboration, mechatronic development, services, technology, b2b, ai integration, engineering services, system development, digital transformation, robotics, vr/ar technology, next-gen mobility solutions, it infrastructure, system integration, r&d engineering, system simulation, smart manufacturing, ai-driven engineering, customer relationship management, cybersecurity in engineering, railroad, digital twin, mobility solutions, it solutions, aerospace engineering, test automation, automotive, digital innovation, cybersecurity, embedded ai systems, iot solutions, future technologies, automation solutions, mechatronics, simulation technology, software testing, quality management, functional safety, lowcode development, cyber security services, application software development, dynamics engineering, requirements engineering, systems development, manufacturing automation, robotics integration, warehouse management systems, ai-driven chatbots, mechatronic systems, innovative technologies, r&d solutions, technical consulting, agile methodologies, data optimization, enterprise mobility, cyber-physical systems, prototyping services, performance improvement, continuous quality improvement, risk mitigation, stakeholder communication, telematics solutions, vertical integration, cross-industry solutions, tech innovation, collaborative solutions, interdisciplinary engineering, industry 4.0, transportation_logistics, information technology & services, mechanical or industrial engineering, embedded hardware & software, hardware, cloud computing, enterprise software, enterprises, computer software, productivity, crm, sales","","Outlook, Microsoft Office 365, Hubspot, Slack, Woo Commerce, Google Tag Manager, WordPress.org, Varnish, Bootstrap Framework, Google Font API, reCAPTCHA, Mobile Friendly, Apache, Remote, Zuken, AVEVA PDMS, SAP, Micro, Microsoft Project, Microsoft Office, SharePoint, RabbitMQ, Microsoft Windows Server 2012, Microsoft-IIS, PowerBI Tiles, OpenVPN Access Server, Connect, Secured MVC Forum on Windows 2012 R2, Micro Focus Universal CMDB, CAT, .NET, AC500 PLC, KVM, Cloudflare Insights, ENTERPRISE ARCHITECT, BASE, Microsoft Excel, Microsoft PowerPoint, Visio, Google AdWords Conversion, ServiceNow Problem Management, Amazon Elastic File System (Amazon EFS), Gem, Sizmek (MediaMind), AWS SDK for JavaScript, Spring Boot, REST, OpenAPI, Gradle, JUnit, Mockito, Git, Apache Wicket, Terraform, Ansible, Docker, Kubernetes, GitLab, SAP SuccessFactors Learning, Jira, Xilinx Vivado, ModelSim, Bitbucket, Jenkins, Yocto, Confluence, , RISE with SAP, 3M 360 Encompass - Health Analytics Suite, PyCharm, comScore, NetApp MetroCluster, OpenText EnCase Forensic, FTK Forensic Toolkit, Autopsy, Brocade Switches, NTENT, ServiceNow Configuration Management Database, SafeSend, Personio, SAP Solution Manager, SAP S/4HANA, Microsoft 365, Eclipse, Azure Linux Virtual Machines, Microsoft Active Directory Federation Services, Google AlloyDB for PostgreSQL, SQL, Ivalua, Dassault SOLIDWORKS, Siemens PLM, AWS VPN, Progress Sitefinity, Uptrends, Excel4Apps, OpenProject, Autodesk 3ds Max, TeamCity, FME Platform, Designer, Perforce Visualization, Oracle XML DB, 24-7 Media, SAP Travel Management, Microsoft Sharepoint","","","","","","",69c281871cba2c0001f0f8d2,8711,54133,"NAXCON GmbH is a German engineering and IT services company founded in 2020, based in Freiburg. The company specializes in embedded software and hardware development, electronics, and artificial intelligence, supporting digital transformation and mobility for global clients in sectors such as automotive, aerospace, and electronics manufacturing. NAXCON operates development centers and partnerships in the Netherlands, Turkey, and Switzerland, fostering a collaborative environment. + +The company offers a range of services across three main areas: engineering, IT, and project management. Its engineering expertise includes embedded systems, mechatronics, robotics, and cybersecurity. In IT, NAXCON focuses on software development and AI integration. The company emphasizes quality and project excellence, ensuring reliable outcomes through effective management practices. NAXCON is committed to innovation and knowledge transfer, working closely with universities and investing in research and development to create tailored solutions for its clients.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6714c223672710000141a15d/picture,"","","","","","","","","" +2DC GmbH,2DC,Cold,"",11,management consulting,jan@pandaloop.de,http://www.2dc.one,http://www.linkedin.com/company/go-2dc,"","",12 Sudbrackstrasse,Bielefeld,North Rhine-Westphalia,Germany,33611,"12 Sudbrackstrasse, Bielefeld, North Rhine-Westphalia, Germany, 33611","unternehmensstrategie, unternehmenskultur, digitalisierungsstrategie, kpi, growth strategy, crm, agile, new work, change management, digitale transformation, interim management, erp, ticketsytem, projektmanagement, projectmanagement, agilitaet, digitalisierung, okr, internationalization, business consulting & services, sales, enterprise software, enterprises, computer software, information technology & services, b2b, project managment, management consulting",'+49 523 170163100,"Outlook, Microsoft Office 365, WordPress.org, Google AdWords Conversion, Vimeo, Bootstrap Framework, Mobile Friendly, Google Tag Manager, Nginx, AI, Remote","","","","","","",69c281871cba2c0001f0f8e1,"","","As leading experts in digitalization, we have made it our mission to guide businesses towards scalable and sustainable growth. We optimize business processes, leverage cutting-edge technologies, agile methodologies, and foster a digital culture to enable your teams to achieve peak performance and build a successful future. Join us in exploring the possibilities of digitalization and take your company to the next level of growth.",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66fa37e2adb4fd00017b7e6e/picture,"","","","","","","","","" +THE MARCOM ENGINE,THE MARCOM ENGINE,Cold,"",200,marketing & advertising,jan@pandaloop.de,http://www.themarcomengine.de,http://www.linkedin.com/company/the-marcom-engine,"","",45 a-d Brienner Strasse,Muenchen,Bayern,Germany,80333,"45 a-d Brienner Strasse, Muenchen, Bayern, Germany, 80333","sales marketing, content marketing, performance marketing, social media, campaigning, online marketing, ux strategy, ecommerce solutions, digital strategy, design, communication, integrated marketing, digital communication, crm, advertising services, data analysis, customer support, performance marketing architecture, web operations, transnational marketing system, customer journey, content creation, data-driven insights, content management, short-term asset adaptation, asset production, seo optimization, marketing and advertising, marketing automation, b2b, data management, automation, digital asset flexibility, automotive industry, performance marketing platform, customer experience, digital media, web support, bmw group support, automated content production, data analytics, d2c, digital marketing, digital advertising, services, web analytics, digital transformation, asset development, online platform management, customer engagement, crm management, advertising agencies, online platform, analytics, seo, e-commerce, consulting, asset management, customer journey optimization, e-commerce support, automotive, marketing & advertising, consumer internet, consumers, internet, information technology & services, marketing, sales, enterprise software, enterprises, computer software, saas, search marketing",'+49 89 205020,"Typekit, Mobile Friendly, Squarespace ECommerce, Remote, 3M 360 Encompass - Health Analytics Suite, Microsoft Excel","","","","",269000000,"",69c281871cba2c0001f0f8e2,7375,54181,"THE MARCOM ENGINE GmbH & Co. KG is a performance marketing solution provider focused on the automotive industry, particularly as a dedicated partner to the BMW Group. Based in Munich, Germany, the company is part of the Serviceplan Group and aims to enhance the premium customer experience through data-driven marketing and sales strategies. It operates in 26 markets, emphasizing integration and a consistent IT architecture. + +The company offers a range of services, including strategic consulting, platform development, analytics, CRM management, and content creation. These services are designed to support automated and personalized marketing efforts, driving sales and improving customer engagement for BMW and MINI. Key leadership includes CEO Christian Schmitz, who oversees customer care and strategy, along with other experienced partners managing international operations and market integration.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6910c09e1f2de10001b1b7d4/picture,"","","","","","","","","" +NCE Computer GmbH,NCE Computer,Cold,"",21,information technology & services,jan@pandaloop.de,http://www.nce.de,http://www.linkedin.com/company/nce-computer-gmbh,"","","",Fuerth,Bavaria,Germany,"","Fuerth, Bavaria, Germany","information technology & services, consulting, managed services, automatisierung, it-consulting, it-risikoanalyse, datenschutz, it consulting, firewall, it-modernisierung, it-projektmanagement, cloud-migration, it-sicherheitsarchitektur, compliance, cloud security, verschlüsselung, schwachstellenanalyse, it-services, it-workload-automation, it-transformation, automatisierte workflows, endpoint security, it-security, it-dokumentation, computer systems design and related services, it-strategie, it-überwachung, it-audits, it-automatisierung, it-reporting, b2b, cybersecurity, it-performance-optimierung, it-sicherheitsaudits, cloud-lösungen, cyberprävention, patchmanagement, it-asset-management, fernwartung, it-compliance-management, managed service providers, services, netzwerksicherheit, zero trust security, it-infrastruktur, it-management, support, dsgvo-konformität, it-notfallmanagement, it-support, it-optimierung, backup, management consulting",'+49 911 997100,"Cloudflare DNS, CloudFlare Hosting, Outlook, Zendesk, Google Tag Manager, WordPress.org, Nginx, Facebook Custom Audiences, Facebook Widget, Mobile Friendly, Facebook Login (Connect), Android, Remote","","","","","","",69c281871cba2c0001f0f8e4,7379,54151,"IT-Systeme, Serverhosting, Clouddienste, Microsoft 365, DMS, Moxis, E-Mail-Archivierung, Teams Online Archivierung, Webhosting, Anwenderunterstützung, EDR uvm.",1995,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e750123c58b3000160e14d/picture,"","","","","","","","","" +'@one GmbH,'@one,Cold,"",13,information technology & services,jan@pandaloop.de,http://www.one-it.de,http://www.linkedin.com/company/one-it-gmbh,https://www.facebook.com/people/One-it-GmbH/100063562089265/,"",20 Pfingstweide,Friedberg,Hesse,Germany,61169,"20 Pfingstweide, Friedberg, Hesse, Germany, 61169","providernetze, aws, microsoft azure, itinfrastruktur, itsicherheit, cloudmigration",'+49 6031 6704200,"Outlook, Mobile Friendly, Google Tag Manager, Apache, WordPress.org, Aircall, Ansible, Docker, Remote","","","","","","",69c281871cba2c0001f0f8e6,"","","'@one IT GmbH – IT services all in one – that's what we stand for as an experienced and independent IT service provider, situated in Friedberg, around 30km from Frankfurt. 20 years of experiences in IT Consulting and Managed Services tought us that a well-functioning IT has to ensure that everyday business can run smoothly. That's why the needs of our customers IT users is our main focus. +For your IT to be able to fulfill all the needs of your company to your satisfaction we provide you with IT services that can cover all your requirements using innovative technology. We analyse, design and develop as well as impletent, approve and test your IT network and your IT infrastructure. The secret of success of our IT company are our fast and flexible reactions to the requests of our customers. You receive thorough consulting and conceptual support– oriented at the aims you require. +Our team of more than 30 salaried employees advise and support you e.g. in the fields of provider networks, AWS, data base systems, IT infrastructure and IT security, virtualisation as well as migration towards cloud environment.",2001,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6959fdb7999ad7000172c46f/picture,"","","","","","","","","" +S-KON Gruppe,S-KON Gruppe,Cold,"",140,telecommunications,jan@pandaloop.de,http://www.skon.de,http://www.linkedin.com/company/s-kon-gruppe,https://de-de.facebook.com/saleskontor/,"",4C Gasstrasse,Hamburg,Hamburg,Germany,22761,"4C Gasstrasse, Hamburg, Hamburg, Germany, 22761","consulting coaching, dialogue marketing, direct marketing, ecommerce, logistikdienstleistungen, kundenportal, homeoffice-arbeit, kundenkommunikation, online-marketing, iso/iec 27001, kundenrückgewinnung, mitarbeiterschulungen, information technology & services, endkundenprozesse, warenlagerung, zertifizierte informationssicherheit, geschenkkarten, kundenservice-outsourcing, logistics, warehousing, neukundengewinnung, up-selling, prämienmanagement, prozessoptimierung, b2b, familienfreundliches unternehmen, customer relationship management, fullservice-dienstleister, automatisierte prozesse, logistik, logistics and supply chain management, kundenbindungsprogramme, call center services, vertriebslösungen, callcenter, it infrastructure, logistikzentren, customer service, online-shop-systeme, logistikmanagement, cross-selling, multichannel-vertrieb, direktmarketing, telesales, d2c, datensicherheit, automatisierte prämienvergabe, logistikzentrum, prämienkontor, kundenprämien, gutscheincodes, kundenmanagement, schnittstellenintegration, kundenbindung, supply chain management, zahlungsmanagement, e-commerce plattformen, services, crm-systeme, webshop-entwicklung, massengutscheine, virtueller standort, automatisierung, kundenrückgewinnungskampagnen, qualitätskontrolle, omni-channel-kommunikation, vertriebskampagnen, b2c, management consulting services, versandstraße, automatisierte versandstraßen, e-commerce, consulting, crm-integration, e-commerce development, retail, kundenservice, versandlogistik, distribution, marketing & advertising, consumer internet, consumers, internet, crm, sales, enterprise software, enterprises, computer software, logistics & supply chain",'+49 40 401300,"SendInBlue, Outlook, MailChimp SPF, Microsoft Office 365, Google Cloud Hosting, Atlassian Cloud, Google Tag Manager, Google Frontend (Webserver), Mobile Friendly, Docker, Microsoft Office, Jira, AWS SDK for JavaScript, Oracle Fusion Middleware, Figma, Adobe XD, go+, Symfony, React, Git, Confluence, PHP, HTML Pro, CSS, Javascript, DocuWare","","","","","","",69c281871cba2c0001f0f8db,7389,54161,"Seit 2003 sind wir erfolgreich als Fullservice Dienstleister in der Telekommunikationsbranche tätig. Bei uns gestalten über 700 Mitarbeiter:innen wirkungsvolle Kundenerlebnisse für das digitale Zeitalter. Wir denken, planen und handeln ganzheitlich, denn bei S-KON arbeiten Spezialist:innen aus den Bereichen Telekommunikation, Marketing, Entwicklung, Logistik und Technologie nahtlos zusammen. + +Die Geschäftsfelder der S-KON Gruppe greifen dabei perfekt ineinander, sodass unsere Kund:innen von einem breiten Leistungsspektrum profitieren – sei es im Rahmen einer Komplettlösung oder Einzelleistung. + +Die S-KON Gruppe steht für eine Verzahnung ihrer Kompetenzen. Das spiegelt sich auch im Arbeitsalltag wieder: spannende, fachübergreifende Projekte und kurze Entscheidungswege. Gemeinsam mit unseren Mitarbeiter:innen führen wir die Projekte unserer Kund:innen zum Erfolg. + +Jetzt brauchen wir dich! Wir wollen weiter wachsen und bieten dir an, in flachen Hierarchien und einem spannendem Umfeld zu arbeiten. An unseren Standorten Hamburg, Celle, Hannover, Hameln, Pinneberg, Lüneburg und Neu Wulmstorf arbeiten wir gemeinsam an der Mission, unseren Kund:innen einen Komplettservice aus einer Hand zu bieten. Im Zuge der Pandemie haben wir darüber hinaus einen virtuellen Callcenter Standort ins Leben gerufen, der es unseren Mitarbeiter:innen ermöglicht flexibel und von zuhause aus für unsere Kund:innen tätig zu sein. + +Melde dich jederzeit initiativ unter karriere@skon.de oder besuche unsere Website unter www.skon.de",2003,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6836cf63e6b2d1000197c4c1/picture,"","","","","","","","","" +Strategic IT GmbH,Strategic IT,Cold,"",24,information technology & services,jan@pandaloop.de,http://www.strategic-it.de,http://www.linkedin.com/company/strategic-it-gmbh,https://www.facebook.com/StrategicITGmbH,"",16 Planckstrasse,Herford,North Rhine-Westphalia,Germany,32052,"16 Planckstrasse, Herford, North Rhine-Westphalia, Germany, 32052","microsoft dynamics 365 field service, microsoft dynamics 365 customer service, microsoft power automate, microsoft dynamics 365 customer insights, microsoft dynamics 365 marketing, microsoft dynamics 365 copilot, consulting, microsoft power bi, microsoft power platform, microsoft power apps, microsoft dynamics 365, microsoft dynamics 365 sales, microsoft power pages, it services & it consulting, power bi - echtzeitdaten, modern workplace, power platform projects, cloud service, powerapps, retail, power bi - effizienzsteigerung, power bi - partner management, data visualization, software development, information technology & services, power bi - ""k"" line, power bi - data-driven decisions, power platform für vertriebsoptimierung, power apps für partnerportale, power bi, low-code development, power bi - sales analytics, azure cloud, process optimization, business intelligence, digitale transformation, power bi & data management, process automation, b2b, power bi - apetito catering, power platform development, power pages, marketing automation, power platform certification, power automate, power bi - customer journey, crm, data warehousing, crm mit dynamics 365, services, cloud migration, marketing, digital transformation, azure, business applications, business consulting, cloud services, power platform, cloud solutions, power platform in logistik, power bi für retail management, data management, d2c, customer relationship management, business process automation, e-commerce, user experience, power platform für eventmanagement, power platform updates, data integration, service, customer service, cloud computing, power bi dashboards, azure services, power automate flows, power bi reports, power platform customization, machine learning, power platform für logistikbranche, customer engagement, customer insights, power apps für außendienst, computer systems design and related services, project management, data transformation, supply chain management, technology consulting, power platform workshops, data analytics, bi & data management, liquid templates, azure logic apps, event management, power platform support, customer management, manufacturing, distribution, consumer_products_retail, transportation_logistics, analytics, marketing & advertising, saas, computer software, enterprise software, enterprises, sales, management consulting, consumer internet, consumers, internet, ux, artificial intelligence, productivity, logistics & supply chain, events services, mechanical or industrial engineering",'+49 5221 854800,"Outlook, Microsoft Office 365, Microsoft Dynamics 365 Marketing, Microsoft Application Insights, Microsoft Power BI, Microsoft Azure, Hubspot, Mobile Friendly, Apache, Google Tag Manager, Remote","","","","","","",69c281871cba2c0001f0f8d7,7375,54151,Die Strategic IT GmbH unterstützt als zertifizierter Microsoft Partner mittelständische Unternehmen bei der Digitalisierung Ihrer Geschäftsprozesse. Unser Fokus liegt auf Microsoft Dynamics 365 Customer Engagement (CRM) Lösungen und PowerBI (Business Intelligence),2009,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6766ed3b4103fd000108dfb1/picture,"","","","","","","","","" +DELTA IAM Consulting,DELTA IAM Consulting,Cold,"",24,information technology & services,jan@pandaloop.de,http://www.delta-systemtechnik.com,http://www.linkedin.com/company/delta-iam-consulting,https://www.facebook.com/DeltaSystemtechnikHornGmbH,"",22 Bruchsaler Strasse,Waghaeusel,Baden-Wuerttemberg,Germany,68753,"22 Bruchsaler Strasse, Waghaeusel, Baden-Wuerttemberg, Germany, 68753","unternehmensresilienz, cybersecurity, identity & access management, sso, khzg, pam, priviledged access management, consulting, itconsultant, iga, identity governance & administration, single signon, iam, compliancemanagement, identity governance, itsecurity, kritis, identitaets und zugriffsverwaltung, prozessautomatisierung, prozessoptimierung, nis2, schnittstellen, it services & it consulting, iam location analysis, iam strategy, user lifecycle management, iam technical consulting, b2b, security policies, iam product integration, access control, information technology and services, computer systems design and related services, iam project management methodologies, compliance automation, iam stakeholder workshops, resources management, iam strategy development, identity and access management, iam automation tools, services, audit readiness, privileged access management, iam solution architecture, iam compliance standards, single sign-on, iam product customization, stakeholder management, iam continuous improvement, iam in various industries, iam project implementation, security risk mitigation, identity governance and administration, compliance, iam process automation, user provisioning, iam consulting, information technology & services",'+49 72 513922840,"Outlook, Microsoft Office 365, Google Cloud Hosting, Varnish, Mobile Friendly, Google Tag Manager, Wix","","","","","","",69c281871cba2c0001f0f8da,7375,54151,"Wir bieten maßgeschneiderte Beratungsdienstleistungen und fortschrittliche Projekte und Produkte im Bereich Identity and Access Management (IAM). +Unsere Spezialgebiete sind hierbei Identity Governance and Administration (IGA), Single Sign-On (SSO) und Privileged Access Management (PAM). + +Wir helfen somit unseren Kundenunternehmen, ihre IT-Sicherheit zu maximieren, Compliance zu gewährleisten und ihre digitalen Identitäten effizient zu verwalten. + +Zusätzlich bieten wir die gezielte Bereitstellung von IT-Spezialisten und Consultants, um die personellen Ressourcen unserer Kunden flexibel und bedarfsgerecht zu stärken. + +Wir setzen auf tiefgreifendes Fachwissen, Innovation und enge Zusammenarbeit, um exzellente Lösungen zu liefern und das Vertrauen und die Zufriedenheit unserer Kunden zu sichern. + +Seit 40 Jahren sind wir Ihr Partner für zuverlässige IT-Leistungen und erstklassigen Service.",1981,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f06ddef419800001c85a33/picture,"","","","","","","","","" +Paradatec GmbH,Paradatec,Cold,"",20,information technology & services,jan@pandaloop.de,http://www.paradatec.de,http://www.linkedin.com/company/paradatec-gmbh,"","","",Brunswick,Lower Saxony,Germany,"","Brunswick, Lower Saxony, Germany","automatisierte datenerfassung, extrem schnelle dokumentenklassifikation, hoch raffinierte datenextraktion, hoch skalierbare ocrtechnologie, kuenstliche intelligenz, software development, automated invoice data extraction, digital transformation, consulting, ai-powered document audit, government, contextual understanding of text, data extraction, german judiciary document analysis, information technology & services, legal document digitization, scalable ocr/icr, financial services, software as a service, data validation software, data extraction from documents, mortgage document automation, public sector document automation, machine learning, computer systems design and related services, process optimization, b2b, unstructured data processing, intelligent document classification, data accuracy improvement, data security, land register data extraction, ai document processing, regulatory compliance automation, regulatory compliance, data validation, mortgage document indexing, legal document analysis, high-speed document processing, optical character recognition, digital transformation tools, blind test validation, cloud-based document processing, artificial intelligence, services, data management, document management integration, automation, high-volume document processing, ai-based document analysis, ocr/icr technology, unstructured document classification, data indexing, process automation in finance, ai rules and workflows, federal aid processing automation, legal services, loan document automation, automated data capture, insurance claim processing, document classification, workflow automation, healthcare, finance, legal, non-profit, saas, computer software, computer & network security, health care, health, wellness & fitness, hospital & health care, nonprofit organization management",'+49 531 238150,"Bootstrap Framework, Multilingual, OpenSSL, Mobile Friendly, WordPress.org, Apache","","","","","","",69c281871cba2c0001f0f8e0,7375,54151,Paradatec generiert seit 1988 mit Verfahren der künstlichen Intelligenz Daten aus Belegen. Damit schafft Paradatec aus den Dokumenten eine sichere Datenbasis für KI gestützte Entscheidungen. Die Software PROSAR-AIDA liest Dokumente mit neuronalen Netzen und versteht die Inhalte durch semantische Analyse. Mit Methoden der künstlichen Intelligenz werden automatisierte Entscheidungen zur Klassifikation von Dokumenten und Extraktion von Daten getroffen.,1988,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6701cf15e445530001443f33/picture,"","","","","","","","","" +EverLeaf,EverLeaf,Cold,"",50,management consulting,jan@pandaloop.de,http://www.everleaf-bpo.com,http://www.linkedin.com/company/everleaf-gmbh,https://www.facebook.com/everleafkosovo/,"","",Munich,Bavaria,Germany,"","Munich, Bavaria, Germany","business consulting & services, management consulting services, team training, data management, customer service, customer support, multi-language support, performance scorecards, process optimization, crm management, customer retention, information technology and services, hardware provisioning, employee onboarding, automation, employee training, proactive customer care, cost efficiency, b2b, quality guarantee, multi-channel support, data cleansing, performance monitoring, nearshoring, client-specific kpis, tailored process manuals, customer satisfaction, cold calling, market research, lead generation, lead qualification, real-time dashboards, remote team management, services, performance review cycles, consulting, sales development, business process outsourcing, sales outsourcing, kpi dashboards, objective job results scorecards, team collaboration tools, cost-effective nearshoring, sales and marketing, data enrichment, client visit organization, client reporting, custom dashboards, management consulting, information technology & services, marketing & advertising, sales, sales & marketing",'+49 89 262004310,"Gmail, Outlook, Google Apps, Webflow, Slack, Mobile Friendly, reCAPTCHA, Shutterstock, Google Tag Manager, WordPress.org, Bootstrap Framework, Remote","","","","","","",69c281871cba2c0001f0f8e7,7389,54161,"EverLeaf ist ein spezialisierter BPO-Partner für Sales, Customer Service, Datenmanagement und Prozessoptimierung. Wir unterstützen mittelständische Unternehmen dabei, Vertriebs- und Serviceprozesse strukturiert, skalierbar und qualitativ hochwertig aufzubauen. + +Unser Ansatz kombiniert AI-enabled Prozesse mit menschlicher Expertise. Das bedeutet: effiziente Workflows, klare KPIs, eine saubere Datenbasis und Teams, die Verantwortung übernehmen und langfristig an deiner Seite bleiben. + +Outsourcing, das sich nicht wie Outsourcing anfühlt, sondern wie eine echte Erweiterung deines Unternehmens. Boutique BPO: persönlich, verlässlich, nah. + +Unsere Dienstleistungen: +
• Aufbau und Skalierung von Inside-Sales-Teams +
• Lead-Qualifizierung & Pipeline-Generierung +
• Customer-Support & Service-Prozesse +
• Datenpflege, Research & Backoffice +
• Prozessoptimierung & Performance-Transparenz + +Unsere Werte My Company, Team First, No Bullshit, Fun und We Win prägen unser tägliches Arbeiten. Sie sind der Grund, warum wir zu den BPOs mit einer der niedrigsten Fluktuationsraten gehören. + +Unsere Kund:innen profitieren von konstanten, eingespielten Teams, die nicht nur ausführen, sondern mitdenken, Verantwortung übernehmen und echte Ergebnisse liefern. + +Mit über 180 Mitarbeitenden und einer starken deutsch-kosovarischen Struktur bieten wir dem Mittelstand eine Partnerschaft, die Qualität, Skalierbarkeit und Verlässlichkeit verbindet. + +Keine anonyme Dienstleistung, keine wechselnden Teams, sondern Menschen, die bodenständig, effizient und lösungsorientiert arbeiten. + +EverLeaf steht für BPO, das wirkt. Für Unternehmen, die echte Performance wollen.",2022,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6778b72ead8c7b0001a17fe3/picture,"","","","","","","","","" +KFK Büro- und KommunikationsTechnik GmbH,KFK Büro- und KommunikationsTechnik,Cold,"",20,information technology & services,jan@pandaloop.de,http://www.kfk-gmbh.de,http://www.linkedin.com/company/kfk-gmbh,https://www.facebook.com/kfkgmbh,"",111 Buehler Strasse,Saarbruecken,Saarland,Germany,66130,"111 Buehler Strasse, Saarbruecken, Saarland, Germany, 66130","netzwerke, storage, hp gold partner, druckerservice, itsupport, wartung, sophos, wlan infrastruktur, cybersecurity, kaspersky, informationstechnologie, hpe, fortinet, telekommunikation, telefonanalgen, helpdesk, it services & it consulting, it-partner saarland, it-projektmanagement, wlan-ausleuchtung, it-remote-support, it-consulting, telecommunications, it-implementierung, it-security, it-management, it-workplace, nis2-compliance-schulungen, cyber-resilienz, managed security, it-support, eu-ki-verordnung schulungen, it-lösungen luxemburg, geo-backup saarland, information technology and services, computer systems design and related services, it-cloud-sicherheit, it-services saarland, it-performance-optimierung, it-sicherheit, wlan-optimierung, managed services, it-standortanalyse, fernwartung, it-lösungen rheinland-pfalz, cloud backup, it-infrastruktur, services, it-überwachung, managed security services providers, it-experten rheinland-pfalz, it-fachmesse itcon 2025, it-systems, it-partner, cybersecurity-beratung, it-backup, wlan-planung und optimierung, it-service-provider, firewall-schutz, wlan-planung für industrie, b2b, it-dienstleister, it-beratung, it-experten, antivirus-services, it-sicherheitsaudits, it-asset-management, it-lösungen für firmen, it-upgrade windows 11, it-helpdesk, it-services für unternehmen, it-services luxemburg, it-notfallmanagement, it-compliance-beratung, it consulting services, consulting, it-services, cloud-services, microsoft 365 & teams, microsoft gold-partner, it-schulungen, datensicherung, education, distribution, transportation & logistics, information technology & services",'+49 68 1988440,"Outlook, Hubspot, MouseFlow, reCAPTCHA, WordPress.org, Mobile Friendly, Google Tag Manager, Apache, Nginx, Woo Commerce","","","","","","",69c281871cba2c0001f0f8d4,7379,54151,"KFK GmbH - Your IT partner in Southwest Germany + +IT from human to human is our motto. Our IT consulting develops together with you the complete IT infrastructure of your company from beginning to end. As an authorized HP Gold Partner and IT service provider, we supply and install the necessary hardware and adapt all processes to your industry and your individual needs. Our system house offers a holistic service concept from remote maintenance, firewall, software as a service (SaaS) and Voice over IP to on-site support. The ideal combination of hardware, software and service for your stable and secure company network.",1993,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670aba7d5c09ee0001d9cab7/picture,"","","","","","","","","" +PRETTY GOOD IDEAS GmbH,PRETTY GOOD IDEAS,Cold,"",14,marketing & advertising,jan@pandaloop.de,http://www.prettygoodideas.de,http://www.linkedin.com/company/pretty-good-ideas-gmbh,"","",7 Duerrbergstrasse,Berg,Bavaria,Germany,82335,"7 Duerrbergstrasse, Berg, Bavaria, Germany, 82335","brand experience, change management, content marketing, marketing, pr, sponsoring events, social media, krisenkommunikation, product management, innovationsmanagement, multi channel distribution, placement, corporate design, digitale transformation, online marketing, preispolitik, ecommerce, kommunikation, brand development, produktgestaltung, advertising services, management consulting, marketing campaign automation, task force, marketing plattform, communication strategy, customer journey, digital transformation, b2b, kpi analysis, marketing automation, campaign management, performance tracking, content creation, agile processes, remote support, performance optimization, content management system, consulting, customer insights, build-measure-learn, target audience, transformation management, saas, customer engagement, agile marketing, digital readiness analysis, brand management, social media marketing, team extension, marketing and advertising, performance marketing, cloud-based software, marketing analytics, automation tools, interim management, data analytics, information technology and services, services, marketing automation platform, management consulting services, user experience, decentralized team management, brand strategy, marketing & advertising, consumer internet, consumers, internet, information technology & services, e-commerce, communications, computer software, enterprise software, enterprises, ux","","Outlook, Apache, Mobile Friendly, Google Tag Manager, WordPress.org, Bootstrap Framework, Vimeo, AI","","","","","","",69c281871cba2c0001f0f8d5,8742,54161,"Als Beratung, Ideenwerkstatt und Community für Marketing und Transformation unterstützen wir Organisationen dabei, die Potenziale der Digitalisierung beherzt zu nutzen – für unternehmerischen Erfolg und eine lebenswerte Zukunft. +#IdeasToImpact +#DigitalForGood + +http://prettygoodideas.de/impressum",2011,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670280d4a62954000137ca13/picture,"","","","","","","","","" +nuwacom,nuwacom,Cold,"",36,information technology & services,jan@pandaloop.de,http://www.nuwacom.ai,http://www.linkedin.com/company/nuwacom,"","",3 Universitaetsstrasse,Koblenz,Rhineland-Palatinate,Germany,56070,"3 Universitaetsstrasse, Koblenz, Rhineland-Palatinate, Germany, 56070","software & ki, software development, api integrations, scalable ai solutions, workflow automation, ai agents, ai compliance rules, content creation automation, enterprise ai solutions, company knowledge, workflow builders, memory management, computer systems design and related services, content creation, brand guardrails, ai compliance, enterprise connectors, ai assistants, ai collaboration tools, ai deployment methodology, artificial intelligence, security guardrails, retrieval & search tools, data security, ai platform, ai automation, information technology and services, content organization, secure ai, b2b, custom ai environments, ai collaboration, enterprise software, enterprise integration, permission controls, custom ai workspaces, ai guardrails, security & compliance, retrieval & search, knowledge management, real-time search, sovereign cloud hosting, agent orchestration workflows, ai content generation, observability & governance, workflow management, no-code ai tools, services, multilingual support, ai governance, ai for content & communication, ai security, agent orchestration, ai integration, ai model integration, memory functions, regulatory compliance, content automation, web insights, ai impact scaling, web search capabilities, observability tools, enterprise ai, consulting, multi-provider llms, ai in legal hr sales, ai workspace, no-code tools, real-time knowledge, web search integration, ai workflows, automated meeting notes, legal, information technology & services, computer & network security, enterprises, computer software",'+49 261 45093350,"Outlook, Microsoft Azure Hosting, Hubspot, Mobile Friendly, WordPress.org, Google Tag Manager, Facebook Widget, YouTube, Facebook Login (Connect), Nginx, Facebook Custom Audiences, Google Font API, Vimeo, Livestorm, Storyblok, Microsoft Azure Monitor, Amazon Web Services (AWS), Google Cloud Platform, Kubernetes, GitHub Actions, TypeScript",3520000,Seed,3520000,2025-06-01,"","",69c281871cba2c0001f0f8d8,7375,54151,"Nuwacom is an AI startup based in Germany and Luxembourg, focused on enhancing human-AI collaboration within enterprise workflows. The company offers a secure, unified AI-powered workspace platform that integrates various tools and features to streamline processes in marketing, communication, and other departments. Founded by Sascha Böhr, Christophe Folschette, and Alexander Kleinen, Nuwacom aims to lead in generative AI integration for business, emphasizing compliance with regulations like the EU AI Act. + +The platform provides capabilities such as AI-powered content creation, knowledge management, and automation of tasks. It supports department-specific solutions, including campaign launches for marketing, one-click contract reviews for legal, and personalized onboarding for human resources. Nuwacom's intuitive design caters to non-AI users while optimizing workflows for efficiency. The company has secured partnerships with notable enterprises like Lufthansa, Vodafone, and Union Investment, showcasing its effectiveness in improving communication and operational efficiency.",2024,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69adcb2fb7c6660001207800/picture,"","","","","","","","","" +binder|consulting,binder|consulting,Cold,"",32,management consulting,jan@pandaloop.de,http://www.binder-consulting.de,http://www.linkedin.com/company/binder-consulting-unternehmensberatung-gmbh,"","",116B Rosenheimer Strasse,Munich,Bavaria,Germany,81669,"116B Rosenheimer Strasse, Munich, Bavaria, Germany, 81669","human resources management, hr innovation, job catalogs, job architecture, hr solutions, mergers & acquisitions, hr operating model, hr it solutions, people analytics, strategic workforce planning, hr tech, hr consulting, hr technology, it human resources, hr automation, hr strategy, hr transformation, hr it, hr solution, digital hr, carveout hr, employee experience, human resources consulting, process automation, workforce transformation, change management, hr consultants, skill management, ma, business consulting & services, hr systems implementation, professional, scientific, and technical services, hr process automation tools, hr system migration, hr analytics dashboards, digital hr tools, management consulting, hr organizational design, hr software selection, hr post-merger integration, hr process automation, hr analytics, hr process redesign, b2b, hr systems integration, hr cloud solutions, hr digitalization, hr technology consulting, hr process optimization, management consulting services, talent development, hr project management, information technology & services, hr m&a projects, hr skills taxonomy, hr digital workplace, consulting, hr data analytics, skills development, services, hr it optimization, human resources & staffing, skills management, m&a hr integration, talent management, hr talent mobility, hr system implementation, carve-out support, organizational design, change management in hr, hr data management, hr carve-out support, hr architecture, hr transformation roadmap",'+49 89 41424480,"Outlook, Microsoft Office 365, Hubspot, Apache, WordPress.org, Mobile Friendly, Data Analytics, React, Cypress","","","","","","",69c281871cba2c0001f0f8de,8742,54161,"binder|consulting is a management consulting firm that specializes in business transformation, operational excellence, IT, and HR strategies. The firm focuses on serving large multinational clients across various sectors, including manufacturing, engineering, chemicals, pharmaceuticals, utilities, telecoms, and insurance. With offices in Frankfurt and Barcelona, binder|consulting operates as a boutique consultancy that emphasizes a close-knit team culture and growth through expert partnerships. + +The leadership team includes Dr. Ralph Köppen, who has extensive experience in management consulting and digital business transformation, and Andreas Letto, who specializes in talent management and workforce transformation. The firm offers customized consulting services aimed at improving operational excellence, sourcing environments, and integrating business, IT, and HR strategies for successful transformation programs.",1998,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6822ef1f45fed700011e7515/picture,"","","","","","","","","" +promio.net,promio.net,Cold,"",16,marketing & advertising,jan@pandaloop.de,http://www.promio.net,http://www.linkedin.com/company/promio.net,"",https://twitter.com/promio_net,"",Monheim am Rhein,North Rhine-Westphalia,Germany,"","Monheim am Rhein, North Rhine-Westphalia, Germany","touchpoint management, marktforschung, emarketing online research, marketing automation system, customer engagement, omnichannel markeiting, emarketing amp online research, email marketing, kundenkommunikation, advertising services, customer engagement suite, e-mail, sms, push-benachrichtigungen, datenanalyse, adressdatenbank, multichannel-kommunikation, promio.connect, individuelle templates, marketing and advertising, omnichannel marketing, marketing automation, kampagnenanalyse, a/b-testing, b2b, information technology and services, datenschutz, kundenprofile, real-time reporting, datenschutz, dsgvo, kampagnenmanagement, d2c, kundenfeedback integration, services, lifecycle-kampagnen, online-marktforschung, advertising agencies, rapid prototyping, software development, e-mail marketing, b2c, daten- und zielgruppenanalyse, e-commerce, consulting, retail, saas, marketing & advertising, computer software, information technology & services, enterprise software, enterprises, consumer internet, consumers, internet",'+49 228 2807700,"Linkedin Marketing Solutions, Nginx, Mobile Friendly, Render","","","","","","",69c281821cba2c0001f0f515,7375,54181,"Die promio.net GmbH bietet mit ihren Leistungen und Technologien erfolgreiches Touchpoint-Management an, mit dem Ziel Customer Engagement auf höchstem Niveau und bei einfacher Handhabung betreiben zu können. + +Seit dem Start im August 2000 als eine der ersten E-Mail-Marketing Agenturen in Deutschland geben wir innovative Impulse für den aktiven Kundendialog. Obwohl der Kanal E-Mail als eines der erfolgreichsten Kundenbindungsinstrumente nach wie vor seine Berechtigung hat, ist heute ein effektives Customer Engagement an alles Touchpoints erfolgsentscheidend. promio.net hat sich genau dies zur Aufgabe gemacht. Mit Erfahrung aus über 600.000 Kampagnen werden wir auch künftig zum Erfolg unserer Kunden beitragen und die Entwicklung der digitalen Kundenkommunikation prägen. + +Customer Engagement auf höchstem Niveau mit promio.connect: +Mit unserer Marketing Automation Plattform bieten wir Ihnen eine Kommunikationslösung, die durch ihre Anpassungsfähigkeit, Funktionsvielfalt, Geschwindigkeit und hohe Usability überzeugt. + +Online Märkte erforschen mit promio.research: +Wir erstellen maßgeschneiderte Fragebögen, erkunden Ihre Märkte, testen Ihre Newsletter und stellen Ihnen die Ergebnisse zur Verfügung – auch in Echtzeit. + +Adresspotenziale für Ihren Erfolg mit promio.media: +Unser Adressbestand bringt Ihre Kampagnen zum Erfolg. Mit unserer umfangreichen, permission-basierten Datenbank eröffnen wir Ihnen den Zugang zu jeder Zielgruppe. + +Die richtige Strategie entwickeln mit promio.consult: +Unsere umfangreiche Erfahrung teilen wir gerne mit Ihnen. Wir bieten Workshops und Seminare an und verhelfen Ihnen zu einer erfolgreichen e-Strategie. + + +Impressum + +promio.net GmbH +Rheinpromenade 11 +40789 Monheim am Rhein +Deutschland + +business@promio.net +Fon +49 (0)228 28077-00 +Fax +49 (0)228 28077-28 + +Geschäftsführer: Ralf Engler, Sebrus Berchtenbreiter +Handelsregister Bonn 19 HRB 9093 +Steuernummer: 205/5739/0583 +DE-Nr. DE 212241003 +Copyright 2017",2000,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/677b7e44de5f520001a11d83/picture,"","","","","","","","","" +DC SMARTER,DC SMARTER,Cold,"",14,information technology & services,jan@pandaloop.de,http://www.dc-smarter.com,http://www.linkedin.com/company/dc-smarter,"","",13 Vincent-van-Gogh-Strasse,Ottweiler,Saarland,Germany,66564,"13 Vincent-van-Gogh-Strasse, Ottweiler, Saarland, Germany, 66564","professional services, dcim, data center, remote hands, transformation, it asset management, infrastructure, augmented mixed reality, it services & it consulting, data center infrastructure management, mixed reality, augmented reality, it infrastructure management, data center as a service, dcaas, asset inventory, remote assist, energy efficiency, operational planning, project management, documentation management, inventory solutions, task efficiency, preventive maintenance, disaster recovery, infrastructure optimization, service quality, real-time monitoring, cyber security solutions, quality assurance, digital twin technology, artificial intelligence, system integration, engineering services, high availability, cost reduction, human error reduction, cloud services, remote access, tech support, network management, energy optimization, monitoring tools, audit compliance, performance metrics, skill development, data documentation, customer support, consulting services, strategic planning, innovative solutions, real-time operations, technical expertise, training programs, partnership development, continuous improvement, b2b, consulting, services, professional training & coaching, internet service providers, information technology & services, data centers, environmental services, renewables & environment, productivity, cloud computing, enterprise software, enterprises, computer software, management consulting","","Outlook, Microsoft Office 365, Microsoft Azure Hosting, Atlassian Cloud, Hubspot, Android, Remote, AI, Circle","",Seed,0,2024-01-01,"","",69c281821cba2c0001f0f517,7375,54151,"DC Smarter is a German startup focused on IT infrastructure management for data centers. Founded by Jörg Hesselink and Ismar Efendic, the company is headquartered in Ottweiler, Saarland. With a team of 11 and a network of experts, DC Smarter aims to optimize data center operations using AI, augmented reality, and digital twin technology. Their goal is to become a global leader in technician-focused software for data centers and telecom within five years. + +The company's flagship product, DC Vision®, is an AI-powered augmented reality software that creates a digital twin of data center infrastructure. This tool enhances real-time asset management, improves inventory accuracy, and facilitates remote collaboration. Key features include anomaly detection, integration with major management systems, and support for AR devices, which significantly reduce maintenance time and human errors. DC Smarter's solutions are designed to complement existing tools, embedding seamlessly into technicians' workflows to enhance efficiency and operational security.",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/687b8ddfbe79830001d8539d/picture,"","","","","","","","","" +datatechfactory GmbH & Co. KG,datatechfactory GmbH & Co. KG,Cold,"",17,information technology & services,jan@pandaloop.de,http://www.dtf-sys.com,http://www.linkedin.com/company/datatechfactory-inh.-thomas-sobirey-it--und-pc-technik,"","",11 Berner Weg,Loerrach,Baden-Wuerttemberg,Germany,79539,"11 Berner Weg, Loerrach, Baden-Wuerttemberg, Germany, 79539","sophos xg, modern workplace, sophos synchronised security, msteams, acronis msp, sophos central, datarecovery servicepoint, itsecurity, transformation transition, bcm, jira service desk, sophos, optoma, yeastar, digitalisierung, panasonic pbx, bdm, office365, itsm, outsourcing, change releasemanagement, collaboration, it services & it consulting, security management, digitalization, cloud computing, it strategy, power platform, power platform automation, hybrid cloud solutions, microsoft ecosystem, power apps, cloud migration, business automation, cloud solutions, b2b, hybrid cloud, computer systems design and related services, power bi, security solutions, it solutions, digital transformation, microsoft 365, power apps development, cybersecurity, cloud security, power automate, terraform, it infrastructure, consulting, infrastructure as code, managed services, low-code/no-code, power bi analytics, it consulting, dynamics 365, microsoft entra id, teams phone system, azure, azure infrastructure, information technology and services, software procurement, security monitoring, services, enterprise it, business transformation, saas, information technology & services, enterprise software, enterprises, computer software, management consulting",'+49 762 11636160,"Microsoft Office 365, Google Font API, Apache, Mobile Friendly, WordPress.org, Remote","","","","","","",69c281821cba2c0001f0f519,7375,54151,"Erfahren auch Sie was ""powered by Datatechfactory"" Ihnen an Vorteilen bringt. + +Impressum: https://dtf-sys.com/impressum",2004,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6708bac1d1c54a0001386623/picture,"","","","","","","","","" +Publicare Marketing Communications,Publicare Marketing Communications,Cold,"",25,marketing & advertising,jan@pandaloop.de,http://www.publicare.de,http://www.linkedin.com/company/publicare-marketing-communications-gmbh,https://facebook.com/publicare,https://twitter.com/publicare_mc,10 Staedelstrasse,Frankfurt am Main,Hessen,Germany,60596,"10 Staedelstrasse, Frankfurt am Main, Hessen, Germany, 60596","lead nurturing, pardot, projektmanagement, email templates, email marketing, seo, campaign management, salesforce marketing cloud, bloomreach, crm journey management, marketing automation, online marketing, lead generation, crm, database marketing, multichannelmarketing full service, softwareentwicklung, sem, marketing consulting, advertising, b2b websitebesuchererkennung, sap emarsys, salesviewer, advertising services, marketing technology, customer data platform, customer journey, automation audits, cart abandonment automation, campaign optimization, ai-supported personalization, email template optimization, marketing and advertising, multi-channel communication, cloud-native solutions, omnichannel marketing, information technology and services, b2b, data management, crm consulting, address validation, customer journey management, data analytics and business intelligence, personalization, customer loyalty programs, deliverability services, d2c, multichannel marketing, behavior-based marketing, interactive email, dark mode email design, gdpr compliance, real-time data synchronization, services, list cleaning, software development, system integration, website visitor tracking, campaign monitoring, b2c, management consulting services, e-commerce, consulting, retail, customer segmentation, b2b website recognition, finance, distribution, marketing & advertising, information technology & services, search marketing, marketing, saas, computer software, enterprise software, enterprises, sales, management consulting, consumer internet, consumers, internet, financial services",'+49 69 60500956,"Cloudflare DNS, Google Tag Manager, Piwik, reCAPTCHA, WordPress.org, Google Analytics, Google Font API, Nginx, Vimeo, Mobile Friendly, YouTube, Salesforce CRM Analytics, n8n, Linkedin Marketing Solutions, Tableau, LinkedIn Ads, go+, AWS Lambda, Amazon DynamoDB, Amazon Simple Queue Service (SQS), AWS Fargate, Docker, Serverless Framework, Pulumi, Salesforce, Salesforce Journey Builder","","","","",22598000,"",69c281821cba2c0001f0f51c,7375,54161,"Publicare provides all services for your business to achieve enduring success with cross-channel customer journeys – from executing individual projects to automating your entire digital communication activities. + +Founded in 1994, Publicare Marketing Communications is a digital marketing agency based in Frankfurt am Main, Germany. The company is specialized in the design and execution of email campaigns, multichannel journeys, online advertising and e-business applications for well-known customers like eBay, Lufthansa AirPlus, mobile.de, Villeroy & Boch and Vodafone.",1994,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6829fdc7b189770001ed74a9/picture,"","","","","","","","","" +aobis GmbH,aobis,Cold,"",23,information technology & services,jan@pandaloop.de,http://www.aobis.de,http://www.linkedin.com/company/aobis-gmbh,https://www.facebook.com/aobisgmbh,"",42 Wiesseer Strasse,Kreuth,Bavaria,Germany,83700,"42 Wiesseer Strasse, Kreuth, Bavaria, Germany, 83700","wlan hotspot, strategie beratung, workplace as a service, analyse, videokonferenz, externe itabteilung, it services & it consulting, data backup, cyber security, hotel it as a service, siem, modern workplace, remote support, self-service kiosks, it-helpdesk, netzwerksicherheit, guest experience technology, cloud-based access control, cloud solutions, b2b, digital guest journey, cloud security, endpoint security, access control, information technology and services, computer systems design and related services, hospitality technology, it-beratung, hospitality solutions, firewall, smart room technology, infrastruktur, network monitoring, it consulting, services, it-lösungen, vpn, api integration, virtualization, cloud computing, consulting, it-transformation, device as a service, patch management, managed services, it-projects, it-security, hotel it solutions, security awareness, business it, cybersecurity, security in hospitality, it-management, network security, saas, information technology & services, computer & network security, enterprise software, enterprises, computer software, management consulting",'+49 8022 5080010,"Bootstrap Framework, Typekit, WordPress.org, Apache, Mobile Friendly, Google Tag Manager, Shutterstock, Remote, Cisco Secure Firewall Management Center","","","","","","",69c281821cba2c0001f0f520,7375,54151,"Eine gute IT ist wie ein schlagendes Herz: Man merkt nicht, dass es da ist. +Innovative IT-Lösungen von aobis bieten nicht nur maximale Produktivität und Konnektivität, sie unterstützen zuallererst den Menschen. Deshalb sind wir nicht nur in Workplace as a Service, externe IT-Abteilung, Videokonferenz und WLAN + Hotspot bestens aufgestellt und bereit, sondern auch in Analyse, Strategie und Beratung können wir unser vielseitiges Können beweisen. + +Kümmern Sie sich nicht um Ihre IT. Das machen wir.",2003,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66ffa27b3fd6c30001de5b7b/picture,"","","","","","","","","" +Bots & People,Bots & People,Cold,"",22,e-learning,jan@pandaloop.de,http://www.botsandpeople.com,http://www.linkedin.com/company/botsandpeople,"","",29 Schlesische Strasse,Berlin,Berlin,Germany,10997,"29 Schlesische Strasse, Berlin, Berlin, Germany, 10997","prozessautomatisierung, process automation, rpa, learning development, elearning, aaas, learning, robotic process automation, low code, process mining, ipaas, digitization, automation technologies, ai, processmining, automatisierung, education, digitalisierung, automation, e-learning providers, b2b, learning ecosystem, gamified workshops, consulting, enterprise training, live workshops, ai for hr, ai for it, ai training, self-paced courses, interactive learning, prompt engineering, custom learning programs, information technology, data literacy, cohort-based training, computer training, measurable results, ai upskilling, services, low-code development, professional services, hyper-automation, content integration, artificial intelligence, e-learning, internet, information technology & services, computer software, education management, professional training & coaching",'+49 30 9203837674,"Cloudflare DNS, Outlook, Microsoft Office 365, Leadfeeder, Thinkific, Learnworlds, Webflow, Hubspot, Slack, Facebook Custom Audiences, Google Analytics, Linkedin Marketing Solutions, Mobile Friendly, Facebook Login (Connect), Google Dynamic Remarketing, DoubleClick Conversion, Hotjar, Bing Ads, Google Tag Manager, Facebook Widget, Segment.io, DoubleClick, Android, Uipath, Circle, Remote, AI, Copilot, Articulate, IBM Cognos Analytics, Canva, Microsoft PowerPoint, Figma, Later, AFS Analytics, Metabase","","","","","","",69c281821cba2c0001f0f523,8731,61142,"Bots & People is a Berlin-based digital upskilling provider that focuses on training teams in AI, data, automation, and low-code development. The company aims to help organizations eliminate repetitive tasks and promote meaningful work. It serves mid-sized to large enterprises with vendor-agnostic programs, including its Automation Academy, which has successfully trained over 500 learners from notable companies such as E.ON, Siemens, Volkswagen, and SAP. + +The company offers a variety of services, including live workshops, self-paced courses, and personalized coaching tailored to professionals at all levels. Its training programs are customized to meet specific company needs and are available in multiple languages. Bots & People also provides consultancy and development services for automation strategies, along with a community knowledge exchange platform called the Automation Garage. Their programs emphasize practical skills transfer and organizational governance, aiming to empower organizations to build and scale their internal automation capabilities effectively.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e539ae8614a000018e7518/picture,"","","","","","","","","" +Linkando,Linkando,Cold,"",20,information technology & services,jan@pandaloop.de,http://www.linkando.com,http://www.linkedin.com/company/linkando,https://de-de.facebook.com/insights.Linkando/,"",17 Ostbahnstrasse,Landau,Rhineland-Palatinate,Germany,76829,"17 Ostbahnstrasse, Landau, Rhineland-Palatinate, Germany, 76829","formelle online meetings, collaboration, sales processes, customer journey, accelerated impact emotional energy drives change, digitalisierung von verbaenden, digitale workspaces, sales enablement, vertriebsprozesse, digitale mitgliederversammlungen, digital workspaces, digitale ratssitzungen, remote sales, verband digital, digitaler vertrieb, sales playbooks, sales leaders, collective action match people to projects, sales software, hybride events, digital sales, innovative change communication, collaboration & knowledge in one place, meeting playbooks, sales strategy, software development, hybrid event management, microsoft teams, meeting structuring, digital gremienarbeit, open telekom cloud, automated meeting protocols, decision support, playbooks, verschlüsselte kommunikation, secure voting, ki-assistent, customer engagement, automated protocols, b2b, ai integration, crm integration, human interaction, meetings, interactive agenda, communication services, computer systems design and related services, software integration, gdpr compliant, government, metaverse beratung, ai-powered dialogues, hybrid meetings, webplays, collaboration software, webplay dialogs, collaboration tools, sales process optimization, zoom x platform, data security, digital meetings, business software, workflow automation, meeting management, ai assistant, remote work solutions, zoom integration, information technology and services, process automation, digital communication, services, stimmungsanalyse ki, information technology & services, computer & network security",'+49 634 12667031,"Amazon SES, Sendgrid, Gmail, Google Apps, Microsoft Office 365, CloudFlare Hosting, React Redux, Microsoft Azure, Slack, Etracker, Mobile Friendly, Bootstrap Framework, Google Tag Manager","",Venture (Round not Specified),0,2025-02-01,"","",69c281821cba2c0001f0f525,7375,54151,"AI-generated playbooks for measurably better sales + +Linkando develops AI-generated sales playbooks that integrate seamlessly with existing sales tools and support sales teams when it matters most: during customer meetings. + +As a software provider based in Landau (Pfalz), we help companies scale their sales performance quickly and sustainably. Our playbooks function like a successful sales coach, accompanying sales staff throughout the entire sales process, from lead qualification to closing the deal and beyond. + +What our sales playbooks make possible: +- Concrete, situation-specific solution proposals during conversations +- Quick training of new employees +- Objective, data-based lead qualification +- Shorter sales cycles through clearly defined processes +- Consistent and scalable customer onboarding +- Systematic upselling and cross-selling with existing customers + +Linkando Playbooks can be used immediately, adapt to existing processes, and enable a quick start for the entire team. + +How could sales playbooks strengthen your sales team? We would be happy to show you a demo: https://cal.meetergo.com/linkando/30-min-meeting-or-cbohrtermin + +www.linkando.com",2016,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67030b752d0c2f00013802d2/picture,"","","","","","","","","" +tl;dv - AI Meeting Assistant,tl;dv,Cold,"",61,information technology & services,jan@pandaloop.de,http://www.tldv.io,http://www.linkedin.com/company/tl-dv,"",https://twitter.com/tldview?lang=en,"",Aachen,North Rhine-Westphalia,Germany,"","Aachen, North Rhine-Westphalia, Germany","tldv, meeting insights, meeting annotation, meeting summarization, microsoft teams, meeting recording, b2b, meeting integrations, zoom, toolongdidntview, meeting assistant, saas, productivity tool, efficiency tool, api, remote work enabler, ai meeting notes, meeting repository, meeting transcription, google meet, software development, meeting analytics, objection handling insights, information technology and services, meeting productivity, collaboration tools integration, meeting trend detection, natural language processing, meeting trend analysis, playbook adherence tracking, services, meeting action items, meeting content tagging, meeting recording & transcription, video conferencing integration, meeting automation, meeting clip generation, customer feedback extraction, meeting data analysis, meeting performance scorecards, meeting transcript translation, ai meeting assistant, meeting searchability, software as a service (saas), multilingual support, actionable meeting reports, business productivity software, automated note-taking, speech recognition, sales call analysis, crm automation, sales coaching, data security, sales performance analytics, multi-language transcription, meeting data privacy, crm integration, business intelligence, ai notes & summaries, computer systems design and related services, workflow automation, meeting trend visualization, enterprise security, meeting highlights, consulting, meeting compliance, ai notetaker, transcription service, ai summaries, multi-language support, collaborative tools, automated meeting insights, performance scorecards, gdpr compliance, actionable reports, meeting evidence storage, instant ai feedback, task management integration, client feedback analysis, user-friendly interface, cloud storage solutions, customizable meeting templates, real-time collaboration, insightful analytics, follow-up automation, task assignment tools, privacy-first approach, meeting outcome tracking, team collaboration, ai-driven insights, automatic notes sharing, seamless integration, task automation, competitor analysis, remote work solutions, voice recognition technology, customized alerts, conversational intelligence, efficient onboarding process, meeting optimization, insightful engagement metrics, personalized action items, user feedback collection, meeting performance evaluation, custom workflows, enhanced preparation techniques, team alignment tools, streamlined reporting, future meeting planning, computer software, information technology & services, artificial intelligence, computer & network security, analytics",'+49 173 4159890,"Cloudflare DNS, Sendgrid, Gmail, Google Apps, CloudFlare Hosting, Leadfeeder, Hubspot, Apple Pay, Mobile Friendly, Facebook Login (Connect), Google Tag Manager, Vimeo, Multilingual, YouTube, Facebook Custom Audiences, Facebook Widget, WordPress.org, Docker, IoT, Remote, AI",5060000,Seed,4730000,2022-06-01,1000000,"",69c281821cba2c0001f0f528,7375,54151,"tl;dv is an AI-powered meeting assistant that enhances video meetings by recording, transcribing, summarizing, and analyzing discussions across platforms like Zoom, Google Meet, and Microsoft Teams. It offers over 90% transcription accuracy in more than 30 languages and supports unlimited parallel meetings. The tool integrates with over 5000 applications, including popular CRMs, Slack, and Notion. + +The platform provides a range of features focused on meeting intelligence. It automatically captures discussions, generates human-like notes, and extracts key tasks and insights. Users can query the AI for details about meetings and receive trend reports and recurring insights. Tailored tools for sales, customer success, leadership, and marketing teams help streamline processes and improve collaboration. With over 2 million users globally, tl;dv is designed for remote teams and professionals who rely on video meetings to drive productivity and decision-making.",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69589c6b999ad70001691d84/picture,"","","","","","","","","" +Sommer & Goßmann GmbH,Sommer & Goßmann,Cold,"",56,marketing & advertising,jan@pandaloop.de,http://www.sommer-gossmann.com,http://www.linkedin.com/company/sommer-&-go%c3%9fmann,"","",1 Erlenmeyerstrasse,Aschaffenburg,Bavaria,Germany,63741,"1 Erlenmeyerstrasse, Aschaffenburg, Bavaria, Germany, 63741","toolentwicklung, haushaltswerbung, kreation und produktion, digital marketing, social media, crosschannel, handelsmarketing, prospektwerbung, omnichannelkommunikation, local intelligence, media, digitale angebotskommunikation, mediaagentur, retail marketing, advertising services, media performance analytics, media steuerung, advertising & marketing, loyalty insights, media measurement, b2b, media mix optimization, media forecast modeling, retail media, media & publishing, ai-optimized media planning, media strategy, retail point of sale advertising, advertising agencies, performance marketing, omnichannel, campaign forecasting, marketing services, services, data analytics, print marketing, digital out-of-home (dooh), media planning & buying, media buying, geolocation marketing, campaign performance, media reporting, media automation tools, media einkauf, smarttomm, media sourcing, consulting, retail, geo intelligence, targeted advertising, media automation, customer loyalty data, media analytics, dialog marketing, media effectiveness, medializerai, media analysen, media performance tracking, multi-channel marketing, personalized advertising, media beratung, roas optimization, data-driven marketing, digital signage, media campaign management, crossmedial communication, media data integration, media planning, omnichannel strategy, marketing & advertising, consumer internet, consumers, internet, information technology & services","","MailJet, Outlook, Microsoft Office 365, WordPress.org, Google Tag Manager, Apache, Bootstrap Framework, Google Analytics, Mobile Friendly, REST, Oracle XML DB","","","","","","",69c281821cba2c0001f0f512,7311,54181,"Sommer & Goßmann MEDIA-MANAGEMENT GmbH is a German media agency based in Aschaffenburg, founded in 1971. With over 50 years of experience, the agency specializes in data-driven, cross-media strategies that integrate classic and digital channels to create efficient marketing campaigns. The leadership team includes CEO Helmut Hartinger and other senior directors who focus on innovative media solutions and long-term partnerships, particularly in the retail and trade sectors. + +The agency offers a range of services, including comprehensive media management, campaign planning, execution, and evaluation. Their Digital Self-Service Platform, SmartTomm, allows for automated media booking and performance tracking across various channels. Sommer & Goßmann also provides personalized marketing solutions, cross-media planning, and retail-focused strategies to enhance customer engagement and sales. They have a strong commitment to teamwork, quality, and work-life balance, with flexible working options for their employees.",1971,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69b4dc4fdad61200016877c7/picture,"","","","","","","","","" +EPROFESSIONAL GmbH,EPROFESSIONAL,Cold,"",110,marketing & advertising,jan@pandaloop.de,http://www.eprofessional.de,http://www.linkedin.com/company/eprofessional-gmbh-digital-technology-consultants,https://facebook.com/eprofessional/,https://twitter.com/tweepro,74 Heidenkampsweg,Hamburg,Hamburg,Germany,20097,"74 Heidenkampsweg, Hamburg, Hamburg, Germany, 20097","tool consulting, social media, multichannel tracking, search engine optimization, customer journey analysis, search automation, youtube advertising, multichannel marketing, marketing intelligence technology, performance marketing, ppc, strategy consulting, produktdaten marketing, search engine advertising, display advertising, data driven marketing, social media advertising, technology solutions, amazon advertising, advertising services, google analytics 4 migration, programmatic display advertising, conversion rate optimization, customer journey, amazon seo, sea campaigns, marketing and advertising, marketing automation, product data optimization, information technology and services, b2b, predictive user behavior analysis, digital out of home (dooh), native advertising, marketplaces advertising, tag management, machine learning, b2b marketing strategies, digital analytics, seo scorecard, cross-device tracking, ai-ready ad-fraud protection, paid search, services, digital transformation, programmatic advertising, competitor watch tool, connected tv (ctv) advertising, digital consulting, retargeting optimization, predictive analytics, youtube campaigns, ad-fraud protection, management consulting services, customer journey tracking, e-commerce, consulting, b2b marketing, conversion optimization, customer segmentation, consumer internet, consumers, internet, information technology & services, seo, search marketing, marketing, marketing & advertising, strategic consulting, management consulting, saas, computer software, enterprise software, enterprises, artificial intelligence",'+49 40 3992780,"Microsoft Office 365, ActiveProspect","",Merger / Acquisition,0,2023-12-01,7000000,"",69c281821cba2c0001f0f51b,7375,54161,"EPROFESSIONAL GmbH is a prominent growth marketing agency based in Hamburg, specializing in data-driven marketing and sales solutions. Founded in 1999, the company has over 20 years of experience and serves more than 1,000 clients across the DACH region, employing over 120 marketing experts. + +The agency focuses on developing and implementing digital growth strategies, performance marketing, and consulting for search, display, and video advertising. EPROFESSIONAL is recognized as a Google Premier Partner, Meta Business Partner, and Microsoft Advertising Partner, providing certified consulting in specialized advertising platforms. The agency also engages in exclusive testing programs with technology partners, giving clients early access to new features. + +EPROFESSIONAL collaborates with a diverse range of clients, including well-known brands like Vodafone, L'Oréal, and HUGO BOSS, as well as local e-commerce businesses. The company is led by experienced business managers and has been strategically acquired by the HAVAS MEDIA Group to enhance its performance marketing capabilities.",1999,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/690b384fd7dfb8000109bda0/picture,Havas Media Network (havasmedianetwork.com),5ed5851c1fa6330001a33eae,"","","","","","","" +N4,N4,Cold,"",160,information technology & services,jan@pandaloop.de,http://www.n4.de,http://www.linkedin.com/company/n4de,"","",95 Kaiserstrasse,Saarbruecken,Saarland,Germany,66133,"95 Kaiserstrasse, Saarbruecken, Saarland, Germany, 66133","it services & it consulting, information technology & services",'+49 68 1638970,"Gmail, Google Apps, Microsoft Office 365, Hubspot, Mobile Friendly, Bing Ads, YouTube, Etracker, Google Tag Manager, WordPress.org, Apache, reCAPTCHA, React Native, Remote","","","","","","",69c281821cba2c0001f0f527,"","","N4 is a German software development company with over 30 years of experience, specializing in customized B2B solutions that digitize and optimize business processes. The company operates in the Saar-Lor-Lux region and internationally, serving medium-sized businesses and major corporations. N4 has evolved from its roots in the automotive aftermarket to work in sectors such as medical technology, pharmaceuticals, mechanical engineering, and public infrastructure. + +N4 offers tailored software development, digital consulting, and process digitalization services. Their solutions include custom software development, holistic transformation of analog workflows, and integration with the Microsoft ecosystem, utilizing tools like Power Apps and Dynamics 365. The company emphasizes agile collaboration and long-term partnerships to deliver integrated solutions that simplify workflows. Notable products include the Garage 4.0 platform, which connects workflows across various industries, and bespoke Microsoft-based solutions designed for process efficiency. N4 has collaborated with renowned clients such as Siemens and Volkswagen, adapting its services to meet regional needs.",2008,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69a6c70dca2a070001e346e0/picture,"","","","","","","","","" +ANAXCO GmbH,ANAXCO,Cold,"",47,information technology & services,jan@pandaloop.de,http://www.anaxco.de,http://www.linkedin.com/company/anaxco-gmbh,"","","",Sprockhoevel,North Rhine-Westphalia,Germany,45549,"Sprockhoevel, North Rhine-Westphalia, Germany, 45549","transportoptimierung, tourenoptimierung, transportmanagementsystem, speditionssoftware, tms, multikooperationsfaehigkeit, software fuer netzwerkspedition, microsoftpartner, digitalisierungsspezialist, automatische disposition, azurecloud, dynamics365, cloud tms, lkwspeditionssoftware, cloudserviceprovider, itdienstleistung, rechenzentrumsbetreiber, prozessautomatisierung transport, transportlogistiksoftware, it services & it consulting, rechenzentrum, cloud computing, cloud services, services, cloud-services, automatisierung, supply chain management, consulting, logistiksoftware, it-infrastruktur, it-services, predictive analytics, ki-lösungen, data security, transport-management-system cargosuite, no-touch-aufträge, business intelligence, transport-management-system, softwareentwicklung, datenanalyse, data analytics, information technology and services, software development, microsoft azure, logistics, cloud in der logistik, cybersecurity, computer systems design and related services, b2b, digital transformation, prozessautomatisierung in logistik, business-analytics, saas, distribution, transportation & logistics, information technology & services, enterprise software, enterprises, computer software, logistics & supply chain, computer & network security, analytics",'+49 233 647110,"Outlook, Microsoft Office 365, Google Tag Manager, Apache, Google Maps, WordPress.org, Mobile Friendly, Remote, AI, , Azure Devops, Tor","","","","","","",69c281821cba2c0001f0f51a,7375,54151,"ANAXCO GmbH is a German digitalization partner based in Schwelm, Nordrhein-Westfalen. Founded in 1998, the company specializes in IT services, logistics solutions, and business intelligence, primarily serving medium-sized businesses. ANAXCO focuses on helping companies adapt to changes in logistics and technology, employing a team of 24 to 128 people. + +The company offers a range of solutions, including the Anaxco CargoSuite, a Transport Management System that automates freight forwarding processes to enhance quality and efficiency. ANAXCO also provides reliable IT services, covering hardware, software, and maintenance support. Additionally, their business intelligence tools help organizations identify key connections to improve daily operations and long-term strategies.",1998,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69ad3b590a7bd700012081ef/picture,"","","","","","","","","" +AONIC - digital. together.,AONIC,Cold,"",34,information technology & services,jan@pandaloop.de,http://www.aonic.de,http://www.linkedin.com/company/aonic-gmbh,https://facebook.com/aonic.consult,"",5 Europaplatz,Darmstadt,Hesse,Germany,64293,"5 Europaplatz, Darmstadt, Hesse, Germany, 64293","futurework, business intelligence, microsoft powerapps, it strategy, arbeiten 40, digital marketing, work 40, microsoft teams, mobile, workplace, office365, cybersicherheit, sap, microsoft bi, microsoft sharepoint, ariba, consulting, microsoft sharepoint online, itprojektmanagement, microsoft 365, strategische beratung, kostenreduktion, managementberatung, datenanalyse, it/ot integration, intranet & content kampagnen, ki im vertrieb, predictive maintenance, viva engage, ai builder, information technology and services, b2b, künstliche intelligenz, innovation, ki im wissensmanagement, industrial cybersecurity, enterprise software, sharepoint migration, cybersecurity, wissensmanagement, automatisierte workflows, intranet support & betrieb, ki im dokumentenmanagement, operational excellence, digitalisierung, data analytics, ki in der produktion, datenstrategien, process optimization, open-source ki-alternativen, cloud infrastructure, microsoft power platform, services, intranet neu denken, digital transformation, cloud strategie, cyber readiness exercises, microsoft copilot, automatisierung, risk management, ai-driven manufacturing, intranet & wissensmanagement, it-projektmanagement, digital workplace, intranet strategie, management consulting, software development, regulatory compliance, it/ot konvergenz, ai-driven solutions, predictive analytics in manufacturing, management consulting services, it-infrastruktur, viva engage als intranet alternative, low-code plattformen, change management, manufacturing, analytics, information technology & services, marketing & advertising, internet, enterprises, computer software, internet infrastructure, mechanical or industrial engineering",'+49 6151 4932630,"Outlook, Microsoft Office 365, WordPress.org, Linkedin Marketing Solutions, Hubspot, Mobile Friendly, Google Tag Manager, YouTube, Nginx, Google AdWords Conversion, Facebook Comments, React Native","","","","","","",69c281821cba2c0001f0f526,8742,54161,"Wir kümmern uns, um den digitalen Wandel im Maschinenraum der deutschen Wirtschaft. Wir begleiten Kunden aus Industrie und Energiewirtschaft in eine Zukunft. Besonders in den Bereichen Cybersicherheit, Digitalisierung und KI, Intranet und Dokumentenmanagement sehen wir unsere Stärken. Keine Hackerangriffe, keine Arbeit auf Papier, keine Zeit zu verlieren!",2012,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/687ccbce4c104f00017bc66a/picture,"","","","","","","","","" +ICONTEC GmbH,ICONTEC,Cold,"",28,information technology & services,jan@pandaloop.de,http://www.icontec.de,http://www.linkedin.com/company/icontec-gmbh,"","",2 Werner-von-Siemens-Strasse,Ilmenau,Thuringia,Germany,98693,"2 Werner-von-Siemens-Strasse, Ilmenau, Thuringia, Germany, 98693","integration, s4hana, consulting, digitalisierung, business intelligence, rpa, sap, abap, project management, microsoft power automate, sap migration vorbereitung, development & integration, supply chain management, ai, sap intelligent rpa, business intelligence and analytics, cloud services, sap cloud platform, sap logistik, sap supply chain, process automation, services, esg-reporting sap, automatisierte systemtests, uipath, sap bw/4hana, computer software, logistics, supply chain automatisierung, computer systems design and related services, management consulting, sap bo, power bi sap integration, sap migration, it-services, sap s/4hana logistics, sap bw, hypercare support, information technology and services, data analytics, sap ariba, data warehousing, sap consulting, sap fiori, b2b, sap beratung, data mining, sap schnittstellen, sap analytics cloud training, sap projektmanagement, sap activate, sap s/4hana, information technology & services, migrationspfade sap s/4hana, automatisierung, automation services, system integration, predictive analytics, sap basis, cloud computing, sap hana, software development, sap analytics cloud, big data, sap system support, finance, education, non-profit, manufacturing, distribution, transportation & logistics, analytics, productivity, logistics & supply chain, enterprise software, enterprises, financial services, nonprofit organization management, mechanical or industrial engineering",'+49 3677 83766,"Outlook, Microsoft Office 365, Hubspot, Microsoft Office","","","","","","",69c281821cba2c0001f0f513,7375,54151,"Wir sind Wirtschaftsinformatiker und IT Spezialisten mit Geschäftssitz am Technologiestandort Ilmenau. Mit einem starken Partnernetzwerk und der engen Verbundenheit zur Technischen Universität Ilmenau setzt sich unser professionelles Team unermüdlich für den Erfolg unserer Kunden ein. Wir können auf über 20 Jahre Erfahrung im SAP Projektgeschäft zurückgreifen und sind im Umgang mit den neusten Werkzeugen und Technologien qualifiziert und zertifiziert. + +Unsere drei Geschäftsbereiche Business Intelligence, Consulting sowie Development & Integration sind eng verzahnt und wir bieten ein umfassendes Leistungsportfolio rund um die SAP Produktpalette an. + +Unser Anspruch ist es die Digitalisierung bei unseren Kunden voranzutreiben und die Herausforderungen ständig wachsender Geschäfts- und Technologielandschaften gemeinsam nachhaltig zu meistern. Dabei sind wir stets Technologieexperten und Prozessberater, aber auch Wissensvermittler und Kommunikationstalente. + +Als IT Dienstleister ist der Kunde Mittelpunkt unseres Handelns. Dabei wird unser interdisziplinäres Fachwissen sowie das methodisch, fundierte Vorgehen in der Projektabwicklung hoch geschätzt. Wir wissen durch Organisations- und Kommunikationsfähigkeiten zu überzeugen und behalten auch in kritischen Projektphasen einen kühlen Kopf. Von der Planung, über Implementierung und Rollout, bis zu Betrieb, Support und Training — mit uns haben Sie einen starken Partner für Ihre IT- und SAP-Projekte an der Seite.",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/687257b2875c1a0001624256/picture,"","","","","","","","","" +Dataciders SD&C GmbH,Dataciders SD&C,Cold,"",69,information technology & services,jan@pandaloop.de,http://www.sd-c.de,http://www.linkedin.com/company/sd&c-solution-development-&-consulting-gmbh,"","",204 Bundesallee,Berlin,Berlin,Germany,10717,"204 Bundesallee, Berlin, Berlin, Germany, 10717","mobility cloud, microsoft, digitale transformation, sap, iot, modern workplace, business intelligence, enterprise collaboration, energiedatenmanagement, itsicherheit, energy utilities, data management, it beratung, mobility amp cloud, it services & it consulting, solution design, custom software development, computer systems design and related services, it consulting, energy & utilities, it strategy, data migration, data security, predictive maintenance, information technology and services, b2b, industry-specific expertise, data-driven solutions, cloud solutions, cloud migration, end-to-end solutions, government, mobile app development, self-service bi, financial services, custom software, data analytics, process optimization, microsoft and sap technologies, cloud infrastructure, services, digital transformation, virtual project management, software development, regulatory compliance, virtual workspaces, real estate, consulting, finance, analytics, information technology & services, management consulting, computer & network security, cloud computing, enterprise software, enterprises, computer software, internet infrastructure, internet",'+49 30 4432320,"Outlook, Microsoft Office 365, Facebook Comments, Mobile Friendly, Apache, WordPress.org","","","","","","",69c281821cba2c0001f0f51f,7375,54151,"Dataciders SD&C GmbH is an IT services company based in Berlin, founded in August 2003. With nearly two decades of experience, it specializes in data-driven end-to-end solutions, focusing on consulting, development, implementation, and operations. The company is recognized as a leading provider of Data & AI services in the German-speaking region, helping businesses make informed decisions through expertise in Microsoft and SAP technologies. + +The firm offers a wide range of IT services, including management consulting, IT strategy development, and custom software solutions aimed at optimizing business processes. It also provides database migration assessments and transitions to public cloud environments, ensuring secure data migration for various clients, from DAX-listed firms to SMEs. Dataciders SD&C emphasizes tailored solutions for industries such as Financial Services, Energy & Utilities, Public Sector, Logistics, and Real Estate. Additionally, the company promotes diversity in tech through initiatives like its ""Women in IT"" working group.",2003,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/674c5c13ba488e000139701f/picture,"","","","","","","","","" +Communardo,Communardo,Cold,"",200,information technology & services,jan@pandaloop.de,http://www.communardo.de,http://www.linkedin.com/company/communardo,https://www.facebook.com/Communardo,https://twitter.com/communardo,10A Kleiststrasse,Dresden,Saxony,Germany,01129,"10A Kleiststrasse, Dresden, Saxony, Germany, 01129","microsoft power platform, digital workplace, enterprise networking, microsoft viva, adoption change management, modern workplace, knowledge management, agile workflows, unified communication & collaboration, cloud migration, social intranet, collaboration workplace, employee experience, digitalization of business processes, business portals, process automation, it services & it consulting, change management, information technology and services, consulting, service management, jira cloud, beratung, microsoft 365, wissensmanagement, softwarelösungen, agile methoden, computer systems design and related services, projektmanagement, collaboration, intranet, b2b, automatisierung, services, atlassian cloud solutions, event management, atlassian, digital transformation, staffbase app solutions, digitale transformation, copilot prompsters, software development, confluence cloud, it management, managed services, ai surfer, hybrid work, itsm, information technology & services, events services",'+49 351 850330,"Outlook, Microsoft Office 365, Jira, Atlassian Confluence, Atlassian Cloud, Zapier, React Redux, Atlassian Bitbucket, Active Campaign, Microsoft Application Insights, Slack, Hubspot, Google Dynamic Remarketing, Apache, Facebook Login (Connect), Facebook Custom Audiences, Bing Ads, DoubleClick, Linkedin Marketing Solutions, Mobile Friendly, DoubleClick Conversion, Facebook Widget, Google Tag Manager, Multilingual, Nginx, reCAPTCHA, WordPress.org, Google AdSense, YouTube, Hotjar, Atlassian, Confluence, Microsoft 365, Azure AI Search, Microsoft Power Platform, DATEV Accounting, IBM Cognos Analytics, CAT, PostgreSQL, Oracle Analytics Cloud, Microsoft SQL Server Reporting Services, Prometheus, Grafana, Icinga Infrastructure Monitoring, Ansible, Docker, Kubernetes, AWS Trusted Advisor, Microsoft Azure Monitor, SAM","",Other,"",2024-09-01,178000000,"",69c281821cba2c0001f0f521,7375,54151,"Communardo is a prominent provider of software solutions and consulting services focused on digital workplaces. Founded in 2001 in Dresden, Germany, the company has expanded to include over 360 employees across multiple locations in Germany, Austria, Switzerland, Scandinavia, and Albania. With more than 20 years of experience, Communardo generates over 120 million euros in annual revenue and serves customers in 105 countries. + +The company offers a comprehensive range of services for intelligent enterprise collaboration and digital transformation. This includes strategy consulting, Microsoft 365 rollout, custom solutions for cloud-based intranets, and professional services for Atlassian tools like Jira and Confluence. Communardo also develops over 43 proprietary apps for the Atlassian ecosystem and provides Microsoft 365 solutions tailored for frontline workers. Recognized as a Microsoft Managed Partner and an Atlassian Platinum Solution Partner, Communardo has received several awards for its contributions to the industry.",2001,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69ac554c4d5d8f00011cf8b9/picture,PROM12 (prom12.com),634559550a6803008ba18059,"","","","","","","" +KARON Beratungsgesellschaft mbH,KARON Beratungsgesellschaft mbH,Cold,"",32,information technology & services,jan@pandaloop.de,http://www.karon.de,http://www.linkedin.com/company/kar-n-beratungsgesellschaft-mbh,"","",2 Corunnastrasse,Iserlohn,North Rhine-Westphalia,Germany,58636,"2 Corunnastrasse, Iserlohn, North Rhine-Westphalia, Germany, 58636","sap ppm, sap ectr, sap ewm, sap epd, sap ipd, it, t4s, sap, cortona3d, slm, digitalisierung, teamcenter, plm, it services & it consulting, technologieberatung, docex, b2b, siemens teamcenter, it-beratung, it-consulting, digitaler zwilling, product lifecycle management, model-based design, consulting, interaktive technische dokumentation, datenvisualisierung, kreislaufwirtschaft, rapidauthor, prozessoptimierung, sap-beratung, karon ecm suite, distribution, softwareentwicklung, services, datenanalyse & -optimierung, systemintegration, prozessberatung, digital twin, karn methode, prozessautomatisierung, nachhaltigkeit, software development, industrial automation, produktdatenmanagement, automatisierte dokumentenerstellung, nachhaltige datenanalyse, manufacturing, systemvernetzung, effizienzsteigerung, computer systems design and related services, datenmanagement, software-lösungen, plm-integration, datenanalyse, systemübergreifende prozessketten, digitale transformation, software-implementierung, information technology & services, mechanical or industrial engineering",'+49 6142 301700,"Outlook, Vimeo, Google Tag Manager, Bootstrap Framework, WordPress.org, Mobile Friendly, Apache, ContentClick, Teamcenter, SAP S/4HANA, Siemens PLM","","","","","","",69c281821cba2c0001f0f522,3829,54151,"Die KARŌN ist ein familiäres und expandierendes Prozess- und IT-Beratungsunternehmen mit mehr als 25-jähriger Erfahrung in nationalen und internationalen Projekten. +KARŌN steht für kontinuierliche Prozessverbesserungen in den Bereichen Produktdatenmanagement, Konstruktion und Fertigung sowie Service. Unsere Kunden unterstützen wir durchgängig von der Prozess- und Integrationsberatung bis hin zur Implementierung punktgenauer Software-Lösungen. +Zukunftsorientierte Themen wie das Product Lifecycle Management stehen dabei im Vordergrund. Die langjährige Erfahrung unserer Mannschaft entlang der gesamten Wertschöpfungskette bietet hierbei immer wieder den entscheidenden Mehrwert für unsere Kunden. +Wir helfen mittelständischen Unternehmen, Ihren digitalen Zwilling im gesamten Produkt- und Fabriklebenszyklus zu erstellen. Dabei hat das Thema Nachhaltigkeit mit all seinen Facetten für uns eine tragende Rolle.",1998,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f256f95d38a70001e0bea4/picture,"","","","","","","","","" +Consileon Applied Business,Consileon Applied Business,Cold,"",13,information technology & services,jan@pandaloop.de,http://www.consulting.cab,http://www.linkedin.com/company/consileon-applied-business,"","",5 Maximilianstrasse,Karlsruhe,Baden-Wuerttemberg,Germany,76133,"5 Maximilianstrasse, Karlsruhe, Baden-Wuerttemberg, Germany, 76133","digitalisierung, sap analytics cloud, sap s/4hana, cloud solutions, sap finance, nachhaltigkeit, digital transformation, vertriebssteuerung, ki-rechnungsprüfung, finanzdienstleistungen, sap papm, business intelligence, sap s/4hana conversion, künstliche intelligenz, personalmanagement sap, change management, consulting, data analytics, prozessautomatisierung, sap data attribute recommendation, projektmanagement, sap successfactors, management consulting services, b2b, fiantec, esg-berichterstattung, industrie, cloud computing, ki-basierte rechnungsprüfung, enterprise software, sap hcm, it-beratung, öffentliche verwaltung, energie & utilities, it-infrastruktur, custom software development, services, gesundheitswesen, sap fs-icm, sap implementierung, softwareentwicklung, sap vergütungsmanagement, sap logistik, geschäftsprozessoptimierung, sap cloud lösungen, logistik, healthcare, finance, non-profit, manufacturing, distribution, transportation & logistics, energy & utilities, enterprises, computer software, information technology & services, financial services, analytics, health care, health, wellness & fitness, hospital & health care, nonprofit organization management, mechanical or industrial engineering",'+49 721 20431720,"Cloudflare DNS, Outlook, Hotjar, Mobile Friendly, SAP C/4 HANA, , Wider Planet, SAP Business Suite, accessiBe, FICO Safe Driving Score","","","","","","",69c281821cba2c0001f0f518,7375,54161,"Ein erfolgreiches Projekt lebt mit und vor allem durch seine Mitarbeiter und deren Leidenschaft für die Ideen dahinter. + +Wir verbinden eine sehr hohe Fachkompetenz mit einer erprobten Methodik und der Begeisterung für den Menschen und das gemeinsame Ziel. + +Wir sind als Unternehmen auf fachliche und technische Beratungsdienstleistungen rund um Prozesse zur Steuerung der Vertriebsorganisation und des Personalwesens spezialisiert. Prozesse mit und für Menschen liegen uns besonders im Blut. Von der strategischen Reorganisation des Vertriebes über die Unterstützung zur Selektion einer neuen Vergütungssoftware bis hin zu Implementierung und dem Betrieb der Lösung: Wir freuen uns darauf, diese Herausforderungen mit unseren Kunden erfolgreich zu lösen. + +SAP C/4HANA, S/4HANA, ERP und Business Suite sind Technologien, mit denen wir uns kontinuierlich, begeistert und seit Jahren beschäftigen.",2019,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6714ac74b323e000010e8b00/picture,"","","","","","","","","" +pdm solutions GmbH,pdm solutions,Cold,"",44,information technology & services,jan@pandaloop.de,http://www.pdm-solutions.com,http://www.linkedin.com/company/pdm-solutions-gmbh,"","",78 Boxhagener Strasse,Berlin,Berlin,Germany,10245,"78 Boxhagener Strasse, Berlin, Berlin, Germany, 10245","it services & it consulting, management consulting services, web development, consulting, smes online presence, user experience, information technology and services, customer engagement, customer acquisition, ai impact, project-based consulting, voice assistants, web and app development, data management, process optimization, consulting services, brand awareness, chat inbox solutions, digital solutions, data-driven services, services, employee benefits, digital hub, chatbots, trend recognition, strategic partnerships, innovation, digitization projects, digital marketing, market trend adaptation, b2b, innovation implementation, digital innovation support, search market evolution, software development, digital transformation, information technology & services, ux, management consulting, marketing & advertising",'+49 30 55491105,"Gmail, Google Apps, Slack, Nginx, Mobile Friendly, IoT, Android, React Native, AI, Remote, Next.js, Node.js, Supabase, Langchain, Hugging Face, Copilot, Cursor, Figma, Google Workspace, Notion, Adobe Creative Cloud, Adobe Creative Suite, TikTok, Instagram, Linkedin Marketing Solutions, YouTube","","","","","","",69c281821cba2c0001f0f51d,7375,54161,"pdm is a data-specialized company forming the display and experience of enriched data in the future. We help intelligent systems understand the human world. +We work with directories, digital platforms, map providers and forward-thinking partners who care about how information travels through the world. +Our job is to make local data understandable, connected, and future-ready. + + +Say Hi on: + +Instagram: pdm_solutions +TikTok: pdm_solutions + +Legal Notice: +http://pdm-solutions.com/impressum",2009,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/695cce3adf38d50001206991/picture,"","","","","","","","","" +Peak Ace AG,Peak Ace AG,Cold,"",82,marketing & advertising,jan@pandaloop.de,http://www.peakace.agency,http://www.linkedin.com/company/peak-ace-ag,https://www.facebook.com/peakaceag/,https://twitter.com/peakaceag,13 Leuschnerdamm,Berlin,Berlin,Germany,10999,"13 Leuschnerdamm, Berlin, Berlin, Germany, 10999","seo, martech, cro, community management, ppc, facebook, online marketing, content marketing, internet, sea, performance marketing, ai, social advertising, digital marketing, digital strategy, digital analytics, advertising services, retargeting, customer journey, seo optimization, ki-lösungen, marketing strategy, predictive analytics, automated bidding, performance tracking, consulting, ai for multilingual content, market insights, market analysis, marketing funnel, ai in search engines, ai-driven bid management, paid search, automatisierung, search engine optimization, ai for social media targeting, services, ai for predictive lead scoring, digital transformation, content services, social media marketing, marketing and advertising, ai brand monitoring, marketing technology, ad tech, cross-channel marketing, digital pr, martech stack, künstliche intelligenz, customer data platforms, ai for brand reputation, customer acquisition, customer segmentation, suchmaschinenoptimierung, brand awareness, data-driven marketing, social media advertising, a/b testing, ai in video advertising, roi optimization, target audience analysis, ai in customer support, ai for content personalization, user experience optimization, ai for e-commerce optimization, retail, conversion rate optimization, international campaigns, display & video advertising, data visualization, digital campaigns, lead generation, display advertising, data analytics tools, ai in programmatic buying, paid social, performance optimization, ai content creation, real-time data, kundenorientierung, programmatic advertising, customer retention, d2c, campaign management, full-service agency, marketing kpis, ai for customer insights, multilingual campaigns, customer engagement, full-funnel-ansatz, brand monitoring tools, ai for conversion optimization, data management platforms, ai for campaign automation, information technology and services, ai marketing, e-commerce, b2b, internationales team, digitalstrategie, advertising agencies, marketing automation, award-winning agency, growth hacking, ai in digital pr, ai for market research, consumer_products_retail, information technology & services, search marketing, marketing, marketing & advertising, enterprise software, enterprises, computer software, consumer internet, consumers, sales, saas",'+49 30 832117790,"Cloudflare DNS, Outlook, Microsoft Office 365, CloudFlare Hosting, Salesforce, Gmail, Google Apps, Atlassian Cloud, DigitalOcean, Amazon SES, Mobile Friendly, MouseFlow, Facebook Custom Audiences, WordPress.org, Linkedin Marketing Solutions, reCAPTCHA, DoubleClick Conversion, Google Dynamic Remarketing, Bing Ads, Google Tag Manager, Facebook Widget, Facebook Login (Connect), DoubleClick, Remote, Vincere, AI","","","","",4000000,"",69c281821cba2c0001f0f511,7375,54181,"Peak Ace AG is an international digital marketing and performance agency based in Berlin, Germany. Founded in 2007, the company has grown to over 170 employees with additional offices in France. It specializes in delivering technology-driven digital experiences through comprehensive strategies that include organic search, paid advertising, content marketing, and marketing technology. The agency operates in more than 25 languages, ensuring tailored solutions for global markets. + +Recognized for its excellence, Peak Ace has received multiple awards, including SEO Agency of the Year and Multi-Territory Agency of the Year at the 2023 European Agency Awards. The agency serves a diverse portfolio of over 200 clients, including well-known brands like Airbnb and TUI. With a focus on maximizing efficiency and performance, Peak Ace supports full-funnel campaigns that help companies expand internationally.",2007,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/677a40dbc3df9a0001606324/picture,My Media (mymedia.fr),54a1397069702d267a5d6800,"","","","","","","" +telegra GmbH,telegra,Cold,"",39,telecommunications,jan@pandaloop.de,http://www.telegra.com,http://www.linkedin.com/company/telegra,"","",125 Oskar-Jaeger-Strasse,Cologne,North Rhine-Westphalia,Germany,50825,"125 Oskar-Jaeger-Strasse, Cologne, North Rhine-Westphalia, Germany, 50825","performance dashboards, api integration, deutsche cloud-telefonie, telefonie in deutschland, routing-systeme, cloud-telefonie, crm-integration, ms teams connect, customer satisfaction surveys, multilingual support, integrated telephony system, german server hosting, kundenzufriedenheit, ki-basierte gesprächsauswertung, individuelle wallboards, machine learning, cloudbasierte callcenter-software, api-integration, ms teams integration, ai voicebot, user-friendly interface, multi-channel-kommunikation, crm plugins, warteschlangen, call scripting, outbound callcenter, performance monitoring, telecommunications, voicebot, kundenbindung, modular callcenter solutions, dsgvo-konforme sprachanalyse, multi-channel routing, call recording, agentenmanagement, call management, automated call distribution, automatische anrufverteilung, kampagnenmanagement, services, kundenservice, agenten-performance, customer communication, german data hosting, cloud-based callcenter software, cloud hosting, routing options, scalable licenses, information technology and services, softphone, inbound callcenter, dsgvo-konform, ki-gestützte spracherkennung, customer service, datenschutz in deutschland, multichannel support, echtzeit kpi überwachung, automatisierte anliegen-erkennung, rufnummern & routing, b2b, callcenter-optimierung, consulting, echtzeit-statistiken, agent management, cloud-based software, voicebot ohne programmierung, telefonanlagen-integration, cost-effective solutions, sprachanalyse, real-time analytics, voice analysis, self-service ivr, callcenter mit helpdesk-integration, call escalation, helpdesk plugins, distribution, artificial intelligence, information technology & services, cloud computing, enterprise software, enterprises, computer software",'+49 80 01004080,"Cloudflare DNS, Outlook, Microsoft Office 365, Amazon SES, MailJet, Hubspot, Slack, Atlassian Cloud, Google Tag Manager, Hotjar, Mobile Friendly, Apache, WordPress.org, Bing Ads, Shutterstock, Avaya","","","","","","",69c281821cba2c0001f0f516,7375,517,"Sie haben erkannt, dass überzeugender Kundenservice der entscheidende Faktor im Wettbewerb sein kann? Unsere Lösungen helfen dabei. + +Mittlerweile gehört weit mehr dazu, als über eine Rufnummer und E-Mail-Adresse erreichbar zu sein. Die Kontaktmöglichkeiten sind vielfältiger geworden und somit auch die Kanäle, über die Sie mit Ihren Kunden kommunizieren. Alles miteinander zu verbinden und auf einen Nenner zu bringen, ist die Kunst der professionellen Kundenkommunikation. + +So schauen auch wir über den Tellerrand der Telefonie und bieten Dialogsysteme, PlugIns für Drittsysteme, sowie Schnittstellen und APIs, die dafür sorgen, dass Plattformen miteinander verbunden, und Daten ausgetauscht werden. Wir arbeiten mit ausgewählten Partnern zusammen, die genau die gleichen Ziele anstreben: Ihren Kundendialog auf ein Level zu heben, in welchem Sie von effektiven Prozessen profitieren und Ihre Kunden einfach glücklich sind.",1997,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66dbcde86ee8290001377a68/picture,"","","","","","","","","" +zenloop,zenloop,Cold,"",15,information technology & services,jan@pandaloop.de,http://www.zenloop.com,http://www.linkedin.com/company/zenloop,https://facebook.com/zenloop/,https://twitter.com/zenloop_com,58 Habersaathstrasse,Berlin,Berlin,Germany,10115,"58 Habersaathstrasse, Berlin, Berlin, Germany, 10115","cem, customer experience management, customerexperience, netpromoterscore, saas, cx, nps, survey tool, net promoter score data surveys, feedback management, customer listening, customer success, user experience, net promoter score data amp surveys, ecommerce, product management, cxm, customer satisfaction, voice of customer, action management, csat, survey generation, artificial intelligence, global, surveys, enterprise software, software, information technology, technology, information & internet, customer feedback reporting, customer feedback loop automation, process improvement, actionable insights, customer journey analytics, customer sentiment detection, real-time customer feedback, customer feedback enrichment, customer satisfaction metrics, customer-centric culture, customer segmentation, customer advocacy, customer feedback automation, customer feedback system, customer feedback analysis, customer feedback segmentation, customer experience ai, feedback clustering, churn prevention, customer journey feedback, customer feedback insights dashboard, customer feedback ai solutions, customer feedback ai dashboard, customer feedback software, services, customer feedback insights, customer experience analytics, customer feedback ai platform, customer churn prevention, customer retention strategies, energy, customer feedback clustering, customer feedback ai analytics, ai-driven feedback analysis, internet services, customer journey mapping, customer feedback dashboard, customer feedback ai reports, feedback loop, customer experience optimization, multi-channel surveys, ai-powered surveys, customer recovery, customer feedback ai management, customer feedback management, feedback automation, multi-channel customer surveys, customer engagement, customer feedback management system, customer loyalty programs, customer feedback tools, management consulting services, customer feedback automation rules, customer loyalty, customer feedback analysis tools, customer satisfaction improvement, customer retention, customer advocacy management, customer feedback solutions, customer insights, nps measurement, customer feedback platform, customer feedback ai system, sentiment analysis, net promoter score, retail, customer data enrichment, customer feedback actionable insights, customer journey, customer feedback loop, d2c, real-time reporting, ai customer feedback analysis, financial services, e-commerce, customer advocacy programs, customer feedback ai tools, customer feedback collection, b2b, customer satisfaction ai, customer feedback analytics, finance, computer software, information technology & services, ux, consumer internet, consumers, internet, enterprises",'+49 30 30808000,"Route 53, Sendgrid, Gmail, Google Apps, Microsoft Office 365, Mixpanel, Ember JS Library, Atlassian Cloud, Slack, Salesforce, Remote",12710000,Merger / Acquisition,0,2023-03-01,1500000,"",69c281821cba2c0001f0f51e,7375,54161,"Zenloop is a Berlin-based Software-as-a-Service (SaaS) company founded in 2016. It specializes in an integrated experience management platform that leverages AI to collect, analyze, and act on customer feedback across various channels. The company is headquartered in Berlin and employs around 60 people, generating approximately $12.6 million in revenue. In April 2023, Zenloop was acquired by saas.group, which allows it to focus on strategy and innovation. + +The core platform automates feedback collection through channels like email and SMS, using AI to analyze data and derive actionable insights. Key features include multi-channel surveys, AI-powered analysis, and automated rules for customer engagement. Zenloop serves industries such as retail, internet services, financial services, and energy, helping clients improve customer experience, maximize customer lifetime value, and enhance return on investment. The platform has processed over 700 million feedback responses, demonstrating its impact on customer satisfaction and loyalty.",2018,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/695b832a1ee83200011615ff/picture,saas.group (saas.group),5e56f3ce20e7010001bda6e5,"","","","","","","" +INCONSULT GmbH,INCONSULT,Cold,"",68,management consulting,jan@pandaloop.de,http://www.inconsult-online.de,http://www.linkedin.com/company/inconsult-gmbh,"","",31 Philosophenweg,Duisburg,North Rhine-Westphalia,Germany,47051,"31 Philosophenweg, Duisburg, North Rhine-Westphalia, Germany, 47051","research development, ai development, structured content management, manufacturing, documentmanagement, consulting for life science industries, compliance validation consultance, qualitymanagement, business consulting & services, medical devices, medical device software, pharmaceuticals, author-it docuvera, consulting, laboratory information management systems, cloud solutions, b2b, change management, enterprise resource planning, automation, data integrity, system integration, artificial intelligence & machine learning, computer systems design and related services, risk management, life sciences, manufacturing execution systems, process optimization, biotechnology, system consulting, gxp compliance, pharmaceutical it, it consulting, it service management, data analytics, validation documentation, digital transformation, opentext documentum, generis cara, pas-x manufacturing execution, data management, system validation, process automation, data security, regulated industries, life sciences it, enterprise content management, veeva vault, business process management, regulatory compliance, services, workflow automation, compliance & validation, quality management, validation services, application lifecycle management, quanos schema st4, process industry, regulatory affairs, healthcare, mechanical or industrial engineering, management consulting, hospital & health care, medical, cloud computing, enterprise software, enterprises, computer software, information technology & services, computer & network security, health care, health, wellness & fitness",'+49 203 410680,"Outlook, Shutterstock, Google Tag Manager, Bootstrap Framework, Mobile Friendly, Sisense, Domo, KNIME, AI, AWS Trusted Advisor, Microsoft Azure Monitor, Google Cloud Platform","","","","","","",69c281821cba2c0001f0f529,8731,54151,"INCONSULT GmbH is a German IT service provider based in Duisburg, Nordrhein-Westfalen. With over 20 years of experience, the company specializes in consulting, implementation, and support for information management systems, particularly in high-compliance sectors like Life Sciences and process industries. INCONSULT serves clients across Germany, Austria, and Switzerland, focusing on flexibility, calculable costs, and customer satisfaction. + +The company offers a range of specialized IT services, including Enterprise Content Management, Structured Content Management, Enterprise Quality Management, and Manufacturing Execution Systems. INCONSULT also provides consulting, implementation, compliance and validation services, as well as support and AI Labs. With a dedicated team of around 91 employees, INCONSULT aims to help clients maximize the value of their IT investments through expert guidance and innovative solutions.",2002,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e628afa31ee800018d7dda/picture,"","","","","","","","","" +Axiros,Axiros,Cold,"",150,information technology & services,jan@pandaloop.de,http://www.axiros.com,http://www.linkedin.com/company/axiros,https://facebook.com/axiros,https://twitter.com/axiros1,12 Schorner Strasse,Baierbrunn,Bavaria,Germany,82065,"12 Schorner Strasse, Baierbrunn, Bavaria, Germany, 82065","broadband, telecommunications, tr369, technology, innovation, iot, m2m, tr069, customer experience management, wifi optimization, qosqoe, open device management, qoe, usp, wireless, dhcp, smart home, docsis, predictive maintenance, software development, utilities, protocol support, multi-tenant architecture, regulatory compliance, b2b, device protocols (snmp, dhcp), smart iot automation, usp rust-based toolkit, proactive maintenance, proactive network maintenance (pnm), edge device management, device lifecycle automation, internet of things (iot), user experience, managed services, cloud and on-premises deployment, mobile software sdk, network performance analytics, service assurance, iot protocols (zigbee, zwave, mqtt), carrier grade dhcp/ipam, service automation, services, network security, data analytics algorithms, real-time data processing, device management, computer systems design and related services, vendor-independent management, cloud services, regulatory compliance monitoring, open source usp (rusp), wifi troubleshooting & diagnostics, data analytics, data collection & reporting, iot management, tr-369 / usp, energy management, qoe monitoring, multi-vendor device support, device compatibility, docsis network monitoring, network troubleshooting, carrier-grade dhcp & ipam, network monitoring, iot environment management, consulting, tr-069, network orchestration, distribution, internet of things, consumers, information technology & services, ux, cloud computing, enterprise software, enterprises, computer software, oil & energy",'+49 810 28065512,"CloudFlare CDN, MailChimp SPF, Microsoft Office 365, CloudFlare Hosting, Jira, Atlassian Confluence, React Redux, Python, Slack, Typekit, Google Tag Manager, DoubleClick Conversion, DoubleClick, Mobile Friendly, Vimeo, Google Dynamic Remarketing, Bootstrap Framework, YouTube, Linkedin Marketing Solutions, Ruby On Rails, Squarespace ECommerce, Django, IoT","","","","",12500000,"",69c281821cba2c0001f0f514,7375,54151,"Axiros is a German software company founded in 2002, based in Hoehenkirchen, with a development center in Munich. The company specializes in open, carrier-grade device and service management solutions tailored for telecommunications, utilities, and related industries. With over 400 customers worldwide, including more than 230 service providers and equipment manufacturers, Axiros has been profitable and self-financed since its inception. + +The company offers customizable, standards-based software for managing the full lifecycle of devices and services across various networks. Key offerings include the AX Platform for device management, which automates provisioning, monitoring, and diagnostics, as well as solutions for service delivery and customer experience management. Axiros also provides mobile diagnostics software, data analytics, and APIs for seamless integration with third-party ecosystems. With a focus on scalable automation and future-proof solutions, Axiros supports global service providers in navigating the complexities of IoT and home networking.",2002,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69adbbb66138a60001330474/picture,"","","","","","","","","" +Bechtle Network & Security Solutions GmbH,Bechtle Network & Security Solutions,Cold,"",110,information technology & services,jan@pandaloop.de,http://www.bechtle-network.com,http://www.linkedin.com/company/bechtle-network-security-solutions-gmbh,"","","",Unterschleissheim,Bavaria,Germany,"","Unterschleissheim, Bavaria, Germany","it services & it consulting, netzwerkarchitektur, ot-security, energieeffizienz datacenter, iot-lösungen, cybersecurity, netzwerksicherheit, it-management, multi-cloud, it-lösungen, asset-kategorisierung, security and surveillance equipment manufacturing, sase, incident response, lifecycle management, government, datacenter, security assessments, vernetzung, verschlüsselungstechnologien, site surveys wlan/dect, consulting, computer and electronic product manufacturing, it-security, professional services, darkweb threat intelligence, firewall, cisco cx & lifecycle management, iso 27001, zero-trust, it-implementierung, computer systems design and related services, b2b, cloud security, collaboration, threat detection, sd-wan, support services, managed services, sicherheitslösungen, it-beratung, information technology and services, it consulting, it-infrastruktur, services, automatisierung, security incident management, hybrid cloud, lifecycle services, sse, securityscorecard, distribution, information technology & services, professional training & coaching, management consulting",'+49 89 14727640,"Microsoft Office 365, Outlook, Eloqua, Slack, Oracle Cloud, Microsoft Sharepoint, Sophos, SuccessFactors (SAP), Salesforce, Google Tag Manager, Qualtrics, Mobile Friendly, Vimeo","","","","","","",69c281821cba2c0001f0f524,7379,54151,"Bechtle Network & Security Solutions GmbH is a specialist provider of high-end network and security solutions, operating within the Bechtle Group. Headquartered in Munich, with additional locations in Ettlingen and Cologne, the company serves customers across Germany and the DACH region. It employs over 120 specialists and is ISO 27001 certified, ensuring high security standards for IT infrastructure. + +The company offers a wide range of services, including network solutions, security solutions, operational technology and IoT solutions, datacenter solutions, and collaboration tools. Their services encompass consulting, implementation, and maintenance, supported by a team of experienced professionals. Bechtle Network & Security Solutions collaborates with leading technology partners such as Cisco, Fortinet, and Nvidia to deliver comprehensive IT solutions. With over 800 international customers, the company supports various sectors, including SMEs, large enterprises, and the public sector.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e9330615871a00019bc57c/picture,Bechtle Switzerland,5ee08d68cc44d9008ca45e1b,"","","","","","","" +BPV Enterprise Group,BPV Enterprise Group,Cold,"",76,information technology & services,jan@pandaloop.de,http://www.bpvgroup.com,http://www.linkedin.com/company/bpvgruppe,"","",3 Heinrich-Hertz-Strasse,Unna,North Rhine-Westphalia,Germany,59423,"3 Heinrich-Hertz-Strasse, Unna, North Rhine-Westphalia, Germany, 59423","telecommunications, cloud, hosting, managed services, managed conferences, webcasts, carrier management, expense management, telekommunikation, hardwaremanagement, vertragsmanagement, it services & it consulting, netzwerkmanagement, it-beratung, it-sicherheitsmanagement, support management, managed lifecycle, unified endpoint management, it consulting, carrier contract support, it-services, telekommunikationsmanagement, lifecycle management, cost control, sustainable it practices, logistics, kostenoptimierung, it-infrastruktur, security management, itk-lösungen, zero-touch deployment, device configuration, datenschutzkonformität, network optimization, endgeräteverwaltung, mobile device security, distribution, vertragsverwaltung, device lifecycle, remote device management, contract management, support services, geräteintegration, computer systems design and related services, services, carrier support, automatisierte gerätebereitstellung, reparaturservice, managed contract analysis, hardware recycling, uem, telekommunikationssupport, automated device enrollment, cloud-based management, mobilfunkmanagement, managed deployment, cloud management, device management, it support, dsgvo-konforme datenlöschung, device lifecycle automation, hardware lifecycle extension, telecom contract management, b2b, information technology and services, mobility solutions, device-management, internetlösungen, data privacy, consulting, transportation & logistics, information technology & services, management consulting, cloud computing, enterprise software, enterprises, computer software",'+49 69 710486930,"Outlook, Microsoft Office 365, Apache, Google Tag Manager, WordPress.org, Mobile Friendly, reCAPTCHA, Linkedin Marketing Solutions, Facebook Login (Connect), Google Analytics, Facebook Custom Audiences, Facebook Widget, CampaignMonitor, Ubuntu, Nginx, Phoenix, Android","","","","","","",69c2817e8ca7dd0001bddf07,7375,54151,Die BPV Unternehmensgruppe gestaltet für Unternehmen unterschiedlicher Größe und Branchenzugehörigkeit zukunftsorientierte Infrastrukturen für den mobilen Arbeitsplatz. #Vertrauen #Freiheit #Effizienz,2013,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/680f1d312460a100012c1bc1/picture,"","","","","","","","","" +Agentur Gerhard - Digitalagentur,Agentur Gerhard,Cold,"",12,marketing & advertising,jan@pandaloop.de,http://www.agentur-gerhard.de,http://www.linkedin.com/company/agentur-gerhard,"","",18 Albrechtstrasse,Berlin,Berlin,Germany,10117,"18 Albrechtstrasse, Berlin, Berlin, Germany, 10117","social media, digitale transformation, business und marketing performance, content marketing, digitalstrategie, performance marketing, advertising services, digital business innovation, digital content strategy, online customer acquisition, social media strategy, customer engagement, digital brand building, digital sales channels, strategieberatung, digital market entry strategies, marketing and advertising, performance data analysis, e-commerce, management consulting services, content creation, marketing analytics, market insights, performance optimization, social media content creation, digital marketing, digital campaigns, social media marketing, digital customer loyalty, b2b, consulting, business model innovation, digital transformation, social media management, digital ecosystem, market research, services, information technology and services, digital brand marketing, digital business model development, data analytics, digital customer journey, retail, consumer internet, consumers, internet, information technology & services, marketing & advertising",'+49 30 609839610,"Gmail, Google Apps, Facebook Login (Connect), WordPress.org, Google Font API, Google Tag Manager, Facebook Custom Audiences, Facebook Widget, reCAPTCHA, Google Maps, Google Analytics, Apache, Mobile Friendly, Linkedin Marketing Solutions, Remote, AI","","","","","","",69c2817e8ca7dd0001bddf12,7375,54161,"Agentur Gerhard ist eine Boutique-Agentur für Digitalstrategie. +Wir helfen Unternehmen, ihre Digitale Transformation zu meistern. +https://www.agentur-gerhard.de/ + +>> Wer wir sind +Unsere Mission ist es, die Digitale Transformation unserer Kunden zur Erfolgsgeschichte zu machen. Unser Team besteht aus Spezialisten aus den Bereichen Strategie, Performance & Data, Content Marketing und Social Media. + +>> Was wir machen +Wir entwickeln Digitalstrategien. +Sie helfen unseren Kunden, die effektivsten Stellschrauben zu erkennen, um ihre Digitale Transformation voranzubringen. + +Wir erwecken Digitalstrategien zum Leben. +Wir übernehmen die operative Umsetzung, begleiten Projekte und sorgen damit für Traktion und das Erreichen der Ziele. + +>> Sie wollen mit uns arbeiten? +Schreiben Sie uns einfach eine Nachricht an office@agentur-gerhard.de +https://www.agentur-gerhard.de/",2012,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6715a92c5c951900012b7aa6/picture,"","","","","","","","","" +Axians Cosmotel GmbH ehem. cosmotel IT GmbH,Axians Cosmotel GmbH ehem. cosmotel IT,Cold,"",11,telecommunications,jan@pandaloop.de,http://www.cosmotel.de,http://www.linkedin.com/company/cosmotel-it,https://www.facebook.com/Cosmotel/,"",17 Weikenrott,Hamminkeln,North Rhine-Westphalia,Germany,46499,"17 Weikenrott, Hamminkeln, North Rhine-Westphalia, Germany, 46499","part of fernao, alerting, alcatellucent, httpswwwfernaocomde, sip, ved it, part of fernao & httpswwwfernaocomde, cloud communication, networking, fortinet, vinci energies, ms teams, c4b, new voice, healthcare, digital security, pentesting, isms, axians, cyber security, it-consulting, kommunikationslösungen, unified communications, netzwerk-redundanz, b2b, it-support, vaf bundesverband, telecommunications, information technology and services, computer systems design and related services, it-beratung, kritische ict-infrastrukturen, hybrid cloud telefonanlagen, ip-infrastrukturen, cloud & data center, it-infrastruktur für öffentliche verwaltung, healthcare it, it-security im gesundheitswesen, it-installation, 24h-service, alarmierungstechnologien, kundenindividuelle it-lösungen, services, netzwerk- und telekommunikationsinfrastruktur, netzwerkoptimierung, netzwerkmanagement, telekommunikations-backup-lösungen, it-infrastruktur, call center lösungen, healthtech, it-sicherheitsberatung, consulting, it-sicherheitsmonitoring, it-wartung, it-sicherheitszertifizierte fachkräfte, government, it-notfallmanagement, managed services, sicherheits- und notrufsysteme, alarmierung mit schnittstellen, it-security, telekommunikation, it-sicherheitszertifikate, alarmierungssysteme, it-service, netzwerkinfrastruktur, cybersecurity, business partner alcatel-lucent, it-management, automatisierte alarmierungssysteme, health care, health, wellness & fitness, hospital & health care, computer & network security, information technology & services",'+49 28 5296970,"Outlook, Microsoft Office 365, Google Tag Manager, YouTube, reCAPTCHA, Hubspot, Apache, Mobile Friendly, Remote","","","","","","",69c2817e8ca7dd0001bddf04,7375,54151,Telecommunications - Digital Security - Networks - Healthcare IT,1996,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/687b59976739590001f681f3/picture,"","","","","","","","","" +Demodesk,Demodesk,Cold,"",19,information technology & services,jan@pandaloop.de,http://www.demodesk.com,http://www.linkedin.com/company/demodesk,https://www.facebook.com/demodeskcom/,https://twitter.com/demodesk,8 Isartorplatz,Munich,Bavaria,Germany,80331,"8 Isartorplatz, Munich, Bavaria, Germany, 80331","ai sales coach, sales meetings, software demos, sales analytics, sales enablement, screen sharing, saas, video conferencing, onboarding, cloud software, web conferencing, website sharing, remote sales, cobrowsing, scheduling, conversation analytics, software sales, sales intelligence, call analytics, ai meeting assistant, sales performance, lead routing, ai agents, software development, api integration, ai sales enablement tools, sales automation tools, gdpr compliant sales platform, sales performance analytics, ai-powered sales coaching on autopilot, ai-driven insights, ai summaries, browser-based demo platform, crm automation, browser-based platform, deal insights, automated crm updates, pipeline management, proactive sales insights, sales pipeline insights, vertical ai for sales, enterprise-grade security for sales data, automated crm filling, sales team scaling, ai sales performance management, customer engagement, ai deal risk detection, call recording, enterprise security, customer feedback collection, sales automation, multi-language call transcription, automated follow-ups, workflow automation, data security, meeting automation, automated note-taking, sales workflow automation, customer interactions, automated sales call summaries, sales workflow streamlining, multi-language support, software & technology, ai sales agents, customer retention tools, ai-powered sales insights, integrations with slack, outlook, google calendar, real-time sales analytics, voip integration, sales performance dashboards, automated data capture, financial services, sales analytics dashboard, automated follow-up emails, conversation analysis, personalized sales coaching, interactive demos, sales coaching, secure video meetings, ai-driven sales process optimization, meeting scheduling, sales process optimization, services, ai-powered sales coaching, product feedback analysis, lead qualification automation, call transcription, customer success management, ai-driven customer feedback analysis, enterprise compliance, automated deal risk detection, sales productivity, interactive product demos, virtual meeting platform, virtual sales assistant, cloud-based software, automated meeting routing, automated scheduling, real-time coaching, ai-driven sales workflows, customer retention, b2b, computer systems design and related services, integrations with crm, gdpr compliance, automated customer onboarding, autonomous sales agents, natural language processing, ai sales coaching, video meetings, scheduling automation, process automation, crm integration, ai assistant, meeting summaries, sales insights, coaching feedback, user-friendly design, security compliance, interactive screen sharing, virtual selling, meeting analytics, no-show reduction, sales methodology, sales training, lead management, team collaboration, time management, self-service scheduling, performance tracking, workforce optimization, client onboarding, automated documentation, time savings, meeting preparation, sales playbooks, data analytics, user adoption, crm sync, customizable solutions, meeting metrics, engagement tools, revenue growth, sales pipeline management, finance, computer software, information technology & services, enterprise software, enterprises, computer & network security, artificial intelligence, sales",'+49 89 41209631,"Cloudflare DNS, MailJet, Gmail, Google Apps, Microsoft Office 365, CloudFlare Hosting, Outlook, Amazon AWS, Kubernetes, VueJS, CloudFlare, React, Webflow, Salesforce, Hubspot, Slack, Hotjar, FullStory, Segment.io, Mobile Friendly, Typekit, Google Dynamic Remarketing, Intercom, Google Tag Manager, DoubleClick, DoubleClick Conversion, Stripe, Remote, AI, Ruby On Rails, TypeScript",10580000,Series A,8000000,2020-09-01,5200000,"",69c2817e8ca7dd0001bddf09,7375,54151,"Demodesk is a Munich-based software company founded in 2018, specializing in an AI-powered sales platform designed for B2B teams. The platform automates administrative tasks, provides real-time coaching, and enhances virtual sales meetings. Initially, Demodesk created a virtual meeting platform tailored for sales, focusing on seamless screen sharing and collaborative demos. It has since evolved to include AI sales agents that automate CRM updates, draft follow-ups, analyze conversations, and forecast pipelines. + +Demodesk's core offering combines virtual meeting tools with intelligent agents for comprehensive sales support. Key features include customizable virtual meetings, an AI sales assistant for CRM hygiene, an AI sales analyst for real-time insights, and an AI sales coach that provides instant feedback during meetings. The platform supports multilingual teams and integrates with popular CRMs like Salesforce and HubSpot. Pricing starts at $29 per user per month, making it accessible for fast-growing B2B sales teams across various sectors, including consulting, energy, and technology.",2018,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69aa82b9989769000151d9f4/picture,"","","","","","","","","" +PERFORMANCE ONE,PERFORMANCE ONE,Cold,"",52,marketing & advertising,jan@pandaloop.de,http://www.performance.one,http://www.linkedin.com/company/performanceone,https://www.facebook.com/performanceonemannheim,https://twitter.com/performanceone_,35 S6,Mannheim,Baden-Wuerttemberg,Germany,68161,"35 S6, Mannheim, Baden-Wuerttemberg, Germany, 68161","web analytics, digitalstrategie, google ads, mobile marketing, customer experience, website consultation, brand refresh, amazon advertising, affiliate marketing, digital marketing, sem, brand experience audit, paid search, social media advertising, crm, digitales marketing, ecommerce, social media marketing, usability optimierung, email marketing, redesign, brand tracking monitoring, brand strategy, search engine advertising, paid social, video advertising, rebranding, retargeting, display advertising, consulting, projektmanagement, brand launch, performance marketing, marketing automation, seo, advertising services, digital marketing and advertising, customer journey, predictive analytics, predictive customer insights, business intelligence, ai-enhanced customer support, market analysis, influencer collaboration, paid media, smart data & analytics, data-driven decision making, customer retention strategies, omnichannel marketing, search engine optimization, chatbots, brand transformation, user generated content, services, digital transformation, ai-driven products, cross-channel marketing, automated campaign management, influencer marketing, computer systems design and related services, b2b solutions, outcome-based marketing, performance measurement, conversion optimization, ki-development, agile methodology, cloud solutions, data privacy compliance, customer insights, ux/ui design, content marketing, full-funnel strategy, retail, content personalization, digital solution provider, brand experience, trend analysis, data lake integration, information technology & services, web & social experience, tracking & analytics, b2b marketing, dashboard solutions, customer loyalty, innovation management, performance optimization, server-side tracking, real-time data, user engagement analytics, business intelligence software, meta conversion api, customer engagement, data-driven services, e-commerce solutions, data security, recruitment marketing, innovation, business intelligence software bignite, digital ecosystem development, data analytics and business intelligence, information technology and services, ai solutions, data management, data analytics, outcome measurement, outcome-oriented, ai development, e-commerce, b2b, disruptive products, ki-gestützte psychologische plattform couch:now, customer data platform, employer branding, digital strategy, marketing and advertising services, disruptive business models, content creation, software development, personalization, performance dashboards, real emotion marketing, big data, finance, distribution, marketing & advertising, sales, enterprise software, enterprises, computer software, consumer internet, consumers, internet, saas, search marketing, marketing, analytics, cloud computing, computer & network security, financial services",'+49 621 58679490,"Cloudflare DNS, Gmail, Google Apps, Microsoft Office 365, CloudFlare Hosting, Google Font API, Twitter Advertising, Manticore, Google Dynamic Remarketing, DoubleClick Conversion, Google Analytics, Nginx, Facebook Login (Connect), Google Tag Manager, Adform, Hotjar, Facebook Custom Audiences, Bing Ads, WordPress.org, Facebook Widget, DoubleClick, YouTube, Mobile Friendly, Linkedin Marketing Solutions, Webmail","","","","",3000000,"",69c2817e8ca7dd0001bddf10,7375,54151,"Performance One AG is a digital marketing agency based in Mannheim, Germany. The company specializes in AI-driven services that facilitate digital transformation in marketing and sales. With a team of 114 employees, Performance One operates through two main business units: Digital Services and Innovation Products. Their asset-light structure allows for agility and scalability in their operations. + +The agency offers a wide range of services, including strategy development, digital marketing, and data analytics. Their Digital Services are designed to help clients enhance their marketing and sales strategies. Key offerings include BIGNITE, a business intelligence software available as a SaaS model, and couch:now, a scalable B2C business model that supports their innovation initiatives. Performance One focuses on delivering data-driven solutions that connect their services and promote a scalable business model.",2009,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68426b1b83a2250001be8f2d/picture,"","","","","","","","","" +netlogix GmbH & Co. KG,netlogix GmbH & Co. KG,Cold,"",77,information technology & services,jan@pandaloop.de,http://www.netlogix.de,http://www.linkedin.com/company/netlogix-nuernberg,https://www.facebook.com/netlogix.de/,https://twitter.com/netlogix_de,10 Neuwieder Strasse,Nuremberg,Bavaria,Germany,90411,"10 Neuwieder Strasse, Nuremberg, Bavaria, Germany, 90411","it services & it consulting, it system monitoring, workplace modernization, cloud security frameworks, cloud infrastructure automation, cloud architecture design, it-beratung, web applications, it project management, services, webplattformen, it security consulting, multi-tenant cloud projects, it infrastructure, consulting, hybrid cloud solutions, it support, it security audits, cloud migration, azure cloud migration, netzwerk & security, it deployment, webentwicklung, active directory, identity management, information technology and services, cloud-architektur, web platform development, it service automation, projektmanagement, it automation, it solutions, microsoft solutions, it support services, it-support, devops, it system hardening, it training, devops automation, government, it-projekte, it infrastructure support, zero trust security, it process optimization, it-training, microsoft 365, modern workplace solutions, it support & maintenance, web development, it-dienstleister, it consulting, digital transformation, cloud architecture, b2b, network & security, cloud solutions, computer systems design and related services, it-partner, it strategy, it training programs, it-services, it-security, it system integration, cloud computing, biometric authentication, cloud native platforms, it management, azure automation, cloud-services, it-training center, it security, azure security, it consulting services, it optimization, it projects, software development, managed services, it service management, e-commerce, it-infrastruktur, it compliance solutions, education, information technology & services, privacy, management consulting, enterprise software, enterprises, computer software, computer & network security, consumer internet, consumers, internet",'+49 911 539909300,"Outlook, Microsoft Office 365, Nginx, reCAPTCHA, Linkedin Marketing Solutions, Mobile Friendly, Node.js, IoT, Remote, Android, Kubernetes, HELM, Docker, Azure Linux Virtual Machines, MySQL, MariaDB, PostgreSQL, Prometheus, Grafana, Grafana Loki, Terraform, Git, OpenStack, Ceph, KVM, Keycloak, Puppet, Ansible, VMware vSphere, VMware ESXi, VMware vCenter Server, VMware vCloud Director, VMware vSAN, VMware NSX, Veeam ONE, Jira, Confluence, NetBox, Salesforce CRM Analytics, Wider Planet, Micro, VMware NSX-T Data Center, Workplace by Facebook","","","","","","",69c2817e8ca7dd0001bddf00,7371,54151,"netlogix GmbH & Co. KG is a German IT service provider located in Nürnberg, with a branch in Schwandorf. The company specializes in IT services for complex infrastructures, offering a range of solutions including IT training, web development, cloud services, and digital platform development. With over 20 years of experience, netlogix is committed to providing personalized consulting and support, whether on-site or remotely. + +The company’s core competencies include IT security, internet-based services, and eLearning. Their IT services cover comprehensive support for networks, servers, and cloud infrastructures, while their training division offers courses in the computer sector. netlogix also develops websites and e-commerce solutions, focusing on platforms like Neos CMS and Shopware. They provide cloud-based solutions and hosting services, ensuring clients receive tailored IT strategies and ongoing operational support.",2000,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6821c6b0e3a83b000192dccc/picture,"","","","","","","","","" +10M GmbH,10M,Cold,"",12,information technology & services,jan@pandaloop.de,http://www.10m.de,http://www.linkedin.com/company/10mgmbh,https://www.facebook.com/10mGmbH/,"",28 Mayener Strasse,Bassenheim,Rhineland-Palatinate,Germany,56220,"28 Mayener Strasse, Bassenheim, Rhineland-Palatinate, Germany, 56220","it services & it consulting, ai deployment, workflow automation, data processing, ai integration, document management, ai in healthcare, software engineering, data recognition, data security, maßgeschneiderte software, cloud infrastructure, information technology & services, consulting, ai for customer support, artificial intelligence, information technology and services, ai-gestützte systeme, migration services, onpremise and cloud solutions, computer systems design and related services, projektmanagement, b2b, enterprise software, data extraction, image and video analysis, document recognition, ai for quality control, prozessoptimierung, project consulting, ai pilots, ai in customer service, software innovation, ai for document migration, process automation, dokumentenverarbeitung, digitale dokumente, natural language processing, ai for document classification, cloud solutions, custom software development, standardsoftware, ai for recruitment, software development, ai lösungen, ai document services, ai in finance, services, document digitization, system integration, speech recognition, healthcare, finance, computer & network security, enterprises, computer software, internet infrastructure, internet, cloud computing, health care, health, wellness & fitness, hospital & health care, financial services",'+49 26 25958998,"Outlook, Mobile Friendly, Apache, IoT, Remote","","","","","","",69c2817e8ca7dd0001bddf05,7375,54151,"Wir entwickeln individuelle Software-Lösungen und kombinieren dabei Startup-Feeling mit Enterprise-Erfahrung. 10M bringt modernste Software-Technologie in Ihr Unternehmen. Unser engagiertes Team begleitet Unternehmen partnerschaftlich bei der Optimierung von Abläufen mit neuen Technologien. + +Wir können Software! Unsere maßgeschneiderten Lösungen sind so individuell wie unsere Kunden. Bei uns gibt es keinen Code von der Stange. Konzeption und Umsetzung erfolgen mit unserem kompetenten Expertenteam. + +Wir sind Experten, wenn es um die Digitalisierung, Erkennung und Verarbeitung von Dokumenten geht. In der Kombination von ausgewählten Standard-Lösungen und unserem technischen Knowhow erstellen wir professionelle und revisionssichere Lösungen + +Impressum: https://10m.de/imprint",2007,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670a9dd6847f3b00012146a2/picture,"","","","","","","","","" +AVESKA | Sales Solutions GmbH,AVESKA,Cold,"",23,information technology & services,jan@pandaloop.de,http://www.aveska.de,http://www.linkedin.com/company/aveska-sales-solutions,"","",1 Am Zollstock,Friedrichsdorf,Hesse,Germany,61381,"1 Am Zollstock, Friedrichsdorf, Hesse, Germany, 61381","it sales data quality, services, customer relationship management, it partner channel development, sales appointment setting, crm software, sales force outsourcing, telemarketing campaigns, technology sales outsourcing, sales strategy development, sales conversion optimization, market research, it customer acquisition, vertriebsstrategie, sales communication tools, b2b telesales, sales process consulting, sales campaign management, it channel sales, vertriebsoptimierung, it product promotion, business development, sales training, it reseller support, it sales team training, sales team support, it sales analytics tools, information technology and services, business support services, kundenakquise, sales process automation, vertriebsmaßnahmen, call center services, sales reporting tools, sales automation software, it sales funnel management, customer profiling, sales activity monitoring, sales funnel optimization, telecommunications, kundenbindung, sales outreach automation, marketing and advertising, target audience analysis, customer engagement, sales performance metrics, it product lead generation, it sales support, customer data management, sales analytics, sales data analysis, sales lead nurturing, vertriebsnetzwerk, market penetration, vertriebsdienstleistungen, b2b outbound, sales growth, lead management tools, vertriebsprozess, outbound vertriebsunterstützung, vertriebsaktivitäten, it sales process enhancement, it sales lead qualification, digital marketing support, vertriebsberatung, sales pipeline management, sales reporting, vertriebsziele, vertriebsmanagement, consulting, it channel marketing strategies, lead generation, customer acquisition, it services, sales prospecting, managed it sales support, vertriebskennzahlen, leadgenerierung, customer segmentation, vertriebsmarketing, vertriebscoaching, lead qualification, adressqualifizierung, it vendor sales support, vertriebsnetz, b2b, it sales pipeline development, it sales campaign execution, crm integration, vertriebsperformance, targeted customer outreach, vertriebsorganisation, vertriebsplanung, vertriebsprojekte, it vertrieb, management consulting services, enterprise it sales, vertriebscontrolling, it market expansion, it channel marketing, it sales performance improvement, sales kpi tracking, vertriebsautomation, sales team training, vertriebsentwicklung, sales funnel tracking, distribution, crm, sales, enterprise software, enterprises, computer software, information technology & services, marketing & advertising",'+49 617 2388310,"Outlook, Microsoft Office 365, Typekit, Apache, Mobile Friendly","","","","","","",69c2817e8ca7dd0001bddf08,7389,54161,"AVESKA | Sales Solutions GmbH is a telesales agency based in Friedrichsdorf, Germany, founded in 2011. The company specializes in outbound sales support for IT companies and operates as a B2B service provider. It is owner-managed, with Simon Arnold serving as the managing director. + +AVESKA offers strategic IT telesales campaigns that include outbound telephony, new customer acquisition, lead generation, and customer potential analysis. The company focuses on creating customized contact generation strategies by experienced sales professionals to help clients expand their business networks.",2011,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e75bd63c58b30001611dd4/picture,"","","","","","","","","" +vacos GmbH,vacos,Cold,"",20,information technology & services,jan@pandaloop.de,http://www.vacos.de,http://www.linkedin.com/company/vacos-gmbh,"","",4 Leibnizstrasse,Nagold,Baden-Wuerttemberg,Germany,72202,"4 Leibnizstrasse, Nagold, Baden-Wuerttemberg, Germany, 72202","erp, software, zeiterfassung, it services & it consulting, information technology & services",'+49 745 28471610,"Google Tag Manager, Apache, Google Analytics, Mobile Friendly, WordPress.org, Android, Circle","","","","","","",69c2817e8ca7dd0001bddf14,"","","vacos GmbH is a German software company founded in 2002, based in Nagold, Baden-Württemberg. The company specializes in customized software solutions aimed at process optimization, particularly in the automotive, production, and Industry 4.0 sectors. With over 20 years of experience, vacos develops and distributes software and hardware that enhance efficiency, reduce costs, and ensure scalability for businesses. + +Key offerings from vacos include tailored ERP systems for optimizing business processes, a time-tracking solution called vacos.time for efficient recording of working hours, and vacos.diag, an intelligent diagnostic tool for quickly identifying and resolving errors. The company also provides specialized consulting and development for control systems and custom applications designed to meet specific client needs. Their services encompass consulting, development, and implementation, ensuring long-term value through precise and scalable solutions.",2002,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6715348fbdb33f0001f2afb9/picture,"","","","","","","","","" +Mittelstand-Digital Zentrum Saarbrücken,Mittelstand-Digital Zentrum Saarbrücken,Cold,"",12,research,jan@pandaloop.de,http://www.digitalzentrum-saarbruecken.de,http://www.linkedin.com/company/digitalzentrum-saar,https://www.facebook.com/Digitalzentrumsaarbruecken,"",50 Eschbergerweg,Saarbruecken,Saarland,Germany,66121,"50 Eschbergerweg, Saarbruecken, Saarland, Germany, 66121","ai in manual assembly, ai training, it security training, small and medium enterprises, management consulting services, change management, workshops, services, changemanagement, ai tools, digitalization projects, ai trainers, consulting, process automation, sustainable digital solutions, ai in robotics, ai in production, ai in process automation, b2b, manufacturing, information technology & services, data management, training, regulatory compliance, webinare, predictive maintenance, artificial intelligence, ai in manufacturing, kmu-unterstützung, cybersecurity workshops, self-assessment, demonstrator platform, low code, digital check, cybersecurity, it-sicherheit, customer relationship management, digital services, best practices, digitale transformation, ai-based quality control, ai in offer calculation, digitalisierung, neutrale beratung, predictive maintenance tools, digital software robots, business intelligence, energy efficiency, digital transformation, praxisnahe beratung, künstliche intelligenz, digital tools, virtual tour, cloud solutions, digital knowledge portal, mechanical or industrial engineering, crm, sales, enterprise software, enterprises, computer software, analytics, environmental services, renewables & environment, cloud computing",'+49 681 8578735,"Outlook, Microsoft Office 365, SendInBlue, DoubleClick, WordPress.org, Mobile Friendly, YouTube, Apache, reCAPTCHA, Google Tag Manager, Facebook Login (Connect), Remote","","","","","","",69c2817e8ca7dd0001bddf16,8748,54161,"Mittelstand-Digital Zentrum Saarbrücken is a regional center in Saarbrücken, Germany, focused on aiding small and medium-sized enterprises (SMEs) in their digital transformation. Funded by the German Federal Ministry for Economic Affairs and Climate Action, the center offers free, practical, and provider-neutral services as part of the national Mittelstand-Digital network. + +The center provides a structured approach to digitalization through four phases: raising awareness of digital opportunities, training to enhance competencies, and offering hands-on support for project implementation. Services include workshops, consultations, and demonstrations of technologies like AI and blockchain. Key focus areas encompass production and office digitalization, smart sensors, IT security, and sustainability. The center primarily serves SMEs in Saarland and surrounding regions, facilitating networking and knowledge exchange to support their digital journey.",2022,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670b760ecc2d4b000119e906/picture,"","","","","","","","","" +kkvision GmbH,kkvision,Cold,"",16,marketing & advertising,jan@pandaloop.de,http://www.kkvision.de,http://www.linkedin.com/company/kkvision-by-katharina-krug,"","","",Munich,Bavaria,Germany,"","Munich, Bavaria, Germany","advertising services, webdesign, dsgvo datenschutz, automatisierte marketingprozesse, datenschutzberatung, reporting & analytics, datenbankmodellierung, website migration, marketing automation tools, salesforce, e-mail marketing, marketing and advertising, datenmanagement, automatisierte lead-qualifizierung, website redesign, lead management, multi-channel marketing, consulting, api schnittstellenprogrammierung, b2b, data analytics, web- & branddesign, datenbanken, customer journey optimierung, schulungen & support, webseitenentwicklung, crm, e-commerce, sales automation, datenanalyse, cloud security beratung, services, datenbanken strukturieren, wordpress, api-programmierung, crm & erp management, hubspot, cms entwicklung, content-erstellung, webseitenoptimierung, lead generierung, sales & marketing synchronisation, crm & marketing schnittstellen, dsgvo-konforme crm-systeme, marketing automation, system integration, webdesign & entwicklung, prozessautomatisierung, crm beratung, api-integration für crm & erp, api schnittstellen, reporting, reporting-tools, systemintegration, automatisierte kampagnen, webseiten-redesign mit hubspot, webentwicklung, customer data platform, webseitenmigration, datenbanken aufräumen, automatisierte datenübertragung, software development, information technology and services, systemvernetzung, dsgvo-konformität, automatisierte kampagnensteuerung, computer systems design and related services, crm systempflege, webseiten-performance-optimierung, roi berechnung, customer journey, legal, marketing & advertising, web design, email marketing, sales, enterprise software, enterprises, computer software, information technology & services, consumer internet, consumers, internet, saas",'+49 89 69313370,"Outlook, CloudFlare Hosting, Hubspot, Mobile Friendly, Google Tag Manager, Android, AI, ","","","","","","",69c2817e8ca7dd0001bddf0b,7375,54151,"As an IT and marketing agency based in Munich, our mission is to provide the highest level of services in the areas of CRM management, system integration, marketing automation, data privacy, data science, reporting and web design. With our technical expertise, we keep an eye on both present and future developments and use this as a platform to develop optimal solutions for our clients from all over the world. We develop, we test, we implement. kkvision guides your way into the digital future. Our tools: HubSpot - Salesforce - Pardot - Salesforce Marketing Cloud - - Marketo - Microsoft Dynamics - Sendinblue - Pipedrive - Eloqua - Zoho","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670dfc63fbe93000016b02a4/picture,"","","","","","","","","" +exagon consulting & solutions GmbH,exagon consulting & solutions,Cold,"",50,information technology & services,jan@pandaloop.de,http://www.exagon.de,http://www.linkedin.com/company/exagon-consulting-&-solutions-gmbh,"","",5 Auf dem Seidenberg,Siegburg,North Rhine-Westphalia,Germany,53721,"5 Auf dem Seidenberg, Siegburg, North Rhine-Westphalia, Germany, 53721","requirements engineering, onlineseminare, uiux designs, web applications, prozessberatung, schnittstellenloesungen, consulting, business analyse, sap, exin agile scrum, application lifecycle management, content management services, digitale produkte services, inhouseseminare, software loesungen, custommade, app entwicklung, itil 4, application management, cx ux design, sap consulting, digitalberatung, praesenzseminare, digital touchpoints, process design, digital solutions, enterprise applications, service design, digital innovation, exagon academy, it services & it consulting, process optimization, ki expertise, information technology and services, data preparation, ai in supply chain, ai compliance, ai development, b2b, ki beratung, digital marketing, retail, ai in handwerk, ai governance, prototyping, ai monitoring, ai agents, ai für kmu, technology consulting, user experience design, business intelligence, data integration, automation, web development, ai pilotprojekte, digitale transformation, künstliche intelligenz, customer experience, ai in erp, api development, ai reifegrad test, ai strategy, services, computer systems design and related services, model development, artificial intelligence, custom software, digital transformation, innovation, process automation, automatisierung, scalability, d2c, data science, softwareentwicklung, digital consulting, ki im wissensmanagement, individuelle software, ai chatbots, e-commerce, machine learning, software development, data security, cloud integration, ai use cases, project management, business analysis, information technology & services, marketing & advertising, management consulting, analytics, enterprise software, enterprises, computer software, consumer internet, consumers, internet, computer & network security, productivity",'+49 1512 8074294,"Microsoft Office 365, Amazon AWS, Atlassian Cloud, Figma, Hubspot, Nginx, WordPress.org, Google Tag Manager, Mobile Friendly, Android, Remote, AWS Trusted Advisor, Microsoft Azure Monitor, Microsoft Entra ID, Microsoft Intune Enterprise Application Management, Microsoft Windows Server 2012, Red Hat Enterprise Linux Server, Microsoft 365, Azure Linux Virtual Machines","","","","","","",69c2817e8ca7dd0001bddf0f,7375,54151,"Seit 1994 unterstützen wir Menschen in Unternehmen dabei, ihre Arbeit effizienter und erfolgreicher zu gestalten. Indem wir es ihnen mit maßgeschneiderter Software ermöglichen, Daten und Informationen gezielt zu verarbeiten und daraus Erkenntnisse zu gewinnen, die für unternehmerische Entscheidungen – und damit für Erfolg und Wachstum – entscheidend sind. Als etabliertes Familienunternehmen stehen wir für hochwertige Softwareentwicklung und praxisnahe IT-Lösungen. Wir konzipieren und realisieren individuelle Anwendungen, die komplexe Geschäftsprozesse vereinfachen, Abläufe automatisieren und messbaren Mehrwert schaffen. Unser Ziel: Software, die nicht nur funktioniert, sondern Ihr Unternehmen nachhaltig voranbringt.",1994,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e931991e8fc30001f119d1/picture,"","","","","","","","","" +it.x informationssysteme gmbh,it.x informationssysteme,Cold,"",23,information technology & services,jan@pandaloop.de,http://www.itx.de,http://www.linkedin.com/company/it.x-informationssysteme-gmbh,https://de-de.facebook.com/itx.de/,"",39A Reichenaustrasse,Konstanz,Baden-Wuerttemberg,Germany,78467,"39A Reichenaustrasse, Konstanz, Baden-Wuerttemberg, Germany, 78467","hosting services, consulting, search engine optimization, cms, pim, responsive corporate websites, microsites landing pages, digital ebusiness strategies, mobile apps, google adwords, mam, online social media marketing, responsive amp corporate websites, webanalytics, microsites amp landing pages, digital amp ebusiness strategies, internetapplications, online amp social media marketing, media asset management, b2b, wordpress, digital experience portfolio, web portals, lego serious play workshops, information technology and services, software development, e-commerce solutions, digital transformation, digital marketing, web design, online terminvergabe, cloud solutions, content creation, enterprise platform, web applications, webinar training, content platforms, user experience, customer engagement, web content management, online marketing, customer journey mapping, seo, open source integration, social media management, product information management, multichannel publishing, data portability, api integration, digital solutions, app development, enterprise software, e-commerce, cross-platform development, ux/ui engineering, web development, smart digital solutions, content management, open source technologies, marketing automation, computer systems design and related services, it consulting, devops, devops services, compass workshops, sea, web analytics, services, responsive design, digital strategy, software publishing, education, information technology & services, search marketing, marketing, marketing & advertising, consumer internet, consumers, internet, cloud computing, enterprises, computer software, ux, apps, saas, management consulting",'+49 75 318927300,"Outlook, Microsoft Office 365, Hubspot, Nginx, Google Tag Manager, Mobile Friendly, Remote","","","","","","",69c2817e8ca7dd0001bddf13,7375,54151,"Since 1995 we are an owner-managed consulting and IT company with focus on e-business and digital technologies. Therefore we were one of the first enterprises in Germany with PIM applications for configurator systems and complex internet portals. + +Settled in Constance we work for businesses and organizations around the world. Our customers include companies such as SCHIESSER, the Melitta Group, Mercedes-Benz or Schindler elevators and escalators. + +We see ourselves as an IT full-service provider. In addition to consulting and implementation, a continuous user support and the operation of systems are an important part of our services. + +Smart Digital Solutions +Our claim Smart Digital Solutions satisfy the dynamic needs of our customers: Every day we focus on the substantial, reduce complexity and convert ideas into digital solutions. To be a reliable partner for strategic marketing decisions and operational implementations. + +We are open to innovations. We are digital.",1999,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6956096ae7c7e60001ba92af/picture,"","","","","","","","","" +performio GmbH,performio,Cold,"",32,information technology & services,jan@pandaloop.de,http://www.performio.de,http://www.linkedin.com/company/performio-gmbh,"","",7 An den Werften,Bruehl,North Rhine-Westphalia,Germany,50321,"7 An den Werften, Bruehl, North Rhine-Westphalia, Germany, 50321","it services & it consulting, it risk assessment, regulatory compliance (nis-2, dora, tisax), it consulting, it-architektur, it-services, it security, it network security, it-infrastruktur, it security audits, it-infrastruktur-management, iso/iec 27001:2022, it support, it security certifications, it-transformation, it identity management, security policy development, it data protection, it governance, reporting, computer systems design and related services, cloud-enablement, prozessoptimierung, it compliance standards, it-sicherheit, security monitoring tools, it endpoint security, it security frameworks, it incident management, it-systemhaus, it vulnerability scanning, it security standards, it network solutions, services, it monitoring, vulnerability management, it-beratung, security incident detection, security architecture design, it-operations, b2b, it enterprise solutions, consulting, security automation, it risk management, security awareness training, it-security, it-consulting, cybersecurity strategy, business intelligence, it resilience, cyber resilience, security incident response planning, cyber security, information technology and services, software, it automation, it compliance, it-support-services, it compliance audits, penetration testing, it system integration, data encryption, security patch management, it asset management, it incident response, cloud security, risk management frameworks, ot cybersecurity, business continuity management (bcm), it remote management, it endpoint protection, it-lösungen, it-strategie, iso 27001 certification, industrial cybersecurity, it security policies, customer experience, it-support, it certificate management, digitalisierung, cybersecurity solutions, it security solutions, it security best practices, cybersecurity audits, it-management, remote access security, it service delivery, it infrastructure, it-management-services, it user management, it-projekte, it service management, it digital transformation, it automation tools, cybersecurity, security operations center (soc), it operational excellence, asset management, it security monitoring, darknet monitoring, cloud services, it penetration testing, process optimization, it patch management, it-integration, iso 27001, it-optimierung, cyber threat intelligence, automatisierung, cloud computing, it modernization, security incident management, hardware, it-services-management, managed services, it threat detection, it disaster recovery, it solutions, freshworks partner, it project management, it infrastructure solutions, it security consulting, reporting solutions, information technology & services, management consulting, computer & network security, analytics, enterprise software, enterprises, computer software",'+49 6202 127100,"Outlook, WordPress.org, Shutterstock, Mobile Friendly, Apache","","","","","","",69c2817e8ca7dd0001bddf03,7375,54151,"performio GmbH is an IT systems house located in Brühl, Baden-Württemberg, Germany, providing customized IT solutions and services since 2010. The company specializes in digitalization, IT security, and managed services, establishing itself as Germany's largest Freshworks partner. In 2024, performio was recognized as the ""Services Partner of the Year EMEA"" by Freshworks and holds ISO/IEC 27001:2022 certification. + +The company offers a wide range of IT services, including the implementation and customization of Freshworks solutions like Freshservice and Freshdesk. They provide software and hardware solutions, IT security applications, and managed services. Additionally, performio supports clients with process optimization, reporting services, and IT service management systems. Notable clients include Der Europäische Hof Heidelberg, SPZ Service GmbH / Rohrdorfer, and the Löwenstein Gruppe, all benefiting from performio's expertise in IT services.",2007,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6821c21787250a000134356d/picture,"","","","","","","","","" +inno-focus digital gmbh,inno-focus digital,Cold,"",16,information technology & services,jan@pandaloop.de,http://www.inno-focus.com,http://www.linkedin.com/company/inno-focus-digital-gmbh,"","",45 Oranienburger Strasse,Berlin,Berlin,Germany,10117,"45 Oranienburger Strasse, Berlin, Berlin, Germany, 10117","industrie 40, digitization, iot, software, strategy, innovation management, iiot, it services & it consulting, predictive maintenance, process analysis, digitalization consulting, industry 4.0 solutions, industry 4.0 research projects, industry-specific iiot portals, machining data analysis, distributed open marketplace, cloud services, digital transformation, data protection, industry-specific software, production data visualization, manufacturing optimization, smart factory, organizational development, open innovation networks, custom software solutions, additive manufacturing data tracking, energy efficiency in manufacturing, open innovation, consulting, e-commerce, process digitization, digital ecosystems, research & development, manufacturing, data analytics, cyber security certification, digital twin software, project management support, digital marketplace for ai in production, cyber security, resource efficiency, project management, research projects, b2b, digital twin for composites industry, computer systems design and related services, smart software, production optimization, data visualization, organizational change, automation solutions, inline quality control, resource and energy optimization, industry 4.0, system integration, process optimization, energy & utilities, custom software development, services, iiot platforms, networked production, cross-company collaboration, digital twins, innovation culture, additive manufacturing data platform, smart software solutions, energy_utilities, information technology & services, cloud computing, enterprise software, enterprises, computer software, consumer internet, consumers, internet, mechanical or industrial engineering, computer & network security, productivity",'+49 30 20075780,"SendInBlue, Outlook, Apache, DoubleClick, Mobile Friendly, YouTube, WordPress.org","","","","","","",69c2817e8ca7dd0001bddf0e,3571,54151,"inno-focus develops smart consulting and software solutions for complex challenges. We simplify processes and increase the potential of our customers from industry, trade and research. We are the partner for digitization.",1997,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67089ff020eee1000151361c/picture,"","","","","","","","","" +INKUBIT - Microsoft AI & Business Applications Partner,INKUBIT,Cold,"",41,information technology & services,jan@pandaloop.de,http://www.inkubit.com,http://www.linkedin.com/company/inkubit,"","",21 Grosse Bleichen,Hamburg,Hamburg,Germany,20354,"21 Grosse Bleichen, Hamburg, Hamburg, Germany, 20354","office 365, application managed services, microsoft azure, d365 ce, microsoft dynamics 365, sap hcm, pmo, sap fsdp, ms dyn crm, microsoft development, microsoft dynamics ce, dynamics 365 talent, project management, frdp, analytics & reporting, customer engagement, customer intelligence, it freelancer, abap oo, hr management, microsoft powerapps, business intelligence, ms dyn, sap bw, fsdp, sap frdp, sap hana, microsoft dynamics 365 ats, sap afi, contracting, sap bo, sap bi, power bi, microsoft business applications, sap development, big data, abap, sap ba, it services & it consulting, quick start packages, standardimplementierung, non-profit, cloud solutions, microsoft copilot, business intelligence & analytics, healthcare it solutions, digital transformation, predictive analytics, data harmonization, customer relationship management, project management tools, power platform, consulting, enterprise data integration, artificial intelligence, ai & machine learning, automation, manufacturing, data analytics, analytics, healthcare, data security, workflow automation, data security & compliance, b2b, computer systems design and related services, production optimization, user experience, cloud computing, information technology and services, services, healthcare it, productivity, information technology & services, enterprise software, enterprises, computer software, nonprofit organization management, crm, sales, mechanical or industrial engineering, health care, health, wellness & fitness, hospital & health care, computer & network security, ux",'+49 40 822167490,"Outlook, Microsoft Office 365, Microsoft Dynamics 365 Marketing, WP Engine, Atlassian Cloud, Microsoft Power BI, Slack, Google Tag Manager, Mobile Friendly, WordPress.org, Linkedin Marketing Solutions, DoubleClick, Remote, Dynamics 365 CRM, , Microsoft Power Platform, PowerBI Tiles, Microsoft Azure Monitor, Microsoft Fabric, Microsoft Dynamics 365, F5 NGINX Ingress Controller, Microsoft Dynamics, Power BI Documenter, Azure Analysis Services, Azure Service Fabric","","","","","","",69c2817e8ca7dd0001bddf0a,7375,54151,"INKUBIT is an IT consulting firm based in Hamburg, Germany, specializing in digital transformation for small and medium-sized enterprises (SMEs) and larger companies in the D-A-CH region (Germany, Austria, Switzerland). Founded in 2015, the company employs around 46-50 people across locations in Hamburg, Vienna, and Gdansk. INKUBIT reported an annual revenue of $7 million in 2024 and is led by Managing Director Kai Gutzeit. The firm aims to be a leading Microsoft Cloud Solution Partner, focusing on strategic transformation, AI integration, and delivering measurable business value. + +INKUBIT offers a range of services throughout the application lifecycle, including consulting, implementation, maintenance, and optimization of Microsoft solutions. Key offerings include digital transformation consulting, AI-enabled process integration, cloud infrastructure provisioning via Microsoft Azure, and data analytics using tools like Microsoft Fabric. The company also develops custom solutions with the Microsoft Power Platform, enhancing business processes across various functions. INKUBIT emphasizes the importance of people, technology, and mindset in its operations, aiming to create long-term value for its clients.",2015,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/686b3e33130c550001948148/picture,"","","","","","","","","" +Ventum Consulting,Ventum Consulting,Cold,"",120,information technology & services,jan@pandaloop.de,http://www.ventum-consulting.com,http://www.linkedin.com/company/ventum-consulting,"","",23 Georg-Brauchle-Ring,Munich,Bavaria,Germany,80992,"23 Georg-Brauchle-Ring, Munich, Bavaria, Germany, 80992","it architecture, information security, release management, information management, it solutions, consulting, disaster resilience, it strategy, it services & it consulting, data infrastructure, ai in supply chain, risk management, data management, ai use case prioritization, financial services, ai in business process optimization, post merger integration, ai in financial services, project management, management consulting, ai enablement, ai in manufacturing, cloud solutions, manufacturing, data culture, b2b, ai scaling, ai in customer engagement, data-driven decisions, ai, data strategy, customer relationship management, system integration, predictive analytics, ai model optimization, ai governance, management consulting services, sustainable transformation, data analytics, digital transformation, ai in hr automation, generative ai, ai in risk management, ai compliance, ai technology selection, data security, data governance, ai in product design, ai assessment center, ai in regulatory compliance, ai implementation, supply chain and logistics, enterprise architecture, model-based systems engineering, user experience, cyber security, ai strategy, information technology and services, data quality, process automation, data-driven business, services, ai in fraud detection, ki use cases, finance, distribution, information architecture, information technology & services, computer & network security, it management, productivity, cloud computing, enterprise software, enterprises, computer software, mechanical or industrial engineering, crm, sales, ux",'+49 89 122219642,"Cloudflare DNS, Outlook, Microsoft Office 365, CloudFlare Hosting, WordPress.org, Google Plus, Nginx, Adobe Media Optimizer, Google Tag Manager, Etracker, Lucky Orange, YouTube, Mobile Friendly, Vimeo, Cedexis Radar, SAP Analytics Cloud, Remote, IoT, AI, Circle","","","","","","",69c2817e8ca7dd0001bddf01,8742,54161,"Ventum Consulting is an independent IT and business consulting firm based in Munich, Germany, founded in 2005. With over 170 employees from more than 20 nationalities, the company operates in five international locations and generates approximately $22.7 million in annual revenue. Ventum Consulting serves medium-sized companies and international corporations across Europe and beyond. + +The firm specializes in digitalization, networking, and agilization, offering a wide range of consulting services. These include digital transformation strategy, IT consulting and architecture, agile transformation, data and AI solutions, cybersecurity, organizational development, and technical training. Ventum Consulting emphasizes pragmatic, action-oriented consulting and values long-term client relationships, integrity, and sustainability. With offices in Munich, Vienna, and China, the company is well-positioned to support clients in accessing international markets.",2005,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6714fe33a2e1e600017b4309/picture,"","","","","","","","","" +Memotech GmbH,Memotech,Cold,"",47,information technology & services,jan@pandaloop.de,http://www.memotech.net,http://www.linkedin.com/company/memotech-gmbh,"","",1 Technikstrasse,Wermelskirchen,North Rhine-Westphalia,Germany,42929,"1 Technikstrasse, Wermelskirchen, North Rhine-Westphalia, Germany, 42929","it services & it consulting, information technology & services",'+49 2196 844200,"Outlook, Apache, DoubleClick, reCAPTCHA, Gravity Forms, Google Tag Manager, WordPress.org, Mobile Friendly, Remote, IoT, Android","","","","","","",69c2817e8ca7dd0001bddf11,"","","Memotech GmbH is an information technology and services company based out of Technikstraße 1, Wermelskirchen, Germany.",1991,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69076aaa107faf0001cf6c64/picture,"","","","","","","","","" +DigitalNewX GmbH,DigitalNewX,Cold,"",16,information technology & services,jan@pandaloop.de,http://www.digitalnewx.com,http://www.linkedin.com/company/digitalnewx,"","","",Strassberg,Baden-Wuerttemberg,Germany,72479,"Strassberg, Baden-Wuerttemberg, Germany, 72479","data monetization, data management, enterprise architecture management, data strategy, projektmanagement, organisationsmanagement, digitalisierung, consulting, data value, it services & it consulting, innovation, training & scaling, customer acquisition, prototyping, project management, data strategy & management, medtech digital solutions, training, software engineering, manufacturing, customer experience, b2b, ai development, platform development, market research, computer systems design and related services, ai, healthcare technology, digital service scaling, software development, consulting services, digital transformation, ai & data engineering, digital product design, process optimization, digital products & services, innovation in manufacturing, automotive, user experience, data analysis, agile transformation, information technology and services, ai & data strategy consulting, services, analytics, healthcare, information technology & services, productivity, mechanical or industrial engineering, management consulting, ux, data analytics, health care, health, wellness & fitness, hospital & health care","","Outlook, Microsoft Office 365, Apache, Mobile Friendly, WordPress.org, Google Tag Manager, Remote, Microsoft Office, Google Workspace","","","","","","",69c2817e8ca7dd0001bddf17,7375,54151,"DigitalNewX GmbH is a German IT services and consulting company founded in 2022 and located in Straßberg, Baden-Württemberg. The company specializes in guiding organizations through digital transformation by designing tailored digital products and services. With a team of approximately 16 employees, DigitalNewX focuses on delivering long-term value and innovation across various industries, including automotive, manufacturing, and med-tech. + +The company supports clients throughout the entire digital transformation process, from initial ideation and analysis to prototyping, implementation, and scaling of digital services. Key offerings include guidance on AI and data strategy, designing data governance and architectures, and embedding analytics pipelines to create AI-ready systems. DigitalNewX emphasizes the importance of leveraging technology to enhance people and processes, aiming to deliver measurable outcomes for its clients.",2022,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/683cbcf1940d9d0001b642bd/picture,"","","","","","","","","" +MMM Consulting GmbH,MMM Consulting,Cold,"",15,management consulting,jan@pandaloop.de,http://www.mmm-consulting.de,http://www.linkedin.com/company/mmm-consulting-gmbh,"","",38 Koethener Strasse,Berlin,Berlin,Germany,10963,"38 Koethener Strasse, Berlin, Berlin, Germany, 10963","multi channel marketing, kundensegmentierung, outsourcing, erfolgs wirkungsmessung, territory alignment, projektleitung, interim management, sales force excellence, digital transformation, prozessmanagement und optimierung, big data, datenvisualisierung, change management, erfolgs amp wirkungsmessung, merger aquisitions, business intelligence, changemanagement, event und kongressmanagement, veranstaltungsmanagement, szenario management, compliance, marktforschung, merger amp aquisitions, incentievierung, interimmanagement, business consulting & services, outcome tracking, operational efficiency, data integration, kpi definition, medical network visualization, management consulting, kpi monitoring, performance measurement, behavioral segmentation, targeting and segmentation, omnichannel strategy, data-driven marketing, b2b, customer insights, customer segmentation, market segmentation, market research, key opinion leader identification, scientific publication analysis, predictive analytics, management consulting services, operational support, network analysis, data analytics, strategic analysis, healthcare data analysis, ai tools, process optimization, machine learning, consulting, ai in pharma, psychological matching, customer journey, data mining, data visualization, pharmaceutical market trends, pharmaceutical marketing, data-driven customer access, strategic consulting, pharma consulting, ai and machine learning, consulting services, pharmaceuticals, services, healthcare, enterprise software, enterprises, computer software, information technology & services, analytics, artificial intelligence, medical, health care, health, wellness & fitness, hospital & health care",'+49 30 26398060,"Outlook, WordPress.org, Apache, Google Tag Manager, Vimeo, Nginx, Mobile Friendly, Remote","","","","","","",69c2817e8ca7dd0001bddeff,8731,54161,"MMM Consulting GmbH - Unternehmensberatung + +Mit drei Schwerpunkten im Einsatz: +– Consulting +– Business Intelligence +– Marketing und Vertrieb + +Unser wichtigster Meilenstein ist Ihr Erfolg. + +Die Welt dreht sich in Unternehmen immer schneller – und genau dafür gibt es uns. Wir helfen Ihnen, effektiv und effizient auf veränderte Anforderungen zu reagieren. Wir, das sind 15 Köpfe mit Persönlichkeit und fundiertem Fachwissen. Jeder von uns bringt einen anderen Hintergrund mit. Und das aus gutem Grund: +Denn so bekommen Sie für Ihren Bedarf genau den richtigen Ansprechpartner. +Wir kombinieren unsere Schwerpunkte aus den Bereichen Consulting, Business Intelligence, Marketing und Vertrieb. Diese Zusammenarbeit macht uns stark und bringt Ihnen optimale Lösungen als Resultat. Wir liefern frische Ideen, fundierte Analysen und gangbare Wege. Elementar sind dabei auch unsere Erfahrungswerte. +Zusammengerechnet schauen wir auf ein umfangreiches Branchen-Know-How von über 150 Jahren. +Unsere Kunden profitieren von unserem eingespielten Team. Seit 2010 lösen wir mit viel Herzblut und Disziplin die Herausforderungen von Marktführern des deutschen Mittelstands und internationaler Industrien. Anstelle von langen Power-Point-Präsentationen gehen wir lieber ins Gespräch und hören erst einmal zu. Denn ein gutes Verständnis für die individuelle Lage ist die Basis für jedes Gelingen. Wir sind mehr als gewöhnliche Unternehmensberater. Wir sind Feuerwehr und Tausendsassa. Wir sind Aufspürer und Großdenker. Wir sind Analytiker und Umsetzer. Vor allem aber sind wir eines: Die richtige Besatzung für Ihre Mission. + +Vertrauen Sie dem Happy End +– Wir begleiten Sie bei Veränderungen und neuen (IT-)Projekten +– Wir minimieren Risiken +– Wir zeigen neue Wege auf und +– Wir führen Projekte effizient und zuverlässig durch",2006,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/683c769f24b4900001f88ddc/picture,"","","","","","","","","" +Burda Digital Systems GmbH,Burda Digital,Cold,"",91,information technology & services,jan@pandaloop.de,http://www.burdasolutions.com,http://www.linkedin.com/company/burda-digital-systems-gmbh,http://www.facebook.com/HubertBurdaMedia,http://www.twitter.com/burda_news,Hubert-Burda-Platz,Offenburg,Baden-Wuerttemberg,Germany,77652,"Hubert-Burda-Platz, Offenburg, Baden-Wuerttemberg, Germany, 77652","erp, entwicklung, mobile applikationen, beratung, crm, business intelligence, itconsulting, itsupport, arbeitsplatzaustattung, it deployment, customer solutions, it automation tools, it automation, it infrastructure management, information security and data management, hybrid cloud deployment, computer systems design and related services, it consulting, it support, it monitoring, energy & utilities, it service automation, hybrid cloud, cloud computing and hosting, data security, information technology and services, it-infrastructure solutions, cloud hosting, b2b, it modernization, it architecture, network infrastructure, data management, cloud migration services, cloud solutions, it project management, it resilience, enterprise software, digital asset management, it infrastructure automation, cybersecurity, media and publishing, application lifecycle management, business solutions, cloud computing, cloud security, private cloud, network security, cloud services, data analytics, it operations, enterprise network security, application hosting, services, it consulting services, digital transformation, enterprise it, cloud orchestration, software development and it consulting, cloud security architecture, software development, application development, it security, system integration, it management, it service desk, consulting, enterprise cloud strategy, private cloud solutions, construction & real estate, it maintenance, transportation & logistics, it compliance, distribution, sales, enterprises, computer software, information technology & services, analytics, management consulting, computer & network security, information architecture, app development, apps","","Outlook, Microsoft Office 365, Slack, Mobile Friendly, Apache, Remote, Android, AI, Circle, Cisco Unified Intelligence Center, NetBox, Ansible, OpenStack, REST, Kubernetes, SAP, ABAP, IBM System i Midrange Computing Server, JQuery 1.11.1, SimCorp Gain, SQL, Office365, E-planning, SAP BusinessObjects Business Intelligence (BI), Gem, Oracle Global Human Resources Cloud","","","","","","",69c2817e8ca7dd0001bddf02,7375,54151,"BurdaSolutions ist der interne IT-Dienstleister des international agierenden Tech & Media Konzerns Hubert Burda Media. + +Mit unseren Dienstleistungen unterstützen wir unsere Kunden in den Geschäftsbereichen Medienmarken National und International, Druck und in den Digitalmarken von Hubert Burda Media bei der Erstellung, Vermarktung und dem Vertrieb ihrer Produkte. + +Das Team von BurdaSolutions vereint die Leidenschaft für digitale Medien und IT. + +Mit rund 200 Kollegen an den Standorten München, Offenburg, Hamburg & Berlin stellen wir den Konzerngesellschaften innovative IT-Arbeitsplatzausstattung, inklusive dem zugehörigen plattformübergreifenden IT-Support zur Verfügung. Zu den Leistungen von BurdaSolutions gehören zusätzlich die Beratung, Entwicklung und der sichere Betrieb von Anwendungen in private- / hybrid- Clouds, im eigenen Rechenzentrum oder mit unseren externen Partnern. BurdaSolutions verfügt über tiefes Fachwissen und eine langjährige Erfahrung in den Themengebieten Business Intelligence, CRM, ERP und mobile Applikationen. + +BurdaSolutions gehört zum Tech & Media Konzern Hubert Burda Media und agiert an den Standorten Offenburg, München, Berlin und Hamburg.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/683e9202b571bd0001b39fc3/picture,"","","","","","","","","" +Adacor,Adacor,Cold,"",67,information technology & services,jan@pandaloop.de,http://www.adacor.com,http://www.linkedin.com/company/adacor-group,https://facebook.com/adacorhosting,https://twitter.com/adacorhosting,70a Emmastrasse,Essen,North Rhine-Westphalia,Germany,45130,"70a Emmastrasse, Essen, North Rhine-Westphalia, Germany, 45130","domain management, kubernetes, cloud services, managed services, cloud solutions, managed it services, managed jira, cloud journey, managed hosting, devops private cloud, jira confluence, cloud infrastructure, cloud consulting, private cloud, managed kubernetes, managed confluence, azure, dns services, content delivery network, cloud migration, devops, public cloud, ki services fuer den mittelstand, souveraene ki, cloud operations, managed public cloud, enterprise cloud, cloud infrastruktur, souveraene cloud, ki fuer mittelstand, it services & it consulting, it-transformation, azure cloud, it outsourcing, managed microsoft 365, privat gehostete ki-modelle, data security, data analytics, computer systems design and related services, multi-cloud solutions, deutsches text-to-voice-modell, aws cloud, kubernetes auf azure, it consulting, sicherheitsmanagement, ki-summit mittelstand, hybrid cloud integration, devops support, container management, ki-workplace, cloud in deutschland, digital transformation, data center in germany, nachhaltige it-infrastruktur, cloud computing, consulting, hybrid cloud, b2b, ci/cd pipelines, cloud plattformen, information technology and services, ki-predictive-monitoring, managed security, cloud adoption framework, cybersecurity, disaster recovery, cloud architektur, sicherheitszertifikate, dsgvo-konforme ki-lösungen, rechenzentrum, services, ki-webinare, security and compliance, data center services, cloud monitoring, healthcare, finance, education, non-profit, enterprise software, enterprises, computer software, information technology & services, internet infrastructure, internet, outsourcing/offshoring, computer & network security, management consulting, health care, health, wellness & fitness, hospital & health care, financial services, nonprofit organization management",'+49 69 9002990,"Outlook, Pipedrive, Leadfeeder, DigitalOcean, Slack, Linkedin Marketing Solutions, DoubleClick Conversion, Hotjar, Google Dynamic Remarketing, Google Analytics, Apache, Etracker, DoubleClick, WordPress.org, Mobile Friendly, Google Tag Manager, Remote, Android, React Native, Node.js, AI, IoT, AWS Trusted Advisor, Ansible, HAProxy, Jenkins, Kubernetes, Microsoft Azure Monitor, MySQL, NetApp, Nginx, Proxmox VE, Terraform, VMware, Amazon Web Services (AWS), Azure Linux Virtual Machines, Microsoft Sql Server, Microsoft Azure, Microsoft Windows Server 2012, Oracle Analytics Cloud, PostgreSQL, Cisco DWDM, GitHub, Stack Overflow, YouTrack, Confluence, Personio, Miro, Canva","","","","","","",69c2817e8ca7dd0001bddf06,7375,54151,"Adacor Hosting GmbH is a managed cloud solution provider based in Germany, focusing on secure and compliant cloud infrastructure services. The company specializes in Private Cloud, Public Cloud, and AI solutions, primarily serving financial institutions and mid-sized enterprises. Adacor operates from German data centers, ensuring high security standards and compliance with various regulations, including BaFin and DORA. + +Founded by CEO Andreas Bachmann, Adacor has expanded its capabilities through the acquisition of Delivion GmbH, enhancing its Public Cloud expertise and integrating AI services. The company offers a wide range of managed cloud services, including Infrastructure as a Service (IaaS), content delivery networks, remote desktop services, and consulting support. Adacor is dedicated to supporting digital transformation with tailored strategies that prioritize safety, performance, and regulatory compliance, particularly in the banking and insurance sectors.",2003,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68bf9b2a49807500017d4262/picture,"","","","","","","","","" +GRASS-MERKUR,GRASS-MERKUR,Cold,"",26,information technology & services,jan@pandaloop.de,http://www.grass-merkur.de,http://www.linkedin.com/company/grassmerkur,"","",5 Rothwiese,Hanover,Lower Saxony,Germany,30559,"5 Rothwiese, Hanover, Lower Saxony, Germany, 30559","cloudservices, consulting, managedservices, colocation, housing, it services & it consulting, klimaneutral, kühlungstechnologien, hybrid-it, rechenzentrumsbetrieb, kundenorientierung, rechenzentrum, kühlungstechnologie, rechenzentrum hannover, de-cix, it-beratung, datensicherheit, it-services, it-compliance, han-cix cloud exchange, sicherheitszertifizierungen, netzwerkkonnektivität, hybrid-it-lösungen, rechenzentrum mit 100% wasserkraft, data center services, it-automatisierungslösungen, datacenter, iso 27001, cloud computing, datacenter zertifizierungen, netzwerksicherheit, it-infrastruktur, services, nachhaltigkeit, iso 27001 zertifiziertes rechenzentrum, energieeffizienz, zertifizierungen, sicheres datenzentrum, cloud exchange, netzwerkdienste, deutsche wasserkraft, it-infrastruktur-sicherheit, de-cix hannover, it-infrastrukturmanagement, it-security, datenschutz, information technology & services, datensicherheitsmanagement, cloud services, hybrid-cloud, managed services, automatisierung, rechenzentrumsautomatisierung, telecommunications, it-management, kundenservice, datenspeicherung, usv-systeme, b2b, datacenter hannover, it-sicherheit, de-cix premium partner, nachhaltige it-infrastruktur, information technology and services, cloud-hosting, computer systems design and related services, klimaneutrale rechenzentren, han-cix, finance, enterprise software, enterprises, computer software, financial services",'+49 51 14754140,"Outlook, WordPress.org, Mobile Friendly, Apache, Remote","","","","","","",69c2817e8ca7dd0001bddf0c,3571,54151,"'+++ aktuelle Themen finden Sie auch in unserem News-Blog +++ +https://www.grass-merkur.de/news/ + +Das Unternehmen +GRASS-MERKUR unterstützt ihre Kunden seit vielen Jahren in den Geschäftsbereichen Data Center Services, Consulting und Software-Entwicklung mit den komplexen Aufgabenstellungen des IT-Betriebes und ist der kompetente Partner in allen Fragen zu Konzeption, Organisation, Betrieb und der Optimierung der IT-Services Ihres Unternehmens. + +Data Center +GRASS-MERKUR betreibt in Hannover ein ISO 27001-zertifiziertes Rechenzentrum, das höchste Anforderungen an Sicherheit, Verfügbarkeit und Wirtschaftlichkeit erfüllt. + +Services und Leistungen +Das Service- und Dienstleistungsportfolio im Bereich ""Data Center"" umfasst: +- Housing +- Hosting +- Managed Services +- Backup- und DR-Services +- Cloud Services +- High Performance Computing +- Rechenzentrums-Kopplung via Glasfaseranbindung +- Betrieb von DWDM-Systemen zur Rechenzentrums-Kopplung + +Zertifizierungen +Das Rechenzentrum, das Informations-Sicherheits-Management-System (ISMS) sowie die Cloud- und Managed Services sind u.a. nach folgenden Standards zertifiziert: +- ISO 27001 - Informations-Sicherheits-Management-System (ISMS) +- ISO 27017 - Informationssicherheit in der Cloud +- ISO 27018 - Datenschutz in der Cloud +- ISO 50001 - Energieeffizienz + +Consulting +Wir beraten und unterstützen unsere Kunden in den Bereichen +Strategie- und Prozess-Beratung (ITIL, IT-Security, RZ-Automation, RZ-Organisation, …) +Technologie-Beratung (Server-/Betriebssysteme, Backup, Systemmanagement, …) +Software-Entwicklung (projektspezifisch, für IT-Hersteller, …) +Software-Tests (standardisierte Tests nach ISTQB, …) + +IT-Projektunterstützung +Wir unterstützen unsere Kunde in SW-Entwicklungsprojekten sowie zur Entlastung bei Projektspitzen oder Ressourcenlücken (Entwicklung, Konzeption, Realisierung. + +Klimaneutrale Energieversorgung +Kunden profitieren von der Option einer klimaneutralen, CO2-freien Energieversorgung.",2000,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67276bc76f116c0001a73a81/picture,"","","","","","","","","" +COMRAMO AG,COMRAMO AG,Cold,"",120,information technology & services,jan@pandaloop.de,http://www.comramo.de,http://www.linkedin.com/company/comramo-ag,https://facebook.com/pages/Comramo-It-Holding-AG/1503573089912530,https://twitter.com/COMRAMO,89 Bischofsholer Damm,Hanover,Lower Saxony,Germany,30173,"89 Bischofsholer Damm, Hanover, Lower Saxony, Germany, 30173","it services & it consulting, it-beratung, projektmanagement, business software, verwaltungssoftware für soziale einrichtungen, fernwartung, datensicherheit, services, it-dienstleistungen, support-services, finanzsoftware, it-qualitätsmanagement, sicherheitszertifikate, it services, digitalisierung, branchenkenntnisse, digitale personalakte, schulungen, datensicherung, kundenorientierung, iso/iec 27001, b2b, verwaltungssoftware, it-support, ecm-lösungen, datenschutz, schulungen und seminare, reisekostenmanagement, softwareentwicklung, prozessoptimierung, healthcare it, projektcoaching, computer systems design and related services, öffentliche auftraggeber, fachkräftemangel-lösungen, rechenzentrumsbetrieb, it-management, educational services, government, iso 9001, personalmanagement, software development, gesundheits- und sozialwesen, business process outsourcing, softwarelösungen, gesundheitswesen-it, branchenfokus auf kirchliche organisationen, rechnungswesen, financial software, sicherheitszertifikate für it, rechenzentrum, unternehmenssoftware, consulting, kundenservice, it-infrastrukturmanagement, patch-management, information technology and services, software-implementierung, it-compliance, iso-zertifizierung, iso-zertifizierungen, datenschutzkonforme software, kundenportal, meldewesen, it-infrastruktur, qualitätsmanagement nach iso, cloud-lösungen, hr services, healthcare, finance, education, non-profit, information technology & services, health care, health, wellness & fitness, hospital & health care, financial services, nonprofit organization management",'+49 51 1124010,"Microsoft Office 365, Angular JS v1, Hubspot, Vimeo, Apache, Mobile Friendly, WordPress.org, Google Analytics, Google Tag Manager, Bootstrap Framework, AI, KIDICAP, Microsoft Windows Server 2012, Citrix, Microsoft Exchange Server 2003","","","","",383000,"",69c2817e8ca7dd0001bddf0d,7375,54151,"COMRAMO AG is a German IT holding company based in Hannover, specializing in IT services and HR solutions. With a workforce of 250-499 employees and reported revenue of $20.5 million, the company provides a range of professional solutions for business processes, including data processing, telecommunications, and computer consultancy. + +The company operates as an Application Service Provider (ASP), offering services such as application maintenance, system administration, and process outsourcing. Its HR services include management and payroll solutions, digital tools for civil servant support, and integrated business intelligence. COMRAMO AG also provides financial and controlling solutions that integrate with ERP systems, along with additional management and administrative services. Its subsidiaries, including COMRAMO KONDEK GmbH and COMRAMO Finanz GmbH, enhance its service offerings in data processing and payroll services.",2008,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6870a5cc7aac420001e5c906/picture,"","","","","","","","","" +COPA Systeme GmbH & Co. KG,COPA Systeme GmbH & Co. KG,Cold,"",51,information technology & services,jan@pandaloop.de,http://www.copasysteme.de,http://www.linkedin.com/company/copa-systeme,https://www.facebook.com/copasysteme/,"",41 Reeser Landstrasse,Wesel,North Rhine-Westphalia,Germany,46483,"41 Reeser Landstrasse, Wesel, North Rhine-Westphalia, Germany, 46483","warenwirtschaft, finanzbuchhaltung, erp, software, getraenkewirtschaft, dokumentenmanagement, crm, lagerverwaltung, beverage, cms, it services & it consulting, manufacturing, computer systems design and related services, automatisierung, cloud-lösungen, digitale transformation, digital transformation, process optimization, supply chain management, business intelligence, automatisierte lagerverwaltung, workflow-management, echtzeitdaten, datenmanagement, distribution, produktionsoptimierung, kundenportal, inventory management, b2b, branchenspezifische software, modulare software, mobile lagersteuerung, bi, sicherheitsstandards, kundenorientierung, getränkebranche, maßgeschneiderte software, mobile lösungen, getränkewirtschaft, dms, branchenspezifische ki, softwareentwicklung, ki-lösungen, predictive analytics, services, support, information technology & services, vertriebsoptimierung, echtzeit-insights, erp-software, nachhaltigkeit, smart data, pos, cloud solutions, effizienzsteigerung, beratung, data security, digitale belegverarbeitung, compliance, prozessoptimierung, produktionsplanung, lagersteuerung, data protection, customer relationship management, datenanalyse, software development, innovation, retail, customer engagement, sales, enterprise software, enterprises, computer software, consumer goods, consumers, mechanical or industrial engineering, logistics & supply chain, analytics, cloud computing, computer & network security",'+49 281 16390,"Outlook, Microsoft Office 365, Facebook Widget, Ubuntu, Linkedin Marketing Solutions, Facebook Login (Connect), Wix, Facebook Custom Audiences, Apache, Vimeo, Google Play, Varnish, Mobile Friendly, Remote, Microsoft Active Directory Federation Services","","","","","","",69c2817e8ca7dd0001bddf15,3571,54151,"COPA Systeme GmbH & Co. KG is a German software company with over 40 years of experience, specializing in customized software solutions for the beverage industry. The company focuses on providing ERP, CRM, DMS, POS, and BI systems tailored specifically for breweries, mineral water producers, and beverage wholesalers. + +COPA Systeme positions itself as a partner in digital transformation, offering industry-specific expertise to enhance business efficiency and performance. Their integrated suite of software solutions is fully customizable, ensuring seamless integration into customer processes. The company also provides dedicated support and consulting services to help clients optimize their operations. With a strong track record, COPA Systeme serves over 200 satisfied customers, showcasing its reliability and commitment to the beverage sector.",1982,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670f68bbe8825e0001bc709f/picture,"","","","","","","","","" +TechniData IT-Service GmbH,TechniData IT-Service,Cold,"",39,"",jan@pandaloop.de,http://www.technidata-its.de,"","","",9 Emmy-Noether-Strasse,Karlsruhe,Baden-Wuerttemberg,Germany,76131,"9 Emmy-Noether-Strasse, Karlsruhe, Baden-Wuerttemberg, Germany, 76131","it-performance, digitaler posteingang, project management, migration und rollout, rechenzentrum, elektronische patientenakten, security operations center, zero-trust-security, data center, it-management, healthcare it, it consulting, service management, it-service-management, it-strategie, lizenzmanagement, mobile device management, mvz-planung, cloud computing, cloud services, services, it-implementierung, siem, it-deployment, it-security, infrastructure as a service, e-mail archivierung, open source software, consulting, cloud solutions, it-support, storage on demand, it-infrastruktur, cloud-management, it-consulting, filesharing & synchronisation, mobile datenerfassung, it-services, it-architektur, data security, hosting services, projektmanagement, managed services, security services, backup & recovery, datensicherheit, deep web monitoring, managed infrastructure, praxismodernisierung, it-integration, it-transformation, sap on azure, information technology and services, open source solutions, medizinische software, firewall & access, netzwerk services, klinik-it, automation, sap services, it-infrastrukturmanagement, medizinische it-lösungen, security as a service, medical infrastructure, it-projektmanagement, b2b, it-operations, it-modernisierung, praxismanagement, telemedizin-it, computer systems design and related services, it-security für arztpraxen, it-optimierung, healthcare technology, network security, telematik-infrastruktur, healthcare, productivity, internet service providers, information technology & services, management consulting, enterprise software, enterprises, computer software, computer & network security, health care, health, wellness & fitness, hospital & health care",'+49 721 352800,"Microsoft Office 365, Outlook, Apache, Mobile Friendly","","","","","","",69c2817a1bb0fd00018ae849,7379,54151,"","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/60773d5c0748d20001048dc9/picture,"","","","","","","","","" +Processand,Processand,Cold,"",42,information technology & services,jan@pandaloop.de,http://www.processand.com,http://www.linkedin.com/company/processand,https://www.facebook.com/Processand,https://twitter.com/process_and_,23 Lindwurmstrasse,Munich,Bavaria,Germany,80337,"23 Lindwurmstrasse, Munich, Bavaria, Germany, 80337","process optimisation, process transformation, automated business process discovery, business processes, advanced analytics, business analytics, process management, consulting, process mining, business process architecture, celonis, big data, software implementation, process intelligence, it services & it consulting, data analytics, change management, inventory management, process optimization, project management, process mining for purchase to pay, it systems integration, event log management, process mining consulting, automation, process mining for healthcare, financial services, manufacturing, celonis action engine, process mining for telecommunications, operational data analysis, operational efficiency, process mining for hr, healthcare, bottleneck identification, services, process mining for accounts payable, performance metrics, process mining frameworks, process visualization, process transparency, data integration, retail, predictive analytics, artificial intelligence, process mining for retail, process mining for order management, consulting services, process discovery, process mining for supply chain, process mining for customer service, process mining for order to cash, process monitoring, duplicate invoice checker, process mining for insurance, process mining for accounts receivable, it system logs, process mining for manufacturing, business intelligence, machine learning, management consulting services, data transformation, transportation & logistics, process mining training, process mining for procurement, b2b, process visualization tools, process mining software, business process optimization, kpi monitoring, data pipeline management, process mining platforms, governance structure, process mining for logistics, finance, data collection, data enrichment, ai, process automation, workflow analysis, process improvement, process mining implementation, process mining for production, process mining for finance, process discovery tools, retail & wholesale, celonis training, organizational setup, event log extraction, event log analysis, data-driven decisions, business process management, digital transformation, process mining for utilities, root cause analysis, process optimization strategies, process analytics, process optimization use cases, utilities & energy, distribution, energy & utilities, information technology & services, enterprise software, enterprises, computer software, productivity, mechanical or industrial engineering, health care, health, wellness & fitness, hospital & health care, management consulting, analytics",'+49 89 45203220,"NetSuite, Outlook, Hubspot, Slack, Apache, Mobile Friendly, Celonis, Intel","","","","","","",69c2817a1bb0fd00018ae851,7375,54161,"Processand is an IT services and consulting company based in Munich, founded in 2017 by former Celonis employees. It specializes in Process Mining solutions and services, holding Platinum partnerships with Celonis, Microsoft, and SAP Signavio. The company focuses on empowering global enterprises through data-driven analytics and intelligent automation, helping them optimize processes across various industries. + +Processand offers comprehensive support for Process Mining initiatives, including setup, data pipeline management, and full implementation. Its services encompass process implementations, consulting, automation, AI, and business intelligence. The company has developed notable products like the Duplicate Invoice Checker and the Lyntics Data Literacy platform. With a team of around 45 employees, Processand serves over 100 customers from more than 10 sectors, emphasizing a collaborative approach to enhance process efficiency and transparency.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67480267dedcb80001f67e09/picture,"","","","","","","","","" +ACCELERAID,ACCELERAID,Cold,"",29,information technology & services,jan@pandaloop.de,http://www.acceleraid.ai,http://www.linkedin.com/company/acceleraid,https://www.facebook.com/adtelligence/,http://twitter.com/Adtelligence,"",Mannheim,Baden-Wuerttemberg,Germany,"","Mannheim, Baden-Wuerttemberg, Germany","big data analytics, customer intelligence solutions, sales funnel optimization, digital sales, machine learning ai, customer experience management personalization, google partner, data management, saas cloud, personalization cloud, real time personalization, machine learning, targeting segmentation, conversion optmimization, data intelligence decision engines, mobile, hybris extend, europe, software development, ai in financial services, telecommunications, cross-channel marketing, data enrichment, b2b, customer data platform, automated segmentation, b2c, data integration, marketing automation, trigger & campaign automation, personalization engine, retail, predictive audience segments, e-commerce, services, real-time event handling, ai in retail, customer retention ai, data security, conversion optimization, management consulting services, customer lifecycle management, customer behavior prediction, d2c, ai-driven personalization, automated content delivery, ai assistant, energy & utilities, customer journey personalization, lead generation, customer data & transaction platform, financial services, data privacy, customer engagement, retail banking, real-time campaign automation, conversion rate optimization, ai & big data applications, ai in telecom, predictive analytics for marketing, finance, consumer_products_retail, energy_utilities, enterprise software, enterprises, computer software, information technology & services, artificial intelligence, internet, marketing & advertising, saas, consumer internet, consumers, computer & network security, sales",'+49 621 5923410,"Route 53, Outlook, Amazon AWS, Gravity Forms, Google Tag Manager, Mobile Friendly, WordPress.org, Google Analytics, AI, Node.js, IoT, React Native, Android, Remote, Xamarin, Mode, Tor, Python, Frame","",Series A,"",2013-01-01,"","",69c2817a1bb0fd00018ae848,7375,54161,"ACCELERAID is a German software technology company based in Mannheim, with an additional office in Berlin. Founded around 2009 or 2010, the company specializes in AI-powered personalization and data intelligence solutions designed to automate sales and marketing processes. ACCELERAID offers proprietary SaaS solutions that integrate seamlessly into existing IT infrastructures, utilizing customer data management and real-time AI frameworks to enhance customer interactions. + +The company provides a range of tools focused on digital sales, marketing, and customer engagement. Key offerings include a Customer Data & Transaction Platform, Predictive Audience Segmentation, Trigger & Campaign Automation, and a Personalization Engine. These solutions enable businesses to deliver hyper-personalized experiences and optimize conversion rates by analyzing vast amounts of data in real time. ACCELERAID emphasizes data privacy compliance and has demonstrated success in sectors like Financial Services and Telecommunications, helping clients achieve significant growth in customer acquisition and engagement.",2009,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/687b182e5a73a50001936f8b/picture,"","","","","","","","","" +Web Computing GmbH,Web Computing,Cold,"",120,information technology & services,jan@pandaloop.de,http://www.web-computing.de,http://www.linkedin.com/company/web-computing,"","",10 Wilhelm-Schickard-Strasse,Muenster,North Rhine-Westphalia,Germany,48149,"10 Wilhelm-Schickard-Strasse, Muenster, North Rhine-Westphalia, Germany, 48149","conversational services, chatbots, knowledgemanagement, ai services, data services, phone bots, video services, video content management system, software, business intelligence, it services & it consulting, video editing, cloud computing, innovation, video autorsystem, ki-gestützte support-chatbots, etl-services, generative ai plattform, edtech, technology consulting, software engineering, customer engagement, video plattform, ki-gestützte wissensmanagementsysteme, e-learning plattform, cloud solutions, b2b, no-code lösungen, digitalisierung, agile projektmanagement, ai lösungen, video content plattform, chatbot entwicklung, chatbots mit ki, computer systems design and related services, ki- und softwareentwicklung, automatisierung, inhouse-entwicklung deutschland, ki-entwicklung, selbstlernende chatbots, software development, data analytics, digital transformation, open source technologien, content automation, ai-gestützte content-erstellung, video content management, full-stack-ansatz, generative ai, ki-gestützte lernplattformen, generative ki, finetuning large language models, automatisierte content-produktion, data annotation, consulting, content management system, rule services, remote work, content plattformen, data security, on-premises ki-lösungen, open source software, kundenorientierung, agile entwicklung, ki für unternehmen & bildung, ki-plattformen, kundenservice automatisierung, automatisierte prozesse, artificial intelligence, information technology and services, individuelle softwarelösungen, datensicherheit, softwareentwicklung, ki-gestützte content-analyse, inhouse-software, digitalisierungslösungen, services, education, information technology & services, analytics, enterprise software, enterprises, computer software, e-learning, internet, education management, management consulting, computer & network security",'+49 251 39655243,"Gmail, Google Apps, Microsoft Office 365, WordPress.org, Google Analytics, Mobile Friendly, Hotjar, reCAPTCHA, React, Google Tag Manager, Nginx, Make, LEAP, Jira, Linkedin Marketing Solutions, AWS SDK for JavaScript, TypeScript","",Merger / Acquisition,0,2024-07-01,7000000,"",69c2817a1bb0fd00018ae84e,7375,54151,"Web Computing GmbH is an AI and software development company located in Münster, Germany. Founded in 2012 from a university project, the company has grown to a team of over 80 employees. It specializes in full-stack software solutions, catering to both small and medium-sized enterprises as well as DAX-listed corporations. + +The company develops and distributes standard and custom software solutions, utilizing a comprehensive approach that covers the entire software development lifecycle. Web Computing emphasizes modern technologies and AI-driven development, positioning itself as an innovator in software engineering. Its core values include quality, investment security, agility, expertise, transparency, and service, reflecting its commitment to improving the future through software engineering.",2012,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67014c42bada010001e73d4a/picture,"","","","","","","","","" +neusta enterprise services GmbH | member of the digital family team neusta,neusta enterprise services,Cold,"",39,information technology & services,jan@pandaloop.de,http://www.neusta-es.de,http://www.linkedin.com/company/neusta-es,https://de-de.facebook.com/teamneusta/,https://twitter.com/teamneusta,24 Konsul-Smidt-Strasse,Bremen,Bremen,Germany,28217,"24 Konsul-Smidt-Strasse, Bremen, Bremen, Germany, 28217","prozessoptimierung, prozessdigitalisierung, prozessautomatisierung, digitale transformation, digitalisierung, sap, sap s, 4hana, sap central finance, sap ppm, strategieberatung, innovationsberatung, prozessanalyse, prozessimplementierung, agiles projektmanagement, touristik, luftverkehr, offentliche verwaltung, dienstleistungen, logistik, process optimization, government, industry-specific it solutions, sap gold partner, consulting, project management, services, sap consulting, computer systems design and related services, interim management, sustainable it practices, changeover to sap s/4hana, process consulting for complex processes, sdg-aligned corporate values, cloud computing, data analytics, process automation, customer-centric solutions, remote work consulting, process analysis and redesign, change management, process digitization, data management, cloud solutions, technology consulting, b2b, hybrid project management, sap s/4hana, digital strategy, location-independent work solutions, ai integration, public sector digitalization, digital journey guides, it service management, hybrid project execution, information technology and services, digital transformation, software implementation, agile project management, it consulting, business process analysis, ai, productivity, enterprise software, enterprises, computer software, information technology & services, management consulting, marketing, marketing & advertising",'+49 42 16969900,"Microsoft Office 365, Google Tag Manager, Nginx, Mobile Friendly","","","","","","",69c2817a1bb0fd00018ae842,7379,54151,"We are the pragmatic process professionals with digital DNA. We love to make things easier and better and share our enthusiasm for efficient business processes with our customers. With user-centric methods and individually tailored technologies, we find excellent process solutions for the corporate world of tomorrow. neusta enterprise services is part of the team neusta group of companies, which bundles competencies from the IT and communications sector and employs more than 1,300 people. + +LEGAL NOTICE +neusta enterprise services GmbH +Konsul-Smidt-Str.24 +D-28217 Bremen +Germany + +Phone: +49(0)421.696990-0 +E-Mail: info@neusta-es.de +www.neusta-es.de +www.team-neusta.de + +Hanover Office: +Hindenburgstraße 19 +D-30175 Hannover +Germany + +Managing Partners: Antje Meyer-Heder, Dirk Kabus +Registry Court: Amtsgericht Bremen +Trade Register: HRB 28849 +VAT ID.: DE262932604",2009,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/693672c4aac61700013b279e/picture,"","","","","","","","","" +alliantis GmbH,alliantis,Cold,"",26,management consulting,jan@pandaloop.de,http://www.alliantis.de,http://www.linkedin.com/company/alliantisgmbh,https://www.facebook.com/profile.php,"",57 Ridlerstrasse,Munich,Bavaria,Germany,80339,"57 Ridlerstrasse, Munich, Bavaria, Germany, 80339","prozessoptimierung, talentmanagement, schulung und support, haufe, softwarekonfiguration, ukg, hrstrategieberatung, kundenspezifische softwareloesungen, endtoend hrloesungen, smartrecruiters, personio, hr, people tech, datenanalyse und management, kulturelle transformation, people, itimplementierung, cornerstone, hibob, hrdigitalisierung, change management, business consulting & services, hr strategie, hr software consulting, people & tech lifecycle, hr process automation, hr strategy, hr analytics, hr system integration, b2b, digital hr, process optimization, softwareimplementierung, management consulting services, hr transformation projects, information technology & services, hr digitalisierung, software selection, hr data security, consulting, services, talent management, employee experience, hr consulting, hr training & enablement, hr tech, talent acquisition, professional services, human resources, management consulting, professional training & coaching",'+49 89 2421110,"Outlook, Microsoft Office 365, CloudFlare Hosting, Hubspot, Lucky Orange, Linkedin Login, Google Tag Manager, Facebook Login (Connect), Mobile Friendly, Linkedin Widget, Facebook Widget, UKG Pro Workforce Management, SmartRecruiters, Cornerstone On Demand, Bob, PeopleDoc, Personio, UKG, Microsoft Office, Haufe Umantis","","","","","","",69c2817a1bb0fd00018ae843,8742,54161,"alliantis GmbH is an HR consulting and digitalization firm based in Munich, Germany. Founded in 2001, the company specializes in HR digitalization, business transformation, and HR strategy for organizations of all sizes, from large corporations to family-run SMEs. alliantis believes that successful companies are built by their people and positions itself as a trusted partner in the HR consultancy space. + +The company offers a range of services, including digitalization services such as software implementation, HR-IT strategy consulting, and ongoing success monitoring. Their consulting services cover HR strategy development, change management, and organizational models. alliantis also provides HR Tech integrations and analytics, focusing on data-supported solutions and dashboard creation. As an exclusive implementation partner for Haufe Talent Management in Germany, alliantis has successfully completed over 150 joint projects. + +Recognized for its excellence, alliantis has received multiple awards, including first place for Best Consultants in Germany and the eLearning Award in Skills Development. The company emphasizes reliability, teamwork, and solution-driven approaches, and has grown to over 40 employees, establishing itself as a holistic partner in HR digitalization and transformation.",2001,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/678c7919087444000108491e/picture,"","","","","","","","","" +integrationWorks,integrationWorks,Cold,"",44,information technology & services,jan@pandaloop.de,http://www.integrationworks.de,http://www.linkedin.com/company/integrationworksltd,https://www.facebook.com/iworksgermany/,"",34 Fischerhuettenstrasse,Berlin,Berlin,Germany,14163,"34 Fischerhuettenstrasse, Berlin, Berlin, Germany, 14163","eai architecture, soa, api connect, ibm integration bus, etl, java, iib, ibm websphere, development, message broker, octobus, integration, api, microservices, boomi, lowcode, mq, ibm app connect enterprise, mulesoft, iot, devops, projectmanagement, managed services, it services & it consulting, legacy-systeme, information technology & services, cybersecurity, consulting, services, integrationstools, master data management, b2b, datenintegration, automatisierte prozesse, api-basiert, cloud computing, computer systems design and related services, software development, devops services, it consulting, echtzeit-daten, saas, cloud-integration, system integration, custom software development, api-management, data security, hybrid it, anwendungsintegration, project managment, enterprise software, enterprises, computer software, management consulting, computer & network security",'+49 30 98320370,"Outlook, Microsoft Office 365, CloudFlare Hosting, Atlassian Cloud, Facebook Login (Connect), Mobile Friendly, Facebook Custom Audiences, DoubleClick, Hubspot, DoubleClick Conversion, Facebook Widget, Google AdWords Conversion, Google AdSense, Google Dynamic Remarketing, Google Tag Manager, IoT, AI","","","","","","",69c2817a1bb0fd00018ae846,7375,54151,"integrationWorks GmbH is an IT services company based in Berlin, specializing in application and data integration, software development, and customized IT solutions. Founded over 16 years ago, the company operates internationally with more than 70 employees across six locations, including offices in Düsseldorf, Munich, and Bangkok. It focuses on serving the finance, insurance, banking, and automotive sectors, emphasizing seamless integration of applications, data, and services. + +The company offers a variety of IT services, including consulting, training, development, and outsourcing for tailored IT solutions. It specializes in integrating complex software systems and interfaces, as well as microservices development, particularly using IBM tools. integrationWorks aims to facilitate digital transformation by building bridges between applications and services, ensuring intuitive use for its clients.",2008,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6881f85c07e2010001f24439/picture,"","","","","","","","","" +SKOPOS ELEMENTS,SKOPOS ELEMENTS,Cold,"",14,information technology & services,jan@pandaloop.de,http://www.skopos-elements.de,http://www.linkedin.com/company/skopos-elements-data-science-solutions,"","",163 Hans-Boeckler-Strasse,Huerth,North Rhine-Westphalia,Germany,50354,"163 Hans-Boeckler-Strasse, Huerth, North Rhine-Westphalia, Germany, 50354","it services & it consulting, information technology & services",'+49 2233 9988880,"Outlook, MailChimp SPF, Microsoft Office 365, Apache, Vimeo, Mobile Friendly, Adobe Media Optimizer, Cedexis Radar, WordPress.org, Google Tag Manager, Gravity Forms, Linkedin Marketing Solutions, Google Font API, Alteryx, Circle, AI, Remote","","","","","","",69c2817a1bb0fd00018ae852,"","","Wir stehen für Human-Centered Data Science. Mit modernen Tools, Methoden und Technologien holen wir das Maximum aus Ihren Daten heraus. Dabei steht immer der Mensch im Mittelpunkt. Wir verstehen, wie sich Einstellungen und Märkte entwickeln und tauchen tief in Ihre Datenwelt ein. Als Beratung auf Augenhöhe navigieren wir gemeinsam mit Ihnen durch den Datendschungel. + +Unsere Mission: Daten für bessere Entscheidungen nutzen. + +Dafür bieten wir die Rundum-Sorglos-Lösung für Ihre Daten: Von Konzept & Beratung über die technische Integration, bis hin zu ausdrucksstarken Reporting-Landschaften und erkenntnisreichen Analysen. + +➡️ Strategy & Enablement +Beratung und Unterstützung ist der wahre Kern unserer Leistungen. Denn wir lassen Sie mit Ihren Daten nicht allein. + +➡️ Infrastructure & Engineering +Mit modernen Technologien schaffen wir eine einheitliche Datenlandschaft, mit der die nächste Erkenntnis nur wenige Klicks entfernt ist. + +➡️ Reporting +Wir sind zuhause in Ihren Datenwelten und erstellen maßgeschneiderte Dashboard-Lösungen, die Sie und Ihre Stakeholder lieben werden. + +➡️ Data Analytics & AI +Wir kombinieren Verständnis über Menschen mit State-of-the-Art-Analysen & KI-Lösungen, die Planungen und Entscheidungen unterstützen.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/675aae47ddd6930001881c85/picture,SKOPOS (skopos-group.de),54a241d27468693a7eee711a,"","","","","","","" +bundesweit.digital GmbH,bundesweit.digital,Cold,"",34,information technology & services,jan@pandaloop.de,http://www.bundesweit.digital,http://www.linkedin.com/company/bundesweit-digital,"","",2 Rolandstrasse,Hanover,Lower Saxony,Germany,30161,"2 Rolandstrasse, Hanover, Lower Saxony, Germany, 30161","fullservicemarketing, website, marketing kampagnen, recruiting, employer branding, erp, personalbindung, softwareentwicklung, pflegebranche, personalgewinnung, social recruiting, software loesungen, online marketing, social media, ki integration, ki, advertising, software, webdesign, markitech, personallgewinnung, webentwicklung, ki loesungen, software development, ki-integration, retail, online presence, video production, artificial intelligence, process optimization, seo-check, automatisierte prozesse, project management, custom software, schnittstellenentwicklung, ki-gestützte personalplanung, performance-optimierung, brand strategy, social media management, content creation, business automation, branding, systemintegration, cloud hosting in deutschland, campaign optimization, ki-gestützte content-erstellung, information technology and services, automation, b2b, ki-workshops, ki-framework, marketing, marketing services, e-commerce, individuelle softwareentwicklung, ki-gestützte softwarelösungen, retrieval-augmented generation, ki-gestützte leadgenerierung, marketing automation, customer relationship management, künstliche intelligenz, datenschutzkonform, modulare ki-architektur, automatisierung, digitalisierung, d2c, api-entwicklung, ki-reporting, lead generation, datenanalyse, digital transformation, ki-gestützte vorhersagemodelle, services, data-driven strategies, client acquisition, consulting, prozessautomatisierung, ki-gestützte projektsteuerung, automatisierte kundenkommunikation, chatgpt-integration, performance marketing, ki-logik, computer systems design and related services, ki-gestützte entscheidungsfindung, digital marketing, finance, staffing & recruiting, consumer internet, consumers, internet, information technology & services, web design, productivity, marketing & advertising, saas, computer software, enterprise software, enterprises, crm, sales, financial services",'+49 511 12367321,"Route 53, MailJet, SendInBlue, Gmail, Outlook, Google Apps, Bitrix, Apache, Google Tag Manager, Nginx, Facebook Custom Audiences, Content.ad, Mobile Friendly, WordPress.org, Linkedin Marketing Solutions, Microsoft Teams Rooms, DATEV Accounting, Microsoft Office, Instagram, TikTok, Facebook","","","","","","",69c2817a1bb0fd00018ae853,7375,54151,"#WorkSmarter + +… steht für eine neue Art zu arbeiten – effizienter, automatisierter und technologisch smarter. Unser Ziel ist es, Unternehmen dabei zu unterstützen, Prozesse zu optimieren und nachhaltig erfolgreicher zu werden. Let's talk und schauen, wie smart dein Unternehmen bereits ist.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f2793b885efe0001e47d7e/picture,"","","","","","","","","" +VALID Digitalagentur GmbH,VALID Digitalagentur,Cold,"",44,information technology & services,jan@pandaloop.de,http://www.valid-group.de,http://www.linkedin.com/company/valid-group,"","",4 Cuvrystrasse,Berlin,Berlin,Germany,10997,"4 Cuvrystrasse, Berlin, Berlin, Germany, 10997","konzeption, webdevelopment, contao, powerpoint, user experience, digitalstrategie, online marketing, copywriting, web development, screendesign, typo3, customer experience design, social media marketing, digital marketing, minimum viable product, design thinking, design, agile development, kampagnen, entwicklung, informationsarchitektur, responsive webdesign, beratung, customer experience, content creation, cms, ibexa, headless cms, technology, information & internet, user interface design, cms-architektur, data analytics, ki-integration, technology & experience, performance-marketing, ki-interface, ki-workshop, ki-gestützte wissensmanagement, multisite management, software development, typo3 agentur, ki-gestützte content-erstellung, ibexa dxp, chatgpt optimization, information technology and services, erklärungsbedürftige produkte, campaign optimization, openwebui-agentur, unternehmenskommunikation, b2b, b2b marketing, content-strategie, regulierte märkte, marketing automation, influencer marketing, digitale kommunikation, generative engine optimization, ki-gestützte projektplanung, ki-gestützte dokumentenerstellung, ki-gestützte datenanalyse, ki-avatar agentur, api-integration, ki-gestützte automatisierung, digitalagentur, content management system, dsgvo-konformität, services, plattformentwicklung, custom software development, consulting, ki-gestützte kundenkommunikation, openwebui-hosting, content & campaign, ux design, ki im marketing, performance marketing, computer systems design and related services, barrierefreiheit, mobile ui, brand identity & design, healthcare, finance, information technology & services, ux, writing & editing, consumer internet, consumers, internet, marketing & advertising, saas, computer software, enterprise software, enterprises, health care, health, wellness & fitness, hospital & health care, financial services",'+49 30 220022902,"Outlook, Microsoft Office 365, Hubspot, Nginx, Mobile Friendly, Google Tag Manager, TYPO3, Symfony, PHP, AMP, Git, Linkedin Marketing Solutions, Instagram, Facebook, TikTok, YouTube, Adobe Creative Cloud, Miro, Asana, Docker","","","","","","",69c2817a1bb0fd00018ae845,7375,54151,"VALID Digitalagentur GmbH is a digital agency based in Berlin, established in 2008. The company specializes in digital communication, strategy development, and implementation for clients in complex and regulated markets, including energy, finance, healthcare, and public sectors. With offices in Berlin and Köln, VALID employs around 33-34 people and focuses on creating user-centered digital platforms, applications, and communication solutions. + +The agency offers a comprehensive range of services, including strategic consulting, UX design, development of corporate websites and mobile apps, content strategy, and marketing. VALID emphasizes agile methods and data-driven strategies, integrating technologies like JavaScript, HTML, PHP, and various content management systems. The agency develops custom digital products tailored to meet the needs of its clients, ensuring effective communication and engagement in demanding industries.",2008,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68689fe4094b4d0001ebe245/picture,"","","","","","","","","" +CONVOTIS tax,CONVOTIS tax,Cold,"",29,information technology & services,jan@pandaloop.de,"",http://www.linkedin.com/company/convotis-koeln-gmbh,"","",15 Heinz-Froeling-Strasse,Bergisch Gladbach,North Rhine-Westphalia,Germany,51429,"15 Heinz-Froeling-Strasse, Bergisch Gladbach, North Rhine-Westphalia, Germany, 51429","it services & it consulting, information technology & services",'+49 2204 767970,"Salesforce, Outlook, Pardot, Microsoft Office 365, Remote, Render","","","","","","",69c2817a1bb0fd00018ae84d,"","","CONVOTIS Köln bietet IT-Dienstleistungen für Unternehmer, Steuerberater, Rechtsanwälte und Wirtschaftsprüfer. + +Wir sind führender DATEV Solution Partner in den Bereichen DATEV Eigenorganisation comfort, DATEV Cloud Anwendungen und DATEV DMS. + +Zusätzlich umfassen unsere IT-Dienstleistungen die Digitalisierung der Dienstleistung (Unternehmen Online), IT-Outsourcing und IT-Security (E-Mail-Verschlüsselung, geigerCloud), Telefonanlage aus der Cloud und Beratung im Datenschutz. + +Als DATEV Solution Partner wurde uns ein hohes fachliches Spezialwissen zu ausgewählten DATEV-Lösungen seitens der DATEV bestätigt. Dies nutzen wir als Grundlage dafür, vor Ort zu diesen Themen von der Einführung bis zum Betrieb eine umfassende Beratung anzubieten. + +Bei der Beratung und Unterstützung unserer Kunden schauen wir für ergänzende Lösungen auch über den DATEV Tellerrand hinaus. + +empower IT - Mit unseren Business Solutions, digitalen Plattformlösungen und Managed IT-Services verstehen wir uns als strategischer IT- Partner unserer Kunden bei der Steigerung von Wachstum und Effizienz durch Digitalisierung. + +Mit 600 Mitarbeitern, an 16 Standorten und über 5 Länder verteilt unterstützen wir unsere Kunden 24/7 und schaffen Mehrwerte, damit sie sich auf ihr Kerngeschäft konzentrieren können. Dabei sind für uns sowohl eine langfristige und partnerschaftliche Zusammenarbeit als auch Flexibilität der Schlüssel zum Erfolg.",1978,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68be437be82c0b0001ce4424/picture,"","","","","","","","","" +kobaltblau Management Consultants,kobaltblau Management Consultants,Cold,"",72,management consulting,jan@pandaloop.de,http://www.kobaltblau.com,http://www.linkedin.com/company/kobaltblau-management-consultants-gmbh,"","",1 Westhafenplatz,Frankfurt,Hesse,Germany,60327,"1 Westhafenplatz, Frankfurt, Hesse, Germany, 60327","financial services, manufacturing engineering, automotive, transport logistics, travel, public, transport amp logistics, manufacturing amp engineering, business consulting & services, management consulting","","Outlook, Microsoft Office 365, Netlify, Slack, Remote, DATEV Accounting, Microsoft Excel","","","","","","",69c2817a1bb0fd00018ae854,"","","kobaltblau Management Consultants GmbH is a German management consultancy founded in 2016, with over 90 employees across seven locations in Europe. The company specializes in technology-driven solutions and has successfully completed more than 1,050 projects. With its headquarters in Stuttgart, kobaltblau combines the experience of established management consulting with the agility of startups, focusing on IT transformation and sustainable business success. + +The firm offers a range of IT management consulting services, emphasizing digitalization, organizational integration, and operational excellence. Their approach includes developing customized solutions in areas such as IT and digital strategy, enterprise architecture, and business process design. kobaltblau prioritizes customer orientation and hands-on problem-solving, ensuring that their services are tailored to meet the specific needs of large and medium-sized companies across Europe.",2016,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6727899cc5cccf0001fb8af4/picture,"","","","","","","","","" +IA Information Systems AG,IA Information Systems AG,Cold,"",11,information technology & services,jan@pandaloop.de,http://www.iaag.net,http://www.linkedin.com/company/ia-information-systems-ag,"","",8 Waffnergasse,Regensburg,Bavaria,Germany,93047,"8 Waffnergasse, Regensburg, Bavaria, Germany, 93047","itarchitektur, softwarearchitektur, itsystemberatung, itinfrastrukturberatung, organisationsberatung, cloud-lösungen, dsgvo-konformität, vpn lösungen, cyber security, managed services, it-support, it-architekturplanung, information technology & services, computer systems design and related services, hybrid cloud, cloud- und on-premise-kombination, information technology and services, prozessautomatisierung, monitoring, b2b, it-services, software engineering, datenschutz, automatisierte prozesse, cloud migration, cybersecurity, digitalisierung, it-management, data analytics, dsgvo-konforme website, smart office technologien, hybrid cloud lösung, home-office lösungen, smart office automatisierung, it-beratung, services, individuelle softwareentwicklung, automatisierung, smart office, softwareentwicklung, webentwicklung, datenschutz-analyse, it-consulting, big data, it-architektur, it-infrastruktur, consulting, automatisierte it-prozesse, it-sicherheit, it-optimierung, computer & network security, enterprise software, enterprises, computer software",'+49 941 585660,"Outlook, Apache, WordPress.org, reCAPTCHA, Mobile Friendly, Node.js, Android","","","","","","",69c2817a1bb0fd00018ae855,7371,54151,"IA Information Systems ist eine architektonisch geführte IT-Gesellschaft. + +Wir entwickeln, betreiben und unterstützen IT-Systeme für Organisationen mit komplexen Anforderungen. Unsere Arbeit reicht von Architektur- und Integrationsaufgaben über den Betrieb und die Weiterentwicklung bestehender Systeme bis hin zu klassischen IT-Dienstleistungen im Tagesgeschäft. + +Ein Teil unserer Arbeit ist operativ geprägt – etwa im Plattformbetrieb, in Support- und Umsetzungsteams oder bei der Entwicklung spezialisierter Anwendungen, unter anderem auf Low-Code-Basis. Ein anderer Teil befasst sich mit Strukturfragen: Wie Systeme zusammenwirken, wie sie über Zeit stabil bleiben und wie technische Entscheidungen organisatorisch tragfähig eingebettet werden. + +Unsere Systeme betreiben wir seit vielen Jahren konsequent cloudbasiert, überwiegend auf Microsoft-Azure-Infrastrukturen. +KI-gestützte Verfahren setzen wir dort ein, wo sie zur besseren Verständlichkeit, stabileren Betriebsführung, beschleunigten Weiterentwicklung oder zu messbaren Effizienz- und Kostenvorteilen beitragen. + +IA Information Systems arbeitet in überschaubaren Strukturen, mit klaren Verantwortlichkeiten und einem hohen Anspruch an Zuverlässigkeit, Qualität und Nachvollziehbarkeit.",1996,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69ac19b7fc97620001473b3c/picture,"","","","","","","","","" +PBS Sales,PBS Sales,Cold,"",21,outsourcing/offshoring,jan@pandaloop.de,http://www.pbs-sales.eu,http://www.linkedin.com/company/pbs-sales,"","",342 Dachauer Strasse,Munich,Bavaria,Germany,80993,"342 Dachauer Strasse, Munich, Bavaria, Germany, 80993","sales, customer service, business development, export, neukundengewinnung automotive technischer fertigung, outosourcing sales, technischer vertrieb, internationale vertriebsexperten, sales outsourcing, b2b neukundengewinnung im bereich industrielle fertigung und industrie 40, customer acquisition, outsourcing technischer vertrieb, sales agency, new market entrace, market analysis, verstaerkung technischer vertrieb, market entry, sales customer service market analysis business development market entry customer acquisition sales o, import, outsourcing & offshoring consulting, sales strategy, trade goods sales, aerospace sales, retail, management consulting services, distributor network, energy sector sales, sales network development, sales process optimization, customer relationship management, manufacturing sales, high-level decision makers, consulting, logistics automation, industry-specific sales, key account management, digital sales channels, market expansion, technical sales experts, industrial sales, automotive, industry 4.0 sales, international sales support, b2b, automotive sales, manufacturing, customized sales solutions, energy, lead generation, decision maker network, b2b sales outsourcing, sales development, b2b sales agency, target industry sales, trade goods, export sales growth, logistics, market growth support, logistics solutions, retail distribution, sales team outsourcing, smart manufacturing sales, sales strategy consulting, industry-specific expertise, services, aerospace, technical components, b2b_sales_outsourcing, market_expansion, technical_components, distributor_network, industry_expertise, decision_maker_network, sales_development, customer_acquisition, market_entry, sales_strategy, international trade & development, outsourcing/offshoring, crm, enterprise software, enterprises, computer software, information technology & services, mechanical or industrial engineering, marketing & advertising",'+49 89 14383634,"Constant Contact, Outlook, Mobile Friendly, Google Tag Manager, Google Maps, WordPress.org, Google Maps (Non Paid Users), DoubleClick, Apache, Remote, AI, Contact Center Solution","","","","","","",69c2817a1bb0fd00018ae83d,8742,54161,"PBS Sales is a sales agency offering comprehensive B2B sales solutions to companies seeking new business opportunities in Germany, Europe, and the United States. + +Our clients are companies that +- are seeking a B2B sales agency for their technical components, systems and materials, +- looking for sales outsourcing services for their manufacturing and logistics solutions, +- want to set up an efficient distributor network in wholesale and retail. + +We serve companies at all stages of growth, from ambitious startups to large corporations. They are seeking key customers in industries such as automotive, machinery and equipment, plant design and construction, agricultural machinery, railroad equipment, aerospace, power generation and distribution, and retail. + +30+ Years of Experience in Technical Sales +Founded in 1993, we have built an unparalleled network among original equipment manufacturers (OEMs), suppliers, and distributors, encompassing over 3,000 decision makers. This network allows us to deliver scalable and cost-effective sales solutions. + +Our Mission: Helping You Acquire New Customers +At PBS Sales, we understand the complexities and challenges associated with entering new markets. Long sales cycles, the lack of access to decision makers, and the difficulty of finding and retaining experienced sales personnel can present significant obstacles. Our mission is to overcome these challenges by leveraging our extensive network and industry expertise to drive your business growth. + +Our Team is Our Trademark +Our team of 25 highly motivated sales representatives brings deep technical expertise to every engagement. They are adept at interacting with senior executives in procurement, supplier development, QA/QM, and application engineering. Headquartered in Munich, Germany, PBS Sales operates from offices in Germany, France and the USA, ensuring comprehensive coverage of key markets. + +Legal notice: https://www.pbs-sales.de/site-notice/",1993,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6763e832c06e77000114fa13/picture,"","","","","","","","","" +MOBEX Group,MOBEX Group,Cold,"",91,telecommunications,jan@pandaloop.de,http://www.mobex.de,http://www.linkedin.com/company/mobex-gmbh,https://de-de.facebook.com/mobexgroupnagold,"","",Nagold,Baden-Wuerttemberg,Germany,"","Nagold, Baden-Wuerttemberg, Germany","mobilfunk, internetleitung, telefonanlagen, digital platforms, phone as a service, tarifanalyse, redundanz, dark fiber, managed services, festnetz, digitale services, tablet, vfb businesspartner, telekommunikation, datendienste, miete, smartphone, sourcing advisor, voice connectivity, mdm, lifecycle management, device as a service, daas, telecommunications",'+49 7452 88820,"Rackspace MailGun, SendInBlue, Outlook, Microsoft Office 365, Nginx, Mobile Friendly, Google Tag Manager, Remote","","","","","","",69c2817a1bb0fd00018ae83f,"","","MOBEX Group, based in Nagold, Germany, is a full-service provider specializing in IT, telecommunications, and managed services. Founded in 2000, the company has developed expertise in creating flexible hybrid workplaces through cloud-based solutions, device management, and connectivity. With a dedicated team of 48 to 99 employees, MOBEX generates approximately $6.6 million in annual revenue. + +The company operates across four key areas: Managed Device, Managed Connectivity, Cloud Solutions, and IT & Consulting. They manage the procurement, distribution, and disposal of devices, oversee telecommunications contracts, and provide cloud IT concepts tailored for hybrid work environments. Additionally, MOBEX offers consulting services to optimize IT and telecom strategies for their clients. With over 1,400 customers, MOBEX is recognized for its commitment to quality and customer-focused solutions in the IT and telecom sector.",2000,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6958b9d8dc9b4f0001527ce7/picture,"","","","","","","","","" +ADITO Software GmbH,ADITO,Cold,"",120,information technology & services,jan@pandaloop.de,http://www.adito.de,http://www.linkedin.com/company/adito-software-gmbh,https://facebook.com/ADITO.CRM,https://twitter.com/adito_software,4 Konrad-Zuse-Strasse,Geisenhausen,Bavaria,Germany,84144,"4 Konrad-Zuse-Strasse, Geisenhausen, Bavaria, Germany, 84144","vertrieb, kundenmanagementsoftware, crm, marketing, service, softwareentwicklung, collaboration, xrm, kundenbeziehungen, customerrelationshipmanagement, sales, prozessoptimierung, software development, relationship data management, ai integration, training, project management, enterprise software, user experience, workflow automation, financial services, relationship optimization, crm platform, relationship management in finance, customer engagement, crm webinars, process optimization, crm consulting, relationship management in manufacturing, modular platform, crm training, customer service, services, api connectivity, data integration, business intelligence, ai, email marketing, scalability, computer systems design and related services, relationship management for complex data, relationship management with partners, flexible crm, logistics, relationship management in construction, user-friendly interface, data management, relationship management, construction, data security, relationship management in logistics, digital transformation, cloud solutions, xrm platform, relationship network, event management, crm for industry, crm software, data privacy, relationship management with multiple stakeholders, relationship analytics, manufacturing, relationship insights, german data hosting, low-code customization, relationship management in industry sectors, cloud & on-premise, supplier management, customizing crm, relationship management platform, relationship lifecycle management, b2b, on-premise crm, healthcare, marketing automation, enterprise crm, relationship management with suppliers, relationship mapping, information technology and services, relationship building, analytics, customer data management, consulting, customer relationship management, relationship management in healthcare, cloud crm, modular crm, relationship lifecycle, relationship management for b2b, supplier relationship management, business process automation, german crm software, saas, finance, distribution, transportation & logistics, construction & real estate, enterprises, computer software, information technology & services, productivity, ux, marketing & advertising, computer & network security, cloud computing, events services, mechanical or industrial engineering, health care, health, wellness & fitness, hospital & health care",'+49 87 4396640,"Outlook, Remote, AWS SDK for JavaScript, Kubernetes, Ceph, Ansible, TypeScript, Flite, Linkedin Marketing Solutions, Instagram, Facebook, YouTube, TikTok, Python, Dito","","","","",12400000,"",69c2817a1bb0fd00018ae841,3571,54151,"ADITO Software GmbH is a German software manufacturer founded in 1998, specializing in flexible business, CRM, and xRM solutions. With over 35 years of experience in developing CRM systems, ADITO focuses on fostering unique business relationships through customizable platforms. The company operates independently, emphasizing continuity and long-term quality, with all development and hosting conducted in Germany to meet strict EU data protection standards. + +The core offering is the ADITO xRM platform, a comprehensive CRM system designed for marketing, sales, service, and more. It provides a 360-degree customer view, process automation, and data management, along with features for collaboration and logistics. The platform integrates seamlessly into existing IT landscapes and supports mobile access, ensuring high user acceptance and productivity. ADITO's industry-specific solutions cater to logistics, transport, and trade sectors, backed by a strong track record of successful implementations.",1988,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/675174d84191b300012c5649/picture,"","","","","","","","","" +it-daily.net | IT-Verlag GmbH,it-daily.net,Cold,"",14,publishing,jan@pandaloop.de,http://www.it-daily.net,http://www.linkedin.com/company/it-verlag-gmbh-it-daily.net,https://www.facebook.com/itdailynet,https://twitter.com/it__security,51 Ludwig-Ganghofer-Strasse,Otterfing,Bavaria,Germany,83624,"51 Ludwig-Ganghofer-Strasse, Otterfing, Bavaria, Germany, 83624","book & periodical publishing, it trends, it research, it strategy, artificial intelligence, industry 4.0, data security, b2b, it conferences, it analysis, enterprise software, it awards, cybersecurity, it infrastructure, cloud computing, it thought leadership, it webinars, it news, big data & analytics, it news portal, cybercrime, it job postings, rpa, services, digital transformation, web search portals, libraries, archives, and other information services, data protection, it industry updates, webinars and events, it security, it management, information technology, data center, it innovation, it compliance, media, information technology & services, computer & network security, enterprises, computer software, internet service providers",'+49 81 0464940,"Cloudflare DNS, Gmail, Google Apps, MailChimp SPF, CloudFlare Hosting, Hotjar, WordPress.org, Google AdSense, reCAPTCHA, Adobe Media Optimizer, Shutterstock, Google Analytics, Vimeo, Mobile Friendly, Apache, DoubleClick, Google Tag Manager, Cedexis Radar, AI","","","","",3985000,"",69c2817a1bb0fd00018ae84c,7375,519,"IT-Verlag für Informationstechnik GmbH, operating as it-daily.net, is a B2B media and publishing company based in Otterfing, Germany. Founded in 1991, it specializes in information technology communication for large and medium-sized enterprises. The company publishes the flagship magazine *IT Management*, which has been in circulation since 1994 and includes a supplement on IT security. + +In addition to the print magazine, IT-Verlag offers an ePaper version and maintains an online portal that features daily IT news, selected articles, themed eBooks, webcasts, and white papers. The company also provides newsletters focused on IT management and security, hosts industry conferences and webinars, and offers lead generation solutions tailored for IT manufacturers and service providers. Its target audience includes IT decision-makers, such as CIOs and IT managers, as well as system integrators and IT consultants. The magazine reaches around 64,000 readers per issue, and the online service is IVW/INFOline certified.",1991,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670aeec6e3b82200010a5f25/picture,"","","","","","","","","" +connexta,connexta,Cold,"",28,information technology & services,jan@pandaloop.de,http://www.connexta.de,http://www.linkedin.com/company/connexta-group,"","",4 Willy-Brandt-Allee,Munich,Bavaria,Germany,81829,"4 Willy-Brandt-Allee, Munich, Bavaria, Germany, 81829","cloudservices, modern workplace, itberatung, managed services, itsicherheit, it monitoring, penetration testing, it operations, threat detection, it strategy, cyber threat detection, security-by-design, information technology and services, it governance, disaster recovery, incident response, it vulnerability assessment, data protection, it resilience, it solutions, it services, risk assessment, it system integration, security risk reduction, cloud computing, hybrid it environments, services, security awareness training, it modernization, it security, it consulting services, it consulting, complexity reduction, data management, nis2 compliance, cloud security, digital transformation, risk management, it infrastructure, consulting, cybersecurity, it compliance, it support, b2b, cloud solutions, endpoint security, it outsourcing, operational efficiency, computer systems design and related services, cyber attack prevention, security management, it compliance standards, it security training, it audit, it risk management, computer & network security, information technology & services, enterprise software, enterprises, computer software, management consulting, outsourcing/offshoring",'+49 89 30904880,"Outlook, Hubspot, WordPress.org, Apache, Bootstrap Framework, Cvent, Mobile Friendly, Google Tag Manager, Remote, AI, Asana, SharePoint, Gem","",Merger / Acquisition,0,2023-12-01,"","",69c2817a1bb0fd00018ae83e,"",54151,"connexta is an IT-services group dedicated to supporting mid-market companies in Germany. The company specializes in multi-cloud services, IT consulting, and software and web development. It aims to simplify the planning and implementation of digital infrastructure transformation for its clients. + +The range of services offered by connexta includes multi-cloud solutions for hybrid environments, IT security services, and data protection. The company also provides managed services through its affiliated companies, which include several specialized IT service providers across Germany. + +connexta's mission is to help organizations manage their processes securely and reliably. The company values pioneering, ambition, excellence, pragmatism, reliability, and a human-centered approach in its operations.",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e77a6718296e00016e6d5a/picture,"","","","","","","","","" +Magelan GmbH,Magelan,Cold,"",22,information technology & services,jan@pandaloop.de,http://www.magelan.net,http://www.linkedin.com/company/magelan-gmbh,"","",25 Clarita-Bernhard-Strasse,Munich,Bavaria,Germany,81249,"25 Clarita-Bernhard-Strasse, Munich, Bavaria, Germany, 81249","datenschutz, it service management, eset, mobile device management, unified endpoint management, it lizenz management, endpoint security management, enterprise service management, landesk, datenschutz management software, itdienstleistungen, ivanti, itconsulting, virenschutz, itservices, it process automation, dsgvo, it asset management, tanium, compliance monitoring, endpoint security, digital workplace management, it systems management, efecte, aspera, managed services, managed security services, workplace as a service, it services & it consulting, security automation, endpoint management, computer systems design and related services, it infrastructure, consulting, managed service providers, threat detection, tanium endpoint management, tanium configuration compliance, patch management, it support, it outsourcing, cybersecurity, it-basishygiene, it asset discovery, it security software, b2b, computer security and data protection, cloud it services, it solutions, managed it services, it operations, services, it service automation, workplace as a service (waas), it security, itil framework, eset security solutions, it consulting, risk management, vulnerability management, it security solutions, deep instinct malware protection, malware defense, ivanti itsm, it monitoring, information technology and services, distribution, information technology & services, outsourcing/offshoring, computer & network security, management consulting",'+49 89 159050,"Outlook, Hubspot, Node.js, Xamarin, Data Analytics, React Native, Android, Micro, Vonage, Avaya, Remote, Mitel, Proofpoint","","","","","","",69c2817a1bb0fd00018ae844,7379,54151,"Magelan - founded in 1996 - is an owner-managed IT service and consulting company based in Munich, Germany, focusing on IT service management, unified endpoint management, endpoint security management and data protection management. 40 employees provide companies of all sizes with software solutions from selected manufacturers as well as services for the entire product portfolio. Magelan offers comprehensive customer support: from consulting and implementation of the solution, through training, to support and complete operation of the application from the company's own cloud. + +More information can be found at www.magelan.net",1996,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68cbd30f3673db000145c867/picture,"","","","","","","","","" +Campaign | Part of Bertelsmann Marketing Services,Campaign,Cold,"",72,marketing & advertising,jan@pandaloop.de,http://www.campaign-services.de,http://www.linkedin.com/company/campaign-part-of-bertelsmann-group,"","",161 Carl-Bertelsmann-Strasse,Guetersloh,North Rhine-Westphalia,Germany,33332,"161 Carl-Bertelsmann-Strasse, Guetersloh, North Rhine-Westphalia, Germany, 33332","crm, marketing automation, kampagnenmanagement, datadriven marketing, regionalmarketing, regelkommunikation, marketingkommunikation, advertising services, accounts for b2b and b2c, b2c, gamification, flexible solution concepts, performance marketing, document management, direct marketing solutions, shipping control, d2c, legal certainty in recall services, campaign management, consulting, recall management, services, retail, kassenbon-erkennung, seamless integration, customer support, customer journey optimization, multi-channel marketing, data protection, user experience, loyalty & experience, receipt recognition, direct marketing services, customer experience, promotion & engagement, channel orchestration, campaign optimization, customer relationship management, iso certifications, project management, programmatic print platform, b2b, offline and online communication, campaign dashboard, data-driven insights, port management & delivery services, tier/status level, transport & logistics management, sustainable packaging, loyalty programs, trigger-based campaigns, customer success management, marketing and advertising, full-service marketing, trigger-based marketing, logistics and supply chain, printing and document management, direct mail advertising, automated processes, cross-channel communication, reward management, sustainability, trade activation, customer insights, international reach, sustainable packaging concept, automated direct mail, print management support, data security, customer communication, wallet features, api integration, digital transformation, shipment reporting, digital print platform, data management, personalized campaigns, direct mail automation, port management, e-commerce, legal, distribution, transportation & logistics, sales, enterprise software, enterprises, computer software, information technology & services, marketing & advertising, saas, ux, productivity, consumer internet, consumers, internet, logistics & supply chain, environmental services, renewables & environment, computer & network security",'+49 52 418040865,"Hubspot, Mobile Friendly, Google Analytics, Google Tag Manager, Nginx","","","","","","",69c2817a1bb0fd00018ae84a,7311,54186,"Campaign is a full-service direct marketing agency based in Gütersloh, Germany, and part of Bertelsmann Marketing Services. With over 400 employees and more than 30 years of experience, Campaign specializes in tailored marketing and communication solutions, from consultation and strategy to execution and evaluation. + +The agency offers a range of services, including loyalty and experience solutions, multi-channel marketing orchestration, and transaction processing. Campaign focuses on personalized customer communication and data-driven targeting, enabling effective D2C campaigns and measurable results across various channels. Its key offerings include advanced technologies for loyalty management and integrated tools for analyzing purchase behavior. Campaign serves a diverse clientele, including industrial companies, publishers, retailers, and consumer goods firms, facilitating precise targeting and efficient marketing campaigns.",1993,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6842bc0f92f19f00011794c3/picture,"","","","","","","","","" +Mightycare,Mightycare,Cold,"",38,information technology & services,jan@pandaloop.de,http://www.mightycare.de,http://www.linkedin.com/company/mightycare-solutions-gmbh,https://facebook.com/mightycare-solutions-gmbh-213430502027609,https://twitter.com/mightycare_de,"",Frankfurt,Hesse,Germany,"","Frankfurt, Hesse, Germany","end user computing, automation, cloud computing, it security, virtualisierung, vsan, consulting, infrastructure services, virtual desktop, managed services, hosted services, virtualization, vmware, it services & it consulting, dell powerstore, datensicherheit, government, data protection, backup nakivo, immutable backup, project management, projektmanagement, endpoint security, hybrid cloud, multi-cloud management, services, content collaboration, computer systems design and related services, nvidia vgpu, software development and it consulting, storage scality, it-security, kritische infrastrukturen, dsgvo-konformität, virtual desktop infrastructure, automatisiertes data tiering, threat detection, omnissa horizon, geo-redundanz, darktrace, kubernetes management, cloud computing and data center services, compliance, risk management, bitdefender gravityzone, it solutions, b2b, datacenter, it-lösungen, it-consulting, proxmox ve, it-infrastruktur, cybersecurity, information technology and services, information security and cybersecurity, it support, vmware vsphere, network security, cisco duo, it consulting, container management, cloud-infrastruktur, healthcare, finance, education, enterprise software, enterprises, computer software, information technology & services, computer & network security, productivity, management consulting, health care, health, wellness & fitness, hospital & health care, financial services","","Outlook, Microsoft Office 365, Google Cloud Hosting, Remote, AI, AnyDesk, Microsoft Teams Rooms, Microsoft Windows Server 2012, Azure Linux Virtual Machines, , Dell PowerEdge Servers, NVIDIA Morpheus, Darktrace/OT, Scality Artesca, Bitdefender, , Veeam ONE, , Sophos","","","","","","",69c2817a1bb0fd00018ae840,7371,54151,"MightyCare Solutions GmbH is a German IT solutions provider with over 20 years of experience in high-availability IT infrastructure, managed services, and virtualization. The company has played a significant role in digital transformation in Germany, being one of the first VMware Consulting Partners in the country. Headquartered in Frankfurt am Main, MightyCare emphasizes exceptional customer care and collaborates closely with leading technology manufacturers. + +MightyCare offers scalable IT solutions tailored for mid-sized businesses and public authorities. Their services include managed cloud solutions, backup and recovery strategies, and IT consulting to optimize existing architectures. The company specializes in high-performance virtualization, particularly with VMware solutions, ensuring compliance with data sovereignty and GDPR regulations. MightyCare also partners with global tech leaders to provide advanced technology solutions, serving over 40 German universities and research institutes in the process.",2003,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6742190133467600012faaaa/picture,"","","","","","","","","" +DACH Projekt Consulting GmbH,DACH Projekt Consulting,Cold,"",19,information technology & services,jan@pandaloop.de,http://www.dachpc.com,http://www.linkedin.com/company/dach-projekt-consulting-gmbh,"","",8 Friedensplatz,Darmstadt,Hessen,Germany,64283,"8 Friedensplatz, Darmstadt, Hessen, Germany, 64283","software development, information technology & services",'+49 6151 4932662,"JQuery 2.1.1, Slack, WordPress.org, Apache, Typekit, Varnish, Mobile Friendly, Google Tag Manager, Remote","","","","","","",69c2817a1bb0fd00018ae847,"","","DACH Projekt Consulting GmbH is a company based out of Darmstadt, Germany.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69aeac5f64723f00017d807a/picture,"","","","","","","","","" +Archibo GmbH - IT Consultancy & Services,Archibo,Cold,"",17,information technology & services,jan@pandaloop.de,http://www.archibo.de,http://www.linkedin.com/company/archibo_it,https://www.facebook.com/archiboGermany,"",12 Ohmstrasse,Langen,Hesse,Germany,63225,"12 Ohmstrasse, Langen, Hesse, Germany, 63225","java, scrum, net full stack development, project management, devops, dynamics crm, dynamics 365, agile, power platform, sql development bi, sql development amp bi, computer systems design and related services, agilibo saas, energy & utilities, microsoft dynamics 365 business central - continia, azure cloud, agile transformation, support services, enterprise mobility, information technology and services, archibo connects 365, b2b, it architecture, dynamics 365 customization, automation, cloud solutions, custom application modernization, gdpr-compliant ai phone agent, cloud application development, custom software, digital strategy, azure cloud solutions, legacy system modernization, software maintenance, automated customer inquiries, cloud infrastructure, services, it consultancy, digital transformation, process automation, measurement utility portal, microsoft dynamics 365, big data analytics, software development, application development, end-to-end business solutions, consulting, application integration, enterprise mobility strategy, agile coaching, saas, productivity, information technology & services, information architecture, cloud computing, enterprise software, enterprises, computer software, marketing, marketing & advertising, internet infrastructure, internet, it consulting, management consulting, app development, apps",'+49 61 034409610,"Outlook, Microsoft Office 365, Google Cloud Hosting, Varnish, Wix, Mobile Friendly","","","","",9000000,"",69c2817a1bb0fd00018ae84b,7375,54151,"Archibo GmbH is an IT Consultancy and Software development company based near Frankfurt aimed at providing its clients tailored IT Software development, support and Solutions. Archibo also develops talented Software professionals into domain experts and provides IT staffing to its valued clients. Archibo provides Power Platform, Dynamics 365 consultation, implementation and customization and development. We can fulfill your Full Stack Software Development and support, Scrum coaching and implementation, Database and Business Intelligence development needs.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67163cfdc92d73000109b055/picture,"","","","","","","","","" +Schnebel IT-Systemhaus GmbH,Schnebel IT-Systemhaus,Cold,"",17,information technology & services,jan@pandaloop.de,http://www.schnebel-it.de,http://www.linkedin.com/company/schnebel-systemhaus-gmbh,https://www.facebook.com/schnebelit,"",2A Kanzleistrasse,Zell,Baden-Wuerttemberg,Germany,77736,"2A Kanzleistrasse, Zell, Baden-Wuerttemberg, Germany, 77736","it services & it consulting, netzwerklösungen, deutsches rechenzentrum, it-support, digitalisierung, it-modernisierung, it-performance-optimierung, it-security, it-helpdesk, managed services, security, it-wartung, it-lösungen, information technology & services, consulting, it-consulting, it-integration, cloud computing & data center services, it-notfallmanagement, computer systems design and related services, fullservice it, cloud-hosting, cloud computing, b2b, it-management-software, telefonie-lösungen, it-management, firewall, it-monitoring in echtzeit, mailstore e-mail-archivierung, datensicherung, it-infrastruktur, it-sicherheitskonzepte, it-optimierung, it-helpdesk 24/7, it-projekte, it-notfallplanung, maßgeschneiderte it-lösungen, dsgvo-konform, lancom platinum partner, it-implementierung, it-analyse, it-planung, managed service providers, vpn-lösungen, it-compliance-beratung, it-upgrade, it-kostenreduktion, cloud-lösungen, it-administration, monitoring-tools, support, it-dienstleister, home-office-lösungen, support & monitoring, dsgvo-konforme it, rechenzentrum, computer software & services, it-fördermittelberatung, it-sicherheit, fernwartung, it-compliance, it-strategie, it-services, starface telefonanlagen, it-beratung, helpdesk-support, it-asset-management, backup-lösungen, it consulting & support, services, distribution, enterprise software, enterprises, computer software",'+49 78 355403980,"Outlook, Microsoft Office 365, Facebook Login (Connect), WordPress.org, Facebook Custom Audiences, Vimeo, Apache, Stripe, Facebook Widget, Mobile Friendly, Google Tag Manager, reCAPTCHA, Circle, Salesforce CRM Analytics, Microsoft 365, Office365","","","","","","",69c2817a1bb0fd00018ae84f,7371,54151,Ihr IT-Systemhaus im Kinzigtal für Telekommunikation und IT.,2002,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670288e5378b920001af8ff7/picture,"","","","","","","","","" +Wecon PLM GmbH,Wecon PLM,Cold,"",11,information technology & services,jan@pandaloop.de,http://www.wecon-plm.de,http://www.linkedin.com/company/wecon-plm-gmbh,"","",86 Moosacher Strasse,Munich,Bavaria,Germany,80809,"86 Moosacher Strasse, Munich, Bavaria, Germany, 80809","cloud services, go digital, bmw consulting, testmanagement, consulting, change management, projektmanagement, ki softwareentwicklung, software development, test, custom software development, web development, aws, implementierung, softwareentwicklung, it consulting, digitale transformation, ai software development, azure, konzeption, company building, plm, training, implementation, bmw partner, it services & it consulting, cloud computing, innovative softwarelösungen, prozessanalyse, it-infrastruktur, datenbanken, software engineering, datenintegration, mobile entwicklung, computer systems design and related services, skalierbare cloud-lösungen, software testing automation, ci/cd pipelines, container orchestration, performance monitoring, echtzeitanalysen, datengetriebene usecases, künstliche intelligenz, it-sicherheitszertifizierung, automatisierte api-tests, microservice deployment mit kubernetes, mobile applikationen, ki und machine learning, microservices, echtzeitdaten, automatisierung, devops, ki-basierte anwendungen, software-testing, agiles vorgehen, it-projektabsicherung, data security, datenbanksysteme, visualisierungstools, it-beratung, ki-basierte app entwicklung, container-orchestrierung, it-sicherheit, performance optimierung, cloud-technologien, agile softwareentwicklung, prozessoptimierung, cloud migration, hybrid cloud lösungen, b2b, digitalisierung, requirement engineering, predictive analytics, skalierbare cloud-architekturen, datenanalyse, container-technologie, datenschutz, visualisierung, datenschutzkonformität, information technology and services, modernste technologien, microservice-architektur, cloud infrastruktur, services, automatisiertes testing, sicherheitszertifizierte software, sicherheitsprotokolle, automatisierte bild- und textanalyse, data analytics, sicherheitsstandards, cybersecurity, cloud infrastructure, cloud-strategie, mobile app development, machine learning, cloud migration tools, automatisierte tests, zim-förderung für innovationen, agile projektumsetzung, enterprise software, enterprises, computer software, information technology & services, management consulting, computer & network security, internet infrastructure, internet, artificial intelligence",'+49 89 32796163,"Outlook, Amazon AWS, Vimeo, Wufoo, Mobile Friendly, Facebook Login (Connect), Facebook Custom Audiences, WordPress.org, Facebook Widget, Apache, AI, Render","","","","","","",69c2817a1bb0fd00018ae850,7375,54151,"WECON PLM GmbH is a company focused on: + +Software development +Validating IT-projects +Your consulting needs +WECON PLM GmbH offers tailored solutions. Experience gained through previous engagements enables us to realistically estimate demands, and to plan projects with a long-term focus. Through this experience, we guarantee quick resolution, prompt support, and individualized solutions. + +Cooperation with other highly-specialized consulting companies, and access to a pool of professionals, enables WECON PLM GmbH to flexibly increase staff sizes at short notice. We can build the perfect team for each individual project's unique requirements. + +Data security and efficient processes are top concerns for us at Wecon. We are certified according to ISO 9001 as well as TISAX Level 3 to safeguard your most sensitive data at all times.",2012,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66d40c0e8fa3ed00012f69b9/picture,"","","","","","","","","" +ventr,ventr,Cold,"",14,management consulting,jan@pandaloop.de,http://www.ventr.de,http://www.linkedin.com/company/ventr,"","",21 Kleine Duewelstrasse,Hannover,Niedersachsen,Germany,30171,"21 Kleine Duewelstrasse, Hannover, Niedersachsen, Germany, 30171","technology building, digitale geschaeftsmodelle, disruption, company building, transformation, digital sales, ma, technologieentwicklung, diversifikation, consulting, digitale bildung, automatisierung, konsolidierung, finanzierung, strategie, angewandte ki, tranformation, ar vr, 3ddruck, business consulting & services, b2b, information technology and services, growth hacking, ki plattform, innovation, m&a transaktionen, digitale lieferketten, e-commerce lösungen, unternehmensbewertung, software development, smart labs, technologieberatung, kmu skalierung, digital transformation, digital marketing, m&a beratung, automatisierte workflows, blockchain, schülerkarriereplattform, content marketing, online marketing strategien, management consulting, f&e zentren, unternehmensgründung, geschäftsideen, innovationsförderung, startup unterstützung, online marketing, company & technology building, digitale zwillinge, digitale whiteboards mit ki, business consulting, digitale whiteboards, startup support, e-commerce, smart city simulationen, bildungsplattformen, beteiligungsportfolio, iot, venture building, digitale geschäftsmodelle, investoren scouting, ki-tools für workshops, e-commerce-management, services, personalisierte geschenkboxen, erp systeme, management consulting services, startup ecosystem, gpt integration, educational services, nachhaltigkeit, venture capital and private equity, cloud-basierte plattformen, erp-entwicklung, finance, education, information technology & services, marketing & advertising, consumer internet, consumers, internet, venture capital & private equity, financial services",'+49 511 47351888,"Outlook, Microsoft Office 365, WordPress.org, Google Tag Manager, Nginx, Mobile Friendly, Remote, Mitel","","","","","","",69c281750b5bce00010f9036,8742,54161,"Die ventr Gruppe begleitet Unternehmen auf ihrem Weg zur digitalen Transformation – getreu dem Motto „we shape tomorrow"". Unser integriertes Strategie- und Tech-Team vereint strategische Planung mit technologischem Know-how, um maßgeschneiderte Lösungen zu entwickeln, die direkt auf die Bedürfnisse unserer Kund:innen zugeschnitten sind. + +Mit speziell entwickelten Beratungsframeworks wie dem House of Transformation, dem House of Technology und dem House of Founders bieten wir methodische Ansätze, die strukturiert durch den gesamten Transformationsprozess führen. Während das House of Transformation auf nachhaltige Veränderungen abzielt, fokussiert das House of Technology auf die erfolgreiche Integration neuer Technologien. Das House of Founders unterstützt Gründerteams beim Aufbau innovativer Spin-Offs – von der Ideenfindung bis zur Marktreife. + +Unser Technologie-Team arbeitet eng mit der Projektierung zusammen, um die Infrastruktur für digitale Spin-Offs und neue Geschäftsmodelle zu schaffen. Von Echtzeit-Daten-Hubs bis hin zur passenden Hard- und Software legen wir eine stabile Grundlage für zukunftsfähige Prozesse. + +Zusätzlich setzen wir auf unsere eigene KI-Lösung: Der KI-Assistent wird bereits in Kundenprojekten eingesetzt, um Prozesse wie Customer Care oder Bestellannahmen zu automatisieren. Mit unserem erfahrenen Odoo-Team bieten wir außerdem spezialisierte ERP-Lösungen, die Effizienz und Skalierbarkeit gewährleisten. + +Zur optimalen Zusammenarbeit nutzen wir Bentimento, ein KI-gestütztes digitales Whiteboard, das von der heise Redaktion als weltweit führend bewertet wurde. Bentimento unterstützt uns dabei, Workshops und Meetings zielgerichtet und produktiv zu gestalten. + +Unsere regionale Präsenz – von Hannover bis Hamburg und darüber hinaus – ermöglicht uns, schnell und flexibel auf Kundenbedürfnisse einzugehen. Ventr stellt sich als starker Partner an die Seite von Unternehmen, um heute die Weichen für den Erfolg von morgen zu stellen.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/683b7e149bac960001d70b78/picture,"","","","","","","","","" +aptus IT GmbH,aptus IT,Cold,"",12,information technology & services,jan@pandaloop.de,http://www.aptus.de,http://www.linkedin.com/company/aptus-it-gmbh,"","","",Backnang,Baden-Wuerttemberg,Germany,"","Backnang, Baden-Wuerttemberg, Germany","jewellery, crmxrm, cas genesisworld, dienstleistung, digitalisierung, enterprise resource planning, service, customer relationship management, erp, inforcom, aerp, prozessoptimierung, it services & it consulting, systemintegration, cloud computing, marketing, crm im projektmanagement, geschäftsprozesse, erp-systeme, automatisierte workflows, aservice app, dashboards, b2b, kundenmanagement, echtzeit-daten, mobile crm, dms, computer systems design and related services, automatisierung, business intelligence, crm-lösungen, ki-integration, software development, mittelstand, branchenspezifische lösungen, crm software, schnittstellen, benutzerfreundlichkeit, erp bau, software individuell anpassbar, ki-gestützte prozesse, kundenservice, kundenbindung, crm im management, crm im marketing, projektmanagement, forecasting, marketing automation, cloud-lösungen, it consulting, business software, erp jewellery, crm im sales, datenschutz, workflow automation, mobile anwendungen, crm, mobiles arbeiten, webinare, kundenorientierte software, information technology and services, webinare und veranstaltungen, skalierbarkeit, crm im service und support, enterprise software, services, vertrieb, distribution, luxury goods & jewelry, enterprises, computer software, information technology & services, sales, analytics, marketing & advertising, saas, management consulting",'+49 7191 90200,"Apache, Google Tag Manager, WordPress.org, Mobile Friendly, Render","","","","","","",69c281750b5bce00010f903f,7375,54151,"CRM und ERP Lösungen + +Vom Erstgespräch über die Projektentwicklung und -einführung bekommen die Interessenten stets ein kompetentes Team aus Entwicklern sowie Beratern zur Seite gestellt. Im Gespräch können individuelle Bedürfnisse geklärt, in aKonzept dokumentiert und im Anschluss gemeinsam realisiert werden. + +Wir wollen echte Mehrwerte schaffen, alle Softwareprodukte in unserem Hause werden daher individuell auf die Bedürfnisse unserer Kunden zugeschnitten. + +So finden auch Sie die perfekte Lösung für Ihr Unternehmen!",2001,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670c9db0d1fd950001123c53/picture,"","","","","","","","","" +IntraFind Software AG,IntraFind Software AG,Cold,"",67,information technology & services,jan@pandaloop.de,http://www.intrafind.com,http://www.linkedin.com/company/intrafind-software-ag,https://de-de.facebook.com/Intrafind,"",368 Landsberger Strasse,Munich,Bavaria,Germany,80687,"368 Landsberger Strasse, Munich, Bavaria, Germany, 80687","enterprise search, insight engines, text analytics, software fuer bos, knowledge management, semantic search, net app search, kuenstliche intelligenz, artificial intelligence, wissensmanagement, metadatengenerierung, linguistics, intranetsuche, llms, semantische suche, cognitive search, document intelligence, generative ai, unternehmensweite suche, software fuer behoerden, search on websites, digitaler arbeitsplatz, atlassian confluence suche, suche in netapp daten, suchloesungen fuer dsgvogdpr, search in fileshare & intranet, software development, enterprise software, enterprises, computer software, information technology & services, b2b",'+49 89 30904460,"Salesforce, Outlook, MailChimp SPF, Microsoft Office 365, Atlassian Cloud, Webflow, Slack, Google Font API, Google Tag Manager, Google AdSense, Apache, Shutterstock, Mobile Friendly, Google Analytics, Google AdWords Conversion, Ruxit, Ubuntu, AI, Remote, Tor, SES","","","","",6948000,"",69c281750b5bce00010f9040,7371,"","IntraFind Software AG is a German software company based in Munich, specializing in enterprise search, artificial intelligence, and intelligent document analysis. Founded in 2000, the company has grown to serve over 1,000 customers worldwide, including small and medium-sized enterprises, large corporations, and public authorities. IntraFind employs over 65 people and supports approximately two million daily users. + +The company's main offering is the iFinder product suite, which utilizes technologies like Elasticsearch, machine learning, and natural language processing. IntraFind's solutions enable efficient searching across both structured and unstructured data, intelligent document processing, and automation of document-based processes. Their products cater to a wide range of needs, from simple search tools to comprehensive enterprise search and knowledge management systems. IntraFind also provides support, consulting, and training services to ensure successful implementation and operational excellence.",2000,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69ad7cab4ca0750001bc6746/picture,"","","","","","","","","" +Matterway,Matterway,Cold,"",25,information technology & services,jan@pandaloop.de,http://www.matterway.io,http://www.linkedin.com/company/matterway,https://www.facebook.com/gomatterway,"",242 Prenzlauer Allee,Berlin,Berlin,Germany,10405,"242 Prenzlauer Allee, Berlin, Berlin, Germany, 10405","operational excellence, it simplification, mobile, artificial intelligence, robotic process automation, intelligent automation, digital assistant, digital ergonomics, automation, it modernization, usability & ux, business process improvement, attended automation, ai, rpa, enterprise mobility, enterprise software, saas, mobile enterprise, software, information technology, software development, process adherence, human-in-the-loop, heterogeneous document handling, b2b, information technology and services, computer systems design and related services, workflow automation, multi-system integration, data security, operational efficiency, ai assistant, industrial automation, ui automation, process improvement, services, data extraction, digital transformation, unstructured data processing, form pre-fill, consulting, decision support, diagnostics, financial services, llms/ai, business services, low-code development, screen-aware ai, workflow capture, ocr integration, regulatory compliance, security compliance, exception handling, error reduction, task automation, internet, information technology & services, enterprises, computer software, computer & network security, mechanical or industrial engineering",'+49 176 39327604,"Cloudflare DNS, Gmail, Outlook, Google Apps, Microsoft Office 365, Amazon AWS, Atlassian Cloud, Microsoft Azure, Webflow, Sprig, Hubspot, Mobile Friendly, DoubleClick Conversion, Google Dynamic Remarketing, Facebook Widget, Facebook Login (Connect), Twitter Advertising, Facebook Custom Audiences, Google Tag Manager, DoubleClick, Linkedin Marketing Solutions, Android, AI, Remote",3740000,Seed,0,2020-12-01,"","",69c281750b5bce00010f9031,7375,54151,"Matterway is a Berlin-based software company that specializes in enhancing operational efficiency for large organizations through its AI-powered Task Acceleration Platform and Matterway Assistant. The company focuses on automating mundane tasks and streamlining workflows, allowing operational teams to boost productivity without changing existing IT systems. + +Founded in Germany, Matterway operates with a collaborative culture and offers remote work options. Its core product, the Matterway Assistant Platform, provides real-time guidance and support for operational tasks across various systems. Key features include process checklists, form pre-filling, and integration of robotic process automation with human oversight. This platform is designed to optimize fragmented processes, reduce manual data entry, and support decision-making in sectors such as automotive and medical. + +Matterway serves large organizations, BPOs, IT professionals, and sales teams, helping them achieve significant improvements in efficiency and task handling. The company has demonstrated quick deployment and effective solutions that transform support and streamline operations for its clients.",2019,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/673ac0e1350c6600014631c6/picture,"","","","","","","","","" +Contentserv,Contentserv,Cold,"",120,information technology & services,jan@pandaloop.de,http://www.contentserv.com,http://www.linkedin.com/company/contentserv,https://facebook.com/Contentserv/,https://twitter.com/contentserv,1 Reutfeld,Rohrbach,Bayern,Germany,85296,"1 Reutfeld, Rohrbach, Bayern, Germany, 85296","master data management, pim, marketing experience management, product experience platform, feed management, product information management, product experience management, content syndication, dam, product experience cloud, digital asset management, marketing resource management, integrated marketing management, publication management, mdm, pxm, marketplaces, marketing content management, saas pim, close the loop, enterprise software, e-commerce, digital marketing, software, consumer internet, information technology, internet, software development, management consulting services, retail, localization, data onboarding, ai-powered platform, b2c, data governance, consumer goods, workflow automation, manufacturing, b2b, channel optimization, multichannel publishing, d2c, product lifecycle management, food & beverage, services, global translation, content personalization, content enrichment, fashion, ai-driven data validation, data enrichment, saas, consumer products & retail, digital media, media, enterprises, computer software, information technology & services, consumers, marketing & advertising, mechanical or industrial engineering",'+49 8442 9253800,"Cloudflare DNS, Amazon SES, Outlook, Microsoft Office 365, CloudFlare Hosting, Atlassian Cloud, React Redux, GitLab, Webflow, Hubspot, Slack, WordPress.org, Facebook Custom Audiences, Wistia, Linkedin Marketing Solutions, Facebook Login (Connect), Vimeo, Hotjar, Adobe Media Optimizer, Linkedin Widget, Cedexis Radar, Mobile Friendly, Google Tag Manager, DoubleClick Conversion, LeadForensics, DoubleClick, Google Dynamic Remarketing, Facebook Widget, Linkedin Login",242000000,Merger / Acquisition,242000000,2025-02-01,17600000,"",69c281750b5bce00010f9033,7375,54161,"Contentserv is a Product Experience Management (PXM) platform based in Rohrbach, Germany, founded in 1999. The company specializes in helping businesses create, manage, and distribute high-quality product content across various sales channels. In February 2025, Centric Software acquired a majority stake in Contentserv, integrating it into their offerings. + +The platform offers an integrated, cloud-based solution that includes Product Information Management (PIM) for consolidating product data, Digital Asset Management (DAM) for organizing digital assets, and an AI-fueled Product Experience Cloud for managing content. It also features personalization capabilities to enhance customer experiences. Contentserv serves a diverse range of industries, including FMCG, retail, and industrial manufacturing, supporting marketers, product teams, and IT professionals in their efforts to optimize product data and customer interactions. The company has around 200 employees and reported revenue of $36.6 million.",2000,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69ad02a70f4e520001a4f9c3/picture,Centric Software (centricsoftware.com),5d3293a9a3ae6182d950db1f,"","","","","","","" +asioso,asioso,Cold,"",44,information technology & services,jan@pandaloop.de,http://www.asioso.com,http://www.linkedin.com/company/asioso,https://www.facebook.com/asiosoDE,"",26 Wilhelmine-Reichard-Strasse,Munich,Bavaria,Germany,80935,"26 Wilhelmine-Reichard-Strasse, Munich, Bavaria, Germany, 80935","strategische beratung, firstspirit, projektmanagement, pim, wcm, ux design, mam, ux konzeption, entwicklung, crm, digitales marketing, ecommerce, pimcore, technology, information & internet, firstspirit services, b2c, shopware, digital agency, sharedien, d2c, employee experience, ai-based optimization, cloud solutions, e-commerce, consulting, services, retail, information technology and services, technical implementation, social intranet, data protection, customer experience, training, digital marketing and advertising, social media marketing, b2b, pimcore services, computer systems design and related services, software development, data management, ai solutions, cms & mam solutions, design, content management, ai consulting, seo services, marketing automation, digital strategy, web development, accessibility, content marketing, digital transformation, cms, lead generation, consumer_products_retail, sales, enterprise software, enterprises, computer software, information technology & services, consumer internet, consumers, internet, cloud computing, marketing & advertising, search marketing, marketing, saas",'+49 89 954570610,"Cloudflare DNS, SendInBlue, Outlook, CloudFlare Hosting, CloudFlare, Atlassian Cloud, Zoho SalesIQ, Slack, Mobile Friendly, reCAPTCHA, Google Tag Manager, Google Maps (Non Paid Users), Google Maps, Remote, Avaya, Android","","","","","","",69c281750b5bce00010f903c,7375,54151,"asioso is an international digital agency based in Munich, Germany, with additional offices in Belgrade and Banja Luka. Founded in 2017, the agency specializes in digital transformation, marketing, and technology solutions. With a team of around 45-47 professionals, asioso combines strategic consulting, technical expertise, creative design, and project management to enhance brand communication and create innovative digital experiences. + +The agency offers a wide range of services, including website strategy, digital marketing, customer journey optimization, and e-commerce solutions. They are recognized for their expertise in content and asset management, UI/UX design, and tailored training. asioso partners with various platforms, such as Censhare and Shopware, to deliver projects across Austria, Switzerland, Germany, and beyond. The company emphasizes sustainability, quality, and long-term value, positioning itself as a top employer that invests in the development of junior staff.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68be72a8c3781600019eb3c2/picture,"","","","","","","","","" +Zenk SystemPartner GmbH,Zenk SystemPartner,Cold,"",13,information technology & services,jan@pandaloop.de,http://www.zenk-systempartner.de,http://www.linkedin.com/company/zenk-systempartner-gmbh,"","",49 Schaeferberg,Henstedt-Ulzburg,Schleswig-Holstein,Germany,24558,"49 Schaeferberg, Henstedt-Ulzburg, Schleswig-Holstein, Germany, 24558","infrastrukturberatung, ihk zertifizierter ausbildungsbetrieb, unified communications, unified communications software, swyx connector for teams, cloud pbx, telekommunikation, swyx, it consulting, alarm & notrufanlagen, multisite-contact-center, remote work solutions, sip trunk, services, finanzierung, up to date-check, telecommunications, herstellerunabhängige lösungen, openscape business, microsoft teams integration, consulting, business communication, herstellerunabhängige beratung, contact center solutions, tell-phone cloud-pbx, it infrastructure, information technology and services, procall enterprise, montagearbeiten, long-term partnership, construction, alarm systems, fact24 alarm management, herstellerübergreifende plattformen, computer systems design and related services, b2b, voip, network integration, softswitch software, voip solutions, integrierte sicherheitslösungen, distribution, transportation & logistics, information technology & services, management consulting",'+49 41 93889090,"Microsoft Office 365, Nginx, WordPress.org, Mobile Friendly","","","","","","",69c281750b5bce00010f9044,7375,54151,"Zenk SystemPartner GmbH ist ein Telekommunikationsunternehmen und IT-Systemhaus mit Schwerpunkt Telefonanlagen, Cloud, Alarmserver, Netzwerktechnik, Schwesternrufanlagen und Brandmeldeanlagen. Zenk SystemPartner GmbH ist Deutschlandweit tätig.",2009,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66eea70d02303e00015574f4/picture,"","","","","","","","","" +aiio GmbH,aiio,Cold,"",42,information technology & services,jan@pandaloop.de,http://www.aiio.de,http://www.linkedin.com/company/aiio-gmbh,https://de-de.facebook.com/aiio.official/,"",10A Klausenerstrasse,Magdeburg,Sachsen-Anhalt,Germany,39112,"10A Klausenerstrasse, Magdeburg, Sachsen-Anhalt, Germany, 39112","softwareentwicklung, sap change management, office 365 apps, auditmanagementsharepoint, risikomanagement, microsoft teams, projektmanagementsharepoint, artificial intelligence, microsoft 365, prozessmanagement, kuenstliche intelligenz, ai, sharepoint, prozessmanagementsharepoint, ki, software development, enterprise software, saas, user-friendly interface, organizational efficiency, process landkarten, process task comments, cloud computing, collaborative process management, process documentation, process model sharing, process task standards, cloud-native software, process optimization ai, process task automation, ai-driven process optimization, process task history, sharepoint online, process task review, process task policies, digital transformation, process management in microsoft 365, process task audit, information technology and services, process task approval, workflow management, ai copilot, cloud security, microsoft 365 integration, services, process task management, process task compliance, process task regulations, process automation, process monitoring, business process management, digital workflow automation, process task collaboration, process improvement, process modeling, b2b, process task feedback, process task guidelines, user training, organizational crowd mining, process task tracking, process reporting, process mapping, software as a service (saas), computer systems design and related services, process version control, workflow automation, ai process management, process task notifications, process optimization, process task norms, process landmaps, consulting, process analysis, process visualization, information technology & services, enterprises, computer software",'+49 391 25194879,"Cloudflare DNS, Outlook, Microsoft Office 365, Mobile Friendly, Google Tag Manager, Segment.io, Android, Remote, AI","",Series A,0,2024-06-01,"","",69c281750b5bce00010f9030,7375,54151,"aiio GmbH is a German software company based in Magdeburg, founded in 2007. The company focuses on process management and business process optimization through AI-powered software solutions. Originally known as Lintra plus GmbH, aiio has transitioned from a traditional BPM platform provider to an AI-driven organizational intelligence company. + +The company offers two main products: Quam, an integrated management system designed for Microsoft SharePoint users, and its flagship AI-powered process management platform, aiio, launched in May 2022. This platform integrates with Microsoft 365 and Teams, providing features such as automatic AI import of process knowledge, AI-driven process optimization, real-time process intelligence, and digitized workflows. aiio emphasizes a human-centric approach, allowing all employees to engage in process improvement while ensuring GDPR compliance and data security. + +With over 350 customers and approximately 700,000 users, aiio primarily targets businesses within the Microsoft ecosystem. The company has recently secured Series A funding, positioning itself for future growth and innovation in cognitive organizational management.",2002,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/690d8efe62b7a30001602784/picture,"","","","","","","","","" +PRODATO,PRODATO,Cold,"",180,information technology & services,jan@pandaloop.de,http://www.prodato.de,http://www.linkedin.com/company/prodato,"","",Herderstrasse,Nuremberg,Bavaria,Germany,90427,"Herderstrasse, Nuremberg, Bavaria, Germany, 90427","tibco jaspersoft, business intelligence, tibco, data warehousing, jaspersoft, oracle, analyics, talend, kuenstliche intelligenz, sap bw, it consulting, machine learning, couchbase, tibco spotfire, deltamaster, prozessautomatisierung, etl, java, it services & it consulting, it-betrieb, data architecture optimization, data security standards, datenqualität, data platform development, data governance framework, data scalability solutions, data monitoring & optimization, data security & compliance, data governance, european cloud-infrastruktur, managed services, cloud computing, digital transformation, künstliche intelligenz, data infrastructure, data management, cloud infrastructure, datensicherheit, datenvisualisierung, data quality management, european cloud, workflow automation, cloud support, automatisierte datenanalyse, datenintegration, projektmanagement, europäische cloud-infrastruktur, datenarchitektur, support, data lake, consulting, data infrastructure design, data analytics and business intelligence, process optimization, it-infrastruktur, data integration solutions, cloud services, data analytics, data monitoring, datenqualitätssicherung, it support, automatisierung, speicherstrategien, datenmodellierung, services, data cleansing, implementierung, cloud migration, data compliance management, echtzeit-datenströme, project management, datenmanagement, analyse und reporting, data optimization, b2b, augmented analytics, data strategy, it-consulting, technologiepartnerschaften, data visualization, datenmanagement-strategie, risk management, technologieberatung, managed service, software development, data cleansing & validation, data platform, data scalability, data security, data quality, datenanalyse-tools, data modeling & structuring, user experience, data analysis, computer systems design and related services, data architecture, technologieauswahl, data governance frameworks, cloud service, datenstrategie, data compliance, dsgvo-konforme cloud, it infrastructure, data modeling, digitale transformation, process mining, digital baselining, datenvirtualisierung, prozessoptimierung, data warehouse, projektplanung, data integration, analytics, data & ai, information technology and services, dsgvo-compliance, finance, information technology & services, management consulting, artificial intelligence, enterprise software, enterprises, computer software, internet infrastructure, internet, productivity, computer & network security, ux, financial services",'+49 911 9947300,"Outlook, Microsoft Office 365, Apache, Mobile Friendly, WordPress.org, UserLike, Google Tag Manager, Hubspot, SAP Analytics Cloud, Snowflake, Alteryx, SAP, Oracle Analytics Cloud, Jaspersoft, Talend, AWS SDK for JavaScript, Java SE, Java EE, Docker, Kubernetes, Red Hat JBoss Enterprise SOA Platform, REST, SQL, Git, Canva, Linkedin Marketing Solutions, Instagram, Ning, Fusion ERP Analytics, Azure Analysis Services, Amazon Web Services (AWS), Google Cloud Platform, Strategy (formerly MicroStrategy)","",Merger / Acquisition,0,2024-06-01,"","",69c281750b5bce00010f9037,7375,54151,"PRODATO, a Dataciders Company based in Nuremberg, specializes in IT consulting focused on digitalization projects. The firm aims to enhance clients' core business operations through data-driven strategies and technologies. With a commitment to customized, vendor-independent solutions, PRODATO has successfully completed over 1,000 projects and serves more than 100 satisfied customers. + +The company offers a comprehensive range of digitalization services, including strategy development, technology selection, project implementation, and ongoing support. PRODATO also provides managed services for IT infrastructure management. Their expertise extends to data processing, AI integration, process automation, and self-service analytics, utilizing tools like SAP Analytics Cloud and Pyramid Analytics. Additionally, PRODATO promotes the Moresophy CONTEXTSUITE, an enterprise AI solution designed for knowledge graphs and intelligent data management.",1999,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69ae309b3e0f8400010890db/picture,"","","","","","","","","" +VIAFON GmbH,VIAFON,Cold,"",81,marketing & advertising,jan@pandaloop.de,http://www.viafon.de,http://www.linkedin.com/company/viafon-gmbh,https://www.facebook.com/viafongmbh,"",117A Landsberger Allee,Berlin,Berlin,Germany,10407,"117A Landsberger Allee, Berlin, Berlin, Germany, 10407","quality management, communication, telesales, appointment setting, customer services, teleaccount management, upselling, telecommunications, remote work, solution selling, advertising, callcenter services, sales, cross selling, quality assurance, recruiting, sales excellence, b2b sales, advertising services, kundenfeedback-prozesse, kundenakquise, vertriebsunterstützung, kundenfeedback-management, automatisierte gesprächsanalyse, kundenkommunikation, kundenkontaktanalyse, lead generation, qualitätsbewertung, customer journey, terminvereinbarung, remote customer service, automatisierte sprachtranskription, kundenfeedbacksysteme, business process outsourcing, contact center, kundenbetreuung, teamaufbau, kundenservice-optimierung, customer relationship management, b2b, innovation, kundenfeedback-software, remote-first, telephone call centers, kundenzufriedenheit, kundenfeedback-systeme, customer experience, customer insights, customer service, kundenkontakt, kundenkontaktbewertung, market research, ki-gestützte kundenfeedbackanalyse, kundenfeedbackmanagement, kundenfeedbackanalyse, hybride evaluationsstrategie, kundenkontaktqualität, hybrid-qualitätskontrolle, process optimization, kundenfeedback-analyse, sprachanalyse-tools, vertriebssteigerung, kundenbindung, vertriebsprozesse, ki-basierte kundenkontaktbewertung, kundenkontaktsteuerung, services, hybrid-qualitätsmanagement, kundenfeedbackprozesse, inside sales, qualitätsmanagement, kundenkontaktmanagement, kundenfeedback-tools, customer retention, qualitätskontrolle, kundenfeedbacktools, kundenfeedback, call center, vertrieb, b2c, consulting, crm-integration, kundenfeedback-optimierung, kundenkontaktoptimierung, marketing & advertising, crm, enterprise software, enterprises, computer software, information technology & services, facilities services",'+49 30 24041420,"Mobile Friendly, Google Tag Manager, Google Analytics, WordPress.org, Vimeo, Nginx, Salesforce CRM Analytics, WhatsApp","","","","","","",69c281750b5bce00010f9038,7389,56142,"VIAFON was founded in 1996 and is one of Germanys leading distribution agencies in B2B Telesales and Quality Assurance. For 20 years we have supported our partners with an expertise in sales of high-quality complex products and quality services. The focus of our projects are planning and implementation of individually tailored campaigns and the successfull sales of sophisticated products and services. +The basis of our succesfull and innovative performance are our highly skilled employees and team atmosphere in VIAFON.",1995,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/672648abbf726600018bf8c4/picture,"","","","","","","","","" +ProTeam Business Solutions GmbH,ProTeam Business Solutions,Cold,"",14,information technology & services,jan@pandaloop.de,http://www.proteam.de,http://www.linkedin.com/company/proteam-business-solutions-gmbh,"","",14 Lise-Meitner-Strasse,Heilbronn,Baden-Wuerttemberg,Germany,74074,"14 Lise-Meitner-Strasse, Heilbronn, Baden-Wuerttemberg, Germany, 74074","mobil solutions, digital signage, software development, itsystemhaus, crm, rollout management software, mobile development, sales automation, cloud crm, data visualization for smes, cloud solutions, digital transformation, data visualization in sales, lead generation, data management, crm software, business intelligence, customer relationship management, mittelstand crm, data platform, consulting, mobile data visualization, crm rollout, data visualization dashboards, data synchronization, data integration, data analytics, on-premise crm, data visualization for mobile devices, data security, data visualization for remote work, workflow automation, computer systems design and related services, b2b, data-driven sales strategies, assist go, data visualization, modular crm, data reporting, cloud computing, information technology, data analysis, data-driven decision making, crm for sales teams, data security solutions, system integration, data processing, process optimization, data dashboards, offline crm access, ki-gestützte crm, it consulting, ai-powered crm, information technology and services, services, business solutions, data visualization tools, business consulting, customer engagement, mobile crm, data it solutions, information technology & services, sales, enterprise software, enterprises, computer software, saas, marketing & advertising, analytics, computer & network security, management consulting",'+49 71 3128740,"Amazon AWS, Hubspot, reCAPTCHA, Bootstrap Framework, Nginx, Mobile Friendly, Google Analytics, WordPress.org, Google Font API","","","","","","",69c281750b5bce00010f9039,7375,54151,"... nur wenn wir das Wissen unserer Kunden und unser eigenes Wissen über Organisation und Kommunikation zusammenbringen, werden wir gemeinsam erfolgreich sein. + +Als Unternehmen, das sich das Kundenmanagement (CRM) und die Optimierung berdarfsorientierter Vertriebsaktivitäten zum Schwerpunkt setzt, zeigen wir Ihnen, wie Sie Ihre guten Ideen und Visionen strukturieren und systematisch zum Erfolg führen. Mobile Lösungen für alle Plattformen ergänzen unser Angebot. + +Wir sorgen dafür ... + +... dass Ihnen Ihre Adressen und Kontakte jederzeit und überall zur Verfügung stehen +... dass Sie Ihre Kontakte um wertvolles Insiderwissen ergänzen +... dass Ihre Aktivitäten dokumentiert und direkt abrufbar sind +... dass im Vertrieb der Forecast stimmt +... dass Sie komplexe Arbeitsabläufe künftig nur noch per Knopfdruck steuern. +…das Ihre Vertriebskanäle optimiert werden + +Wir bieten CRM-Lösungen (customer-relation-management), online-Lösungen, Community-Lösungen, Organisationsberatung – also alles um den Vertrieb, Vertriebskanäle oder die Vertriebsorganisation zu verbessern. + +Sales Automation - Digitalisierung Ihrer Kundenansprache als Basis einer wachsenden Vernetzung mit ihren Zielmärkten. + +Mit interaktiven Online- und mobilen Lösungen (Apps) bringen wir Ihre Unternehmens- und Produktinformationen zu Ihren Interessenten/Kunden. Mit (social-) Community-Lösung helfen wir Ihr eigenes interaktives Netzwerk zu gestalten. +Mobil Solutions for your data for all platforms - iOS, Android and Windows 8+",1996,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6717d9d768e2ec00018c226e/picture,"","","","","","","","","" +TurnFriendly Software GmbH,TurnFriendly,Cold,"",17,information technology & services,jan@pandaloop.de,http://www.turnfriendly.com,http://www.linkedin.com/company/turnfriendly,"","",4 Schillstrasse,Nuremberg,Bavaria,Germany,90491,"4 Schillstrasse, Nuremberg, Bavaria, Germany, 90491","regulatorik, software, feedback, compliance, banking, beschwerdemanagement, touristik, customer experience management, beschwerdemanagement software, it services & it consulting, cloud software, multi-channel communication, complaint case escalation, workflow management, customer journey, b2b, web-based software, healthcare, customer self-service, finance, real-time reporting, customer journey visualization, knowledge base, customer service, multi-language customer support, knowledge management, case management, automated response templates, retail, workflow automation, customer feedback analysis, consulting, customer insights, data security, complaint process mapping, customer data integration, customer feedback, performance dashboards, multilingual support, cloud customer service, customer service optimization, industry-specific solutions, survey tools, customer feedback surveys, service level agreements, regulatory compliance, system integration, complaint trend analysis, complaint management software, industry-specific cx software, services, self-service portals, management consulting services, process automation, complaint handling, customer relationship management, customer satisfaction, customer service software, customer loyalty, consumer_products_retail, information technology & services, financial services, health care, health, wellness & fitness, hospital & health care, computer & network security, crm, sales, enterprise software, enterprises, computer software",'+49 911 937880,"Outlook, Slack, Apache, Typekit, Mobile Friendly, WordPress.org, Remote, Azure Linux Virtual Machines, Container Network Interface (CNI), GitLab, Oracle Analytics Cloud, Salesforce Service Cloud, VMware","","","","","","",69c281750b5bce00010f903b,7389,54161,"TurnFriendly hilft Unternehmen dabei, ihre Leistungen +konsequent an den Bedürfnissen der Kunden auszurichten. + +Datenschutz: https://www.turnfriendly.com/de/datenschutz.html +Impressum: https://www.turnfriendly.com/de/impressum.html",2001,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67147985082c3600014ab089/picture,"","","","","","","","","" +sysmind Service- und Vertriebsgesellschaft mbH,sysmind Service- und Vertriebsgesellschaft mbH,Cold,"",15,information technology & services,jan@pandaloop.de,http://www.sysmind.de,http://www.linkedin.com/company/sysmind-service-und-vertriebsgesellschaftmbh,https://www.facebook.com/sysmind.de/,"",21 Albert-Einstein-Ring,Hamburg,Hamburg,Germany,22761,"21 Albert-Einstein-Ring, Hamburg, Hamburg, Germany, 22761","microsoft pocs, cloud services, arcticwolf, fujitsu select experts, microsoft lizenzberatung, microsoft fast forward, cisco meraki experts, microsoft365 e plaene, azure stack, hpe nimble experts, vmware enterprise partner, security, microsoft azure, veeam onazure onprem experts, cloud security, it services & it consulting, b2b, vmware, information technology and services, hybrid cloud management, devops tools, consulting, iot-management, business continuity, cloud-architektur, proactive security monitoring, nis2 compliance, it-beratung, cloud native, regtech solutions, hpe, managed cloud services, it-security, fujitsu, citrix, disaster recovery, computer software and services, devops & ci/cd, edge computing, microsoft 365, risk assessment, modern work, zero-trust architecture, cloud computing, cloud infrastructure, data analytics, cybersecurity, it-sicherheit, edge computing solutions, cloud-based disaster recovery, cloud architecture, cloud security architecture, cybersecurity-as-a-service, hybrid cloud, risk management, data governance, edge data processing, managed services, cybersecurity monitoring, cloud compliance management, regulatory compliance, it-infrastruktur, managed detection and response (mdr), devops, security operations center, hybrid backup strategies, cloud transformation, cloud migration, business intelligence, services, security monitoring, project management, data backup, arctic wolf, computer systems design and related services, finance, enterprise software, enterprises, computer software, information technology & services, internet infrastructure, internet, analytics, productivity, financial services",'+49 40 609460940,"MailJet, Outlook, Zendesk, Hubspot, Facebook Login (Connect), Facebook Custom Audiences, Apache, WordPress.org, Google Tag Manager, Facebook Widget, Mobile Friendly, Remote","","","","","","",69c281750b5bce00010f903e,7375,54151,We at sysmind understand IT to be something more than a sole means to an end. Our experts rather make use of it to support you and your employees individually and above all profoundly. No matter if you require consultation or assistance with planning or with implementation – we are there to help you navigate through the IT landscape.,2001,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f68bead02d960001a48ba6/picture,"","","","","","","","","" +TeleTeam Call-Center und Service GmbH,TeleTeam Call-Center und Service,Cold,"",47,outsourcing/offshoring,jan@pandaloop.de,http://www.call-teleteam.de,http://www.linkedin.com/company/teleteam-call-center-und-service-gmbh,https://www.facebook.com/teleteam,https://twitter.com/call_teleteam,4 Schuette-Lanz-Strasse,Oldenburg,Niedersachsen,Germany,26135,"4 Schuette-Lanz-Strasse, Oldenburg, Niedersachsen, Germany, 26135","social media, kundenservice, training, inbound, kommunikation, outsourcing, outsourcing & offshoring consulting, call centers and customer support services, qualitätskontrolle, datensicherheit, kundenfeedbacksysteme, telephone call centers, consulting, back-office, services, coaching, spracherkennungssoftware, business consulting, business process outsourcing, technikmodernisierung, b2c, inhabergeführt, kundenbindungsmanagement, chat-services, remote customer service, multichannel-kommunikation, effizienzsteigerung, telefonhotline, mitarbeitermotivation, qualitätsmanagement, homeoffice-integration, weiterbildung, krisenkommunikation, outbound, automatisierte gesprächsanalysen, kommunikationsoptimierung, b2b, automatisierte anrufsteuerung, kundenbindungsprogramme, flache hierarchien, it-consulting, kundeninteraktion, it consulting and support, inbound call center, social media management, outbound call center, digital customer service, kommunikationsanalyse, serviceanalyse, kommunikationsdienstleistungen, kundenkommunikation, call-center services, customer support, communication services, mitarbeiterschulung, langjährige erfahrung, technologiegestützter kundenservice, education, consumer internet, consumers, internet, information technology & services, communications, outsourcing/offshoring, facilities services, management consulting",'+49 441 779230,"Outlook, Microsoft Office 365, Nginx, AI, ServiceNow Configuration Management Database","","","","",3912000,"",69c281750b5bce00010f9034,7389,56142,"Call-Center & Service-Dienstleister überzeugt auf 1.998qm mit über 180 festen Mitarbeitern, durch Qualität, Effizienz & Transparenz. + +Die Experten der TeleTeam GmbH bereichern seit 10 Jahren die schriftliche, telefonische sowie vertriebs- und serviceorientierte Kundenkommunikation unserer Geschäftspartner - bundesweit. + +Über 180 Mitarbeiter unterstützen auf 1.998 qm unsere Geschäftspartner aus den Bereichen Energieversorgung, Telekommunikation, Foto-Dienstleistungen und Online-Shopservice engagiert, zuverlässig und kompetent. Der professionelle, gesicherte Kundenkontakt ist für alle Kunden das Hauptunterscheidungsmerkmal am Markt. Ihr Kunde möchte freundlich, kompetent und zuverlässig bedient werden. Genau hier liegt die Kernkompetenz der TeleTeam GmbH. + +Das TeleTeam kann Ihnen alle aktuellen Kommunikationswege im Bereich Kundenberatung bieten. Hierbei wird das Know-how ganz im Sinne Ihrer Firmenphilosophie eingesetzt. Die gesicherte Erreichbarkeit, Service Level Agreements und geschulte Kundenberater sind für das TeleTeam eine Selbstverständlichkeit. Die effiziente Outsourcinglösung, innovative Technik und 10 jähriges Know-how gibt dem Auftraggeber wieder den nötigen Freiraum für die Kernkompetenzen. + +Überzeugen Sie sich selber und vereinbaren Sie gleich einen Termin vor Ort unter 0441-779-230 +Die TeleTeam Call-Center und -Service GmbH unterstützt seit 2010 aktiv den Fußballclub VfB-Oldenburg und ist aktives Firmenmitglied im Marketing-Club Weser-Ems e.V. .",2000,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6764747254b0ea0001aa0b7b/picture,"","","","","","","","","" +ANG. - Punkt und Gut! GmbH,ANG,Cold,"",35,information technology & services,jan@pandaloop.de,http://www.ang.de,http://www.linkedin.com/company/ang-punkt-und-gut,https://www.facebook.com/ang.punktundgut,"",67 Suedwestpark,Nuremberg,Bavaria,Germany,90449,"67 Suedwestpark, Nuremberg, Bavaria, Germany, 90449","it services & it consulting, it-strategie, managed it-services, it-projektmanagement, security operation center, it-risikoanalyse, it-dienstleister, information technology and services, projektmanagement, it-optimierung, b2b, testfabrik, software rollout, cloud platform management, data management, application lifecycle management, risk management, linux plattform management, office 365, it-infrastruktur, services, it-support, client rollout, it-modernisierung, data warehouse, cloud solutions, unix plattform management, project management, it governance, identity & access management, consulting, cloud computing, automatisierte softwareverteilung, it-consulting, it-qualitätsmanagement, computer systems design and related services, it-qualitätskontrolle, it-transformation, business services, it-compliance, risikomanagement, server management, managed it services, it-security, application development, data integration, information technology & services, enterprise software, enterprises, computer software, productivity, app development, apps, software development",'+49 911 49525700,"Outlook, Microsoft Office 365, Facebook Login (Connect), Mobile Friendly, Google Tag Manager, YouTube, Apache, Linkedin Widget, Vimeo, Remote, Circle, Microsoft Entra ID, Keycloak, One Identity Defender, ForgeRock Identity Platform, Okta, Microsoft Active Directory Federation Services, OpenLDAP, Azure Active Directory, Microsoft PowerShell, Bash, Python, Red Hat JBoss Enterprise SOA Platform, MySQL, Oracle Analytics Cloud, Ansible, Docker, Kubernetes, CPX Interactive, Hi-Media Performance, Rise, Oracle Active Data Guard, SQL, PL/SQL, Microsoft Sql Server, Microsoft Azure Monitor, Microsoft Exchange Online, Microsoft Hyper-V Server, Microsoft Intune Enterprise Application Management, Microsoft Windows Server 2019, Microsoft Windows Server 2022, Parallels Mac Management for Microsoft SCCM, SharePoint, VMware, Javascript, CSS, HTML Pro, Git, Splunk, IBM Security QRadar SIEM, Sentinel, Security, Microsoft Defender for Cloud, Cisco Secure Firewall Management Center, Cisco VPN, Kona Web Application Firewall, Metasploit, Tenable Nessus, Burp Suite, Qualys Penetration Testing, Tenable.sc, AWS Trusted Advisor, Google Cloud, Microsoft SQL Server Reporting Services, Microsoft System Center Configuration Manager, Oracle Database, Micro, OpenSSL, Thales HSM, Gem, Acme Packet, AWS CloudFormation, Azure Resource Manager, CAT, checkmk, Commvault, Debian, Elasticsearch, Google Cloud Platform, Grafana, HAProxy, Kibana, KVM, Logstash, Microsoft Windows Server 2012, Nagios, .NET, Netgate pfSense, OpenVPN Access Server, Progress Chef, Prometheus, Puppet, Red Hat Enterprise Linux, Red Hat Satellite, Snort, SUSE, Ubuntu, Veeam, VMware ESXi, Wireshark, WSUS, Zabbix, C#, Red Hat, Amazon Web Services (AWS), ELK Stack, Veeam Backup & Replication, Jira, Microsoft Teams Rooms, Remedy Single Sign On, Webex, WebOffice, Zoomdata, HELM, Rancher Labs, Istio, Argocd, GitLab, Jenkins, GitHub Actions, Grafana Loki, Podman, Microsoft Azure, Terraform, Docker Swarm, Datadog, HashiCorp Vault, Azure Key Vault, Sizmek (MediaMind), GitHub, Bitbucket, PostgreSQL, MongoDB, Nginx, Akamai CDN Solutions, Check Point SDP, Confluence, CPI, Draw.io, Elastic Stack, Infoblox DHCP, Pipedrive, SolarWinds, VLAN, Azure Sentinel, CrowdStrike, Microsoft Defender for Endpoint, Microsoft Intune, Sophos, Trellix, AWS SDK for JavaScript, COBOL, IBM CICS Transaction Server, IBM Db2 for Linux, UNIX, and Microsoft Windows, IBM z/OS Operating System, REST, Google AdWords Conversion, NICE, Visio, Azure Linux Virtual Machines, Cisco WebEx, Microsoft Teams","","","","","","",69c281750b5bce00010f903a,7371,54151,"Seit 1998 spezialisieren wir uns auf IT-Projekte, Managed Services und Werkverträge (kein ANÜ!). Mit einem Team hochqualifizierter Experten bieten wir von Analyse und Strategie bis zur Implementierung und fortlaufenden Unterstützung alles an, was moderne Unternehmen für Ihre IT brauchen. +Unsere Stärke liegt in über 1.000 erfolgreichen Projekten und in allen Branchen, die uns zu einem vertrauenswürdigen Partner und Nachunternehmer für KMUs, Konzerne sowie öffentlichen Verwaltungen macht. Bei uns stehen Menschen und Ihr Erfolg im Vordergrund. Wir bauen langfristige Beziehungen auf und unterstützen unsere Kunden dabei, ihre Ziele zu erreichen. ANG – Wir machen IT für Ihre Zukunft möglich.",1998,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66fcc5ea728e8f00010d03c7/picture,"","","","","","","","","" +PLANET AI,PLANET AI,Cold,"",42,information technology & services,jan@pandaloop.de,http://www.planet-ai.com,http://www.linkedin.com/company/planet-ai,https://facebook.com/PlanetAIGmbH,https://twitter.com/Planet_AI_GmbH,60 Warnowufer,Rostock,Mecklenburg-Vorpommern,Germany,18057,"60 Warnowufer, Rostock, Mecklenburg-Vorpommern, Germany, 18057","document understanding, artificial intelligence, content retrieval, machine learning, rd, speech analysis, document analysis, data extraction, question answering, intelligent document processing, icr, document summary, keyword spotting, information extraction, machine learning classification, handwriting recognition, document classification, rampd, image analysis, ocr, text recognition, software development, private cloud, private cloud deployment, data capture, recognition, document indexing, real-time image analysis, ai for legal documents, cognitive capabilities, deep learning, ai technology, large language models, gpu optimized, high accuracy ocr, intelligent document analysis, ai-powered document processing, medical image analysis, cognitive computing, historical script recognition, european research projects, document management, content management, no-code training, on-premises deployment, neural networks, environmental data processing, ai for healthcare, classification, data capture automation, b2b, extraction, information technology and services, computer systems design and related services, rule-free learning, ai for archival digitization, ai for humanities, ai research, oem integration, workflow integration, understanding, actionable insights, tender management, hybrid deployment, smart zonal extraction, handwritten text recognition, document digitization, ai for public sector, metadata extraction, data validation, form processing, high automation rate, workflow automation, unstructured data understanding, ocr accuracy, unstructured documents, healthcare, education, legal, information technology & services, health care, health, wellness & fitness, hospital & health care","","Microsoft Office 365, Slack, WordPress.org, Mobile Friendly, Google Tag Manager, DoubleClick, Apache, Micro, AI, Remote","",Merger / Acquisition,0,2023-10-01,"","",69c281750b5bce00010f902c,7375,54151,"PLANET AI is a research-driven software company founded in 1992, based in Germany. The company specializes in AI-powered solutions for intelligent document processing (IDP) and cognitive computing, utilizing patented deep learning technologies to extract and understand data from unstructured documents. With over three decades of expertise, PLANET AI focuses on enhancing information processing through human-inspired cognitive capabilities, enabling customers to automate data capture and reduce manual efforts. + +The company offers a modular Intelligent Document Analysis (IDA) software suite that transforms unstructured documents into structured data with high accuracy. Its IDA solution achieves 99% accuracy and significantly reduces manual work and processing time. Additionally, PLANET AI provides JAIDE, an AI tool that answers questions from documents intelligently and contextually. The company serves a diverse range of clients, including Fortune 500 companies and various sectors such as insurance, banking, and cultural heritage, while also supporting OEM white-label AI integrations for software vendors. In 2023, PLANET AI became a majority-owned subsidiary of German IT provider Bechtle, enhancing its position in the market.",2015,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68c245bb01bb0e00010eaad4/picture,Bechtle (bechtle.com),6021a0cd0fc7d60102dc5616,"","","","","","","" +Invvenio communication GmbH,Invvenio communication,Cold,"",60,telecommunications,jan@pandaloop.de,http://www.invvenio.com,http://www.linkedin.com/company/invvenio-communication-gmbh,"","","",Muelheim,North Rhine-Westphalia,Germany,"","Muelheim, North Rhine-Westphalia, Germany","data security, telecommunications, brand awareness, marketing support, employee engagement, process automation, location dortmund, customer service, location mülheim, sales support, contact center, agile working, growth, project management, fastest growing company germany, employee recognition, business services, business consulting, customer retention, b2b services, training programs, customer feedback, tv-approved contact center, multichannel solutions, customer experience, service, telemarketing, teamwork, employee development, remote work, work-life balance, business growth, b2b, sales, backoffice services, inbound, customer satisfaction, customer care, technical support, team events, multiple awards, lead generation, dialogmarketing, mystery calls, modern infrastructure, business expansion, services, client acquisition, consulting, outbound, quality management, b2c services, telephone call centers, digital marketing, marketing and advertising, b2c, computer & network security, information technology & services, productivity, management consulting, marketing & advertising, facilities services",'+49 282 13980290,"Outlook, DigitalOcean, Slack, DoubleClick, Typekit, WordPress.org, Google Font API, Apache, Mobile Friendly, Google Tag Manager, reCAPTCHA, Gong, Microsoft Windows Server 2012, Microsoft 365, Microsoft Exchange Server 2003, Microsoft Azure Monitor, Genesys, Webex, Sophos, Aruba, NETGEAR","","","","","","",69c281750b5bce00010f902e,7389,56142,"Wir setzen auf erfolgreiches Wachstum unserer Partner und sind Spezialisten im Bereich Sales, Service & Dialogmarketing. + +Durch unsere jahrelange Erfahrung im Bereich Marketing und Service, sind wir der passende Partner für alle Vertriebs- und Marketingoffensiven, Multichannel-Lösungen sowie Sales-Services Projektierungen im Bereich Inbound, Outbound und non-Voice.",2018,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e788de44c94e0001a778d3/picture,"","","","","","","","","" +Rabbit Hole Group,Rabbit Hole Group,Cold,"",14,information technology & services,jan@pandaloop.de,http://www.rabbithole.group,http://www.linkedin.com/company/rabbitholeconsulting,"","","",Regensburg,Bavaria,Germany,"","Regensburg, Bavaria, Germany","devops, gdpr it security, data sovereignty, ecommerce, it consulting, artificial intelligence, hosting, software development, it services & it consulting, microsoft infrastructure, digital culture, general digitalisation consulting, cost-effective solutions, enterprise agility, data privacy, process automation, democratic enterprise, small teams, b2b, system integration, digital culture change, data pipelines, mobile applications & iot, project management, information technology and services, training and workshops, it operations, user experience design, consulting services, computer systems design and related services, microsoft infrastructure and applications, business application development, data security, ai integration, e-commerce, custom software development, web development, seamless multidisciplinary collaboration, information security, data integration, services, small specialized teams, cost efficiency, digital transformation, it operations and devops, performance optimization, performance marketing, ecommerce design and ux, consulting, data-driven solutions, digital identity management, enterprise software, ux design, digital process optimization, ai explainability, cloud services, iot, custom digital solutions, cybersecurity, digital culture transformation, mobile applications, sales support, ai integration and training, web development & accessibility, consumer internet, consumers, internet, information technology & services, management consulting, productivity, computer & network security, enterprises, computer software, marketing & advertising, cloud computing, mobile apps","","Gmail, Google Apps, GitLab, Amazon SES, Mobile Friendly, Docker, Google Workspace, Remote","","","","","","",69c281750b5bce00010f903d,7375,54151,"Rabbit Hole Consulting is a democratic organisation of excellent consultants, agencies and service providers that caters its clients with tailor made teams and solutions. It can offer all business services first-hand without overhead or communication gaps. + +RHC is more convenient and faster for its clients and offers its members personal and financial opportunities that are otherwise hard to achieve in the consultancy business.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66ee8b39431f4100019e0c0d/picture,"","","","","","","","","" +WUD - IT & Business Software,WUD,Cold,"",16,information technology & services,jan@pandaloop.de,http://www.wud.de,http://www.linkedin.com/company/wud-business-software-it,https://www.facebook.com/wud.it.business/,"","",Kirchheim unter Teck,Baden-Wuerttemberg,Germany,"","Kirchheim unter Teck, Baden-Wuerttemberg, Germany","hrsoftware, dmssoftware, itsystemtechnik, erpsoftware, itsecurity, managed services, itinfrastruktur, it services & it consulting, information technology & services",'+49 7021 920210,"Outlook, Microsoft Office 365, reCAPTCHA, Google Analytics, Bing Ads, Facebook Custom Audiences, WordPress.org, Google Dynamic Remarketing, Mobile Friendly, Google Tag Manager, DoubleClick, Facebook Login (Connect), Apache, DoubleClick Conversion, Facebook Widget, , AI","","","","","","",69c281750b5bce00010f9042,"","","Seit über 30 Jahren unterstützen wir kleine und mittlere Unternehmen, durch passende IT-Lösungen sicher zu wachsen. Ganzheitlich und integriert. +Von der zukunftssicheren IT-Infrastruktur bis zur kaufmännischen Anwendungssoftware sind wir Ihr 360° IT-Partner in der Region Stuttgart.",1992,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6737071417e8bf0001dd3c72/picture,"","","","","","","","","" +SOLUA GmbH,SOLUA,Cold,"",18,management consulting,jan@pandaloop.de,http://www.solua.de,http://www.linkedin.com/company/solua-gmbh,"","","",Mannheim,Baden-Wuerttemberg,Germany,"","Mannheim, Baden-Wuerttemberg, Germany","implementation management, hr development, workforce management, managed service provider, recruitment process outsourcing, employer branding, neutral vendor management, neutral vendor, process consulting, talent management, business consulting & services, information technology & services, lieferantensteuerung, consulting, management consulting, logistics & supply chain, kosten sparen, digital hr, marktberblick, personalentwicklung, implementierungsberatung, compliance, kostenreduzierung, prozessautomatisierung, lieferantenmanagement, talentmanagement, airport, six sigma, qualitätssteigerung, zeitarbeit, lieferantenpool, msp, berregional jobs, lieferantennetzwerk, logistik, risikominimierung, b2b, management consulting services, prozessanalyse, standortaufbau, arbeitnehmerüberlassung, kostenmanagement, compliance monitoring, case studies, kosteneinsparung, prozessoptimierung, logistics, effizienzsteigerung, transparenz, rechtssicherheit, vms-system, flexibilität, recruiting, services, digitalisierung, personalvermittlung, outsourcing, rekrutierung, unabhängigkeit, human resources & staffing, personalbeschaffung, rpo, ausschreibungsberatung, distribution, transportation & logistics",'+49 621 39998585,"Outlook, Microsoft Office 365, Typekit, Google Tag Manager, Bootstrap Framework, WordPress.org, reCAPTCHA, Linkedin Marketing Solutions, Apache, Mobile Friendly, SAP, eMaint CMMS, F5 BIG-IP Local Traffic Manager (LTM)","","","","","","",69c281750b5bce00010f9043,7361,54161,"SOLUA GmbH is a German HR services company based in Mannheim, Baden-Württemberg. It specializes in personnel consulting, staffing optimization, and workforce solutions across various industries. As one of the largest independent service providers in the HR sector, SOLUA focuses on advising clients on designing and optimizing personnel assignments, as well as providing evaluation and support for staffing needs. + +The company acts as a staffing and recruitment partner, connecting candidates with employers and offering technical services in real estate and facility management. SOLUA has partnerships with notable clients, including Fraport Facility Services at Frankfurt Airport, and engages with companies in the automotive and mobility sectors to support specialized recruitment efforts. The company promotes inclusivity and uses gender-neutral language in its communications.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69a90f23e564a200013e2a3b/picture,"","","","","","","","","" +Widas Group,Widas Group,Cold,"",110,information technology & services,jan@pandaloop.de,http://www.widas.de,http://www.linkedin.com/company/widasgroup,https://www.facebook.com/WidasGroup,"",2 Maybachstrasse,Wimsheim,Baden-Wuerttemberg,Germany,71299,"2 Maybachstrasse, Wimsheim, Baden-Wuerttemberg, Germany, 71299","ciam, big data, saas, software development, iam, id verification, machine learning, identity management, internet of things, cidaas, mobility, digitalisierung, full stack, devops, cloud software, itstrategie, customer identity management, it services & it consulting, it consulting, software engineering, iot identity, germany-based software company, mobile solutions, award-winning ciam solutions, family business in it, cloud computing, b2c, services, european cloud identity & access management, digital authentication, single sign-on, retail, digital identity verification, real-world id linking, cloud identity & access management, multi-factor authentication, consulting, cloud solutions, software made in germany, access management, managed services, customer data security, information technology and services, cybersecurity, computer systems design and related services, b2b, digital transformation, real-world identification, web solutions, enterprise software, enterprises, computer software, information technology & services, artificial intelligence, privacy, management consulting",'+49 704 495103100,"Cloudflare DNS, Outlook, CloudFlare Hosting, Atlassian Cloud, Leadfeeder, GitLab, Freshdesk, Hubspot, Mobile Friendly, Facebook Widget, Bootstrap Framework, Google Tag Manager, DoubleClick, Google Font API, Linkedin Marketing Solutions, Facebook Login (Connect), Multilingual, Facebook Custom Audiences, Google Dynamic Remarketing, DoubleClick Conversion, Adobe Media Optimizer, WordPress.org, Cedexis Radar, Vimeo, Remote, AI, Kubernetes, Ansible, HELM, Flux, MongoDB, Apache Kafka, OpenSearch, go+, Angular, UniFi SDN, CloudFlare, Juniper Networks SRX-Series Firewalls, CAT, Cisco VPN, Amazon Elastic Load Balancing, Azure DDoS Protection, Oracle Bare Metal Cloud Services","","","","","","",69c281750b5bce00010f902d,7375,54151,"Widas Group is a family-owned IT services and software company based in Wimsheim, Germany, founded in 1997. The company specializes in digital transformation solutions, including customer data management, identity management, big data, IoT, and mobile/web solutions. With a global presence, Widas Group operates in Germany, India, and Switzerland, employing over 120 people and generating annual revenue of approximately $29.2 million. + +Widas Group offers a range of IT consulting and services, from business analysis to full implementation. Their key offerings include cidaas, a leading cloud identity and access management solution, and cnips, an integration platform as a service designed to streamline business processes. The company focuses on delivering innovative, out-of-the-box solutions hosted in Germany, utilizing technologies like JavaScript, HTML, and PHP to create effective software products.",1997,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69aa9d245403620001f6c8ea/picture,"","","","","","","","","" +Valprovia,Valprovia,Cold,"",22,information technology & services,jan@pandaloop.de,http://www.valprovia.com,http://www.linkedin.com/company/valprovia,"",https://twitter.com/valprovia,5 Moehringer Landstrasse,Stuttgart,Baden-Wuerttemberg,Germany,70563,"5 Moehringer Landstrasse, Stuttgart, Baden-Wuerttemberg, Germany, 70563","digitalworkspaces, itgovernance, sharepoint, software development, collaboration platform, microsoft teams, security compliance, teams, microsoft 365, business solutions, microsoft, itconsultancy, enterprise knowledge management, dynamics 365, ai, opportunitytocash, b2b, information technology and services, digital transformation, audit readiness, compliance reporting, automated team and site cleanup, access control, external collaboration management, self-service interface, security policies enforcement, role-based access control, data analytics, compliance, metadata synchronization, ai tagging, permission control, sharepoint integration, template management, sharepoint lifecycle management, risk reduction in collaboration, permission management, metadata-driven search, computer software, content sharing control, automated archiving and deletion, self-service portal, automated permissions synchronization, role management, role transfer from users to it, cybersecurity, enterprise software, metadata tagging, policy enforcement in teams & sharepoint, user-friendly governance, automated content classification, external user expiration management, lifecycle automation, generative ai, automated provisioning, automated permission rollback, multi-tenant governance, migration tools, dynamics 365 integration, granular permission control, automated compliance, automated external user removal, inactivity-based archiving, external user lifecycle, services, governance automation, template-based team creation, team provisioning, automated lifecycle rules, dynamics 365 synchronization, computer systems design and related services, microsoft 365 security, consulting, microsoft teams governance, template-driven team creation, multi-language support, teams lifecycle management, metadata management, security policies, ai-based document tagging, self-enforcing security layer, data management, document structure automation, compliance enforcement, it control empowerment, lifecycle policies, sharepoint site management, external user management, governance platform, native pnp provisioning, data security, artificial intelligence, custom role assignment, legal, non-profit, information technology & services, enterprises, computer & network security, nonprofit organization management",'+49 7136 2920950,"Outlook, CloudFlare Hosting, Freshdesk, Hubspot, Facebook Login (Connect), Mobile Friendly, Linkedin Marketing Solutions, DoubleClick Conversion, Linkedin Widget, Google Tag Manager, Google Dynamic Remarketing, DoubleClick, Linkedin Login, Facebook Widget, Remote, SharePoint, C#, Microsoft.NET Core 3.1, React, SQL, TypeScript","","","","","","",69c281750b5bce00010f902f,7375,54151,"Valprovia is an international software company based in Oedheim, Germany, specializing in productivity solutions and governance platforms for the Microsoft 365 ecosystem, particularly Microsoft Teams and SharePoint. The company develops and distributes software products while offering related consultancy services. Valprovia emphasizes reliable Microsoft 365 solutions tailored to user needs, combining industry knowledge with Microsoft expertise. + +The company provides a preventive governance platform for Microsoft Teams and SharePoint, featuring the Teams Center for automating lifecycle management processes and an AI Readiness Platform that transforms unstructured data into strategic assets. Valprovia also offers consultancy services in AI, business solutions, and digital workplace development, along with tools for enterprise planning and IT control. Its service focus spans various industries, primarily targeting small and medium businesses. Valprovia values diversity, transparency, and long-term relationships with partners and customers.",2018,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6730fd27f113610001b1e0c7/picture,"","","","","","","","","" +nextevolution GmbH,nextevolution,Cold,"",24,information technology & services,jan@pandaloop.de,http://www.nextevolution.de,http://www.linkedin.com/company/nextevolution,https://facebook.com/nextevolutionag,https://twitter.com/nextpcm,9 Van-der-Smissen-Strasse,Hamburg,Hamburg,Germany,22767,"9 Van-der-Smissen-Strasse, Hamburg, Hamburg, Germany, 22767","cloudtechnologien, wartung und betriebsleistungen, migrationen, kassenbelegsarchivierung, saparchivierung, bigdata eim, it services & it consulting, b2b, information technology and services, ai und machine learning, software development, consulting, digital transformation, natural language processing, digitale transformation, newsql, systemintegration, ai-basiertes dokumentenmanagement, operational efficiency, unabhängige datenlogistik-plattform, heterogene anwendungslandschaften, information lifecycle management, machine learning, data processing and hosting services, data logistics plattform, cloud computing, sap bc-ilm, data analytics, enterprise content management, revisionssicheres cloud-archiv, enterprise data logistics, re-training der ai-modelle, data sovereignty in cloud-archiven, verteilte systeme, database operations, automatisierte metadatenanreicherung, computer systems design and related services, big data, nosql, compliance sicherung, services, archivelink, hybrid cloud betrieb, ai-upgrade für dokumenten-pipelines, ai-microservices für dokumentenprozesse, cloud native archive, data migration, automatisierte dokumentenverarbeitung, computer vision, data security, artificial intelligence, container operations, distribution, transportation & logistics, information technology & services, enterprise software, enterprises, computer software, computer & network security",'+49 40 8222320,"Mobile Friendly, Nginx, Android, AI","","","","",9142000,"",69c281750b5bce00010f9032,7375,54151,"nextevolution is specialized in IT consulting and system integration in Germany. With its main focus on ""Content Management Solutions"" and ""Enterprise Infrastructure Solutions"" nextevolution creates innovative business solutions for large and medium enterprises and the public sector. + +nextevolution offers a comprehensive range of services that cover the life cycle of business solutions from conceptual consulting to implementation to support during the utilization phase. This approach supports the consistent and efficient delivery of the service process for the benefit of our customers. + +In the ECM segment nextevolution maintains partnerships with leading manufacturers such as IBM and SAP. Based on their technology platforms and investing their own, complementary standard application software plans, implements and manages customized nextevolution business solutions for their customers. + +nextevolution´s management and workflow solutions, has extensive practical experiences in designing, implementing and operating strategic ECM systems, archiving-& content solutions. It has been proven in recent years to more than 90 projects in Germany and Europe. + +Headquartered in Hamburg, the Group maintains a subsidiary in Berlin.",2001,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670a09fa52d11e0001aa0415/picture,easy software (easy-software.com),55923b3b7369642948622600,"","","","","","","" +zetVisions GmbH,zetVisions,Cold,"",72,information technology & services,jan@pandaloop.de,http://www.zetvisions.de,http://www.linkedin.com/company/zetvisions-gmbh-beteiligungsmanagement,https://www.facebook.com/zetvisions/,https://twitter.com/zetvisions,31 Mittermaierstrasse,Heidelberg,Baden-Wuerttemberg,Germany,69115,"31 Mittermaierstrasse, Heidelberg, Baden-Wuerttemberg, Germany, 69115","legal entity management, beteiligungsmanagement software, standardsoftware, stammdatenmanagement sap, data governance, stammdatenmanagement software, datenqualitaet, master data management, software solutions, beteiligungsmanagement, beteiligungsverwaltung, beteiligungscontrolling, beteiligungssteuerung, stammdatenmanagement, beteiligungsmanagement sap, software development, data integration software, datenkompetenz, sap add-ons, data lifecycle management, management consulting, software publishing, data security, data management in public sector, datenverstehen, data management software, consulting, data automation, information technology and services, data management, datenbasierte wertschöpfung, data analytics, data quality tools, webinare, data transformation, datenstrategie, data governance tools, computer systems design and related services, b2b, sap-zertifizierte software, datenautomatisierung, sap certified data solutions, datenqualitätssicherung, datenbasierte entscheidungen, datenlösungen, data strategy, data governance in multi-cloud environments, investment management software, data management for corporate groups, data management for smes, data cleansing tools, datenprozesse, ai in data management, whitepapers, master data solutions, data quality in mergers & acquisitions, datenoptimierung, process automation, datenintegration, data standardization solutions, data compliance, datenkonsistenz, services, data consulting, iso 27001, legal entity management in sap, unternehmensdaten, datenanalyse, datenqualität, business data solutions, finance, legal, non-profit, information technology & services, computer & network security, financial services, nonprofit organization management",'+49 6221 339380,"Salesforce, Outlook, Pardot, Microsoft Office 365, Hubspot, WordPress.org, Linkedin Marketing Solutions, Facebook Login (Connect), Google Tag Manager, Facebook Custom Audiences, Facebook Widget, DoubleClick, Nginx, Gravity Forms, Mobile Friendly, AI, Circle, Remote","","","","",2000000,"",69c281750b5bce00010f9035,7375,54151,"zetVisions GmbH is a German software company based in Heidelberg, founded in 2001. The company specializes in IT solutions for legal entity management, master data management, and investment management. With a team of approximately 85-96 employees, zetVisions serves around 200 customers across Europe, including DAX and MDAX-listed corporations as well as medium-sized family-owned businesses. The company generates about $16.5 million in annual revenue. + +zetVisions offers a range of software solutions focused on company-wide data management. Key products include zetVisions SPoT, a master data management solution for SAP environments; zetVisions Insighter, which manages legal entities and complex international structures; and zetVisions CIM, designed for master data and investment management. These tools support corporate governance, compliance, risk management, and strategic decision-making. The company partners with KPMG for SAP master data management services and is recognized as an SAP partner.",2001,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67102b17ad8c660001cadd6b/picture,"","","","","","","","","" +top flow GmbH,top flow,Cold,"",28,information technology & services,jan@pandaloop.de,http://www.top-flow.de,http://www.linkedin.com/company/top-flow-gmbh,https://www.facebook.com/topflowgmbh/,"",100 Hauptstrasse,Bad Saulgau,Baden-Wuerttemberg,Germany,88348,"100 Hauptstrasse, Bad Saulgau, Baden-Wuerttemberg, Germany, 88348","supplier relationship management, sapaddons, ecm, customer relationship management, extended relationship management, sap security, human capital management, sap s4 hana, sapsoftware, contract management, social collaboration, sap erp, mes, variant configuration, sap user interface, risk assessment, sap ecm digital files, digitalisierung, manufacturing, geschäftsprozesse, sap data analytics, sap manufacturing, schnittstellenfrei, workflow automation, zertifiziert, consulting, sap variant configuration, system integration, top vc, webinar, data analysis in sap, services, sap module extension, production optimization, variantenkonfiguration, sap interface integration, computer systems design and related services, supply chain management, sap certified solutions, sap content management, sap ad-hoc analysis, webinare, business intelligence, sap-add-ons for production, cloud services, information technology, sap integration, sap system enhancement, sap interface-free, business process management, b2b, sap s/4hana, sap variant management, enterprise content management, sap shop floor, manufacturing execution system, predictive maintenance, sap certification, sap ad-hoc reporting tool, ad-hoc reporting, sap add-on solutions, top se16xxl, digital transformation, sap-add-ons, digital business processes, top mediathek, digital documentation, sap process digitization, top xrm, sap document workflow, crm, sales, enterprise software, enterprises, computer software, information technology & services, mechanical or industrial engineering, logistics & supply chain, analytics, cloud computing",'+49 758 1202950,"Outlook, Microsoft Office 365, Google Tag Manager, Nginx, Mobile Friendly, WordPress.org, Bootstrap Framework, Apache","","","","","","",69c281750b5bce00010f9041,7375,54151,"top flow GmbH is a software partner of SAP SE, based in Bad Saulgau, Germany. Founded in 2000, the company specializes in developing certified SAP add-on solutions and providing IT consulting services. With locations in Bad Saulgau, Berlin, and Ulm, top flow employs approximately 11-50 people and serves an international customer base. + +The company offers business process digitization solutions that integrate seamlessly with SAP systems. Key products include top se16XXL, a data evaluation tool for ad hoc data analysis, and top VC, a solution for variant configuration management. Additionally, top flow provides IT consulting services and customer support to assist clients with application issues. Their solutions enhance process transparency and effectiveness, leading to improved quality and competitiveness for their customers.",2000,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66ea608a69de0a000171a6a8/picture,"","","","","","","","","" +Lanworks AG,Lanworks AG,Cold,"",20,information technology & services,jan@pandaloop.de,http://www.lanworks.de,http://www.linkedin.com/company/lanworks-ag,"","",172 Fuerstenwall,Duesseldorf,North Rhine-Westphalia,Germany,40217,"172 Fuerstenwall, Duesseldorf, North Rhine-Westphalia, Germany, 40217","azure, learning, identity & access mangament, iamcp, micro focus, weiterbildung, suse linux, windows, idm, security, microsoftazure, microsoft, certification, suse, microsoft365, zertifizierung, ai, client management, kuenstliche intelligenz, ki, it services & it consulting, cloud computing, it-infrastruktur, it-partner, backup & recovery, it training and certification, microsoft endpoint manager, it-performance monitoring, microsoft intune, it-zertifizierungen, it-training, it-transformation, computer systems design and related services, patch management, servervirtualisierung, it-workplace, endpoint management, cybersecurity für kmu, nis-2 konformität, it-compliance, it-sicherheitszertifizierungsvorbereitung, it-standardisierung, it-asset management, nis-2, it-sicherheitsmanagement, künstliche intelligenz, datensicherheit, din spec 27076 cyber risiko check, virtualisierung, it-sicherheitslösungen, it-architektur, it-sicherheitszertifizierungen, it-sicherheitslösungen für mittelstand, it-sicherheitsanalyse, it-sicherheits-workshops, consulting, it-sicherheitsstrategie, it-sicherheitsrichtlinien, it-projektumsetzung, it consulting, it-beratung, it-strategie, it-sicherheit, it-optimierungstools, zero trust, it-sicherheitsberatung für kmu, it-fördermittelberatung, cloud-dienste, it-security, cyber risiko check, b2b, microsoft 365, it-sicherheitschecks, it-support, digitale transformation, it-automatisierung, it-prozesse, server management, it-lösungen, unified endpoint management (uem), disaster recovery, information technology and services, endpoint security, services, it-management, it-consulting, it-services für kmu, identity & access management, it-services, it-sicherheitskonzepte, it-projektplanung, it-workplace modernisierung, it-training & zertifizierung, it-sicherheitsstandards, remote management, cybersecurity, it-optimierung, microsoft copilot, mobile device management, education, information technology & services, enterprise software, enterprises, computer software, management consulting",'+49 211 9505948,"SendInBlue, Outlook, Google Tag Manager, Mobile Friendly, Remote","","","","","","",69c281701cba2c0001f0e525,7379,54151,"Seit 1989 steht Lanworks für die gelungene Symbiose von Tradition und Innovation als ganzheitlicher Partner für IT und Digitalisierung. + +Unabhängig von Unternehmensgröße und Branche bieten wir umfassende Branchenkompetenz und langjährige Projekterfahrung für die Planung, Konzeption und Implementierung zukunftsfähiger IT-Infrastrukturen und Digitalstrategien. + +Unsere Mission: Mit Leidenschaft und Expertise nutzen wir den technologischen Fortschritt, um unseren Kunden einen sicheren Weg in die digitale Zukunft zu bereiten. + +Mit herstellerunabhängiger Beratung, aktuellen Technologien und professionellen Service optimieren wir Ihre IT-Systeme und Prozesse individuell, um Ihre wirtschaftlichen und technologischen Ziele zu erreichen. Und da Sie mit uns nicht nur die Zukunft Ihrer IT-Infrastruktur, sondern auch die Ihrer Mitarbeiter gestalten, bieten wir Ihnen seit über 30 Jahren auch ein vielseitiges Trainingsangebot sowie individuelle Inhouse-Schulungen zu allen wichtigen Themen und modernen Technologien an. + +Wir verstehen Ihre Bedürfnisse und begegnen Ihnen auf Augenhöhe. Wir sind bereit, auch unkonventionelle Wege zu gehen, um die optimale Lösung für Ihre Anforderungen zu finden.",1989,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/682a48c9c655b000014d5e2d/picture,"","","","","","","","","" +ELAINE technologies,ELAINE,Cold,"",53,information technology & services,jan@pandaloop.de,http://www.elaine.io,http://www.linkedin.com/company/elaine-technologies,"","",7 Zanderstrasse,Bonn,North Rhine-Westphalia,Germany,53177,"7 Zanderstrasse, Bonn, North Rhine-Westphalia, Germany, 53177","omnichannel marketing, marketing process management, elaine, online dialogmarketing, martech, marketing cloud, mobile marketing, saas, marketing automation, marketing engineering, email marketing, campain automation, crm, technology, information & internet, customer feedback collection, customer retention, customer engagement platform, audience segmentation, customer segmentation, media, data privacy, omnichannel customer communication, drive to store activation, retail, automated campaigns, customer loyalty, transactional mails, ai optimization, personalization engine, advertising agencies, customer engagement, workflow automation, customer analytics, in-app messaging, content personalization, customer data integration, customer data management, data-driven marketing, customer data platform, landing page builder, real-time customer data, customer engagement metrics, zero and first-party data utilization, compliance for data security, compliance tools, marketing workflow orchestration, services, customer experience personalization, distributed marketing, deep automation, compliance, automotive, customer journey, interactive emails, personalized content, b2b, multi-device customer engagement, personalized product recommendations, security standards, ai-driven marketing, data security, cross-channel marketing, marketing analytics, insurance, push notifications, ai multivariate testing, customer data enrichment, customer journey mapping, transactional email optimization, marketing automation software, multichannel communication, customer loyalty automation, customer lifecycle management, real-time marketing, customer experience, finance, campaign management, loyalty, d2c, ai consumer agents, customer insights, customer data privacy tools, api integration, customer interaction management, customer feedback automation, b2c, customer reactivation campaigns, multi-channel marketing, ai personalization, e-commerce, churn prevention automation, customer retention tools, consumer_products_retail, marketing & advertising, computer software, information technology & services, enterprise software, enterprises, sales, computer & network security, financial services, consumer internet, consumers, internet",'+49 8007 976800,"Outlook, Microsoft Office 365, Vimeo, Apache, WordPress.org, Cedexis Radar, Adobe Media Optimizer, Mobile Friendly, reCAPTCHA, Google Font API, Salesforce CRM Analytics","",Merger / Acquisition,0,2022-11-01,"","",69c281701cba2c0001f0e527,7375,54181,"ELAINE technologies is a marketing automation company based in Germany, founded in 2005 as a spin-off from Fraunhofer. The company specializes in personalized, AI-driven omnichannel customer engagement software designed to enhance marketing efficiency and customer loyalty. With headquarters in Bonn and Munich, ELAINE employs around 80 people and operates one of Europe's largest SaaS platforms for digital marketing, sending 2.7 billion messages monthly across 141 countries. + +The core offering is the ELAINE Marketing Automation Suite, which includes tools for email marketing, deep automation, and omnichannel engagement. Features such as AI-driven personalization, multivariate testing, and advanced analytics support marketers in creating effective campaigns. ELAINE is recognized for its commitment to data security, holding ISO/IEC 27001 and 27018 certifications, and has received several awards for its innovative solutions. The company serves a wide range of clients, including major brands like BMW, PAYBACK, and DHL, focusing on customer-centric marketing strategies.",2005,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69a485075969730001852f33/picture,"","","","","","","","","" +birkle IT,birkle IT,Cold,"",33,information technology & services,jan@pandaloop.de,http://www.birkle-it.com,http://www.linkedin.com/company/birkle-it,https://www.facebook.com/ThemeFusion-101565403356430/,https://twitter.com/theme_fusion,16 Leopoldstrasse,Munich,Bavaria,Germany,80802,"16 Leopoldstrasse, Munich, Bavaria, Germany, 80802","data analytics, itconsulting, insurance, machine learning, automotive, logistics, finance, industry 40, banking, egoverment, fintech, health care, ehealth, cybersecurity, business intelligence, iot, robotics, artificial intelligence, software development, digitalization, it services & it consulting, information technology & services, financial services, finance technology, health, wellness & fitness, analytics, mechanical or industrial engineering",'+49 40 39043623,"Outlook, Microsoft Office 365, Atlassian Cloud, DigitalOcean, Hubspot, Slack, Facebook Custom Audiences, WordPress.org, Shutterstock, Google Tag Manager, Apache, Nginx, Ubuntu, Google Dynamic Remarketing, Linkedin Marketing Solutions, DoubleClick, Facebook Widget, Facebook Login (Connect), Smartsupp, DoubleClick Conversion, Mobile Friendly","","","","","","",69c281701cba2c0001f0e51c,"","","birkle IT is an international IT consulting and software development company based in Munich, Germany. Founded in 2016, it has grown to over 125 employees and operates offices in Munich, Berlin, and Tallinn. The company specializes in providing innovative solutions across various industries, particularly in the DACH region, Scandinavia, and the Baltics. + +The company offers a range of services, including customized enterprise software development, digital transformation consultancy, and AI-based solutions. It emphasizes IT security through Secure DevOps practices, ensuring that security is integrated into every aspect of its operations. birkle IT also provides cybersecurity services, including audits, employee training, and incident response processes. Its hybrid onshore-offshore outsourcing model allows for cost-effective delivery tailored to the needs of its clients.",2016,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69ac1119b2ec60000135b078/picture,"","","","","","","","","" +ITegrityConsulting,ITegrityConsulting,Cold,"",17,information technology & services,jan@pandaloop.de,http://www.itegrityconsulting.de,http://www.linkedin.com/company/itegrityconsulting,"","","",Darmstadt,Hesse,Germany,"","Darmstadt, Hesse, Germany","it services & it consulting, integration, best practices, prozessberatung, ivanti plattform, prozessoptimierung, elements (bausteine), siam-broker, ivanti consulting, information technology and services, system integration, it-betrieb, it-services, it-training, service-integration, projektmanagement, on-premise support, kundenspezifische konzepte, it-strategie, langfristiger support, custom software integration, it-tools, process optimization, services, it-support, zertifizierte lösungen, it-tool betrieb, branchenübergreifend, it consulting, projektmanagement methoden, it-integration, betrieb und wartung, identity & access management, itsm-tools, itsm, modulare bausteine, digital transformation, software development, it-lösungen, project management, it service management, consulting, it-sicherheitslösungen, prozessautomatisierung, b2b, cloud solutions, automation, automatisierungslösungen, computer systems design and related services, it-consulting, multi-tenancy, automatisierung, government, it-infrastruktur, consulting services, cloud support, distribution, transportation & logistics, information technology & services, management consulting, productivity, cloud computing, enterprise software, enterprises, computer software","","Outlook, Microsoft Office 365, Mobile Friendly, Apache, WordPress.org","","","","","","",69c281701cba2c0001f0e51e,7375,54151,"Die ITegrity Consulting wurde zwar erst am 01.01.2024 gegründet, dass Team arbeitet allerdings schon seit mehr als einem Jahrzehnt zusammen und ist somit auch gemeinsam gewachsen. + +Für unsere Kunden bieten wir u.a. folgende Kernbereiche an: +- Enterprise Servicemanagement mit Ivanti Neurons for ITSM +- Automatisierung und Integration +- Prozessberatung und -Optimierung",2024,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67c40fd508be0600016c400e/picture,"","","","","","","","","" +infinitas GmbH | Planbarer B2B-Vertrieb mit CRM,infinitas,Cold,"",48,information technology & services,jan@pandaloop.de,http://www.infinitas.de,http://www.linkedin.com/company/infinitas-gmbh,https://www.facebook.com/infinitasgmbh,https://twitter.com/infinitas_gmbh,9 Berliner Allee,Hanover,Lower Saxony,Germany,30175,"9 Berliner Allee, Hanover, Lower Saxony, Germany, 30175","microsoft dynamics crm, ki unterstuetze prozesse, crm crmsysteme, datenanalyse insights, leadund kundenmanagement, customer insights, hubspot, projektmanagement, prozessmanagement, it services & it consulting, crm user training, crm strategy consulting, customer journey, process optimization, microsoft ecosystem, crm for manufacturing, healthcare, microsoft copilot, crm process automation, marketing automation, crm support and maintenance, ai integration, crm customization, ai-powered customer segmentation, crm for financial services, crm support, crm consulting, crm for retail, field service, power platform integration, computer systems design and related services, crm for smbs, customer retention, crm training, customer journey automation, microsoft dynamics 365 crm, power apps customization, predictive analytics in crm, data analytics, crm implementation, crm training and workshops, crm support services, crm licensing, microsoft copilot ai, business intelligence, microsoft azure cloud, crm migration, customer relationship management, power apps, power automate, b2b, power pages, power pages development, crm scalability, project operations, customer engagement, azure services, business process automation, power automate workflows, customer insights platform, lead management, power platform, power bi analytics, ai-powered crm, automated customer service, crm with chatbot integration, services, scalable crm, crm with predictive analytics, information technology & services, consulting services, crm with iot integration, crm for professional services, ai in sales, crm data security, lead generation, crm solutions, information technology and services, customer service, customer feedback automation, consulting, power bi, software development, digital transformation, crm for healthcare, customer management, industry-specific crm solutions, ai-driven lead scoring, sales automation, customer voice surveys, custom crm development, cloud crm, financial services, ai in marketing, customer data platform, crm for enterprises, customer experience enhancement, data-driven decision making, remote customer support, finance, manufacturing, health care, health, wellness & fitness, hospital & health care, marketing & advertising, saas, computer software, enterprise software, enterprises, analytics, crm, sales, management consulting, mechanical or industrial engineering",'+49 511 3365150,"Outlook, Hubspot, Google Tag Manager, Google Analytics, Typekit, Facebook Login (Connect), Linkedin Widget, Mobile Friendly, Facebook Widget, Hotjar, Linkedin Login, Microsoft Power Platform","","","","",36000,"",69c281701cba2c0001f0e518,7375,54151,"Seit über 25 Jahren treiben wir Innovation im Kundenmanagement voran. Als spezialisierter CRM-Partner mit Fokus auf Microsoft Dynamics 365 kombinieren wir fundierte Systemexpertise mit strategischem Denken und einem klaren Anspruch: unsere Kunden durch Technologie erfolgreicher machen – heute und morgen. 🚀 + +Was uns als CRM-Partner auszeichnet + +🔹 #1 Zufriedene Kunden durch praxisnahe CRM-Expertise +Unsere Consultants und Entwickler:innen vereinen tiefes Dynamics-Know-how mit Praxiserfahrung in Vertrieb, Marketing und Service – für CRM-Lösungen, die Kundenerlebnisse verbessern und nachhaltig binden. + +🔹 #2 Klare Prozesse durch vernetzte Daten und KI +So erkennen Unternehmen Muster im Kundenverhalten, im Kaufprozess oder in der Service-Nutzung – entdecken verborgene Potenziale und treffen fundierte Entscheidungen: in Echtzeit, vorausschauend und mit klarem Fokus. + +🔹 #3 Neue Wettbewerbsvorteile durch messbare Wirkung +Wir denken in Ergebnissen, nicht nur in Funktionen. Unsere CRM-Lösungen machen Unternehmen schneller, reaktionsfähiger und kundenzentrierter – und damit entscheidend wettbewerbsfähiger. Wer Kunden besser versteht und gezielter agiert, setzt sich im Markt durch. + +Ob Erstimplementierung, Systemablösung oder Weiterentwicklung: Wir machen CRM zu einem echten Erfolgsfaktor. + +Informationen zum Datenschutz: https://www.infinitas.de/datenschutz-social-media",1999,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66dc03eb9aacf300016ce5cb/picture,"","","","","","","","","" +finstreet,finstreet,Cold,"",52,financial services,jan@pandaloop.de,http://www.finstreet.de,http://www.linkedin.com/company/finstreet-gmbh,"","",113 Friedrich-Ebert-Strasse,Muenster,North Rhine-Westphalia,Germany,48153,"113 Friedrich-Ebert-Strasse, Muenster, North Rhine-Westphalia, Germany, 48153","innovative technology, ruby on rails, digitalisierung im bankbereich, endtoend solutions, creative business modeling, python, development, fintech, finanzdienstleistungen, digital transformation, consulting, business modeling, design thinking, financial industry, whitelabel saas solutions, saas products, data security, digital customer onboarding, services, custom software, regulatory technology, innovation in finance, big data, financial data platforms, banking software, cloud security, iso 27001, regulated environment, digital consulting, end-to-end digital platforms, software development, digital solutions, data protection, machine learning, regulatory compliance, computer systems design and related services, cloud infrastructure, cybersecurity, prototyping, omnichannel banking, fintech solutions, user experience design, process automation, data analytics, api integration, mobile development, ai-powered risk management, web development, custom software development, information technology, it security, data privacy, b2b, financial services, export financing saas, kyc automation, cloud computing, financial software, ai in finance, customer experience, esignatures, credit process digitization, finance, finance technology, information technology & services, computer & network security, enterprise software, enterprises, computer software, artificial intelligence, internet infrastructure, internet",'+49 251 50853900,"MailJet, Outlook, VueJS, Jira, Atlassian Confluence, Typeform, Amazon SES, Freshdesk, Google Analytics, Typekit, Nginx, Google Tag Manager, Mobile Friendly, WordPress.org, Bootstrap Framework, Google Font API, Remote","",Merger / Acquisition,0,2023-01-01,"","",69c281701cba2c0001f0e520,7375,54151,"finstreet is a German digital agency that specializes in creating and marketing digital solutions for the financial services industry. The company focuses on the unique challenges of this highly regulated sector, offering services that include digital strategy, design, coding, and implementation of innovative business models. + +With a team experienced in banking, insurance, and auditing, finstreet provides regulatory consulting on compliance matters such as BAIT, MaRisk, and KYC processes. They assist clients from initial consulting through to outsourcing compliance and application operations in the cloud. Additionally, finstreet emphasizes IT security and quality assurance, adhering to OWASP Foundation standards and implementing robust systems for secure production operations.",2014,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f81f725551be0001ba01d1/picture,fintus GmbH (fintus.de),5b148047a6da9870e6a707b7,"","","","","","","" +netvico GmbH - Digital Architects,netvico,Cold,"",11,information technology & services,jan@pandaloop.de,http://www.netvico.com,http://www.linkedin.com/company/netvico-gmbh-digital-architects,https://facebook.com/netvico.GmbH,https://twitter.com/netvico,41 Talstrasse,Stuttgart,Baden-Wuerttemberg,Germany,70188,"41 Talstrasse, Stuttgart, Baden-Wuerttemberg, Germany, 70188","smart data technologie, poi, content management system, digital strategie, pos, cms, digital signage, interaktive lösungen, content management systeme, design, information technology and services, digitale beschilderung, innovation, software development, werbung, government, wegeleitung, markenauftritt, computer systems design and related services, markenkommunikation, content creation, software engineering, digitale kommunikation, projektentwicklung, projektmanagement, beratung, indoor-displays, led-displays, smart rooms, cms-software, digitale erlebnisse, information, hardware-lösungen, e-commerce, data analytics, individuelle software, interne kommunikation, award-winner, omnichannel, consulting, mobile app development, services, design services, retail, hardware-integration, content management, customer experience, entwicklung, display-technologie, digitale informationssysteme, b2b, digitale transformation, d2c, service & support, nutzerführung, outdoor-displays, hardware manufacturing, information technology & services, consumer internet, consumers, internet",'+49 711 22009430,"MailJet, Rackspace MailGun, Outlook, Microsoft Office 365, Vercel, React Redux, GitLab, Slack, WordPress.org, Apache, YouTube, Google Font API, Google Tag Manager, Ubuntu, Mobile Friendly, reCAPTCHA, Vimeo, Android","","","","",359000,"",69c281701cba2c0001f0e52a,7375,54151,"Wir sind ein Full-Service Anbieter von Digital Signage Lösungen. Unsere zentrale Mission ist die bedarfsorientierte Digitalisierung des stationären Handels sowie aller Einrichtungen mit Publikumsverkehr. +Seit 2001 unterstützen wir Unternehmen aus unterschiedlichen Branchen dabei, ihre Kommunikationsstrategie zu optimieren und ihre Zielgruppe effektiver zu erreichen.",2001,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/672f1b43eb725300012936b1/picture,"","","","","","","","","" +LIPINSKI TELEKOM GmbH,LIPINSKI TELEKOM,Cold,"",28,telecommunications,jan@pandaloop.de,http://www.lipinski-telekom.de,http://www.linkedin.com/company/lipinski-telekom,https://www.facebook.com/lipinskitelekom/,https://twitter.com/lipinskitelekom,36 Winterstrasse,Berlin,Berlin,Germany,13409,"36 Winterstrasse, Berlin, Berlin, Germany, 13409","avaya implementation, lancom, videokonferenz, telekommunikation, avaya service, luware, estos, softphones, homeoffice, avaya design, avaya, avaya consulting, avaya configuration, ribbon sbc, poly, collaboration, microsoft teams, content guru, contact center in microsoft teams, extreme networks, cloud communications, cloud-based uc, soft-clients, netzwerkinfrastruktur, seo services, cloud solutions, unified communications integration, digital transformation, avaya diamond partner, appliances, business telephony, marketing automation, software development, government, social media management, telecommunications, consulting, remote work, telefonanlagen, chatbots, it-consulting, headsets, session border controller, it solutions, digital workplace, avaya partner, business services, project management, computer systems design and related services, b2b, unified communications, uc lösungen, cloud computing, voip, business phones, video collaboration, enterprise communication, kommunikationssysteme, videokonferenzsysteme, it consulting, network security solutions, netzwerktechnik, information technology and services, computer networking, it infrastructure, services, connected enterprise communication, business communication, network security, microsoft teams telefonanlage, home office, it beratung, videokonferenztechnik, cloud applications, sip-trunk, customer engagement, collaboration tools, healthcare, finance, education, manufacturing, distribution, transportation, energy & utilities, information technology & services, search marketing, marketing, marketing & advertising, enterprise software, enterprises, computer software, saas, productivity, management consulting, health care, health, wellness & fitness, hospital & health care, financial services, mechanical or industrial engineering",'+49 30 9860030,"SendInBlue, Outlook, Magento, TrustedShops, Google Tag Manager, Multilingual, Google translate widget, Google translate API, Apache, WordPress.org, Mobile Friendly, reCAPTCHA, Avaya, Dialpad","","","","","","",69c281701cba2c0001f0e52d,7375,54151,"LIPINSKI TELEKOM ist Ihr Experte für umfassende Beratung, Planung, Installation und Betreuung von vernetzten Kommunikationslösungen. + +Wir setzen auf führende Hersteller wie AVAYA und haben uns darüber hinaus auf eine Vielzahl weiterer erstklassiger Anbieter spezialisiert, darunter Content Guru, estos, Extreme Networks, Lancom, Luware, Microsoft Teams, Poly und Ribbon. Mit Standorten in Berlin (Zentrale), Hamburg, Kassel, Köln und München betreuen wir Kunden deutschlandweit. + +Unser internationales Team besteht aus herausragenden Spezialisten aus sechs Nationen, die insgesamt 17 Sprachen beherrschen. + +Bei LIPINSKI TELEKOM steht Service an erster Stelle – wir sind für Sie da!",1947,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6845b8eea1eab20001509c71/picture,"","","","","","","","","" +BLUE Consult GmbH,BLUE Consult,Cold,"",64,information technology & services,jan@pandaloop.de,http://www.blue-consult.de,http://www.linkedin.com/company/blue-consult-kr,https://facebook.com/blueconsultgmbh,"",2 Adolf-Dembach-Strasse,Krefeld,Nordrhein-Westfalen,Germany,47829,"2 Adolf-Dembach-Strasse, Krefeld, Nordrhein-Westfalen, Germany, 47829","virtualisierung, cloud loesungen, security beratung, digital workplaces, ibm power systems, iot, industrie 40, iaas, sap sap hana, cloudcomputing, hadr konzepte, beratung, wifi solutions, paas, lanwan konzepte, managed service, notfall konzepte, backup as a service, collaboration loesungen, sap hana aus der cloud, helpdesk, speicher systeme, data center design, it services & it consulting, cloud computing, enterprise software, enterprises, computer software, information technology & services, b2b",'+49 2151 650010,"CloudFlare CDN, Outlook, CloudFlare Hosting, Hubspot, WordPress.org, Ubuntu, Google Tag Manager, Apache, Google Font API, Shutterstock, Mobile Friendly, YouTube, Remote",1270000,Other,1270000,2021-12-01,"","",69c281701cba2c0001f0e521,"","","BLUE Consult GmbH is a German IT services company based in Krefeld. With over 20 years of experience, it specializes in cloud solutions, managed services, professional services, and IT infrastructure for B2B clients, including enterprises, municipalities, and public institutions. The company emphasizes digital sovereignty and reliability, operating exclusively in the B2B market and focusing on stable infrastructure and proactive service. + +The core offerings include the BLUE Cloud Platform, which provides secure and scalable IaaS and PaaS solutions, as well as managed services that ensure personalized IT operations. Additionally, BLUE Consult offers professional services for IT projects and consulting for cloud readiness and infrastructure evaluation. The company is ISO 27001 certified for information security and maintains a nationwide presence in Germany with multiple offices to ensure quick response times and compliance with local regulations.",2004,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e6db7fdd537c0001439708/picture,"","","","","","","","","" +smoodi.consulting,smoodi.consulting,Cold,"",27,information technology & services,jan@pandaloop.de,http://www.smoodi-consulting.com,http://www.linkedin.com/company/smoodi-consulting,https://www.facebook.com/smoodiconsulting/,"","",Nuremberg,Bavaria,Germany,"","Nuremberg, Bavaria, Germany","prozessoptimierung, webcon bps, digitalisierung, beratung, lowcode, it, it & digitalisierung, it services & it consulting, consulting, managed services, low-code plattform, automatisierung, smoodishare, workplace design, it services, digitales wissensmanagement, information technology and services, digitale zeiterfassung, it consulting, onestoptransformation, business process management, compliance, prozessautomatisierung, data analytics, cloud solutions, elo knowledge, remote work, process digitalization, it strategy, computer systems design and related services, it-strategie, process optimization, smarte tools, enterprise content management, data security, automatisierte vertragsprozesse, b2b, automation, user experience, modern workplaces, knowledge management, system integration, digital collaboration, smart workflows, data management, low-code development, workflow automation, smoodisign, services, ki-gestützte lösungen, digital transformation, content management, ki in mittelstand, digital workspaces, change management, smoodiflow, customer engagement, ai solutions, hybrid office, hybrid work, information technology & services, management consulting, cloud computing, enterprise software, enterprises, computer software, computer & network security, ux",'+49 91 188189258,"YouTube, Google Tag Manager, Nginx, Mobile Friendly, WordPress.org, reCAPTCHA","","","","","","",69c281701cba2c0001f0e523,7375,54151,"stay human. work digital. + +Die smoodi.consulting GmbH wurde Anfang 2023 als 100%-ige Tochtergesellschaft der MR Datentechnik Vertriebs- und Service GmbH gegründet. Wir sind ein innovatives Unternehmen aus der Metropolregion Nürnberg, in dem Know-how rund um die Themen Digitalisierung und digitale Transformation gebündelt wurde. + +Durch unsere langjährige Beratungskompetenz und hohe Expertise in Prozessoptimierung und Digitalisierung unterstützen wir Unternehmen, sich stabil und zukunftsfähig auf dem Markt zu positionieren. Unser Portfolio erstreckt sich von der Beratung über die Planung bis hin zur Umsetzung von facettenreichen Digitalisierungsprojekten. + +Dafür gestalten wir zusammen mit Kunden für Kunden moderne und digitale Arbeitswelten, die stressfreier, sicherer und kollaborativer sind. Wir nennen das: +smooth. modern. digital. + +Dabei betrachten wir Mensch, Technologie und Prozesse stets gemeinsam und stellen den Menschen – vom Mitarbeitenden bis hin zum Geschäftsführer, vom Kunden bis Partner – in den Mittelpunkt unseres Denkens und Handelns.",2023,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6709022476e9dd00013a74cc/picture,"","","","","","","","","" +ITC Herden GmbH,ITC Herden,Cold,"",34,information technology & services,jan@pandaloop.de,http://www.itc-herden.com,http://www.linkedin.com/company/itc-herden-gmbh,"","","",Renningen,Baden-Wuerttemberg,Germany,"","Renningen, Baden-Wuerttemberg, Germany","cloud it security, devops, continuous deployment, application operations, api, automotive, cloud platforms, infrastructure as code, automation, continuous testing, application platfrom migration, cloudnative, devops & automation, data analytics, poc (proof of concept) execution, it monitoring, big data analytics, heterogeneous data formats, software development, artificial intelligence, it project management, cloud assessment, ci/cd pipelines, custom it solutions, it-plattform-transition, information technology and services, application integration management, it infrastructure analysis, containerization, b2b, cloud platform evaluation, microservices architecture, client services, it-architecture consulting, multi-cloud strategies, it cost optimization, it solution design, automated deployment, application development, it security consulting, cloud migration, license management, ai integration in business, services, it lifecycle management, consulting, end-2-end it-operations, it process automation, it compliance, it service management, computer systems design and related services, data integration, enterprise software, enterprises, computer software, information technology & services, app development, apps",'+49 7159 4965655,"Outlook, Mobile Friendly, reCAPTCHA, Apache, WordPress.org, Remote","","","","","","",69c281701cba2c0001f0e526,7375,54151,"We like to move IT. + +Mit unserem internationalen, erfahrenen, agilen Team in Renningen und Kosice bewegen wir seit 2005 die IT von Industrie und Mittelstand. Wir helfen Ihnen Ihre komplexe Applikationen zu modernisieren, cloud native zu machen, Prozesse, IT-Security und IT-Infrastructure zu automatisieren und sie zu betreiben. Damit waren wir seit der Gründung bei ca. 500 Applikationen und Projekten für Autonomous Driving, Automotive, Chemie, Pharma, Banken erfolgreich.",2005,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e9424d03435800014ae114/picture,"","","","","","","","","" +infolox,infolox,Cold,"",16,information technology & services,jan@pandaloop.de,http://www.infolox.de,http://www.linkedin.com/company/infolox,https://facebook.com/infolox.de,https://twitter.com/infolotse,101 Bregenzer Strasse,Lindau,Bavaria,Germany,88131,"101 Bregenzer Strasse, Lindau, Bavaria, Germany, 88131","produktinformationsmanagement, printpublishing, mobile solutions, dynamicpublishing, native apps, omnichannelcommerce, ecommerce, hybrid apps, b2b produktkommunikation, omnichannelmarketing, contentmanagement, printkataloge, it services & it consulting, b2b e-commerce, cms, pim system, headless cms, qr code integration, configurable product finders, omnichannel, print publishing software, pim dam cms e-commerce, saas, project management, design, multichannel publishing, distribution, manufacturing, customer experience, b2b, e-commerce, headless architecture, api-driven cms, computer systems design and related services, content automation, dam system, e-commerce platform, content & commerce integration, omnichannel marketing, digital asset management, consulting, product experience platform, online-shop, digital marketing, product data management, marketing automation, responsive design, supply chain management, omnichannel solutions, product data synchronization, international product catalogs, deeplinks for product navigation, construction & real estate, user experience, content management, content automation tools, crossmedia content strategy, multi-language content management, information technology and services, portfolio management, print catalogs, services, b2c, consumer internet, consumers, internet, information technology & services, computer software, productivity, mechanical or industrial engineering, marketing & advertising, enterprise software, enterprises, logistics & supply chain, ux",'+49 83 822758940,"Outlook, Microsoft Office 365, Hubspot, Remote","","","","","","",69c281701cba2c0001f0e513,7375,54151,"infolox is a German B2B software and services company with 15 years of experience, specializing in omnichannel product experience solutions. The company is a leading provider of integrated solutions for product information management and omnichannel marketing, catering to industrial and commercial enterprises. + +infolox offers a range of services, including the Viamedici EPIM platform for product information management, digital asset management, content management systems, e-commerce solutions with ERP integration, and print publishing services. Their integrated ""Omnichannel-Box"" solution allows clients to manage and distribute product information across various platforms, including websites, online shops, mobile applications, print catalogs, and social media, all from a single interface. + +The company serves notable clients such as ACO, Binder, SICK, Kampmann, HENSEL, KIEHL, di-soric, and Renfert, having successfully implemented over 100 print publications and numerous websites and online catalogs.",2003,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67032c1ec799970001f2e2b1/picture,"","","","","","","","","" +new direction GmbH,new direction,Cold,"",26,information technology & services,jan@pandaloop.de,http://www.newdirection.de,http://www.linkedin.com/company/new-direction-gmbh,https://facebook.com/newdirection.de,https://twitter.com/newdirection_de,7 Hauptstrasse,Neusaess,Bayern,Germany,86356,"7 Hauptstrasse, Neusaess, Bayern, Germany, 86356","kuenstliche intelligenz, open source software, virtual reality, systemische organisationsentwicklung, blockchain, augmented reality, datenschutz, individuelle softwareentwicklung, app entwicklung, digitale strategie, it services & it consulting, services, resource management, information technology & services, innovation, b2b, software development, resource-efficient systems, prozessautomatisierung, automation, data security, resource conservation, resource-saving technology, softwarelösungen, computer systems design and related services, cost reduction, custom software development, digital transformation, digitale prozesse, technology integration, business process management, project management, sustainability, consulting, resource-efficient processes, resource efficiency, resource-saving processes, resource-efficient automation, process optimization, resource sustainability, resource-conscious processes, computer & network security, productivity, environmental services, renewables & environment",'+49 821 5437011,"Outlook, CloudFlare Hosting, Google AdSense, Shutterstock, Mobile Friendly, Google Tag Manager, reCAPTCHA, Bing Ads, Bootstrap Framework, Remote","","","","","","",69c281701cba2c0001f0e51d,7375,54151,"new direction GmbH is a German software development and IT consulting company founded in 1998 and based in Neusäß, Bayern. The company specializes in custom software solutions, process optimization, workflow automation, and digital transformation, primarily serving the automotive, defense, security, and industrial sectors. With a team of around 20 employees, new direction GmbH has over 25 years of experience and focuses on integrating artificial intelligence into its innovative solutions. + +The company offers a range of services designed to enhance efficiency and minimize risks for its clients. This includes agile project implementation and free consultations to help businesses prepare for digital transformation. Notably, new direction GmbH has worked with clients such as BMW AG and supports various business customers, including car dealerships and fleet operators, with tailored vehicle solutions.",1998,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66cab706e80cc80001309698/picture,"","","","","","","","","" +ESR Labs GmbH,ESR Labs,Cold,"",87,information technology & services,jan@pandaloop.de,http://www.esrlabs.com,http://www.linkedin.com/company/esr-labs-gmbh,"",https://twitter.com/esrlabs,73 Balanstrasse,Munich,Bavaria,Germany,81541,"73 Balanstrasse, Munich, Bavaria, Germany, 81541","automotive software development, overtheair, embedded software, cloud computing, artificial intelligence, connectivity, autonomous driving, digital engineering, manufacturing services, automation, business process outsourcing, business strategy, change management, cloud solutions, customer experience, digital commerce, enterprise platforms, finance consulting, infrastructure services, marketing strategies, mergers and acquisitions, supply chain management, technology consulting, zero-based transformation, aerospace industry, defense solutions, automotive engineering, banking innovation, chemicals industry, energy solutions, healthcare services, consumer goods, high-tech manufacturing, public sector consulting, pharmaceuticals, tourism solutions, telecommunications, media services, smart manufacturing, robotics automation, digital transformation, asset management, predictive maintenance, sustainability initiatives, iot solutions, collaborative work models, product lifecycle management, smart connected products, aftermarket services, project management, data analytics, operational efficiency, intelligent automation, custom software development, engineering services, investment consulting, b2b, government, consulting, services, enterprise software, enterprises, computer software, information technology & services, marketing strategy, marketing, marketing & advertising, mergers & acquisitions, logistics & supply chain, management consulting, health care, health, wellness & fitness, hospital & health care, consumers, medical, productivity, software development",'+49 176 13770077,"Gmail, Google Apps, Microsoft Office 365, Remote","",Merger / Acquisition,0,2020-04-01,5900000,"",69c281701cba2c0001f0e528,7375,54151,"ESR Labs GmbH is a German company that specializes in digital engineering and manufacturing services. The company focuses on providing software solutions and consulting services aimed at enhancing automation in the semiconductor and high-tech industries. + +ESR Labs offers custom software designed to improve efficiency in complex manufacturing environments. Their consulting services provide expert advice on implementing automation technologies, addressing specific challenges faced in advanced manufacturing sectors. The company's expertise is tailored to meet the needs of clients looking to optimize their production processes.",2012,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68240ef15167fb000178c4dd/picture,Accenture (accenture.com),5e57c8f6a4128d0001c8e8ab,"","","","","","","" +Albert & Hummel GmbH,Albert & Hummel,Cold,"",20,machinery,jan@pandaloop.de,http://www.aundh.com,http://www.linkedin.com/company/albertundhummel,https://www.facebook.com/AlbertundHummelGmbH,"",33 Am Boerstig,Bamberg,Bavaria,Germany,96052,"33 Am Boerstig, Bamberg, Bavaria, Germany, 96052","sondermaschinen, maschinenbau, steuerungstechnik, automationen, automation machinery manufacturing, testsysteme für batteriesysteme, fertigungstechnik, entwicklung und bau, ki-gestützte prozesse, services, flexible transfer-systeme, energieeffizienz, handling automation, kundenspezifische lösungen, high-speed pick and place, prüfstände, clean-tech, schweiß- und löttechnik, prozessüberwachung, automatisierte verpackungslösungen, thermomanagement, thermische simulationen, automatisierte montage mit mensch-roboter-kollaboration, montage, modulare automatisierungszellen, robotik, industrieautomation, vakuumtrocknen, prozessautomatisierung, dichtheitsprüfung, industrie 4.0, robotics, ki in der produktion, handling und montage, systemintegration, b2b, prüftechnik, robotiksysteme, ki-basierte fehlererkennung, automatisierte leak-tests, industrial machinery manufacturing, qualitätsstandards, manufacturing, elektrolyseur-prüfstände, automatisierungssysteme, e-mobility, automatisierung, dichtheits- und funktionstests, sondermaschinenbau, fertigung, thermo-fluidtechnik, datenanalyse, mes-anbindung, e-mobility komponentenprüfung, qualitätsmanagement, energie- und antriebssysteme, automatisierte fehlerdiagnose, testsysteme, energy & utilities, brennstoffzellen-tests, industrial automation, mechanical or industrial engineering, information technology & services",'+49 951 967330,"Microsoft Office 365, WordPress.org, Typekit, Mobile Friendly, Nginx, Google Font API, AI","","","","","","",69c281701cba2c0001f0e52c,3592,33324,"Wir sind ein innovativer Hersteller von Sondermaschinen, Automationen und Steuerungstechnik. Von der Konzeptentwicklung Ihrer Aufgabe über die Inbetriebnahme bis hin zum Aftersales Service - bei uns bekommen Sie alles aus einer Hand.",1992,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f011002a11140001c8aea7/picture,"","","","","","","","","" +ARETI GmbH,ARETI,Cold,"",12,information technology & services,jan@pandaloop.de,http://www.areti.de,http://www.linkedin.com/company/ascent-media-gmbh,"","",7 Saarstrasse,Munich,Bavaria,Germany,80797,"7 Saarstrasse, Munich, Bavaria, Germany, 80797","performance marketing, seo, content, webdesign, consulting, google ads, branding, advertising services, it system custom software development, efficiency increase, process automation, process clarity, stress reduction, error reduction, information technology & services, business process management, time savings, lead management, system customization, agency solutions, content workflow, workflow management, client management, financial automation, resource planning, tool integration, project management, software development, computer systems design and related services, team collaboration, kpi tracking, process integration, automated billing, crm integration, scalable processes, custom software, agency productivity, profit margin improvement, system design, automation system, workflow automation, process optimization, all-in-one system, b2b, marketing & advertising, search marketing, marketing, web design, productivity",'+49 89 215368590,"Gmail, Google Apps, Apache, Linkedin Marketing Solutions, WordPress.org, Vimeo, Mobile Friendly, Facebook Custom Audiences","","","","","","",69c281701cba2c0001f0e519,7373,54151,"Wir entwickeln maßgeschneiderte All-in-One-Systeme für Agenturen. Mit unserem ARETI SYSTEM bilden wir End-to-End-Prozesse von Marketing und Sales über Onboarding, Verwaltung und Fulfillment bis hin zu Finance und HR in einer integrierten Lösung ab. + +Unser Ziel ist es, Tool-Wildwuchs zu eliminieren, Abläufe zu systematisieren und durch Automatisierung Zeit, Fehler und Kosten zu reduzieren – damit Agenturen Klarheit gewinnen, effizient skalieren und sich auf das Wesentliche konzentrieren können. + +✅ Echte Systemarchitektur statt „noch ein Tool"": Unsere Module greifen ineinander, arbeiten mit- und denken voraus. +✅ Messbare Effekte: bis zu 20 % höhere Marge, weniger Fehler und Nachfragen, mehr Zeit für Strategie. In unserer eigenen Agentur haben wir über 500.000 manuelle Klicks pro Jahr eingespart (= zwei Vollzeitstellen). +✅ 100 % Zufriedenheitsgarantie: Wir optimieren so lange, bis das Setup passt – ohne Aufpreis. + +Wir liefern kein weiteres Inselltool, sondern ein individuell designtes Betriebssystem für Agenturen, das Prozesse Ende-zu-Ende abbildet, Datenflüsse zusammenführt und spürbare Effizienz-, Qualitäts- und Ergebnisgewinne ermöglicht.",2019,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68bc79f4cf4c4200017cff47/picture,"","","","","","","","","" +nextN GmbH,nextN,Cold,"",19,information technology & services,jan@pandaloop.de,http://www.nextn.de,http://www.linkedin.com/company/nextn,"","","",Neuenhaus,Lower Saxony,Germany,49828,"Neuenhaus, Lower Saxony, Germany, 49828","it services & it consulting, it-dienstleistungen, it-gesellschaft, blockchain, computer systems design and related services, web development, erp-beratung, it consulting, data security, information technology and services, b2b, customer relationship management, it-services, data management, industrial automation, cloud computing, it-unterstützung, market research, user experience, digitalisierung, custom software, financial services, cloud services, project management, it-partner, it-beratung, services, digital transformation, it-strategie, it-synergien, it-expertise, it-wandel, softwareentwicklung, software development, system integration, it-consulting, it-infrastruktur, consulting, smart factory, industrie 4.0, digitale innovationen, digitale transformation, information technology & services, management consulting, computer & network security, crm, sales, enterprise software, enterprises, computer software, mechanical or industrial engineering, ux, productivity","","Outlook, Microsoft Office 365, Cloudflare DNS, CloudFlare Hosting, Mobile Friendly, Google Maps, Apache, Google Analytics, Remote, AI","","","","","","",69c281701cba2c0001f0e51a,7375,54151,"Bei nextN GmbH sind wir eine Gemeinschaft von Tech-Enthusiasten, die die digitale Zukunft gestalten. Mit unserer Expertise in Softwareentwicklung, App-Erstellung, Cloud-Lösungen und IT-Beratung bieten wir maßgeschneiderte Lösungen für Unternehmen und Verbraucher. + +Warum nextN GmbH? +• Innovation pur: Bei uns kannst du deine kreativen Ideen einbringen und neue Technologien entwickeln. +• Teamarbeit: Wir schätzen offene Kommunikation und Zusammenarbeit. Jede Stimme zählt! +• Kundenfokus: Unsere Kunden stehen im Mittelpunkt. Wir bieten individuelle Lösungen, die begeistern. +• Nachhaltigkeit: Gemeinsam fördern wir umweltfreundliche und ressourcenschonende Technologien. +• Lernen und Wachsen: Regelmäßige Schulungen und Weiterbildungen unterstützen deine berufliche Entwicklung. +• Vielfalt und Inklusion: Wir schätzen unterschiedliche Perspektiven und schaffen ein inklusives Arbeitsumfeld. + +Mach den Unterschied! +Wenn du leidenschaftlich an Technologie interessiert bist und einen Ort suchst, an dem deine Ideen geschätzt werden, dann bist du bei uns richtig. Werde Teil unseres Teams und gestalte mit uns die Zukunft! Wir freuen uns auf dich! + +#nextNGmbH #Innovation #Teamgeist #TechKarriere #JoinUs",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/693667bb6a221300017c492a/picture,"","","","","","","","","" +STAUD STUDIOS,STAUD STUDIOS,Cold,"",15,marketing & advertising,jan@pandaloop.de,http://www.staudstudios.com,http://www.linkedin.com/company/ren%c3%a9-staud-studios-gmbh,https://facebook.com/STAUDSTUDIOS/,https://twitter.com/staudstudios?lang=en,3 Mollenbachstrasse,Leonberg,Baden-Wuerttemberg,Germany,71229,"3 Mollenbachstrasse, Leonberg, Baden-Wuerttemberg, Germany, 71229","film, virtual reality, communication, photography, digital, branding, marketing, advertising services, virtual events, media strategy, content adaptation, artificial intelligence, content management system, digital experience platforms, services, d2c, performance tracking, digital twin content, crm integration, ai storytelling tools, immersive brand experiences, performance analytics, personalization, data orchestration, virtual event production, digital storytelling, ar/vr, data analytics, information technology and services, virtual reality brand activations, virtual influencer campaigns, ai storytelling, media activation, digital marketing, content marketing, customer engagement platforms, customer journey, ai content orchestration, ai-driven content workflows, content creation, performance marketing, multichannel marketing, digital assets, digital platforms, marketing automation, content personalization, nft campaigns, media performance, metaverse marketing, content automation, b2b, digital transformation, ai workflows, creative technology, customer engagement, automated content creation, data-driven insights, customer experience, platform development, brand storytelling, immersive experiences, customer data platform, ai, media automation, ai-powered storytelling, media and entertainment, audience segmentation, e-commerce, cross-channel marketing, content supply chain, omnichannel marketing, web3 marketing, marketing and advertising, content production, virtual influencer, media measurement, content optimization, media ecosystem, media analytics tools, ecommerce, ai-powered marketing, retail, ai integration, consulting, social media, media buying, digital experience design, media planning, brand engagement, ai in media buying, technology consulting, real-time data, media optimization, advertising agencies, social media marketing, ai-powered content, b2c, finance, consumer products & retail, media, information technology & services, marketing & advertising, saas, computer software, enterprise software, enterprises, consumer internet, consumers, internet, management consulting, financial services",'+49 7152 979930,"Outlook, Remote","","","","","","",69c281701cba2c0001f0e51b,7311,54181,"STAUD STUDIOS is a high-end creative production studio located in Leonberg, Germany, specializing in MarTech to enhance personalized content creation through data-driven methods. The company, officially known as STAUD STUDIOS GmbH, focuses on consulting, development, and implementation of communication strategies, alongside producing images and films. With a team of 29 employees, STAUD STUDIOS reported an annual revenue of $11.5 million in 2024. + +The studio is recognized for its expertise in international automobile photography and features a spacious facility for large-scale media productions. STAUD STUDIOS offers a range of services, including creative production, communication consulting, and tailored media solutions, all supported by advanced marketing technology. The company utilizes various technologies to streamline digital production workflows, ensuring effective delivery of content to target audiences.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/677e1fedeb94510001a39407/picture,S4 Capital Group (s4capital.com),5c52c2751dac1e0a37ad4cbd,"","","","","","","" +ITARICON,ITARICON,Cold,"",81,information technology & services,jan@pandaloop.de,http://www.itaricon.de,http://www.linkedin.com/company/itaricon,https://www.facebook.com/ITARICON,https://twitter.com/ITARICON,9 Wiener Platz,Dresden,Saxony,Germany,01069,"9 Wiener Platz, Dresden, Saxony, Germany, 01069","integration consulting, ipaas, anwendungsintegration, middleware, architecture consulting, onventis, bizzdesign alfabet, dom zone, sap, kunden und logistikprozesse, ibm, boomi, sap integration suite, sap pipo, sap s4hana, edi zone, itintegration, enterprise application integration, itberatung, digitalisierung, enterprise architecture management, mulesoft, sap salescloud, sap btp, evalanche, mobile loesungen, sap cloud for customer, customer journey, itarchitektur, adito xrm, it services & it consulting, sap cloud analytics, xrm, it strategy, sap cloud transformation, data management, monitoring & support, sap cloud alm, data migration, management consulting, project management, sap integration, cloud solutions, customer experience, b2b, sap cloud integration, ibm datapower gateway, ibm z/os, sap s/4hana migration, computer systems design and related services, security standards, system landscape management, government, devops, software development, ibm integration, digital transformation, managed integration services, process optimization, solution architecture, application strategy, sap cloud platform, consulting, sap s/4hana cloud, cloud integration, data security, data governance, it consulting, performance optimization, crm process integration, sap activate methodology, ibm mq, sap signavio, sap s/4hana, hybrid cloud architecture, enterprise architecture, system modernization, sap isa-m framework, sap fiori development, compliance, sap btp integration, sap sales cloud, it-integration, sap cloud data cloud, information technology and services, process automation, services, information technology & services, productivity, cloud computing, enterprise software, enterprises, computer software, computer & network security",'+49 351 4850780,"Outlook, DoubleClick Conversion, Google Font API, Google Tag Manager, reCAPTCHA, Google Dynamic Remarketing, DoubleClick, WordPress.org, Bing Ads, Mobile Friendly, Apache, Remote, LeanIX Enterprise Architecture Management, Software AG Alfabet, Dito, SAP, Mint, MuleSoft Anypoint Platform, IBM API Connect, WSO2 API Manager, Microsoft Windows Server 2012, Azure Linux Virtual Machines, Microsoft Active Directory Federation Services, Microsoft Exchange Online, SharePoint, Microsoft Azure Monitor, Microsoft Entra ID, Adobe Creative Cloud, SAP C/4 HANA, Process automation package for service request creation in SAP S/4HANA Utilities, Rise, SAP S/4HANA, SAP Integration Suite, Oracle Fusion Middleware, SAP Ariba Cloud Integration Gateway, SAP NetWeaver, 3M 360 Encompass - Health Analytics Suite, ABAP, Apex, iManage, , Salesforce, SAP BTP for Spend Management, SAP Sales, SAP SD, SAP SuccessFactors, AWS Trusted Advisor, IBM ILOG CPLEX Optimization Studio, Terraform, AWS CloudFormation, Docker, Kubernetes, SAP ERP, SAP Data Quality Management, microservices for location data, Azure API Management, IBM Cognos Analytics, CAT","","","","",6385000,"",69c281701cba2c0001f0e51f,7375,54151,"ITARICON Gesellschaft für IT-Architektur und Integrationsberatung mbH is a German IT consulting firm based in Dresden, specializing in designing and optimizing IT landscapes for businesses and public administrations. With around 92-100 employees and over 15 years of experience, ITARICON focuses on digital transformation for medium-sized enterprises and large corporations in the DACH region. + +The company offers a range of IT consulting services, including complexity management in system landscapes, future-proof ERP solutions, and integration as a service. ITARICON emphasizes sustainable implementation of digital innovations, leveraging expertise in enterprise and integration architectures, including mobile enterprise, IoT, and cloud technologies. As an official SAP consulting and sales partner, ITARICON collaborates with various technology partners to provide tailored solutions that enhance business processes and drive digital change across multiple sectors, including automotive, finance, engineering, and public administration.",2006,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69ad96136138a6000131cf4a/picture,"","","","","","","","","" +leitart,leitart,Cold,"",21,information technology & services,jan@pandaloop.de,http://www.leitart.de,http://www.linkedin.com/company/leitart,"","",99 Gross-Berliner Damm,Berlin,Berlin,Germany,12487,"99 Gross-Berliner Damm, Berlin, Berlin, Germany, 12487","qlik, business intelligence, data analytics, predictive maintenance, digitalisierung, data integration, automation, machine learning, it services & it consulting, automatisierte workflows, automatisierung in bi, predictive analytics, data security, custom qlik apps, writeback and automation, finanzplanung, qlik bi-beratung, consulting, information technology & services, microsoft teams integration, custom data apps, extensions für qlik, data management, data-driven solutions, data visualization, qlik sense, computer systems design and related services, b2b, qlik automatisierung, datenbasierte steuerung, data strategy, qlik writeback, qlik data integration, qlik partner, data monitoring, nachhaltigkeitsreporting, qlik elite partner, data in action, data-driven decision making, qlik extensions, datenintegration, daten in aktion, data+ suite, custom software development, data+ suite extensions, data workflow automation, software development, vertriebssteuerung, dynamische organigramme, supply chain monitoring, services, business data solutions, saas, analytics, enterprise software, enterprises, computer software, artificial intelligence, computer & network security",'+49 30 81454900,"Outlook, Hubspot, Varnish, Wix, Linkedin Marketing Solutions, Mobile Friendly","","","","","","",69c281701cba2c0001f0e522,7375,54151,"At Leitart, we bring ""Data in Action."" This is not just our motto but our daily motivation. We empower companies with digital solutions and data-driven management. +Check out our Qlik Extension Data+ Suite under dataplusextension.com",2013,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6733058078e0460001bda6a5/picture,"","","","","","","","","" +TRACK GmbH,TRACK,Cold,"",140,marketing & advertising,jan@pandaloop.de,http://www.track.de,http://www.linkedin.com/company/track-gmbh,"","",113 Bernhard-Nocht-Strasse,Hamburg,Hamburg,Germany,20359,"113 Bernhard-Nocht-Strasse, Hamburg, Hamburg, Germany, 20359","strategy, customer experience, brand awareness, crm, marketing science, markenfuehrung, marketingkommunikation, werbung, brand experience, digital touchpoints, data analytics, marketing services, datengetriebenes system, personalized marketing, content creation, marketing & advertising, d2c, information technology & services, customer engagement, campaign management, digital strategy, ecommerce plattformen, b2b, e-commerce, customer insights, data-driven marketing, customer segmentation, digital touchpoint design, customer relationship management, real-time marketing, management consulting services, crm-programme, multichannel marketing, crm-integration, brand management, digital transformation, client relations, ecommerce-lösungen, data-driven campaigns, customer personalization, markenführung, design thinking, digitale touchpoints, touchpoint development, marketing technology, marketing strategy, marketingautomatisierung, omnichannel marketing, consulting, digital marketing, webentwicklung, customer experience management, customer journey, customer loyalty programme, customer engagement platforms, customer loyalty, marketing automation tools, b2c, customer journey mapping, automated marketing, customer behavior analysis, user experience, personalisierung, content management, retail, kundenorientiertes marketing, customer data system, customer data platform, customer retention strategies, customer data management, services, customer experience optimization, consumer_products_retail, sales, enterprise software, enterprises, computer software, marketing, consumer internet, consumers, internet, ux",'+49 40 33959202,"UltraDns, Outlook, Remote, AI","","","","","","",69c281701cba2c0001f0e517,7311,54161,"TRACK GmbH is a Hamburg-based agency that specializes in brand management and marketing services. The company focuses on data-driven, customer-centric solutions, including CRM programs and digital touchpoints. Founded with expertise in brand advertising, TRACK GmbH helps businesses modernize their marketing strategies. + +The agency offers a range of services, including data-driven customer management, personalized marketing, and the creation of digital touchpoints such as websites and eCommerce solutions. TRACK emphasizes the importance of individualized marketing and integrates various technologies to enhance its offerings. With a team of 122 employees, TRACK generates approximately $17.4 million in revenue, positioning itself as a comprehensive partner for companies looking to enhance their brand and customer communication strategies.",2015,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/691568a8562f600001e7ddc1/picture,"","","","","","","","","" +Digital Automotive,Digital Automotive,Cold,"",34,information technology & services,jan@pandaloop.de,http://www.digital-automotive-supplier.com,http://www.linkedin.com/company/digital-automotive-supplier,"","",4 Brunngasse,Passau,Bavaria,Germany,94032,"4 Brunngasse, Passau, Bavaria, Germany, 94032","strategy, claim management, sales planning, digitalization, change management, automotive, price management, sales, process optimization, software development, digital transformation, data integration with sap, distribution, profitability enhancement, customer relationship management, market analysis, automation, integrated market data, real-time sales planning, automated claim processing, workflow automation, automated reporting, cost breakdown tracking, b2b, automotive manufacturing, sales process automation, other motor vehicle parts manufacturing, system integration, integrated sales management, services, automotive industry specialization, dynamic scenario analysis, performance monitoring, ai-driven project proposals, automotive supplier focus, scenario planning, manufacturing, information technology & services, crm, enterprise software, enterprises, computer software, mechanical or industrial engineering",'+49 800 1414147,"Outlook, CloudFlare Hosting, Hubspot, Mobile Friendly, React Native, Android, Remote, IoT, AI, Liquibase, PostgreSQL, Cypress, React, AWS SDK for JavaScript","",Venture (Round not Specified),0,2025-06-01,"","",69c281701cba2c0001f0e524,3599,33639,"Digital Automotive (IT Manufactory GmbH) specializes in sales planning and management software tailored for automotive suppliers. With over 25 years of industry experience, the platform streamlines sales processes by replacing traditional Excel workflows with a modular system that integrates deeply with S&P Global Mobility data. This solution enhances automation, transparency, and performance optimization, addressing challenges such as electrification and supply chain volatility. + +The platform offers comprehensive features, including real-time strategic sales planning, end-to-end sales management, and automated reporting. Users benefit from AI-driven project proposals, performance tracking, and seamless data exchange with systems like SAP and ERP. Digital Automotive supports over 2,000 sales professionals daily, providing expert guidance for quick implementation and ensuring measurable gains in efficiency and profitability across various automotive sectors.",2015,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/690855a8afed820001e91f51/picture,"","","","","","","","","" +ATD Systemhaus,ATD Systemhaus,Cold,"",59,information technology & services,jan@pandaloop.de,http://www.atd-systemhaus.de,http://www.linkedin.com/company/atdgmbh,"","",5 Linnestrasse,Brunswick,Lower Saxony,Germany,38106,"5 Linnestrasse, Brunswick, Lower Saxony, Germany, 38106","itinfrastruktur, m365 solutions, itsecurity, digitalisierung, collaboration, managed services, it services & it consulting, managed firewall, information technology and services, it-transformation, firewall, baramundi, b2b, it-support, it-partnernetzwerk, it-infrastruktur, it-management, it-compliance, managed online backup, it-kooperation, it-sicherheit, trend micro, nis 2, it-dienstleister, it-security, computer systems design and related services, it-backup, mobile device management, it consulting, cybersecurity, it-security beratung, it-notfallhilfe, managed client, it-consulting, mailarchiv, netzwerkmanagement, managed mailarchiv, managed server, managed network, non-profit, distribution, information technology & services, management consulting, nonprofit organization management",'+49 53 1238240,"Outlook, Microsoft Office 365, Mobile Friendly, Apache, WordPress.org, Google Tag Manager, Copilot, Microsoft Azure Monitor","","","","","","",69c281701cba2c0001f0e529,7371,54151,"Ganzheitlich. +Sie finden bei uns mehr als Hard- und Software. Wir bieten Ihnen kompetenten, freundlichen Service und ganzheitliche Lösungskonzepte. +Vom ersten Kennenlernen über die gemeinsame Erarbeitung Ihres spezifischen Umsetzungskonzepts bis hin zur Installation und Betrieb Ihrer IT-Business-Lösung sind wir Ihr kompetenter Ansprechpartner. Unser Beratungsteam orientiert sich eng an Ihren Bedürfnissen, Wünschen und Möglichkeiten. +Für die Betreuung Ihrer EDV-Anwender und den Betrieb Ihrer IT-Systemlandschaft steht Ihnen unser leistungsfähiges Support-Team zur Verfügung. Unsere Mobile-Admins helfen Ihnen telefonisch, remote oder bei Ihnen vor Ort – ganz so, wie Sie die Unterstützung benötigen. + +Zusammenarbeit. +Wir fördern Ihre Talente und gestalten die Zusammenarbeit im Team gemeinsam. In der ATD haben Sie Raum für Ihre persönliche Entwicklung: fachlich, methodisch und im Bereich der Softskills. +Flache Hierarchien und agile Systematiken in unseren Prozessen und der Führung geben den passenden Rahmen für ein sehr eigenverantwortliches Handeln und Arbeiten. +Mitarbeiter:innen genießen bei uns die gute und familiäre Arbeitsatmosphäre, das Arbeiten an gemeinsamen Lösungen und in gemeinsamen Projekten. Gemeinsam mit unserem fachlich versierten Vertrieb kann sich unser Beratungs- und Technik-Team ganz auf die technischen Themen bei den Kunden fokussieren. +Wir haben den Anspruch, für unsere mittelständischen Kunden regional der beste Partner für IT-Infrastruktur und IT-Sicherheit zu sein und für unsere Mitarbeiter:innen ein hochattraktiver Arbeitgeber. + +Vernetzt. +Wir sind Partner in der iTeam Kooperation, die bundesweit die Stärken von über 350 IT-Systemhäusern bündelt, und ergänzen so unser Leistungsspektrum um wichtige Komponenten über die klassische IT-Beratung und IT-Betreuung hinaus. +Die virtuellen Welten unterstützen ein vernetztes, interdisziplinäres Arbeiten und wir finden so für Sie immer eine gute Lösung.",1996,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f0c885a0f9a40001dc164c/picture,"","","","","","","","","" +ITVT Group,ITVT Group,Cold,"",190,information technology & services,jan@pandaloop.de,http://www.itvt.de,http://www.linkedin.com/company/itvt-group,https://www.facebook.com/ITVTGroup,"",8 Am Schlossberg,Leonberg,Baden-Wuerttemberg,Germany,71229,"8 Am Schlossberg, Leonberg, Baden-Wuerttemberg, Germany, 71229","microsoft dynamics marketing, professional services, green hosting cloud, xrm, social listening, microsoft dynamics ax, itvt crm utilities suite, itvt crm industry solution, cloud, microsoft dynamics crm crm online, microsoft azure, machine learning, office 365, powerbi, b2b, rechenzentrum, ki-gestützte fertigung, energie- und versorgungsunternehmen, cloud readiness, microsoft copilot, branchenspezifische erp-lösungen, erp-systeme, tisax-zertifizierung, microsoft solutions partner, software development, consulting, customer relationship management, business software, managed it services, microsoft cloud, data & ai, digital transformation, support services, chemieindustrie software, sicherer datenaustausch, cloud solutions, custom software, dataservice, automatisierung, automatisierte kundenkommunikation, manufacturing, smart city anwendungen, branchenlösungen, branchenanwendungen, itil-prozesse, customer engagement, data management, power bi/ ki, ki im kundenservice, künstliche intelligenz, power bi, business applications, cybersecurity, energy & utilities, distribution, energiewirtschaftslösungen, microsoft dynamics 365, microsoft partner, digitalisierung, risk management, microsoft licensing, marketing automation, computer systems design and related services, datenschutz, it consulting, business intelligence, services, sicherheitszertifikate, datenanalyse, cloud migration, crm-systeme, iso-zertifizierung, predictive analytics, cloud-lösungen, branchenspezifisch, support 24/7, data security, prozessautomatisierung, smart solutions, professional training & coaching, artificial intelligence, information technology & services, crm, sales, enterprise software, enterprises, computer software, cloud computing, mechanical or industrial engineering, marketing & advertising, saas, management consulting, analytics, computer & network security",'+49 7152 613020,"MailJet, Outlook, WordPress.org, Hotjar, Google Tag Manager, Apache, Google Font API, Bootstrap Framework, Mobile Friendly, DoubleClick Conversion, Google AdWords Conversion, Google Dynamic Remarketing, DoubleClick, Remote, Microsoft Dynamics 365, Microsoft Azure Monitor, , Microsoft Power Platform, Shopify, Amazon Associates, Microsoft Dynamics 365 CE","","","","","","",69c281701cba2c0001f0e52b,3571,54151,"IT Vision Technology (ITVT GmbH) is a German IT company founded in 2001 and based in Leonberg, Baden-Württemberg. The company specializes in digitalization, business applications, AI transformation, and Microsoft-based ERP/CRM solutions, primarily serving industries such as manufacturing, chemicals, energy, pharmaceuticals, telecommunications, and retail. ITVT is recognized as a pioneer in Microsoft CRM implementation in Europe and offers professional consulting, project implementation, and 24/7 ITIL-compliant global support. + +With a team of around 190-200 employees, ITVT operates high-security data centers in Germany and maintains a climate-neutral infrastructure. The company emphasizes sustainability and diversity, boasting an above-average proportion of women in its workforce. ITVT holds Microsoft Solutions Partner status, multiple specialization badges, and various certifications, including ISO 9001 and TISAX. It provides end-to-end support for digital transformation, including strategy consulting, system integration, process automation, and AI optimization, along with industry-specific applications based on Microsoft Dynamics 365.",2001,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6710ce38876200000177ce1b/picture,"","","","","","","","","" +nexxtra GmbH,nexxtra,Cold,"",15,telecommunications,jan@pandaloop.de,http://www.nexxtra.de,http://www.linkedin.com/company/nexxtra,"","",12 Strasse der Pariser Kommune,Berlin,Berlin,Germany,10243,"12 Strasse der Pariser Kommune, Berlin, Berlin, Germany, 10243","cloud services, mobiltelefonie, sip trunk, microsoft 365, ftth, internetzugang, ida hosted switch plattform, rufnummern, festnetztelefonie, terminierung, dsl, cloud computing, enterprise software, enterprises, computer software, information technology & services, b2b",'+49 30 209944242,"Gmail, Outlook, Google Apps, Microsoft Office 365, Nginx, Apache, Mobile Friendly, Bootstrap Framework, Google Tag Manager, Confluence, ClickUp","","","","","","",69c281701cba2c0001f0e52e,"","","nexxtra – Ihr zuverlässiger Partner für Telekommunikations- und Cloud-Dienste seit über 20 Jahren. Wir treiben die Digitalisierung in Deutschland voran und unterstützen IT-Systemhäuser, UCC- & CloudPBX-Anbieter, Service Provider und klassische Telekommunikationsanbieter bei der Bereitstellung, Kontrolle und Abrechnung ihrer Produkte und Dienstleistungen. + +Mit unserer White-Label-Plattform IDA bieten unsere Partner ihren Geschäfts- und Endkunden eine Komplettlösung: Vom Angebot über Bestellung, Monitoring bis hin zur Abrechnung – alles unter eigener Marke, mit eigenen Preisen, unabhängig von Carriern und Produkten – automatisch, einfach und sofort verfügbar. + +Unser Leistungsspektrum umfasst Sprachtelekommunikationsdienste wie Interconnects, Rufnummern, SIP-Trunks und Cloud-PBX-Systeme, sowie DSL- und Fibre-Internet-Zugänge. Zusätzlich bieten wir erweiterte Cloud-Services und persönlichen Support inklusive Schulungen für Sie und Ihre Kunden. + +Lernen Sie das vielseitige Portfolio von nexxtra kennen – von unserer Plattform IDA über Telefonie- und Internet-Dienstleistungen bis hin zur Integration von UCC- und CloudPBX-Lösungen und der Bereitstellung von Breitbanddiensten (FTTH, ADSL, VDSL).",2002,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67198a2dcd63c8000155dc84/picture,Sewan (sewan.nl),54a12ac269702d9548cc2e02,"","","","","","","" +Basilicom GmbH,Basilicom,Cold,"",24,information technology & services,jan@pandaloop.de,http://www.basilicom.de,http://www.linkedin.com/company/basilicom-gmbh,https://de-de.facebook.com/basilicomberlin,https://twitter.com/basilicom,25 Schleiermacherstrasse,Berlin,Berlin,Germany,10961,"25 Schleiermacherstrasse, Berlin, Berlin, Germany, 10961","dam, web2print, digital commerce, ecommerce, digital tranformation, react, digitale geschaeftsmodelle, cms, social media, product information management, webdevelopment, symfony, digitale plattformen, datenmanagement, pim, webarchitektur, php, crm, digitalplattform, pimcore, software, rest, aiintegration, softwarearchitektur, webanwendungen, softwareentwicklung, softwareloesungen, daten ai, digital transformation, retail, pimcore platinum partner, digital experience, b2b platforms, digital product pass, consulting, business intelligence, information technology and services, systemintegration, content management, data management, b2c, computer systems design and related services, datenstrategie, e-commerce, b2b, dxp, digital product pass saas, customer data platform, headless-architektur, pimcore enterprise integrator, ai content automation, e-commerce plattformen, system optimization, ki-readiness-checker, multichannel commerce, ai-powered content creation, custom software development, software development, sustainable data solutions, d2c, digital platforms, services, system integration, distribution, consumer internet, consumers, internet, information technology & services, web development, sales, enterprise software, enterprises, computer software, analytics",'+49 30 6956607330,"MailJet, Gmail, Google Apps, Microsoft Office 365, Amazon AWS, VueJS, Pipedrive, Leadfeeder, DigitalOcean, Linkedin Marketing Solutions, Google Tag Manager, Google Analytics, MouseFlow, Nginx, Mobile Friendly, Node.js, IoT, Android, Remote, AI, Pimcore, PHP, MySQL, Docker, Amazon Linux 2","","","","",476000,"",69c2816cd069960001275e95,7375,54151,"Basilicom GmbH is a prominent digital and transformation agency based in Berlin, with additional offices in Munich and Bremen. Founded over 20 years ago, the company is owner-managed and employs between 51-200 people. It is recognized as Germany's leading Pimcore agency, serving as a Pimcore Platinum Partner and certified Enterprise Integrator, with extensive experience in delivering digital solutions for medium-sized businesses and global enterprises. + +The agency specializes in digital transformation, information management, digital sales and e-commerce solutions, and digital marketing platforms. Basilicom focuses on optimizing data management and enhancing user experiences through agile teams and innovative technologies like Pimcore, PHP, and Google tools. Their services aim to create efficient operations and support clients in achieving sustainable growth. Notable projects include the Krombacher Digital Platform for Germany's largest privately owned brewery. Under the leadership of CEO Martin Schröder, Basilicom emphasizes agility, transparency, and strong partnerships.",2000,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6788cdf731f97500010ebdce/picture,"","","","","","","","","" +senapsa GmbH,senapsa,Cold,"",13,information technology & services,jan@pandaloop.de,http://www.senapsa.com,http://www.linkedin.com/company/senapsa,"","","",Stockstadt am Main,Bavaria,Germany,63811,"Stockstadt am Main, Bavaria, Germany, 63811","abas erp, cloud services, big data, apis, apache hadoop, abas business software, mobile apps, apache nifi, apache spark, web applications, liferay, abaserp, apache cassandra, fop, digitalisierung, apache kafka, it services & it consulting, financial services, industrie 4.0, manufacturing, it solutions, swift, computer systems design and related services, flutter, redis, it-lösungen, digitaler zwilling, multisite datenmanagement, retail, iot-integration, postgresql, react native, kubernetes, vue, schnittstellen, construction & real estate, d2c, enterprise software, automatisierung, customer engagement, consulting, smart factory, softwareentwicklung, angular, software development, mysql, information technology and services, künstliche intelligenz, apache nifi schnittstellen, liferay plattform, services, ci/cd, oracle, kotlin, project management, e-commerce, technology consulting, it consulting, data security, application development, web apps, apache kafka datenintegration, mongodb, docker, enterprise portale, b2b, java, open edx bildungssysteme, education, digital transformation, healthcare, distribution & logistics, erp abas, mass customization, finance, distribution, consumer_products_retail, transportation_logistics, energy_utilities, construction_real_estate, cloud computing, enterprises, computer software, information technology & services, mechanical or industrial engineering, productivity, consumer internet, consumers, internet, management consulting, computer & network security, app development, apps, health care, health, wellness & fitness, hospital & health care",'+49 60 27976903,"Cloudflare DNS, Outlook, Microsoft Office 365, Slack, Mobile Friendly, WordPress.org, Apache, reCAPTCHA","","","","","","",69c2816cd069960001275e99,7375,54151,"Wir sind SENAPSA +Ihr Partner für digitale Transformation! +Ganz gleich, ob Sie ein neues Produkt entwickeln oder Ihre Geschäftsabläufe optimieren möchten, wir unterstützen Sie dabei. + +Wir sind Experten mit über 15 Jahren Projekterfahrung. +Als Team haben wir bereits über 200 größere Projekte erfolgreich abgeschlossen. +Unser Leistungsspektrum umfasst: +abas ERP Implementierung, Cloud Services/IT-Infrastruktur, Scanner- & BDE-Lösungen, Komplexe Unternehmenslösungen, Intranet- & Extranet Portale, Web- & Mobile Apps, Schnittstellen & APIs. + +Der Schlüssel zu unserem Erfolg sind etablierte Arbeitsabläufe und eine enge Kommunikation mit dem Kunden.",2018,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68c3983e239dba00012c9ec9/picture,"","","","","","","","","" +Kutzschbach Electronic GmbH & Co. KG,Kutzschbach Electronic GmbH & Co. KG,Cold,"",47,information technology & services,jan@pandaloop.de,http://www.kutzschbach.de,http://www.linkedin.com/company/kutzschbach-electronic-gmbh-&-co-kg,https://www.facebook.com/Kutzschbach.Electronic,"",15 Markham-Strasse,Noerdlingen,Bavaria,Germany,86720,"15 Markham-Strasse, Noerdlingen, Bavaria, Germany, 86720","cloud, automatisierung, digitalisierung, itprojektmanagement, softwareentwicklung, prozessautomatisierung, itsystemhaus & softwareentwicklung, itloesungen, itconsulting, itsecurity, datenschutz, informationssicherheit, workshops, itinfrastruktur, microsoft, itsystemhaus, managed services, itsicherheit, itservices, it services & it consulting, ki-readiness, it training, netzwerk, itq-basisprüfung, microsoft 365 solutions, consulting, it-infrastruktur, it-sicherheit, computer systems design and related services, virtualization, software development, microsoft.net, it-consulting, prompt engineering, server & storage, information technology and services, chatgpt / microsoft copilot, cybersecurity, it-notfallplanung, services, ai & automation, it security awareness, managed security, it audit, cyberrisikocheck, externer datenschutzbeauftragter, it infrastructure, it monitoring, digital transformation, cloud computing, digitalisierungsförderung, network security, it-security, it security, b2b, backup & recovery, data security, it infrastructure analysis, cloud backup, firewall, ki-kompetenz erwerben, e-mail management, virtualisierung, cloud services, support, dsgvo compliance, it-sicherheitschecks, it-monitoring, cybersecurity checks, it project management, microsoft 365, ki & automatisierung, it-workshops, it solutions, it consulting, it support, ai plattform made in germany, microsoft power apps, firewall management, data protection, it-notfallmanagement, it services, artificial intelligence, physische sicherheit, information technology & services, enterprise software, enterprises, computer software, computer & network security, management consulting",'+49 908 12503416,"Outlook, Autotask, Microsoft Office 365, DoubleClick, Nginx, YouTube, Google Dynamic Remarketing, Google Tag Manager, WordPress.org, UserLike, Mobile Friendly, Apache, DoubleClick Conversion, ISO+™","","","","","","",69c2816cd069960001275e8c,7375,54151,"Kutzschbach Electronic GmbH & Co. KG is a German IT system house located in Nördlingen, specializing in comprehensive IT solutions, IT security, managed services, IT consulting, and software development. With over 40 years of experience, the company has grown to approximately 80 employees across three locations in Nördlingen, Augsburg, and Ulm. Founded by Frank Kutzschbach, the company has expanded through strategic growth and acquisitions, including the recent acquisition of Quentia GmbH. + +The company focuses on delivering tailored IT infrastructures and services that meet individual customer needs. Its core offerings include planning and implementing IT solutions, providing data security services, and offering ongoing IT support through its partner company, Kutzschbach INNOVATIONS GmbH. Kutzschbach also emphasizes strategic IT consulting and custom software development. The company has expertise in technologies such as Zero-Touch Deployment and network monitoring, serving a diverse clientele that includes medium-sized businesses and municipal organizations across Germany and beyond.",1981,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66fa652aa1ced100018a925c/picture,"","","","","","","","","" +KRALLMANN AG,KRALLMANN AG,Cold,"",21,information technology & services,jan@pandaloop.de,http://www.krallmann.ag,http://www.linkedin.com/company/krallmann,"","",157 Berliner Strasse,Berlin,Berlin,Germany,10715,"157 Berliner Strasse, Berlin, Berlin, Germany, 10715","robotics process automation, software engineering, digitalisierung, chatbots, processmining, prozessmanagement, cloud strategy, pega, application portfolio management, systemanalyse, business intelligence, itprojektmanagement, security by design, machine learning, data science, data analytics, prozessdigitalisierung, interim management, itarchitekturmanagement, cloud computing, itgutachten, datamining, interims cio, genai, it services & it consulting, process intelligence tools, data governance best practices, workshops, it-architekturmanagement, digital transformation, cloud migration, prototyping, business process management, data management, künstliche intelligenz, change management, consulting, microservices architecture, data security, projekt-portfoliomanagement, management consulting services, b2b, it-strategie, information technology, ai hackathon, ki-strategieentwicklung, data security in ki, process optimization, it-beratung, services, data governance, management consulting, ai programmier-challenge, process automation, analytics, information technology & services, artificial intelligence, enterprise software, enterprises, computer software, computer & network security",'+49 30 802083660,"Outlook, Mobile Friendly","","","","","","",69c2816cd069960001275e96,8748,54161,"KRALLMANN AG is a medium-sized IT company based in Berlin, Hamburg and Munich with many years of consulting and implementation experience as well as cross-industry process knowledge. + +We advise our customers in project- and process management, application portfolio management and data analytics. + +We implement standard and individual software. The use of innovative technologies and all approaches to modern and agile software development forms the basis of our new and further development services. +Our experts take on tasks from project planning and implementation to the individual development and support of your software in productive use. + +When implementing our projects, we consider ourselves as Enterprise Business Architects. We consider your company holistically and ensure the close interlinking between business activities and IT. The results are long-term, modern solutions and a customized and step-by-step digitization of your company.",2006,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6960cd71dc319900017428e8/picture,"","","","","","","","","" +virtualQ,virtualQ,Cold,"",28,information technology & services,jan@pandaloop.de,http://www.virtualq.io,http://www.linkedin.com/company/virtualq,https://facebook.com/virtualqapp/?fref=ts,https://twitter.com/virtualQapp,19 Prinzessinnenstrasse,Berlin,Berlin,Germany,10969,"19 Prinzessinnenstrasse, Berlin, Berlin, Germany, 10969","customer satisfaction, voice automation, appointment, virtual hold management, voice faq, sales & service, callback & appointment, peakmanagement, queue management, customer service excellence, service web solutions, waiting on hold, service technology, mobile contact center applications, virtual line management, call center innovation, callback, ai, service center innovation, service, kontaktmanagement, service center optimization, mobile app, sales, prozessoptimierung, usa, germany, software development, insurance, computer systems design and related services, cloud computing, services, customer engagement, voicebot integration, ai-based callback, multi-channel customer engagement, ai callback system, system integration, process optimization, self-learning algorithms, peak load management, information technology and services, b2b, financial services, customer service optimization, cost reduction in contact centers, customer experience, customer retention, digital transformation, customer journey enhancement, lead generation, scalable saas solution, multi-channel experience, workforce optimization, retail, peak management, automated call handling, real-time analytics, data security, gdpr compliant, finance, consumer_products_retail, information technology & services, enterprise software, enterprises, computer software, marketing & advertising, computer & network security",'+49 176 56838890,"DNSimple, Amazon SES, Gmail, Google Apps, Microsoft Office 365, Amazon AWS, GitHub Hosting, Hubspot, Bing Ads, DoubleClick, Shutterstock, Facebook Login (Connect), Google Dynamic Remarketing, Facebook Widget, Nginx, DoubleClick Conversion, Google Font API, WordPress.org, Facebook Custom Audiences, Mobile Friendly, Google Tag Manager, Linkedin Marketing Solutions, Remote, AI, IoT, Micro, Avaya, Ruby On Rails, Python, Elixir, React, AWS Trusted Advisor, ECS, PostgreSQL, Redis, Terraform, ANGEL LMS, Docker, AWS Analytics, AWS Fargate","",Series A,0,2018-06-01,4800000,"",69c2816cd069960001275e9a,7389,54151,"virtualQ is a German software company founded in 2014, specializing in AI-based callback and waiting-loop management solutions to optimize customer service. With offices in Stuttgart and Berlin, the company serves corporate and enterprise clients across various European markets. The inspiration for virtualQ came from a personal experience of long hold times, leading to the development of a platform that eliminates waiting in call queues. + +The company's main product is an intelligent callback and appointment management platform offered as a SaaS solution. Key features include callback management, intelligent waiting-loop management, and voice intelligence that categorizes customer needs. The platform supports multiple communication channels and is designed to manage call volume fluctuations effectively. virtualQ's solutions have collectively saved users over 750 million waiting minutes, enhancing customer experience and service performance across industries such as insurance, energy, travel, retail, finance, and BPO services.",2014,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/684460b247fe000001d5e40d/picture,"","","","","","","","","" +IT4YOU,IT4YOU,Cold,"",24,information technology & services,jan@pandaloop.de,http://www.it4you.gmbh,http://www.linkedin.com/company/it4you-gmbh,"","",9 Zeppelinstrasse,Gottmadingen,Baden-Wuerttemberg,Germany,78244,"9 Zeppelinstrasse, Gottmadingen, Baden-Wuerttemberg, Germany, 78244","it services & it consulting, zutrittskontrolle, it-support, it consulting, server, voip-telefonie, servermanagement, digitale vertragsverwaltung, datenschutz, managed services, it-monitoring, medical equipment and supplies manufacturing, backup, consulting, cloud-computing, elektronische arbeitsunfähigkeitsbescheinigung, hardware, information technology and services, medienausstattung, webhosting, zeiterfassung, it-systemhaus, webinare, it-consulting, e-rechnung 2025, computer systems design and related services, educational services, b2b, software, it-management, firewall, it-infrastruktur, it-schulungen, it-fördermittel, it support, interaktive medienlösungen, e-mail service, dms-lösungen, digitale workflows, ticketsystem, it-netzwerk, workstations, dokumentenmanagement-system, digitale signaturen, antivirus, wlan, it security, 360-grad-digitalisierung, cloud solutions, digitalpartner, rechenzentrum, netzwerktechnik, it-architektur, it-sicherheit, fernwartung, verschlüsselung, managed it-services, it-strategie, hybrid-cloud-lösungen, it-beratung, microsoft 365, it-flatrate, services, cloud-services, healthcare, education, information technology & services, management consulting, computer & network security, cloud computing, enterprise software, enterprises, computer software, health care, health, wellness & fitness, hospital & health care",'+49 773 1903330,"Cloudflare DNS, Outlook, Microsoft Office 365, Autotask, Hubspot, Mobile Friendly, Nginx, Facebook Custom Audiences, reCAPTCHA, Google Tag Manager, Facebook Login (Connect), WordPress.org, Shutterstock, Facebook Widget","","","","","","",69c2816cd069960001275ea0,7371,54151,"Die IT4YOU berät und unterstützt Unternehmen unterschiedlicher Größen und Branchen, bei Ihren digitalen Vorhaben und Projekten. Die IT4YOU ist nicht nur ein innovatives IT-Systemhaus, sondern auch 360° Digitalpartner. +Egal ob Managed IT-Infrastruktur, IT-Consulting, moderne Zeiterfassung, Zutrittskontrolle, Hard- und Software, revisionssicheres Dokumentenmanagement, Voice over IP – Telefonie, IT-Security, smarte Kassensysteme, Office 365, Fördermittelberatung, Social Media, Webseiten und Hosting oder digitale Visitenkarten – die IT4YOU deckt alle digitalen Bereiche für Sie ab. + +Informieren Sie sich hier über unsere Leistungen: +https://www.it4you.gmbh/portfolio/",2015,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68285cf050c0b60001e24fbb/picture,"","","","","","","","","" +SIMIO Consulting,SIMIO Consulting,Cold,"",13,management consulting,jan@pandaloop.de,http://www.simio-consulting.com,http://www.linkedin.com/company/simio-analyse,"","","",Murnau am Staffelsee,Bavaria,Germany,82418,"Murnau am Staffelsee, Bavaria, Germany, 82418","publishing, pimauswahl, damauswahl, mamanalyse, damanalyse, pimanalyse, pim, produktkommunikation, evaluationsberatung, crm, dam, auswahlberatung, business consulting & services, market analysis tools, workflow automation, omnichannel, data flow first, customer journey, content management, consulting services, software comparison platform, customer centricity, data enrichment, martech integration, system evaluation, marketing automation, prozessoptimierung, information technology and services, b2b, distribution, systemarchitektur, datenstrategie, pim-optimierung, feed management, data integration, d2c, digital shelf analytics, data governance, data flow optimization, dam-gpt, kundenorientierte kommunikation, services, content optimization, project coaching, data quality, systemintegration, mdm, management consulting, software development, datenmanagement, robotic process automation, management consulting services, e-commerce, consulting, retail, change management, digitale transformation, media, sales, enterprise software, enterprises, computer software, information technology & services, marketing & advertising, saas, consumer internet, consumers, internet",'+49 170 9305604,"Outlook, Microsoft Office 365, Google Tag Manager, Nginx, Mobile Friendly, WordPress.org, Apache, SAP Analytics Cloud, Remote, Circle, AI","","","","","","",69c2816cd069960001275ea1,7375,54161,"Sie möchten Ihre Produktkommunikation optimieren. +Dafür benötigen Sie Systeme und Partner, die zu Ihnen und Ihrem Bedarf passen. +Wir unterstützen Sie durch Analyse und Beratung dabei, diese zu identifizieren. +Das tun wir vollständig objektiv und neutral.",2019,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6869ef7c9c286f00015e5973/picture,"","","","","","","","","" +aConTech GmbH,aConTech,Cold,"",20,information technology & services,jan@pandaloop.de,http://www.acontech.de,http://www.linkedin.com/company/acontech-gmbh,https://www.facebook.com/tecclegroup,"",9 Mohnweg,Fuerth,Bavaria,Germany,90768,"9 Mohnweg, Fuerth, Bavaria, Germany, 90768","microsoft, cloud, digitalisierung, iot, azure, big data, modern collaboration, digital revolution, backup-lösungen, it-management, it-management-tools, data & ai plattform, container orchestration, hybrid cloud, business continuity management, backup & recovery, sicherheitsstrategie, informationstechnologie und dienstleistungen, awareness-schulungen, zero trust, managed services, datenanalyse und ki, migration, softwareentwicklung, lakehouse architektur, schwachstellen-scan, hybrid cloud strategien, unternehmenssoftware, it-infrastruktur, automation, ai-gestützte entscheidungsfindung, container-technologien, data factory, performance optimization, cybersecurity, saas, microsoft fabric, iso/iec 27001, it-optimierung, network monitoring, services, azure cloud, microsoft teams, kubernetes, penetration testing, oracle cloud migration, digitale transformation, predictive analytics, azure ai, datensicherheit, remote work solutions, maßgeschneiderte it-lösungen, videokonferenzsysteme, hybrid cloud management, modern workplace, migration in die cloud, devops, vds 10000, cloud transformation, cloud licensing, oracle performance optimization, san-systeme, digitalisierung im mittelstand, azure openai, data lakehouse, iaas, business continuity, microsoft fabric plattform, oracle security patches, consulting, it-asset management, it-compliance, verschlüsselung, it-service management, oracle datenbankmanagement, cloud infrastructure, multi-cloud, data & ai workshops, devops automatisierung, data science, automatisierte patch-management, microsoft-partner, security audit, kubernetes in unternehmen, b2b, oracle backup & recovery, vulnerability scan, it-sicherheit, compliance management, storage solutions, flash storage, virtual data center, konnektivitätslösungen, vds 10010, paas, data & ai, oracle data warehouse, security operations center, microsoft power bi integration, identity management, container security, data security, cloud & it-infrastrukturen, power bi, it-security, it-dienstleister, oracle security checks, cloud consulting, datenschutz, monitoring, it security, cloud migration in regulierten branchen, endpoint security, data science integration, identity & access management, cloud security, netzwerksicherheit, it-infrastruktur und netzwerk, automatisierung, cloud solutions, microsoft partner, it-beratung, business apps, cloud services, cloud computing, firewall, it-services und beratung, azure devops, computer systems design and related services, daten & applikationen, oracle performance monitoring, data lake, healthcare, finance, education, legal, non-profit, manufacturing, distribution, consumer_products_retail, transportation_logistics, energy_utilities, construction_real_estate, enterprise software, enterprises, computer software, information technology & services, computer & network security, internet infrastructure, internet, privacy, health care, health, wellness & fitness, hospital & health care, financial services, nonprofit organization management, mechanical or industrial engineering",'+49 163 4627342,"Cloudflare DNS, SendInBlue, Outlook, MailChimp SPF, CloudFlare Hosting, Microsoft Office 365, MailJet, Amazon SES, Freshdesk, Active Campaign, Atlassian Cloud, Microsoft Power BI, Microsoft Azure, Vimeo, WordPress.org, Mobile Friendly, Apache, YouTube, reCAPTCHA, Google Tag Manager, Facebook Custom Audiences, Google Font API, Linkedin Marketing Solutions, Facebook Widget, Facebook Login (Connect), Mixpanel, DoubleClick, Google Maps, Google Maps (Non Paid Users), Avaya, Remote, Circle, Android","","","","","","",69c2816cd069960001275e8b,7375,54151,"aConTech GmbH is a German IT company based in Fürth am Berg, Bavaria, specializing in Microsoft cloud services, digital transformation, and IT consulting since 2011. It has merged into teccle wave GmbH, part of the teccle group, which combines expertise from aConTech, fellofox, and SMEA IT to offer comprehensive cloud solutions for medium-sized businesses across Germany. + +The company focuses on system analysis, organization, consulting, configuration, and planning in computer science and telecommunications. As a Microsoft partner and Direct-CSP, aConTech emphasizes data security, transparency, flexibility, and innovation. Its services include public, private, and hybrid cloud solutions, Microsoft 365 environments for collaboration, secure IT infrastructure, and intelligent automation for administrative tasks. The company aims to integrate technology into organizations effectively, providing tailored digital solutions for process optimization and automation.",2011,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67d7ea07e74dc5000181be03/picture,"","","","","","","","","" +ESYON GmbH,ESYON,Cold,"",22,information technology & services,jan@pandaloop.de,http://www.esyon.de,http://www.linkedin.com/company/esyon,"",https://twitter.com/esyon_de,"",Leipzig,Saxony,Germany,"","Leipzig, Saxony, Germany","perfion2oxid, oxid4dynamics, p2o, schnittstellenexperte, b2b commerce, full service agentur, pim, amazon marketplace, oxid, ecommerce, shopify, azure, oxid esales, web portal, digitalisation, erp beratung, azure kubernetes, microsoft dynamics 365, perfion, erp integration, it services & it consulting, kundenportal entwicklung, e-commerce automatisierung, oxid eshop in dynamics, automatisierte bestellprozesse, prozessautomatisierung, geschäftsprozess-optimierung, d365 e-commerce lösungen, omnichannel strategie, perfion pim implementierung, e-commerce beratung, produkt konfigurator, kundenbindung, barrierefreie webshops, b2b lösungen, b2b & b2c lösungen, datenmanagement, b2c, produktkonfigurator für individuelle produkte, cloud-lösungen, computer systems design and related services, multichannel management, e-commerce skalierung, pim perfion, webentwicklung & design, omnichannel customer experience, information technology and services, datenmigration, geschäftsprozess automatisierung, b2b, kundenzufriedenheit, webdesign & ux/ui, oxid eshop integration, kundenmanagement, api entwicklung, it-integration, amazon in microsoft dynamics, webentwicklung, software development, multichannel vertrieb, e-commerce, b2c lösungen, shopify in microsoft dynamics, datenqualitätssicherung, kundenservice optimierung, erp-crm-systeme, datenmanagement system, datenanalyse tools, oxid eshop connector, unified commerce, shopify integration, design, d2c, preispolitik, power bi datenvisualisierung, shopify connector, lagerverwaltung, e-commerce plattformen, e-commerce barrierefreiheit, multishop management, automatisierte retourenprozesse, amazon marketplace integration, schulungen & workshops, cloud-hosting, datenanalyse, amazon marketplace connector, preispolitik im b2b & b2c, schnittstellenentwicklung, automatisierte workflows, digitalisierung, kundenmanagement system, barrierefreiheit im e-commerce, retourenmanagement, partnernetzwerk, e-commerce optimierung, services, digital transformation, projektmanagement e-commerce, it-support & service, automatisierung, microsoft power bi, consulting, retail, e-commerce integration, distribution, consumer_products_&_retail, consumer internet, consumers, internet, information technology & services",'+49 341 60497007,"Outlook, Microsoft Office 365, Google Cloud Hosting, Jira, Atlassian Confluence, SignalR, Hubspot, Nginx, Mobile Friendly, Google Tag Manager, Hotjar, Apache, Android, React Native, Xamarin, Docker, Node.js, Circle, Azure Virtual Machines, Microsoft Office","","","","","","",69c2816cd069960001275e91,7375,54151,ESYON does offer E-Commerce solutions with deep integration at Microsoft Dynamics,2011,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6726f115cfbd1f00012d7594/picture,"","","","","","","","","" +Neos IT Services,Neos IT Services,Cold,"",28,information technology & services,jan@pandaloop.de,http://www.neosit.com,http://www.linkedin.com/company/neositservices,https://www.facebook.com/neositbkk,https://twitter.com/neosdigital,155 Landsberger Strasse,Muenchen,Bayern,Germany,80687,"155 Landsberger Strasse, Muenchen, Bayern, Germany, 80687","google cloud, vmware enterprise service amp solution provider, vmware enterprise service solution provider, it security, vmware vcap5 dca amp dcd, digital transformation, vmware vcap5 dca dcd, windows virtual desktop, aws, microsoft, modern workplace, big data platforms, midmarket solution provider, amazon web services, global managed application platforms, open clouds, hpe gold partner service provider, big data, cloud migration, oracle cloud, high transaction platforms, hosting, microsoft silver dc, it services & it consulting, security frameworks, artificial intelligence, security protocols, risk management, advanced analytics, cost efficiency, custom ai platforms, enterprise cloud projects, cloud computing, data security, cybersecurity, data analytics, consulting, aws cloud migration, cloud infrastructure scaling, multi-layered security, ai solutions, incident response strategies, machine learning integration, services, computer systems design and related services, aws services, big data cloud solutions, rapid cloud deployment, threat detection, continuous monitoring, machine learning, security monitoring, data compliance, cybersecurity solutions, incident response, b2b, data protection, aws services adoption, performance optimization, information technology and services, cloud transformation, cloud support, data insights, compliance support, cloud infrastructure, cloud migration services, scalable ai solutions, ai-driven platforms, risk assessments, computer & network security, information technology & services, enterprise software, enterprises, computer software, internet infrastructure, internet",'+49 89 248817000,"Outlook, Slack, Hubspot, Facebook Widget, Facebook Login (Connect), Google Analytics, Mobile Friendly, Linkedin Login, Linkedin Widget, Google Tag Manager","","","","","","",69c2816cd069960001275e92,7375,54151,"Neos IT Services is an IT company based in Munich, Germany, founded in 2005. The company specializes in cloud transformation, infrastructure, cybersecurity, data and AI solutions, and customized digital platforms. It primarily serves industries such as travel, airlines, telecommunications, finance, energy, and the public sector. With a team of 50-99 employees, Neos IT has an estimated annual revenue of $10-25 million. + +The company focuses on helping clients migrate to cloud-based infrastructures and build scalable digital platforms. Neos IT offers a variety of services, including cloud infrastructure and transformation, cybersecurity solutions, data and AI services, and software engineering for custom applications. They emphasize quick implementations and cost reduction, providing ongoing support and strategy roadmaps to enhance business operations. Neos IT is recognized for its expertise in technologies from IBM, Oracle, and Red Hat, among others, and has successfully managed large-scale migrations for global customers.",2005,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6708a8012b4ed80001b37150/picture,"","","","","","","","","" +crossnative,crossnative,Cold,"",88,management consulting,jan@pandaloop.de,http://www.crossnative.com,http://www.linkedin.com/company/crossnative-ppi,"","",13 Moorfuhrtweg,Hamburg,Hamburg,Germany,22301,"13 Moorfuhrtweg, Hamburg, Hamburg, Germany, 22301","agile coachings, data cloud, cloud native, itberatung, ai, user experience, ux workshops, safe trainings, consulting, data driven marketing, testmanagement, softwareentwicklung, kanban trainings, customer experience, agile strategy, data & analytics, ux strategie, agiles testen, data science, marketing automation, business consulting & services, customer success stories, information technology and services, test automation, cloud architecture, cloud solutions, computer systems design and related services, data vault generator, b2b, customer journey optimization, microinteractions, agile project management, software development, e2e-tracking, data visualization, data management, ai in ux, services, business design, security testing, finance, ux, marketing & advertising, saas, computer software, information technology & services, enterprise software, enterprises, management consulting, cloud computing, financial services","","MailJet, Outlook, Microsoft Office 365, Slack, Mobile Friendly, Google Tag Manager, Ning","","","","","","",69c2816cd069960001275e93,7375,54151,"crossnative is a digital consulting and software development company based in Hamburg, Germany. It specializes in delivering customer-centric solutions through cross-functional teams in areas such as customer experience (CX & CRM), user experience (UX), data and analytics, development, and testing. Originally part of PPI AG, crossnative has expanded its expertise beyond the financial and insurance sectors to serve a variety of industries. + +The company offers a range of end-to-end digital services, including designing customer journeys, managing data value chains, and building custom cloud-native software. Their approach emphasizes agile practices and interdisciplinary collaboration to enhance strategic alignment and improve customer satisfaction. One of their notable products is the Data Vault Generator (DVG), an automated tool for building data warehouses that simplifies large-scale data projects. Crossnative has achieved significant results for clients, including improved engagement and revenue growth through innovative solutions.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68458c5bca812800011399d7/picture,"","","","","","","","","" +R.iT GmbH,R.iT,Cold,"",20,information technology & services,jan@pandaloop.de,http://www.rit.de,http://www.linkedin.com/company/r-it-gmbh,https://www.facebook.com/R.iTGmbH/,"","",Bochum,North Rhine-Westphalia,Germany,"","Bochum, North Rhine-Westphalia, Germany","it services & it consulting, digital transformation, it risk assessment, cloud-migration, management consulting services, it-resilienz, management consulting, data lakehouse, cyber-angriffsschutz, managed services, cloud-sicherheit, isms, consulting, business intelligence, cybersecurity, it due diligence, cloud computing, b2b, microsoft teams, it-infrastruktur, softwareentwicklung, strategieberatung, automatisierung von geschäftsprozessen, agile kollaboration, digitales mindset, prozessoptimierung, digitaler reifegrad, deepfake erkennung, cloud-technologie, nachhaltige it, rpa, hybrid cloud, it-sicherheit, digitale transformation, cyber-security, it-beratung, ki und daten, services, ki-strategie, finance, manufacturing, distribution, information technology & services, analytics, enterprise software, enterprises, computer software, financial services, mechanical or industrial engineering",'+49 234 4388000,"Cloudflare DNS, Microsoft Azure, Hubspot, Mobile Friendly, YouTube, Nginx, Google Tag Manager, Linkedin Marketing Solutions, Apache, Remote, Git, C#, Javascript, TypeScript, Microsoft Power Platform, DATAVERSE LTD, Mode, SAP, Microsoft Power Automate, PowerBI Tiles, Microsoft Azure Monitor, Cisco VPN, Dynamics 365 Sales, Microsoft Power Apps, SharePoint, Microsoft Teams Rooms, Jira, Confluence, HTML Pro, CSS, ASP.NET, SQL, Microsoft Dynamics 365, Microsoft SQL Server Reporting Services, Microsoft Dynamics, FlipHTML5, , Flow, Wordpress.com, Microsoft Teams, Microsoft Dynamics CRM","","","","","","",69c2816cd069960001275e9c,7375,54161,"Wir sind eine innovative & agile iT-Unternehmensberatung aus Bochum, die für Digitalisierung und iT-Sicherheit brennt. Mit über 20 Jahren Branchenerfahrung und einem jungen, pfiffigen Team vereinen wir iT-Knowhow mit Strategie und sind das Bindeglied zwischen der digitalen und analogen Welt. + +Share our SpiR.iT of Excellence!",2001,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67141f0e082c36000148b7bc/picture,"","","","","","","","","" +Mentopolis Consulting & Software Concepts GmbH,Mentopolis Consulting & Software Concepts,Cold,"",16,information technology & services,jan@pandaloop.de,http://www.mentopolis.de,http://www.linkedin.com/company/mentopolis-consulting-&-software-concepts-gmbh,"","","",Niedernberg,Bavaria,Germany,"","Niedernberg, Bavaria, Germany","data center engineering, workplace readiness, software development, infrastructure management, test automation, managed services, testautomatisierung, client engineering, network engineering, frameworks, testmanagement, clearing, devops, data center move management, qtestbase, workplace management, quality assurance, enduser services, open access, fiber, sdn, mobile, it services & it consulting, information technology & services, devops & qa, government, automated link engineering, consulting, network resource management, robotic process automation, layered data visualization, services, open api integration, computer systems design and related services, data management & reporting, data analytics, gis framework, tmf-conformant interfaces, data management, b2b, automation in network planning, information technology and services, 5g capacity management, layer-based visualization, sdn solutions, telecommunications, ki-basierte netzplanung, automatisierte kapazitätsplanung, testautomation-as-a-service, network management, network planning & control, distribution, transportation & logistics, energy & utilities, internet",'+49 93 7140870,"Outlook, Microsoft Office 365, Nginx, Apache, Mobile Friendly, Shutterstock, Android, Remote, Node.js, React, Playwright, JUnit","","","","","","",69c2816cd069960001275e9f,7375,54151,"Mentopolis as an IT system integrator and professional system house has its headquarters in Niedernberg. Mentopolis offers the development of software and IT solutions (services, products) for telecommunications companies and end customer contract partners with the following focal points: Fulfilment and assurance processes (for mobile/network operators), DevOps automation and SDN, clearing (for end customer contract partners in the fixed network sector), open access and fiber optic expansion as well as interface transformation and integration services for the wholesale sector. The development expertise is rounded off by accompanying consulting services in the areas of project management, test management/test automation, quality assurance and infrastructure management. + +As an independent IT system house established on the market for 25 years, we offer IT solution and development competence with a focus on ""Infrastructure Readiness"", ""Application Readiness"" and ""Workplace Readiness"".",1994,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66ef02ac431f410001a0439d/picture,"","","","","","","","","" +hurra.com™,hurra.com™,Cold,"",110,marketing & advertising,jan@pandaloop.de,http://www.hurra.com,http://www.linkedin.com/company/hurracom,https://facebook.com/hurracom,https://twitter.com/hurracom,27 Wollgrasweg,Stuttgart,Baden-Wuerttemberg,Germany,70599,"27 Wollgrasweg, Stuttgart, Baden-Wuerttemberg, Germany, 70599","facebook marketing, google, website optimisation, performance marketing, martech, video, online marketing, strategische beratung, onlinemarketingtechnologien, attribution modelling, begun, international online marketing, adwords, bing, seo, landing page optimisation, sem, affiliate marketing, bid management, yandex, seznam, microsoft advertising, sea, social media marketing, socia media, data protection support, creatives display, marketing, online marketing software, software solutions, ppc, display advertising, programmatic advertising, search engine marketing, tv sync, advertising services, d2c, predictive analytics, campaign management, cross-channel attribution, e-commerce, consulting, services, retail, information technology and services, owapro analytics tool, digital marketing, travel demand forecasting, messy middle advertising, data protection, sustainable digital infrastructure, gdpr-compliant tracking, server-side tracking, b2b, ai-powered optimization, conversion optimization, cookie banner compliance, advertising agencies, marketing and advertising, marketing intelligence, feed optimization, first-party data, performance dashboards, customer journey analysis, automated bidding, customer lifetime value, no-code tag management, ai-driven lead scoring, first-party cookies, marketing automation, sustainable performance marketing, financial services, conversion rate optimization, content marketing, tag management, lead generation, social media ads, generative engine optimization (geo), finance, marketing & advertising, advertising, information technology & services, search marketing, consumer internet, consumers, internet, enterprise software, enterprises, computer software, saas, sales",'+49 71 14599940,"Cloudflare DNS, Route 53, Gmail, Outlook, Google Apps, Amazon AWS, Webflow, Hubspot, Slack, Mobile Friendly, Google Tag Manager, YouTube, Creatio, Shopp, CSS, Shopify, Shopware, Magento, Google Analytics, Google Search Console, Google Ads, Looker, Tableau, Mode, Gem, Google Cloud BigQuery, Looker Studio, Helium 10, Jungle Scout, Microsoft Excel, Google Sheets, ChatGPT, Jaspersoft, Amazon Advertising, , Microsoft Teams, Django, Vertex AI, Azure OpenAI Service, Google, Micro, Python","","","","",16000000,"",69c2816cd069960001275e8a,7375,54181,"hurra.com™ is a digital marketing agency founded in 1998, headquartered in Stuttgart, Germany, with additional offices in Berlin, Kraków, Paris, and Moscow. The agency specializes in performance marketing and has over 25 years of experience, serving clients in more than 25 languages. With a team of 250-999 digital experts, hurra.com™ focuses on innovation in areas such as TV tracking and digital extensions of TV campaigns. + +The company offers a range of digital marketing services, including Search Engine Advertising (SEA), Search Engine Optimization (SEO), Online Display Advertising (ODA), Google & Bing Shopping, and Social Media Advertising (SMA). It also provides industry-specific solutions for E-Commerce, Finance, Travel, and FMCG. hurra.com™ emphasizes a decentralized, remote work structure to minimize its CO₂ footprint and is committed to sustainability and social responsibility.",1998,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6757e55b3167cb0001d0ebe6/picture,"","","","","","","","","" +Viamedici,Viamedici,Cold,"",74,information technology & services,jan@pandaloop.de,http://www.viamedici.com,http://www.linkedin.com/company/viamediciglobal,https://facebook.com/Viamedici-Software-GmbH-100100663403231/,https://twitter.com/viamedici_gmbh,14 Hertzstrasse,Ettlingen,Baden-Wuerttemberg,Germany,76275,"14 Hertzstrasse, Ettlingen, Baden-Wuerttemberg, Germany, 76275","product information management, enterprise ecommerce, cross media publishing, product communication, media asset management, product mdm, mrm, pim, cloud, cpq, software development, auto-translation, automation, sustainability, customer experience, b2b, sap integration, pharmaceuticals & biotechnology, computer systems design and related services, ai | workflow | portals, data management, d2c, retail, marketing automation, healthcare & medical technology, electronics & high tech, b2c, operational efficiency, e-commerce, digital product passport (dpp), master data management, sustainability lifecycle, configurable architecture, supply chain management, services, multi-domain data management, digital transformation, sales enablement, consulting, digital asset management, media management, sustainability (esg), guided selling, ai, construction & building services, sustainability engine, ai (image recognition & tagging), regulatory compliance, tools, digital shelf, real-time data syndication, ai-powered solutions, consumer packaged goods, healthcare, pharmaceuticals, biotech, construction, manufacturing, distribution, energy & utilities, information technology & services, environmental services, renewables & environment, marketing & advertising, saas, computer software, enterprise software, enterprises, consumer internet, consumers, internet, logistics & supply chain, health care, health, wellness & fitness, hospital & health care, medical, mechanical or industrial engineering",'+49 7243 94980,"Outlook, Microsoft Office 365, Hubspot, Slack, Google Tag Manager, WordPress.org, Google AdSense, Vimeo, YouTube, Linkedin Marketing Solutions, Google Dynamic Remarketing, Multilingual, FullStory, Google Font API, Mobile Friendly, Google translate API, Google Analytics, Google AdWords Conversion, DoubleClick, DoubleClick Conversion, Mixpanel, Nginx, Android, AI, Circle, Micro, Remote","","","","",890000,"",69c2816cd069960001275e9b,7375,54151,"Viamedici is a German software company founded in 1999, with headquarters in Karlsruhe and Ettlingen, and additional locations in the USA. It is recognized as a leading provider of enterprise solutions for product information management (PIM), master data management (MDM), digital asset management (DAM), and configure-price-quote (CPQ) software. Viamedici serves over 400 customers and more than 50,000 users across 60+ markets, supported by a team of over 250 employees. + +The company's flagship EPIM/5 platform integrates multi-domain MDM, PIM, DAM, and CPQ into a single solution. This platform enables accurate handling of customer data and complex product configurations, with real-time information and multi-language support. Viamedici focuses on industries such as construction, electronics, retail, manufacturing, automotive, and healthcare. The company emphasizes customer satisfaction, continuous innovation, and collaborative consulting, maintaining a high customer retention rate and reporting significant revenue growth.",1999,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69a39d713b72560001471c4d/picture,"","","","","","","","","" +Lotus GmbH & Co. KG,Lotus GmbH & Co. KG,Cold,"",43,information technology & services,jan@pandaloop.de,http://www.lotus-services.de,http://www.linkedin.com/company/lotus-gmbh-&-co.-kg,"","",8 Daimlerstrasse,Haiger,Hesse,Germany,35708,"8 Daimlerstrasse, Haiger, Hesse, Germany, 35708","informationstechnologie, erpberatung, kostenstellenplanung, problemloesung, erpeinfuehrung, buchhaltung, itprojektmanagement, digitalisierung, itberatung, prozessberatung, softwareentwicklung, finanzen amp rechnungswesen, kostenrechnung, finanzcontrolling, eaischnittstellen, finanzen rechnungswesen, itsupport, edischnittstellen, personalwesen, jahresabschluss, iotschnittstellen, personalentwicklung, controlling, it services & it consulting, it infrastructure, services, maßgeschneiderte lösungen, mittelstand, it-sicherheitsstandards, vertrauensvolle partnerschaften, innovative technologien, arbeitswelt 4.0, data analytics, it-consulting, rechenzentren, homeoffice-integration, schnittstellenentwicklung, b2b, it-consulting für unternehmensgruppen, fachkompetenz, maßgeschneiderte it-lösungen, langjährige erfahrung, digital tools, langjährige erfahrung in mittelstand, it, workflow automation, it-wartung, cybersecurity, digitale arbeitswelt, it-security, unternehmensberatung, business process services, rechenzentrum, it-management, nachhaltigkeit, personalmanagement, it consulting, interdisziplinäre teams, rechenzentrum nearshore, it-implementierung, management consulting, coaching, management consulting services, business process management, it-strategie, consulting, kundenorientierung, interdisziplinäres team, finance, it-security-schulungen, erp systems, effiziente schnittstellenprogrammierung, systemintegration, sicherheitsstandards, kostenreduktion, reporting tools, business consulting, change management, cloud-services, prozessoptimierung, it support, system integration, datenanalyse, process optimization, internationalität, erp-konzeption, digital transformation, it-support, information technology and services, it security, it-prozessberatung, nachhaltige prozessoptimierung, effizienzsteigerung, digitale infrastruktur, schnittstellenprogrammierung, human resources, reporting, digitalisierungskonzepte, workflows, edi-schnittstellenmanagement, data management, accounting, financial services, information technology & services, computer & network security",'+49 277 382100,"Microsoft Office 365, WordPress.org, Apache, Mobile Friendly, Remote","","","","","","",69c2816cd069960001275e8d,7375,54161,"Finance, Controlling, HR, IT - as a service. + +We relieve business. All services concentrated in one company, allowing more focus on key competencies for our customers, worlwide.",2008,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6829d834838f51000116b5b7/picture,"","","","","","","","","" +SinnerSchrader I Accenture Song,SinnerSchrader I Accenture Song,Cold,"",89,information technology & services,jan@pandaloop.de,http://www.sinnerschrader.com,http://www.linkedin.com/company/sinnerschrader,https://facebook.com/SinnerSchrader,https://twitter.com/sinnerschrader,38 Voelckersstrasse,Hamburg,Hamburg,Germany,22765,"38 Voelckersstrasse, Hamburg, Hamburg, Germany, 22765","design thinking, digital products, service design, product engineering, crossfunctional teams, development, analytics, mobile development, product strategy, product innovation, mobile apps, audience management, content marketing, communication, agile, mobile app development, product management, conception, product design, customer experience, design, transformational products, strategy, digital strategy, content, web development, ecommerce, campaigns, media, technology, information & internet, artificial intelligence, sustainability solutions, technology services, customer engagement, metaverse, digital engineering, emerging technologies, global delivery, management consulting, data-driven insights, software and platforms, industry-specific solutions, cloud computing, cloud services, industry expertise, sustainable growth, business transformation, hybrid cloud solutions, innovation lifecycle management, technology and innovation, talent and organization, supply chain management, global network, digital twin solutions, smart manufacturing, transportation and logistics, industry x digitalization, ai-powered decision making, energy and utilities, retail and consumer goods, managed services, global ecosystem networks, workforce transformation, ecosystem collaboration, digital platforms, supply chain optimization, ai and cybersecurity, ecosystem partners, talent management, business process automation, data analytics, sustainable business models, next-gen supply chain, information technology and services, management consulting services, strategy consulting, digital workforce enablement, manufacturing, cybersecurity, healthcare, sales and commerce, responsible ai, customer relevance, cloud and data, supply chain and sustainability, digital transformation, advanced data analytics, financial services, innovation lifecycle, strategy and consulting, operational excellence, data and ai, b2b, e-commerce, finance, education, distribution, consumer_products_retail, transportation_logistics, energy_utilities, information technology & services, marketing & advertising, software development, marketing, consumer internet, consumers, internet, enterprise software, enterprises, computer software, logistics & supply chain, strategic consulting, mechanical or industrial engineering, health care, health, wellness & fitness, hospital & health care",'+49 40 3988550,"Route 53, Microsoft Office 365",110000000,Merger / Acquisition,110000000,2017-02-01,56937000,"",69c2816cd069960001275e94,8742,54161,"SinnerSchrader I Accenture Song is the German branch of Song, a leading tech-driven creative group. The company focuses on helping businesses develop meaningful customer relationships and achieve sustainable growth. + +As part of a global entity, SinnerSchrader emphasizes its identity within this larger framework. The company is dedicated to delivering innovative solutions that support its clients in navigating the evolving market landscape.",1996,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670cb071cac3a30001f813d7/picture,Accenture (accenture.com),5e57c8f6a4128d0001c8e8ab,"","","","","","","" +FREICON GmbH & Co. KG,FREICON GmbH & Co. KG,Cold,"",71,information technology & services,jan@pandaloop.de,http://www.freicon.de,http://www.linkedin.com/company/freicon-gmbh,"","",12 Riegeler Strasse,Freiburg,Baden-Wuerttemberg,Germany,79111,"12 Riegeler Strasse, Freiburg, Baden-Wuerttemberg, Germany, 79111","eigenes softwareprodukt, itsmloesungen, itsecurityloesungen, itdienstleistungen, datacenterbetrieb, microsoftpartner, managed services, outsourcing, modern workplace solutions, data center hosting, workflow automation, endpoint management, it architecture, it consulting, it operation support, itsm software, itsm software monitos, it services, it compliance, cloud services, security management, managed security services, it performance optimization, managed services provider, consulting, asset management, it infrastructure management, microsoft intune endpoint management, information technology and services, it service automation, it project management, it security management, business it solutions, computer systems design and related services, cloud computing, b2b, it monitoring, data center, it support, data protection, infor ln erp, cybersecurity services, it systemhaus, it system integration, data center pci-dss, virtualization services, it compliance consulting, it security audits, it service desk, data center iso/iec 27001, data center services, it security, enterprise hosting germany, security vulnerability management, security audits, erp solutions, it outsourcing, cloud hosting, itsm platform, microsoft 365 services, it training, services, erp consulting, system integration, it infrastructure, information architecture, information technology & services, management consulting, enterprise software, enterprises, computer software, internet service providers, computer & network security, outsourcing/offshoring",'+49 761 45490,"Outlook, Apache, Google Font API, Google Tag Manager, WordPress.org, Mobile Friendly, Remote, Kubernetes, Microsoft 365, Microsoft Azure Monitor, AWS Trusted Advisor, IONOS, Onit, Micro Focus Universal CMDB, Infor LN, Rise, Esri Reports, Mode, RapidMiner, Amazon Web Services (AWS), Confluence, Opsgenie, Infor SyteLine / Infor CloudSuite Industrial, Act!, Microsoft Office, Microsoft Active Directory Federation Services, Microsoft Exchange Server 2003, Microsoft SQL Server Reporting Services, Microsoft Windows Server 2012, Office365, Oracle Virtualization, Redis, Veeam","",Merger / Acquisition,0,2023-01-01,8000000,"",69c2816cd069960001275e9d,7375,54151,"FREICON GmbH & Co. KG steht für Freiburger IT-Consulting. +Wir konzentrieren unsere Dienstleistungen auf drei Säulen: IT-Systemtechnik, IT-Service-Management und Managed Services. +Wir bieten moderne IT Lösungen und leisten für deren Realisierung kompetente Beratung und engagierten Service. +Die konsequente Verfolgung von Qualitätsstandards und die entsprechenden Zertifizierungen machen uns zu einem kompetenten sowie verlässlichen Partner im B2B-Umfeld. Durch die enge Zusammenarbeit mit namhaften Herstellern von Hard- und Software kommen nur best-in-class-Produkte zum Einsatz. +Es sind derzeit ca. 120 Mitarbeiter für uns an den Standorten Freiburg, Offenburg, Mannheim, Oldenburg und Bremen beschäftigt. +SYS by FREICON | ITSM by FREICON | MANAGED by FREICON",2001,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6711d6859f88bd0001f2db72/picture,Valsoft Corporation (valsoftcorp.com),56e5df39f3e5bb17f4004de5,"","","","","","","" +Emrich Business Consulting GmbH,Emrich Business Consulting,Cold,"",16,information technology & services,jan@pandaloop.de,http://www.emrich-bc.com,http://www.linkedin.com/company/emrich-business-consulting-gmbh,"","","",Unterschleissheim,Bavaria,Germany,"","Unterschleissheim, Bavaria, Germany","retail, digitalisierung, it consulting, facheinzelhandel, supply chain management, filialfacheinzelhandel, omnichannel vertrieb, microsoft dynamics 365 bc, internationales finanzmanagement, spezialfachhandel, digitale transformation, it services & it consulting, support & schulung, echtzeitdaten, echtzeit-bestandsdaten, finanz- und rechnungswesen, filial- und online-shop-verknüpfung, supply chain optimierung, microsoft dynamics 365 business central, shareflex, omnichannel-fachhandel, cloud-erp für start-ups, services, automatisierte lagerverwaltung, finanzmanagement, cloud migration, d2c, filialmanagement, automatisierte workflows, filialsteuerung, branchenfokus handel und produktion, eu-dsgvo konform, multi-channel-vertrieb, cloud erp, schnellstart-implementierung, consulting, e-commerce-integration, kunden- und bestandsverwaltung, filialnetzsteuerung, business central, ki-gestützte workflows, datensicherheit, schnittstellenintegration, computer software, e-commerce, echtzeit-reporting, datenanalyse, kundenmanagement, pos-systeme, skalierbare erp-systeme, microsoft 365 ls central, erp für beauty-branche, schnellstart erp für fachhandel, lager- und warenmanagement, software development, information technology and services, retail trade, omnichannel marketing, magic xpi, erp in a week, manufacturing, kmu-lösung, cloud-basierte erp-lösung, kmu-erp, information technology & services, automatisierte buchhaltung, sharepoint integration, supply chain management im einzelhandel, ki in erp-systemen, b2b, branchenlösung für kmu, lagerverwaltung, computer systems design and related services, customizing, schnellimplementierung in 7 tagen, erp in einer woche, mobile erp, wholesale trade, omnichannel-integration, prozessautomatisierung, finance, distribution, management consulting, logistics & supply chain, consumer internet, consumers, internet, mechanical or industrial engineering, financial services","","CloudFlare CDN, Outlook, CloudFlare Hosting, Mobile Friendly, Google Tag Manager, Apache, Google Font API, WordPress.org, reCAPTCHA, AI, Remote","","","","","","",69c2816cd069960001275e9e,7375,54151,"Emrich Business Consulting GmbH (EBC) is a German consulting firm based in Unterschleißheim, near Munich, specializing in enterprise resource planning (ERP) solutions. The company focuses on implementing Microsoft Dynamics 365 Business Central for small to mid-sized enterprises (SMEs) and growing businesses. With over 25 years of experience, EBC offers comprehensive services that include ERP system implementation, digital process optimization, change management, and point of sale solutions. + +As an official Microsoft Partner, EBC provides end-to-end support for deploying Microsoft-based solutions. Their offerings include cloud-based architecture, seamless integration with Microsoft 365 applications, and modular expansion capabilities tailored to various industries. EBC also integrates complementary solutions from partner vendors to enhance their services. The company has expertise across multiple sectors, including finance, logistics, retail, and healthcare, and is led by managing director Michael Emrich.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6779181050748800011f4532/picture,"","","","","","","","","" +DOKUMENTA AG,DOKUMENTA AG,Cold,"",22,information technology & services,jan@pandaloop.de,http://www.dokumenta.de,http://www.linkedin.com/company/dokumenta-ag,"","",555 Langenhorner Chaussee,Hamburg,Hamburg,Germany,22419,"555 Langenhorner Chaussee, Hamburg, Hamburg, Germany, 22419","rechenzentrum, softwareprogrammierung, cloud management, eigenes rechenzentrum, private cloud, it services, managed services provider, cloud services, hybrid cloud, mittelstand, it service provider, systemhausleistungen, cloud backup services, infrastruktur, cloud, cloud as a service, it infrastrukturen, it consulting, it services & it consulting, public cloud, managed backup, netzwerktechnik, it-modernisierung, backup & recovery, managed services, it-support, computer systems design and related services, it support, it-compliance, it-performance, iso 27001, information technology and services, b2b, it-services, it-asset-management, hochverfügbarkeits-rechenzentrum, it infrastructure, cloud computing, it-kooperationen, network security, it-management, datensicherheit, it-service, serverhosting, it-infrastrukturmanagement, it-partner, it outsourcing, it-beratung, it-prozessoptimierung, colocation, it-transformation, services, it-security, it-management-systeme, softwareentwicklung, datacenter, software development, it security, it-consulting, green it, data center and cloud computing, it-infrastruktur, data center, consulting, it-lösungen, hamburg, it-operations, it-sicherheit, it-optimierung, enterprise software, enterprises, computer software, information technology & services, management consulting, outsourcing/offshoring, computer & network security, internet service providers",'+49 40 53777350,"Facebook Custom Audiences, Mobile Friendly, Nginx, WordPress.org, Android, Remote","","","","","","",69c2816cd069960001275e8f,7375,54151,"Die DOKUMENTA AG ist ein inhabergeführter Managed Services Provider mit eigenem Rechenzentrum am Standort Hamburg-Langenhorn. +DOKUMENTA steht für professionelle Cloud-Lösungen und Infrastrukturen - speziell ausgelegt auf die Anforderungen von mittelständischen Unternehmen. Wir bieten vielfältige ISO-zertifizierte Lösungen, Managed Services, Systemhausleistungen sowie IT-Consulting und individuelle Softwareprogrammierung. Erfahrung und Kontinuität seit über 50 Jahren sind unser Fundament, neue Ideen und Innovationen unser Antrieb. + +Für jeden Kunden genau die IT, die er braucht +Die Bedürfnisse unserer Kunden stehen bei DOKUMENTA immer an erster Stelle. Wir wissen: Jedes Unternehmen ist anders, jedes Projekt individuell, jeder Kunde unterschiedlich technisch geprägt. Daran orientiert sich unsere Beratung. Die Lösungen für unsere Kunden gestalten wir daher nicht nur passgenau, sondern jederzeit auch transparent und verständlich. + +Unsere Kompetenz – Ihr Mehrwert +Moderne IT ist schnelllebig, muss flexibel und anpassungsfähig sein. DOKUMENTA begleitet seine Kunden bei der digitalen Transformation. Aus unserem eigenen Rechenzentrum heraus bieten wir innovative Cloud-Services, Cloud Backup Services, Private Cloud, Hybrid Cloud und das Cloud Management. Und wo die Cloud keine Lösung ist, stehen wir mit Managed Services oder as a Service-Modelle zur Seite. +Dabei ergänzen wir unsere eigene Fachkompetenz durch langjährige Partnerschaften zu namhaften Herstellern wie Dell und Fujitsu, Microsoft, Cisco, Citrix, Veeam und Vmware. + +Aus dem Mittelstand für den Mittelstand +DOKUMENTA ist inhabergeführt, mittelständisch und agil. Auch unsere Kunden sind größtenteils Mittelständler aus unterschiedlichsten Branchen mit kurzen Entscheidungswegen und flachen Hierarchien. Das sorgt für ein partnerschaftliches Verhältnis auf Augenhöhe. Dadurch können wir Projekte jeder Größenordnung professionell, effektiv und damit erfolgreich abwickeln. Manchmal pragmatisch, immer individuell.",1966,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/674cc3b100536a0001419ccd/picture,"","","","","","","","","" +GEDANKENFABRIK,GEDANKENFABRIK,Cold,"",11,management consulting,jan@pandaloop.de,http://www.gedankenfabrik.ai,http://www.linkedin.com/company/gedankenfabrik,"","",3 Axel-Springer-Platz,Hamburg,Hamburg,Germany,20355,"3 Axel-Springer-Platz, Hamburg, Hamburg, Germany, 20355","business consulting & services, information technology & services, ai in fmcg, cultural transformation, ai for business agility, consulting, services, business intelligence, brand strategy, technology consulting, digital marketing, education, ai-driven automation, user experience, ai ecosystem, customer experience, ai trend analysis, strategy, ai for strategic growth, ai consultancy, innovation, consultancy, b2b, future of work, ai workflows, no-code automation, machine learning, software development, ai trend scouting, tech innovation exploration, ai in consumer behavior, ai solutions, ai-powered prototyping, tech innovation, no-code platforms, ai consulting, innovation management, organizational change, ai prototyping services, management consulting, digital strategy, innovation strategy, no-code ai tools, customer insights, management consulting services, customer engagement, automation, ai prototyping, ai in cultural context, business transformation, data security, ai tool development, ai innovation workshops, ai ecosystem building, digital transformation, ai integration, business reinvention, no-code ai automation, generative ai, analytics, marketing & advertising, ux, artificial intelligence, marketing, computer & network security","","Gmail, Google Apps, MailChimp, Google Frontend (Webserver), Mobile Friendly, Apache, Eventbrite, Squarespace ECommerce, WordPress.org, Vimeo, IoT","","","","","","",69c2816cd069960001275e90,8742,54161,"REINVENTION is not just a task that needs to be done, it's a fundamental principle of business. As a Reinvention Consultancy, we at GEDANKENFABRIK guide brands, companies and their teams through transformation processes in five connected reinvention dimensions, and sustainably anchor the Reinvention Principle as a new business paradigm.",2010,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67017e8ae445530001428b65/picture,"","","","","","","","","" +2HM Business Services - BUILD | GROW | SCALE,2HM Business Services,Cold,"",24,marketing & advertising,jan@pandaloop.de,http://www.2hm-bs.com,http://www.linkedin.com/company/2hm-bs,https://www.facebook.com/2hmBusinessServices,https://twitter.com/2hmbs,5 Emmerich-Josef-Strasse,Mainz,Rhineland-Palatinate,Germany,55116,"5 Emmerich-Josef-Strasse, Mainz, Rhineland-Palatinate, Germany, 55116","appsolutions, dialogmarketing, dataservices datenerfassung, fullservice agentur, strategie, google ads, email marketing, hubspot partner agentur, dataservices amp datenerfassung, seo, crm, chatbot messagingloesungen, websolutions, social media marketing, leadgenerierung, crm beratung, kreation, emailmarketing, foto und videoproduktion, performance marketing, print kampagnen, onlineshops, chatbot amp messagingloesungen, digitales marketing, bildbearbeitung, social media, sea, content marketing, landingpages, konzeption, inbound marketing, leadmanagement, advertising services, marketing-check, d2c, webportale, automatisierung, customer experience, ki software, b2b marketing, e-commerce, webentwicklung, datenmanagement, omnichannel strategien, business process outsourcing, automatisierte vertriebsprozesse, omnichannel, information technology and services, b2c, customer relationship management, services, landingpage-optimierung, management consulting services, hubspot partner, ki-gestützte prozessautomatisierung, seo-strategie, customer journey, software development, b2b, saas plattform, online-shop entwicklung, marketing and advertising, data analytics, retail, e-commerce ux-design, customer loyalty plattform, marketing automation, social media advertising, chatbot, consulting, chatbot integration, marketing & advertising, information technology & services, search marketing, marketing, sales, enterprise software, enterprises, computer software, consumer internet, consumers, internet, saas",'+49 613 11437168,"Outlook, Microsoft Office 365, Hubspot, Slack, Facebook Custom Audiences, Hotjar, Vimeo, DoubleClick Conversion, WordPress.org, Mobile Friendly, reCAPTCHA, Linkedin Marketing Solutions, Google Tag Manager, Google Dynamic Remarketing, Nginx, DoubleClick, Facebook Login (Connect), Facebook Widget, Sisense, Domo, KNIME, AI, CloudFlare, CookieYes, LinkedIn Ads, Google Analytics, Facebook","","","","","","",69c2816cd069960001275e97,7375,54161,"2HM ist Ihr Business Partner für Marketing, Vertrieb und CRM – mit einer klaren Mission: nachhaltiges Kunden- und Umsatzwachstum für Ihr Unternehmen. ☎ 06131-1437168 ➤ Jetzt mehr erfahren!",2008,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6873b9ded8f9ea0001cffe70/picture,"","","","","","","","","" +AuA24 AG,AuA24 AG,Cold,"",28,information technology & services,jan@pandaloop.de,http://www.aua24ag.de,http://www.linkedin.com/company/aua24ag,"","",3 Suedportal,Norderstedt,Schleswig-Holstein,Germany,22848,"3 Suedportal, Norderstedt, Schleswig-Holstein, Germany, 22848","technology, information & internet, smart datacenter cloud-überwachung, cyber-security, artificial intelligence, smart nexus marketplace, information technology and services, innovation, arbeitssicherheit, software as a service (saas), b2b, b2b-prozesse, threat detection, computer systems design and related services, cloud computing, services, business intelligence, operational efficiency, smart cybersecurity maßgeschneiderte sicherheitslösungen, regulatory compliance, cloud solutions, software development, data analytics, it-sicherheitslösungen, smart labs ki-forschung, e-commerce, data protection, risk assessment, digital transformation, künstliche intelligenz, smart lens it-sicherheitsüberwachung, cyber-security saas, cloud-lösungen, softwareentwicklung, cybersecurity, saas-software, digitalisierung, prozessautomatisierung, workflow automation, distribution, information technology & services, enterprise software, enterprises, computer software, analytics, consumer internet, consumers, internet",'+49 40 4666680,"Outlook, Microsoft Office 365, Microsoft Azure Hosting, Microsoft Azure, Active Campaign, Mobile Friendly, Nginx, Microsoft Windows Server 2012, Microsoft Azure Monitor, Azure Virtual Desktop, Microsoft PowerShell, Azure Policy, Microsoft Defender for Cloud, Salesforce CRM Analytics, Micro, Lens, Microsoft Office","","","","","","",69c2816cd069960001275e98,7375,54151,"Die AuA24 AG, ehemals ein Spezialist für Arbeitsmedizin und Arbeitssicherheit, hat sich zu einem innovativen Technologieunternehmen gewandelt, das sich auf die Softwareentwicklung und Automatisierung von B2B-Prozessen konzentriert. Mit einer kundenorientierten Herangehensweise und einer engagierten Mannschaft entwickelt AuA24 AG effiziente, maßgeschneiderte Lösungen, die die Geschäftsabläufe ihrer Kunden optimieren und zukunftssicher gestalten. + +In einer Zeit, in der sich die Wirtschaft und Industrie immer schneller wandeln und Digitalisierung und Automatisierung immer stärker im Vordergrund stehen, erkennt AuA24 AG die Bedeutung einer dynamischen Ausrichtung. Mit einer neuen Vision und einer frischen Strategie ist das Unternehmen entschlossen, seine Expertise und Ressourcen in der Digitalisierung von Geschäftsprozessen für B2B-Kunden auszubauen. + +Die Erschließung neuer Arbeitsfelder – insbesondere im Bereich der Cyber-Security und der Automatisierung von Rechenzentren – ist eine Antwort auf die steigende Bedeutung von Datenschutz und IT-Sicherheit in der digitalisierten Wirtschaft. AuA24 AG wird in diesem Bereich innovative Lösungen entwickeln, um Unternehmen bei der Identifikation, Prävention und Reaktion auf Cyber-Risiken zu unterstützen. Die Sicherheit von Geschäftsdaten und digitalen Prozessen wird damit noch stärker in den Fokus gerückt, um den wachsenden Anforderungen der Unternehmen gerecht zu werden. + +Mit diesen zusätzlichen Arbeitsfeldern ist AuA24 AG bestens gerüstet, um Kunden bei der digitalen Transformation und der Sicherung ihrer Systeme umfassend zu unterstützen. Die Kombination aus Softwareentwicklung, Cyber-Security und Rechenzentrumsautomatisierung ermöglicht es dem Unternehmen, innovative Lösungen anzubieten, die auf die sich ständig ändernden Anforderungen des Marktes zugeschnitten sind.",2016,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67174353d2ac4d0001b8e6ff/picture,"","","","","","","","","" +just experts,just experts,Cold,"",37,information technology & services,jan@pandaloop.de,http://www.justexperts.de,http://www.linkedin.com/company/just-experts,"","",16 Wallstrasse,Duesseldorf,Nordrhein-Westfalen,Germany,40213,"16 Wallstrasse, Duesseldorf, Nordrhein-Westfalen, Germany, 40213","digitalisierung, maschinelles lernen, konzeptumsetzung, unternehmensplanung, prozessdigitalisierung, projektmanagement, aufbau bisysteme, controlling, ki, endtoend digitalisierung, branchendigitalisierung, it services & it consulting, digital transformation, management consulting services, b2b, data management, consulting, strategy consulting, organizational intelligence, digital strategy, operational efficiency, business services, data intelligence, self-learning organization, services, ai integration, ai consulting, ai tool selection, change management, ai strategy development, management consulting, ai schulungen, it consulting, microsoft teams ai tools, business consulting, data security, business & process solutions, cloud technologies, data infrastructure, information technology and services, cloud computing, data-driven business models, business intelligence, information technology & services, strategic consulting, marketing, marketing & advertising, computer & network security, enterprise software, enterprises, computer software, analytics",'+49 211 73060420,"Outlook, Google Tag Manager, WordPress.org, Mobile Friendly, Apache, Xamarin, Node.js, Android, React Native, Remote, AI, Microsoft 365, SharePoint, Microsoft Teams, Microsoft Power Platform, Azure Data Factory, Power BI Documenter, Microsoft Fabric, Terraform, Microsoft Azure Monitor","","","","","","",69c2816cd069960001275ea2,8742,54161,"just experts is a German digital transformation and business consulting firm based in Düsseldorf. The company specializes in helping organizations modernize their operations and adopt innovative technologies. With a team of 32 professionals, just experts focuses on moving businesses away from traditional methods toward future-oriented solutions. + +The firm offers a range of consulting services, including digital transformation, data strategy development, process optimization, business model alignment, employee empowerment, and IT consulting. They guide organizations in adopting cloud computing, big data analytics, and modern technology to enhance operational efficiency and align business models with future opportunities. just experts operates as embedded consultants, collaborating closely with client teams to implement sustainable solutions that combine business knowledge with data and technology expertise.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/683c456e2479c100013436c1/picture,"","","","","","","","","" +JAEMACOM GmbH,JAEMACOM,Cold,"",48,information technology & services,jan@pandaloop.de,http://www.jaemacom.de,http://www.linkedin.com/company/jaemacom-gmbh,https://www.facebook.com/people/JAEMACOM-GmbH/100063185772897/,"",44 Rigaer Strasse,Berlin,Berlin,Germany,10247,"44 Rigaer Strasse, Berlin, Berlin, Germany, 10247","itprojektleitung, itconsulting, sharepoint, virtualisierung, itinfrastruktur, itberatung, individuelle softwarentwicklung, itsystemhaus, softwareentwicklung, itsecurity, itautomatisierung, cloudberatung, itstrategie, modern workplace, workplace as a service, it services & it consulting, it-projektmanagement, it-operations, grc-beratung, it-security, cybersecurity-beratung, it-helpdesk, cloud-management, siem/soc-implementierung, consulting, cybersecurity, it-infrastruktur, it-infrastruktur projekte, it-compliance-management, devops, it-managementsysteme, it-services, it-beratung, it-sicherheitszertifizierung, microsoft 365, services, it-support, it-architekturdesign, automatisierte sicherheitsanalysen, it-lösungen, computer systems design and related services, cloud-transformation, ki-gestützte software, cloud computing, ki-softwareentwicklung, it-optimierung, it-transformation, it-backup, citrix, it-sicherheitsanalyse, soc, it-compliance, cloud-services, penetration testing, it-infrastrukturmanagement, it-support-services, managed services, it-sicherheitsaudits, it-disaster recovery, it-sicherheitsmanagement, cybersecurity-tools, it-sicherheitskonzepte, it consulting and support, it-upgrade, cloud-lösungen, it-architektur, it-asset-management, it-service-management, iso 27001, it-sicherheitsberatung, automatisierte sicherheitsprüfungen, it consulting, it-architekturplanung, tisax, softwareentwicklung mit ki, it-sicherheitsarchitektur, information technology and services, it-consulting, b2b, it-zertifizierung, it-management, firewall, it-projekte, siem, it-sicherheitsstrategie, it-implementierung, it-risikoanalyse, cloud, software development, it-strategie, it-betrieb, it-performance monitoring, information technology & services, enterprise software, enterprises, computer software, computer & network security, management consulting",'+49 30 233292333,"Cloudflare DNS, Outlook, Apache, Google Tag Manager, WordPress.org, Node.js, Android, React Native, Remote, Microsoft Intune Enterprise Application Management, Microsoft 365, VMware Cloud Foundation, Proxmox VE, Omnissa Horizon","","","","","","",69c2816cd069960001275e8e,7379,54151,"𝐉𝐀𝐄𝐌𝐀𝐂𝐎𝐌 𝐦𝐚𝐤𝐞𝐬 𝐭𝐡𝐞 𝐦𝐨𝐝𝐞𝐫𝐧 𝐰𝐨𝐫𝐤𝐩𝐥𝐚𝐜𝐞 𝐩𝐨𝐬𝐬𝐢𝐛𝐥𝐞. We bring your applications to where your business is - whether it's about cross-company deployment of Office 365 or transforming custom business applications. + +JAEMACOM GmbH is an innovative IT service provider with over 25 years of experience. We support public administration organizations and medium-sized companies in the energy and housing sectors in modernizing their IT infrastructure and optimizing digital processes. + +Our focus: + +𝐌𝐨𝐝𝐞𝐫𝐧 𝐖𝐨𝐫𝐤𝐩𝐥𝐚𝐜𝐞: We ensure smooth digital collaboration for your employees and protect your data through effective device management. + +𝐈𝐓 𝐂𝐨𝐧𝐬𝐮𝐥𝐭𝐢𝐧𝐠 𝐒𝐞𝐫𝐯𝐢𝐜𝐞𝐬: Strategic consulting for the development of your IT infrastructure with support for implementation and optimization. + +𝐈𝐓 𝐏𝐫𝐨𝐜𝐞𝐬𝐬 𝐌𝐚𝐧𝐚𝐠𝐞𝐦𝐞𝐧𝐭: Service-oriented mapping and automation of business processes for increased efficiency. + +𝐀𝐩𝐩𝐥𝐢𝐜𝐚𝐭𝐢𝐨𝐧 𝐒𝐞𝐫𝐯𝐢𝐜𝐞𝐬: Application analysis and support for software distribution. + +𝐌𝐚𝐧𝐚𝐠𝐞𝐝 𝐒𝐞𝐫𝐯𝐢𝐜𝐞𝐬: Taking over the operational management of your IT systems, so you can focus on your core business. + +𝐂𝐮𝐬𝐭𝐨𝐦 𝐒𝐨𝐟𝐭𝐰𝐚𝐫𝐞 𝐒𝐨𝐥𝐮𝐭𝐢𝐨𝐧𝐬: Tailored mobile apps and web applications precisely aligned with your business processes. + +With over 70 employees, we successfully implement projects to ensure you remain competitive in the future. + +𝐅𝐞𝐞𝐥 𝐟𝐫𝐞𝐞 𝐭𝐨 𝐜𝐨𝐧𝐭𝐚𝐜𝐭 𝐮𝐬 𝐟𝐨𝐫 𝐚 𝐜𝐨𝐧𝐬𝐮𝐥𝐭𝐚𝐭𝐢𝐨𝐧! + +Follow us on Instagram to learn more about our team: www.instagram.com/jaemacom/""",2002,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67879203ef1c9600016481af/picture,"","","","","","","","","" +Flagbit GmbH & Co. KG,Flagbit GmbH & Co. KG,Cold,"",26,information technology & services,jan@pandaloop.de,http://www.flagbit.de,http://www.linkedin.com/company/flagbit-gmbh-&-co-kg,https://www.facebook.com/flagbit,https://twitter.com/flagbit,"",Karlsruhe,Baden-Wuerttemberg,Germany,"","Karlsruhe, Baden-Wuerttemberg, Germany","symfony, akeneo, customer experience, webdevelopment, typo3, automatisierung, digital marketing, kuenstliche intelligenz, ecommerce, spryker, crm performance marketing, infrastructure, interfaces flows, magento, digital visioneering, data management, technology, information & internet, performance optimierung, globales pim-management, produktdatenmanagement, branchenübergreifende projekte, cloud-infrastruktur, information technology & services, shopware 6 relaunch, shopsysteme, ki in sales und marketing, markenstrategie und ci-refresh, cloud computing, wordpress, partnerplattformen, b2c, webinar-reihe zu transactional intelligence, contentful, maßgeschneiderte lösungen, shopify, kundenzufriedenheit, software development, services, contentful headless cms, computer systems design and related services, e-commerce automatisierung, workshops, nachhaltigkeit, performance marketing, projektmanagement, shopware, ki-strategie, ki-gestützte prozessautomatisierung, datenmanagement, amazon aws, digitalisierung, contentmanagement, datenqualitätssicherung, webinare, weiterbildung, infrastruktur, e-commerce, magento auf shopware migration, woocommerce, akeneo pim, microsoft azure, google vertex, webshops, datenanalyse, content-management-systeme, akeneo pim implementierung, digitalagentur, ki-gestützte lösungen, cms, d2c, b2b, ki-gestützte automatisierung, adobe commerce integration, automatisierte content-produktion, ki-gestützte content-erstellung, content management systeme, automatisierungssoftware, retail, e-commerce relaunch, consulting, webentwicklung, crm, nachhaltige digitale transformation, innovative produkte, education, non-profit, distribution, transportation & logistics, energy & utilities, web development, marketing & advertising, consumer internet, consumers, internet, enterprise software, enterprises, computer software, sales, nonprofit organization management",'+49 721 9143480,"MailJet, Outlook, Microsoft Office 365, Flywheel, Atlassian Cloud, Magento, Hubspot, Typekit, DoubleClick Conversion, DoubleClick, Google Tag Manager, Google Dynamic Remarketing, Mobile Friendly, reCAPTCHA, Hotjar, Google Font API, WordPress.org, Apache, Linkedin Marketing Solutions, YouTube, Varnish, PHP, Shopware, Akeneo PIM, Symfony","","","","",272000,"",69c281681cba2c0001f0de0a,7375,54151,"Flagbit is the e-commerce agency for flexible and individual solutions in digital commerce. Understanding the customer and developing his vision together is the focus of the Karlsruhe-based development agency, which relies on strong partners such as Magento, Akeneo and Spryker. An agile development approach ensures that project progress is continuously evaluated and new requirements can be integrated immediately. + +Flagbit also develops independent products such as Akeneo bundles, the Magento Integration Platform (MIP) and the Flagbit Angular Storefront, a progressive web app. + +Customers from B2B and B2C rely on the competence of Flagbit, such as Bergfreunde, Touratech, Bobcat, VossChemie, Bauzentrum Kömpf, Sanetta or Voith. + +The E-Commerce Forum Karlsruhe, organized by Flagbit, offers a platform for manufacturers and dealers from the digital industry to exchange brand-new e-commerce topics.",2007,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67032d303e807d00017262b3/picture,"","","","","","","","","" +CompuSafe Data Systems AG,CompuSafe Data Systems AG,Cold,"",140,information technology & services,jan@pandaloop.de,http://www.compusafe.de,http://www.linkedin.com/company/compusafe-data-systems-ag,https://www.facebook.com/compusafeAG,"",18 Oetztaler Strasse,Munich,Bavaria,Germany,81373,"18 Oetztaler Strasse, Munich, Bavaria, Germany, 81373","sap, datensicherheit, future skills, ai, weiterbildung, digitale transformation, personaldienstleistung, new work, scrum, itsm servicenow, 5g, new leadership, digital business, datenbanken, usability, itinfrastruktur, user help desk support, qualifizierung, itsecurity, dms, workforce transformation, design thinking, lean strategy, arbeit 40, legacy application transformation, carveincarveout, itdienstleistungen, itspezialisten, training, requalifizierung, projektleitung management, itjobs, windows, projektmanagement, it, crm, coaching, arbeitnehmerueberlassung, erp, administratoren, data science, information technology, human resources, it services & it consulting, it-service management, it-management, it-consulting services, it risk & security management, ai & automation, it-strategie, digital workplace solutions, transportation & logistics, it-security, custom it solutions, project management, it-security management, legacy application migration, it-services provider, legacy migration, it-consulting, risk management, it-workforce development, it service automation, it quality management, it governance, it-architektur, itsm, it process optimization, information technology and services, it-workforce transformation, it-infrastruktur, automation, it services, it workforce transformation, it infrastructure, it talent development, it security & compliance, b2b, ai & automation solutions, it security, it-operations, legacy system transformation, itsm servicenow practice, it infrastructure optimization, ai & automation in business, it solutions, private 5g networks, it-transformation, it-carve-in, cybersecurity, it-services, it compliance management, it carve-in/carve-out, cloud solutions, cloud migration, servicenow itsm, distribution, digital workplace, business continuity, digital transformation, compliance, services, consulting, it-modernization, ai strategy, it risk management, it process automation, it-support, it-workforce, it-carve-out, it infrastructure modernization, computer systems design and related services, it-compliance, rechenzentren, it-strategy, it talent qualification, sales, enterprise software, enterprises, computer software, information technology & services, productivity, computer & network security, cloud computing",'+49 170 2864481,"ElasticEmail, Rackspace MailGun, Outlook, Microsoft Office 365, Microsoft Azure, Barracuda Networks, Cedexis Radar, Apache, WordPress.org, Adobe Media Optimizer, Gravity Forms, Vimeo, Mobile Friendly, Remote, ServiceNow, SAP, SAP HANA, OpenText GroupWise, Microsoft Exchange Server 2003, Microsoft 365, VMware NSX, Board, PEO, Jira, Remedy Single Sign On, Visio, Google AdWords Conversion, Excel4Apps, Microsoft PowerPoint, OpenProject, SharePoint, Kubernetes, Argocd, Cisco Nexus Switches, MinIO, Mode, Microsoft Project, Docker, HELM, GitLab, Snowflake, dbt, AWS Trusted Advisor, Automic Automation, GitHub, Python, SQL, vSphere, Secured MVC Forum on Windows 2012 R2, VMware vSAN, Tanzu, VxRail, VMware, Angular, CSS, AWS SDK for JavaScript, Confluence, Git, REST, ENTERPRISE ARCHITECT, OpenLDAP, Oracle Linux, Debian, Bash, Ansible, checkmk, Scrum Do, Kanbanize, SafeSend, Amplitude, IBM Db2 for Linux, UNIX, and Microsoft Windows, Batch, SAP S/4HANA, Microsoft Exchange, Oracle Analytics Cloud, SAP Solution Manager, PyCharm, SAP BusinessObjects Business Intelligence (BI), WellSaid Labs, ArcGIS Enterprise, Azure Linux Virtual Machines, Salesforce Service Cloud, Citrix ADC, IBM Maximo IT, Fastapi, ABAP, Eclipse, Vscode, Javascript, IBM Maximo, AI, go+, Ceph, ICONICS IoT, Pega Case Management, Jumpcloud, Amazon Virtual Private Cloud (Amazon VPC), Drawbridge, OpenText, Podman, PowerBI Tiles, Microsoft-IIS, Phaser, Prometheus, Grafana, Amazon Linux 2, Google Analytics, Azure Cloud Shell","","","","",23000000,"",69c281681cba2c0001f0de07,7375,54151,"CompuSafe Data Systems AG is a German IT service provider founded in 1989, based in Munich. The company specializes in comprehensive IT solutions for large enterprise customers, focusing on consulting, implementation, and operations. As part of the audius Group, CompuSafe has evolved from its initial focus on legal software to a strong emphasis on IT services, digital transformation, and automation. + +The company offers a range of tailored services, including IT Service Management, AI and automation solutions, IT security and compliance, and business continuity operations. CompuSafe utilizes various technologies such as Oracle databases and Unix/Linux on AWS EC2 to support its clients. It is committed to quality principles, fostering long-term relationships, and adapting to changes in the economic and technical landscape. With a focus on sustainability, CompuSafe is dedicated to enhancing its corporate practices and reducing its carbon footprint.",1989,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69aa5aa28db7760001878ffd/picture,"","","","","","","","","" +Onemedia Consulting GmbH,Onemedia Consulting,Cold,"",26,marketing & advertising,jan@pandaloop.de,http://www.onemedia-consulting.com,http://www.linkedin.com/company/onemedia-gmbh,"","",36 Klenzestrasse,Munich,Bavaria,Germany,80469,"36 Klenzestrasse, Munich, Bavaria, Germany, 80469","marketing analysis optimization, marketing technology, marketing operations, marketing automation, lead management, digital marketing, performance marketing, digital transformation, marketo, digital commerce, marketing strategy, customer data management, marketing analysis amp optimization, digital analytics, campaign management, web development, advertising services, b2b, drift ai chatbots, information technology and services, multi-channel marketing, customer journey orchestration, marketing analytics, data transformation, data privacy compliance, process optimization, consulting, customer relationship management, data silo overcoming, marketing technology strategy, personalization technologies, twenty three interactive video, marketing automation tools, salesforce pardot, customer data platforms, customer experience platforms, customer insights, customer journey mapping, real-time data utilization, data-driven b2b marketing, customer-centric growth, b2b marketing automation, marketing automation implementation, data-driven customer experiences, data analytics, martech strategy consulting, automation workflow management, customer value focus, marketing technology stack, customer engagement technologies, digital transformation support, adobe marketo, customer data environment, customer data consulting, customer data platforms (cdp), data-driven marketing, marketo engage, lead conversion strategies, data monetization, services, marketing operations support, molequle cdxp, salesloft chatbots, insight-driven marketing, marketing and advertising, management consulting services, customer experience optimization, customer journey automation, data integration, customer segmentation, customer behavior analysis, marketing & advertising, saas, computer software, information technology & services, enterprise software, enterprises, crm, sales",'+49 89 588010400,"Gmail, Google Apps, Google Cloud Hosting, Marketo, Zendesk, Slack, Nginx, Varnish, Mobile Friendly, React Native, Android","","","","","","",69c281681cba2c0001f0de10,7375,54161,"Unleash the power of insights to energise your business + +We use data to guide customers on their journey, identify patterns in their behaviour and create hyper-relevant, insightful but privacy-friendly customer experiences. + +Our customer-centric, data-driven approach puts the needs of your business and your customers first to deliver tangible results. + +What we stand for? +In a nutshell, we align marketing automation, lead management and data intelligence with the needs and goals of your business to deliver the best possible results. In this way, we ensure that you get the most out of your Marketo or Pardot platform.",2015,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6715aa24cd12180001b44dfe/picture,"","","","","","","","","" +Liquam GmbH,Liquam,Cold,"",13,management consulting,jan@pandaloop.de,http://www.liquam.com,http://www.linkedin.com/company/liquam-gmbh,https://www.facebook.com/LiquamGmbH/,https://twitter.com/LiquamInvest,58B Ramskamp,Elmshorn,Schleswig-Holstein,Germany,25337,"58B Ramskamp, Elmshorn, Schleswig-Holstein, Germany, 25337","ki, omnichannel, digitalisierung, managementberatung, ecommerce, kistrategie, automatisierung, cloudtechnologie, technologie, digitale transformation, software, anomalieerkennung, geschaeftsmodelle, business consulting & services, data security, data analytics, data management, ki-gestützte wissensmanagement, cloud native, software development, artificial intelligence, predictive analytics, process optimization, project management, custom software, business consulting, risk assessment, softwareentwicklung, digitale geschäftsmodelle, ki-strategie, automation, it services, workflow automation, b2b, e-commerce, low-code/no-code, automatisierte datenqualität, ganzheitlicher ansatz, it consulting, cloud solutions, technology consulting, datenanalyse, user experience, digital transformation, compliance, prozessdigitalisierung, custom software development, consulting, prozessautomatisierung, business- und technologie expertise, predictive sales, management consulting, individuelle softwarelösungen, computer systems design and related services, business intelligence, consumer internet, consumers, internet, information technology & services, computer & network security, enterprise software, enterprises, computer software, productivity, cloud computing, ux, analytics",'+49 41 217897100,"Cloudflare DNS, Sendgrid, Gmail, Google Apps, Hubspot, Slack, Facebook Custom Audiences, Google Tag Manager, WordPress.org, Google Dynamic Remarketing, Facebook Login (Connect), Bootstrap Framework, Apache, Linkedin Marketing Solutions, Facebook Widget, DoubleClick, Mobile Friendly, DoubleClick Conversion, Remote, Deel","","","","",436000,"",69c281681cba2c0001f0de16,8742,54151,"Wir beraten und entwickeln Lösungen: Für Ihren Weg von der Vision bis zum messbaren Ergebnis in einer technologiegetriebenen Welt. +Impressum: https://www.liquam.com/impressum/ +Datenschutz: https://www.liquam.com/datenschutz/",2013,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68b93e41fc3953000147355a/picture,"","","","","","","","","" +Onward Partners,Onward,Cold,"",20,management consulting,jan@pandaloop.de,http://www.onward.partners,http://www.linkedin.com/company/onwardpartners,"","",55 Campus-Boulevard,Aachen,North Rhine-Westphalia,Germany,52074,"55 Campus-Boulevard, Aachen, North Rhine-Westphalia, Germany, 52074","innovation, consulting, digital transformation, smart factory, production technology, manufacturing, digital roadmap, big data, disruption, agility, digitization, digitalization, industrie 40, business consulting & services, process optimization, sales & operations planning, engineering services, b2b, industry 4.0, digital factory, scalable digital infrastructure, real-time data, industrial automation, digital shopfloor management, digital maturity strategy, automation, data governance, global transformation management, unified namespace, data-driven manufacturing, connected worker, ai in manufacturing, services, iiot architecture, open iiot architectures, industry 4.0 maturity index, data analytics, information technology, mechanical or industrial engineering, enterprise software, enterprises, computer software, information technology & services, management consulting",'+49 241 4125220,"Cloudflare DNS, Outlook, Microsoft Office 365, CloudFlare Hosting, Mobile Friendly, Squarespace ECommerce, Vimeo, WordPress.org, Microsoft PowerPoint","","","","","","",69c281681cba2c0001f0de17,3571,54133,"Onward Partners is a consulting firm that specializes in digital transformation for manufacturing companies. The firm is dedicated to helping organizations navigate complex digital journeys at scale, positioning itself as a trusted partner for multinational manufacturing enterprises. + +The company offers consulting services that include initial assessments, strategy development, and guidance through the intricacies of digital transformation. Onward Partners focuses on aligning strategy, technology, and culture to achieve sustainable results while managing transformation processes across global operations. They are recognized as a partner within the Siemens Xcelerator Marketplace, highlighting their integration with major industrial technology ecosystems.",2023,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670194f4ed3937000130f4b9/picture,"","","","","","","","","" +apollon GmbH+Co. KG,apollon GmbH+Co. KG,Cold,"",39,information technology & services,jan@pandaloop.de,http://www.apollon.de,http://www.linkedin.com/company/apollon-gmbh-co-kg,https://facebook.com/picturesafe,https://twitter.com/picturesafe,104 Maximilianstrasse,Pforzheim,Baden-Wuerttemberg,Germany,75172,"104 Maximilianstrasse, Pforzheim, Baden-Wuerttemberg, Germany, 75172","apps, project management, product information management, marketingautomation, kiservices, it, workflow management, marketingsoftware, ecommerce, channel management, product experience management, pim, media asset management, digital asset management, software, consulting, virtuelle messen, pxm, media asset management product information management apps software project management consulting it, dam, it services & it consulting, ki-gestützte produktklassifikation, ai content generation, datenharmonisierung, ki text / ai translate, ki-gestützte produktbeschreibung, plug-ins, ki-services, media production, eai-systeme, e-commerce, b2b software, b2b, omnichannel, ki-gestützte übersetzung, production, automatisierung, d2c, skalierbarkeit, content management, ki-gestützte content-automatisierung, kundenerlebnis, ki-gestützte content-distribution, ki imaging, ki-gestützte textgenerierung, computer systems design and related services, ki-gestützte bildtagging, information technology and services, produktdatenqualität, datenqualität, ai tagging, ki-tagging, ki-übersetzung, services, consumer goods, branchenlösungen, retail, produktdatenmanagement, automatisierte produktkommunikation, plug-in-architektur, ki-gestützte produktdatenanreicherung, ki-gestützte übersetzungsmanagement, systemintegration, ki-gestützte content-erstellung, ki-text, automotive, ki-gestützte bild- und textautomatisierung, ki-gestützte bildbearbeitung, produktdaten, ki-gestützte übersetzungsdienste, ki-gestützte content-optimierung, omn accelerator, automatisierte übersetzungen, api-first, produktklassifikation, micro-services, manufacturing, content syndication, distribution, content automation, cloud-basiert, offene schnittstellen, cloud software, multichannel publishing, systemanbindung, b2c, consumer_products_retail, transportation_logistics, productivity, consumer internet, consumers, internet, information technology & services, mechanical or industrial engineering, digital media, media",'+49 723 1941123,"Outlook, Microsoft Office 365, Hubspot, Pipedrive, Sophos, WordPress.org, Google Dynamic Remarketing, Mobile Friendly, Vimeo, DoubleClick Conversion, Nginx, Google Tag Manager, Linkedin Marketing Solutions, DoubleClick, Android, AI, Remote","","","","",3674000,"",69c281681cba2c0001f0de0b,7375,54151,"apollon GmbH+Co. KG is a German IT services and consulting company based in Pforzheim, Baden-Württemberg. Founded in 2015, the company specializes in software solutions for automating product data communication and distribution in omnichannel commerce. With a team of approximately 29 to 71 employees, apollon generates around $5.3 million in annual revenue. + +The company is known for its Online Media Net (OMN) software suite, which focuses on usability, scalability, and central management of product information and digital assets. OMN integrates AI for automated content refinement and features a Camunda-based workflow engine, facilitating efficient marketing across various channels, including web shops and social media. apollon also offers a modular Product Experience Management (PXM) suite that includes Product Information Management, Digital Asset Management, Channel Management, and Workflow Management. Additionally, the company provides consulting and integration support to enhance customer processes.",2015,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6713a34cfe5c5c0001f77f1a/picture,"","","","","","","","","" +b4dynamics,b4dynamics,Cold,"",46,information technology & services,jan@pandaloop.de,http://www.b4dynamics.com,http://www.linkedin.com/company/b4dynamics-gmbh,"","",39 Roemerstrasse,Huefingen,Baden-Wuerttemberg,Germany,78183,"39 Roemerstrasse, Huefingen, Baden-Wuerttemberg, Germany, 78183","microsoft dynamics crm, cloud solutions, medical technology, business intelligence, digital business consulting, digital transformation, chemistry, d365 fo, microsoft 365, microsoft power bi, supply chain management, windows 10, pharmaceutical industry, data analytics, sustainability, anlagenbau, microsoft teams, microsoft azure, microsoft dynamics nav, microsoft dynamics, d365 customer service, azure, digitalization, customer experience, business intelligence loesungen, biservices, branchenloesung prozessindustrie, microsoft partner, microsoft dynamics ax, erp, industry 40, innovation, dynamics 356, d365 field service, technology industry, endtoend solutions, application dovelopment, life sciences, process manufacturing, d365 business central, chemie, microsoft dynamics 365 business central, dynamcs crm, dynamics ax, intelligent erp, microsoft bi, microsoft dynamics 365, diskrete fertigung, microsoft industry clouds, d365 sales, d365 talent, crm, chemical industry, international projects, technology infrastructure, business, textile, plant manufacturing, medical devices, ai supported erp, d365 marketing, d365, microsoft, microsoft power platform, microsoft sharepoint, microsoft dynamics 365 finance operations, dynamics nav, office 365, modern workplace, artificial intelligence, technology, managed services, medizintechnik, maschinenbau, share point, discrete manufacturing, corporate planner, pharma, industry solutions, it services, machine manufacturing, data science, it services & it consulting, compliance reporting tools, chemicals, global deployment, supply chain optimization, b2b, industry expertise, software deployment, production planning, demand forecasting, data security, it consulting, manufacturing execution, computer systems design and related services, traceability solutions, business process automation, power bi, consulting, medical device manufacturing, inventory optimization, business analytics, e-commerce, industry-specific solutions, system customization, customer relationship management, manufacturing, smart factory solutions, power automate, digital twin integration, workflow automation, supply chain visibility, customer insights, add-on solutions, real-time production monitoring, performance monitoring, industry-specific erp, global erp deployment, support & training, ai-driven demand forecasting, azure devops, process manufacturing erp, power pages, predictive maintenance, iot integration, compliance management, custom erp development, cloud-based erp, power apps, cloud security, power platform, standard software, azure cloud services, system integration, inventory management, rapid deployment methodology, data migration, azure cloud, logistics, sustainability reporting, microsoft copilot, automated quality control, quality management, customer portal, user training, carbon footprint tracking, industry 4.0, regulatory compliance, process digitization, ai integration, textile industry solutions, plant engineering erp, cloud migration, ai-powered workflows, customer engagement, chemical process automation, consulting services, workforce management, discrete manufacturing software, pharma manufacturing, project management, supply chain resilience, manufacturing industry, security & compliance, legacy system migration, customer service solutions, textiles, distribution, workforce automation, erp consulting, manufacturing erp, automated inventory replenishment, business process optimization, real-time insights, production control, services, global project support, custom software, rapid prototyping, life sciences erp, field service, cloud transition, supply chain analytics, crm solutions, process automation, pharmaceuticals, sales automation, order management, manufacturing software, demand planning, business central, real-time reporting, rapid deployment, plant engineering, industry-specific add-ons, finance automation, erp implementation, crm integration, automation tools, project execution, global multi-currency support, cross-industry solutions, operational efficiency, healthcare, finance, transportation_&_logistics, cloud computing, enterprise software, enterprises, computer software, information technology & services, analytics, logistics & supply chain, environmental services, renewables & environment, sales, hospital & health care, mechanical or industrial engineering, computer & network security, management consulting, consumer internet, consumers, internet, productivity, medical, saas, health care, health, wellness & fitness, financial services",'+49 77 189784115,"Microsoft Office 365, Apache, WordPress.org, Mobile Friendly, Azure Devops","","","","","","",69c281681cba2c0001f0de1a,7372,54151,"b4dynamics GmbH is an international IT and ERP consulting firm based in Huefingen, Germany. Founded in 2008, the company specializes in business process optimization, digital transformation, and the implementation of ERP and CRM solutions using Microsoft Dynamics 365. With a team of around 37-44 employees, b4dynamics operates from five offices across Germany, Turkey, and the USA, and is recognized as a certified Microsoft partner and Cloud Solution Provider. + +The company offers a range of services tailored to manufacturing and other industries, including business process optimization, digital transformation strategies, and ERP/CRM implementations. b4dynamics focuses on Industry 4.0 initiatives, supporting efficient and sustainable operations. Their expertise extends to key user training and cloud migrations, ensuring smooth transitions to cloud-based systems. With a commitment to enhancing growth and competitiveness, b4dynamics aims to deliver standardized solutions that meet the needs of discrete and process manufacturing sectors.",2008,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f029d4f48d2a0001e46ffa/picture,"","","","","","","","","" +synalis,synalis,Cold,"",85,information technology & services,jan@pandaloop.de,http://www.synalis.de,http://www.linkedin.com/company/synalis-gmbh-&-co-kg,https://facebook.com/synalis,https://twitter.com/synalis,24 Windgassenstrasse,Bonn,North Rhine-Westphalia,Germany,53229,"24 Windgassenstrasse, Bonn, North Rhine-Westphalia, Germany, 53229","collaboration, wissensmanagement, cloud loesungen, cloudloesungen, cyber security, digitale transformation im mittelstand, prozessdigitalisierung, lms365, ecmdms, mobile device management, office 365, nonprofits, erp, zscaler, ki, itsecurity, kmu, mittelstand, integration, sharepoint, ms dynamics 365, docusign, cloud, dynamics 365, elo dms, crmxrm, itarchitektur, microsoft, it services & it consulting, digital workplace, digitale signatur eu-weit rechtsgültig, enterprise content management, crm, cloudservices, it consulting, power platform, e-learning, künstliche intelligenz, learning management system, microsoft azure, it security, cloud computing, hybrid work, microsoft power pages, automatisierte belegerfassung, hybrid work solutions, services, microsoft copilot, document capture, microsoft fabric, microsoft power apps, cloud infrastructure, microsoft defender, microsoft 365, business intelligence, computer systems design and related services, microsoft intune, it support, analytics, power automate, digital signature, microsoft dynamics 365 marketing, b2b, it-kompetenzen, teams, information technology and services, ai plattformen, customer engagement, modulare ki-services, consulting, power bi, enterprise software, ki-gestützte datenanalysen, elo ecm, software development, education, non-profit, computer & network security, information technology & services, nonprofit organization management, sales, enterprises, computer software, management consulting, internet, education management, internet infrastructure",'+49 22 892680,"Outlook, Microsoft Office 365, Cedexis Radar, Facebook Widget, Adobe Media Optimizer, Facebook Login (Connect), Facebook Custom Audiences, Google Tag Manager, YouTube, CrazyEgg, Vimeo, WordPress.org, Google Dynamic Remarketing, DoubleClick Conversion, Apache, Linkedin Marketing Solutions, Mobile Friendly, DoubleClick, , , Salesforce CRM Analytics, Gem, Microsoft Azure Monitor, Microsoft 365, Microsoft Power Platform, Microsoft Defender for Cloud, Sentinel, Microsoft Intune Enterprise Application Management","","","","",1268000,"",69c281681cba2c0001f0de09,7375,54151,"Synalis is an established IT service provider located in Bonn, Germany. The company specializes in delivering agile and flexible IT solutions tailored for mid-sized companies and non-profit organizations. Their approach, known as synalis 365, focuses on thorough diagnosis and analysis in collaboration with clients to identify precise needs, resulting in customized software solutions. + +Key services offered by Synalis include IT consulting and custom solutions that combine standard software components with modern technologies. They also provide expert consulting for migrating to Microsoft Dynamics 365 CRM, including data modeling and process automation. Additionally, Synalis supports ELO ECM Suite migrations to Microsoft Azure, utilizing tools like synFile for seamless integration with Microsoft Dynamics 365 Business Central. The company is also involved in developing innovative tools for project billing and participates in funding projects aimed at enhancing IT capabilities.",1997,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66efaa57fb533a00014efda1/picture,"","","","","","","","","" +amiconsult GmbH,amiconsult,Cold,"",71,information technology & services,jan@pandaloop.de,http://www.amiconsult.de,http://www.linkedin.com/company/amiconsult,https://facebook.com/amiconsult,https://twitter.com/amiconsult,33 Amalienstrasse,Karlsruhe,Baden-Wuerttemberg,Germany,76133,"33 Amalienstrasse, Karlsruhe, Baden-Wuerttemberg, Germany, 76133","it outsourcing, sap commerce cloud, sap customer experience management, okta, hybris, sap customer data cloud, ux ui design, saviynt, sailpoint, agile transformation, qualtrics, web entwicklung, sap customer data platform, starface, identity security, sap beratung, identity access management, it support, cidaas, sap cloud platform, pingidentity, one identity, projekt sourcing, agiles projektmanagement, omada, customer identity access management, it services & it consulting, user authentication, iam beratung, iam lösungen, b2c, identity analytics, decentralized identity, d2c, user authorization, identity & access management, b2c identity solutions, iam implementation, computer software, identity governance, iam on-premise, digital transformation, workflow automation, workforce iam, single sign-on, identity architecture, identity & access frameworks, identity & access technology, data security, sap identity management, identity management for sap, identity & access solutions, data inconsistency prevention, identity & access optimization, consulting, b2b identity management, identity compliance, e-commerce, sap cdc, iam cloud, identity management, iam services, identity lifecycle, identity policy management, iam projektmanagement, iam integration, identity federation in retail, access management, identity & access governance, retail, b2b, data protection, services, customer data architecture, managed services, sap cdp, it consulting, real-time data update, iam technologien, iam security, iam consulting, zero trust architecture, identity & access automation, identity & access compliance, iga, multi-faktor-authentifizierung, identity orchestration, customer experience management, identity lifecycle management, identity federation, identity monitoring, privileged access management, identity risk management, identity & access integration, identity automation, project management, identity as a service (idaas), customer iam, iam operations, access control, information technology and services, computer systems design and related services, iam strategie, iam plattformen, customer data platform, identity fabric, identity & access security, finance, distribution, outsourcing/offshoring, information technology & services, computer & network security, consumer internet, consumers, internet, privacy, management consulting, productivity, financial services",'+49 72 19128340,"Cloudflare DNS, Amazon SES, Rackspace MailGun, SendInBlue, Outlook, CloudFlare Hosting, Atlassian Cloud, React, Mapbox, SAP, Ping Identity, Okta, Saviynt, Omada Identity, SailPoint","","","","","","",69c281681cba2c0001f0de0c,7375,54151,"amiconsult GmbH is a German IT consulting firm based in Karlsruhe, specializing in Identity and Access Management (IAM/CIAM). Founded in 2003, the company serves as an outsourced IT department and software partner, focusing on comprehensive IT strategies in the DACH region, which includes Germany, Austria, and Switzerland. With a team of approximately 64-68 employees, amiconsult generates around $6.9 million in revenue and promotes a friendly corporate culture under the motto ""Joy at work."" + +The firm offers a range of IT services, including specialized consulting in IAM/CIAM, workforce management, and customer engagement. They aim to simplify and secure complex user landscapes through central identity management and optimize processes for audits. amiconsult also provides broader IT support as a one-stop shop for IT strategies and software partnerships, utilizing technologies such as JavaScript and HTML, and collaborating with platforms like SAP.",2003,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67280ca50f451f00011c5850/picture,"","","","","","","","","" +ADS KING GmbH,ADS KING,Cold,"",11,marketing & advertising,jan@pandaloop.de,http://www.ads-king.com,http://www.linkedin.com/company/ads-king-andreas-b%c3%a4uerlein,"","",16 Kardinal-Doepfner-Strasse,Gochsheim,Bayern,Germany,97469,"16 Kardinal-Doepfner-Strasse, Gochsheim, Bayern, Germany, 97469","advertising services, marketing & advertising",'+49 972 12982950,"Gmail, Outlook, Google Apps, Amazon AWS, Mobile Friendly, Facebook Widget, Google Tag Manager, Facebook Login (Connect), YouTube, Facebook Custom Audiences, AI","","","","","","",69c281681cba2c0001f0de0e,"","","Wir implementieren ein automatisiertes Kundengewinnungssystem für Dienstleister, Berater und Coaches!",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670b4b295c09ee0001dc9f15/picture,"","","","","","","","","" +NewNow,NewNow,Cold,"",22,information technology & services,jan@pandaloop.de,http://www.newnow.group,http://www.linkedin.com/company/newnow-group,"","",160 Grueneburgweg,Frankfurt,Hesse,Germany,60323,"160 Grueneburgweg, Frankfurt, Hesse, Germany, 60323","technology, machine learning, artificial intelligence, predictive analytics, sustainability, sentiment analysis, esg, ai, deep learning, transformation, data, data strategy, data science, business analytics, it services & it consulting, ai development, ai integration, operational efficiency, ai solutions, software development, ai-driven decisions, data pipelines, computer systems design and related services, ai culture, ai transformation, consulting, b2b, ai governance, operational automation, information technology and services, ai for banking, ai consulting, ai for food industry, ai strategy, digital marketing, market insights automation, ai activation, ai models, generative ai, data insights, data infrastructure, omnichannel routing, data analytics, scalable ai systems, data quality, ai training, ai automation, data & ai engineering, ai optimization, market research ai, marketing roi ai, services, customer experience ai, ai roadmap, data engineering, ai deployment, dynamic pricing ai, ai for retail, business intelligence, retrieval-augmented generation, finance, information technology & services, enterprise software, enterprises, computer software, environmental services, renewables & environment, marketing & advertising, analytics, financial services","","Cloudflare DNS, NSOne, Outlook, Microsoft Office 365, Google Tag Manager, Mobile Friendly, Hotjar, Remote, AI, Micro, Python, SQL, Apache Spark, Hadoop HDFS, AWS Trusted Advisor, Google Cloud, Microsoft Azure Monitor","","","","","","",69c281681cba2c0001f0de11,7375,54151,"NewNow Group is a technology consultancy and solutions provider that specializes in AI, data engineering, and emerging technologies. The company focuses on transforming business data into actionable insights and predictive tools, primarily serving small to medium-sized enterprises (SMEs) and global enterprises. Established in 2014, NewNow has a strong foundation in web technologies dating back to 1994, emphasizing scalable data solutions and advanced analytics. + +The company offers a variety of services, including AI strategy development, data and AI engineering, custom AI application development, and AI activation. NewNow also provides core technical services such as responsive website design, mobile app development, and digital marketing consultancy. Its innovative projects often explore areas like interactive advertising, chatbots, and web-based augmented reality. + +NewNow develops specialized AI-powered products, including a Marketing ROI Engine for optimizing campaign performance, a Marketing Intelligence Assistant for analyzing market trends, and a Dynamic Pricing Solution that adjusts prices in real-time based on market conditions. These solutions aim to enhance decision-making and drive operational improvements for their clients.",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/678424ddd6799e0001ea4f0b/picture,"","","","","","","","","" +Esker Software GmbH,Esker,Cold,"",31,information technology & services,jan@pandaloop.de,http://www.eskersoft.com,http://www.linkedin.com/company/esker-software-gmbh,"","",3A Dornacher Strasse,Feldkirchen,Bavaria,Germany,85622,"3A Dornacher Strasse, Feldkirchen, Bavaria, Germany, 85622","automatisierung von dokumentenprozessen, account payable, accounts receivable, sales order processing, einvoicing, elektronischer datenaustausch, forderungsmanagement, kreditmanagement, auftragsverarbeitung, rechnungseingang, rechnungsausgang, beschaffung, procurement, payment, lieferantenmanagement, kuenstliche intelligenz, cloudfax, ordertocashautomation, procuretopayautomation, order management, faxvirtualisierung, sourcetopay, invoicetocash, software development, information technology & services","","Gmail, Google Apps, Amazon AWS, Mobile Friendly, OpenSSL, Apache, Bootstrap Framework","","","","","","",69c281681cba2c0001f0de18,"","","Esker is a global business process automation platform with 40 years of experience, specializing in AI-powered solutions for the Office of the CFO. Founded in 1985, the company has grown to operate in 15 locations worldwide, employing over 1,100 people and serving more than 3,000 customers. In 2023, Esker generated €205.3 million in revenue. + +Esker offers an all-in-one platform that combines cloud technology with artificial intelligence to automate various business processes. Their solutions include Order-to-Cash and Procure-to-Pay automation, comprehensive e-procurement software, and cloud-based EDI services. The Esker Synergy AI platform enhances these offerings with machine learning and data optimization features, providing real-time insights and multi-ERP integration. Headquartered in Feldkirchen, Germany, Esker also has an EDI services office in Ratingen.",1985,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6972527c04865a0001a65388/picture,Esker,54a1229769702d86b660f202,"","","","","","","" +Spark Radiance,Spark Radiance,Cold,"",67,information technology & services,jan@pandaloop.de,http://www.spark-radiance.eu,http://www.linkedin.com/company/spark-radiance-gmbh,"","",Hans-Guentner-Strasse,Fuerstenfeldbruck,Bayern,Germany,82256,"Hans-Guentner-Strasse, Fuerstenfeldbruck, Bayern, Germany, 82256","it services & it consulting, interface development, online technologies, cloud services, it-infrastruktur, system architecture design, project management, automation, database development, business process modeling, manufacturing, b2b, information technology, system solutions, mobile applications, computer systems design and related services, customer relationship management, system integration, business intelligence, custom software solutions, software development, data analytics, digital transformation, agile project management, digital solutions, digital communication, cybersecurity, software architecture, digital consulting, digitale transformation, digital innovation, it infrastructure, machine learning, consulting, digital marketing, digital business models, data security, it consulting, supply chain management, it infrastructure operation, workflow automation, cyber security, softwareentwicklung, erp landscapes, cloud deployment, process automation, enterprise software, services, information technology & services, cloud computing, enterprises, computer software, productivity, mechanical or industrial engineering, mobile apps, crm, sales, analytics, artificial intelligence, marketing & advertising, computer & network security, management consulting, logistics & supply chain",'+49 81 41242400,"Salesforce, Outlook, Microsoft Office 365","","","","","","",69c281681cba2c0001f0de06,7375,54151,"Spark Radiance is the Digital Innovation Hub of the Güntner Group, one of the world's leading manufacturers of refrigeration and air conditioning technology. With offices in Germany and Romania, our expertise results from the 80 - year - experience of a medium - sized mechanical engineering company, which has been gaining competencies in Software Development, IT Infrastructure, Cloud Services, RPA, ERP & CRM landscapes for more than 25 years. Leading the digital transformation within the Güntner Group, we offer individual consulting and solutions in the areas of Business Process optimization, Software and Infrastructure technologies. We also develop the solutions needed for the Group to adopt a data-driven approach and to become customer - centric in meeting the rising digital demands of the customers, who are increasingly transferring their B2C expectations in terms of speed and services to their B2B activities. We are a young team with concentrated know-how in the field of digitalisation and what makes us special are the desire to make a difference and a great team spirit. Inspired by the digital transformation and its technologies, we continue to evolve and today we have a broad knowledge base in our team. We know that promising ideas are major drivers of social and economic development. We therefore actively promote a creative environment through our Agile working methods which offer us the freedom to develop and implement ideas.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6841324f2166cf000127b5c1/picture,"","","","","","","","","" +AVIANET,AVIANET,Cold,"",21,information technology & services,jan@pandaloop.de,http://www.avianet.aero,http://www.linkedin.com/company/avianet-aero,https://www.facebook.com/AVIANETGlobal/,https://twitter.com/AVIANETonline,110 Landsberger Strasse,Munich,Bavaria,Germany,80339,"110 Landsberger Strasse, Munich, Bavaria, Germany, 80339","software development, devops, network services, digitalization, cyber security, virtual events, virtual reality, augmented reality, ar, it professional services, industrial automation, cybersecurity, virtual event platform, 2d, 3d, vr, resource augmentation, webcasts, event services, iot solutions, website development, mobile app development, ot, operational efficiency, disruptive it services, metaverse platform, virtual event environment, ai-powered cybersecurity, industrial robotized solutions, industrial data privacy, incident response, digital event management, information technology and services, risk management, cloud solutions, it/ot cybersecurity, computer systems design and related services, network infrastructure, operational technology, metaverse technology, enterprise it, industrial robotics, ai-driven threat detection, digital transformation, data security, b2b, it consulting, predictive maintenance, cloud computing, threat detection, industrial iot, ot security, immersive virtual experiences, remote access, data analytics, network security, ai integration, security architecture, ot/it convergence security, digital strategy, application development, custom software development, real-time monitoring, services, devops services, managed services, cloud migration, government, consulting, information technology & services, computer & network security, mechanical or industrial engineering, events services, web development, enterprise software, enterprises, computer software, management consulting, marketing, marketing & advertising, app development, apps",'+49 89 55253378,"Amazon CloudFront, Outlook, Amazon Elastic Load Balancer, MailChimp SPF, Microsoft Office 365, Amazon AWS, Bootstrap Framework, Mobile Friendly, Google Tag Manager, Google Font API, Google Analytics, WordPress.org, Apache, Remote, AI","","","","","","",69c281681cba2c0001f0de08,7375,54151,"AVIANET GmbH is a global business technology company based in Munich, Germany. Founded in 2004 as a joint venture, it has become a leading digital IT and Operational Technology (OT) system integrator, operating in over 40 countries, including strong presences in Europe, Asia, the Middle East, and the USA. + +The company offers a wide range of services, including managed cybersecurity, IT infrastructure design, and industrial automation solutions. AVIANET specializes in the Industrial Internet of Things (IIoT), providing integrated ecosystems that enhance industrial operations. It also focuses on digital transformation through bespoke software development, digital AI integration, and resource augmentation. Additionally, AVIANET provides aviation-specific solutions, including cloud computing and data center services. The company is led by General Manager Arshad Mughal, who has extensive experience in the industry.",2002,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6844290e29c51b0001c4527c/picture,"","","","","","","","","" +FELLOWPRO AG,FELLOWPRO AG,Cold,"",33,information technology & services,jan@pandaloop.de,http://www.fellowpro.com,http://www.linkedin.com/company/fellowpro,https://www.facebook.com/fellowproag/,https://twitter.com/dajor,21 Anzinger Strasse,Poing,Bavaria,Germany,85586,"21 Anzinger Strasse, Poing, Bavaria, Germany, 85586","cloud, dokumentenverarbeitung, invoice processing, ki, ai, order processing, ocr, rechnungsverarbeitung, idp, data extraction, crm, social crm, enterprise software, software, information technology, software development, marketing automation, services, enterprise workflow automation, business process outsourcing, ai in business processes, user experience, iot, custom automation strategies, operational efficiency, data analytics, automation, ai text recognition, b2b, consulting, data integration, machine learning, physical and digital document analysis, enterprise solutions, ai data capture, automation workflows, information technology and services, seamless system integration, process control, crm integration, workflow automation, cloud-based solutions, document automation, digital transformation, cloud solutions, business intelligence, networked systems, ai-powered document processing, workflow optimization, computer systems design and related services, sales, enterprises, computer software, information technology & services, marketing & advertising, saas, ux, artificial intelligence, cloud computing, analytics",'+49 89 46133845,"Gmail, Google Apps, Outlook, Microsoft Office 365, Slack, Mobile Friendly, reCAPTCHA, Gravity Forms, WordPress.org, Remote, AI","","","","",14066000,"",69c281681cba2c0001f0de12,7375,54151,"FELLOWPRO AG is a digital transformation and business automation company located in Poing, Germany. With over 11 years of experience, FELLOWPRO has successfully completed more than 200 projects for clients in over 20 countries. The company specializes in designing and implementing projects that enhance digital evolution and operational efficiency across various industries. + +FELLOWPRO focuses on five key technology areas: Data Technology, Artificial Intelligence, Internet of Things (IoT), Document Automation, and Customer Relationship Management (CRM). Their services cover the entire project lifecycle, including strategic consultation, digital strategy development, custom solution design, mobile application development, and ongoing support. Their flagship product, DocBits, is an intelligent document processing solution that automates workflows for purchasing departments, streamlining the capture and processing of essential documents. + +FELLOWPRO values transparency and authenticity in its partnerships, believing that technology should drive strategic evolution in organizations.",2009,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69147768d05c3e0001269bf0/picture,"","","","","","","","","" +WBS IT-Service GmbH,WBS IT-Service,Cold,"",180,information technology & services,jan@pandaloop.de,http://www.wbs-it.de,http://www.linkedin.com/company/wbs-it-service-gmbh,"","",61 Friedrich-Ebert-Strasse,Leipzig,Saxony,Germany,04109,"61 Friedrich-Ebert-Strasse, Leipzig, Saxony, Germany, 04109","backup management, output management, security management, network management, storage management, data management, lifecycle management, virtualization, infrastructure management, kuenstliche intelligenz, it services & it consulting, it-transformation, mobility solutions, it-optimierung, künstliche intelligenz, projektmanagement, cybersecurity and data protection, it-beratung, it-services, backup und archivierung, government, it-compliance, herstellerunabhängige beratung, it-asset-management, it-zertifizierungen, containerisierung, cyberresilienz, it-infrastrukturplanung, it-infrastruktur, services, it-automatisierung, virtualisierung, computer software and services, it-asset-lifecycle, multi-cloud-strategie, automatisierte datenarchivierung, security operations center, netzwerkmanagement, it-security, cloud-migration, cloud services, it-lifecycle, managed services, business continuity management, it consulting and project management, dokumentenmanagement, it-management, disaster recovery, operational technology (ot), cybersecurity, b2b, it-architektur, data governance, cloud computing and hosting, it-support, monitoring, information technology and services, server und storage, consulting, computer systems design and related services, it-sicherheitsaudits, healthcare, finance, education, manufacturing, distribution, transportation, information technology & services, cloud computing, enterprise software, enterprises, computer software, health care, health, wellness & fitness, hospital & health care, financial services, mechanical or industrial engineering",'+49 341 982710,"Outlook, Google Tag Manager, Nginx, Mobile Friendly, PowerBI Tiles, LogRhythm SIEM, InstallShield, Micro, Symantec Altiris, Microsoft Advanced Group Policy Management, Siemens SIMATIC S7, Pipedrive, VMware vSphere, Tor, Microsoft Windows Server 2012, Microsoft Active Directory Federation Services, Microsoft Exchange Server 2003, Microsoft 365, Microsoft Azure Monitor, Wider Planet, Microsoft PowerShell, E-planning, Wowanalytics, Cisco VPN, React Router, Cisco Nexus Switches, Juniper Networks SRX-Series Firewalls, ISO+™, Pandora FMS, HP StorageWorks X9000, Microsoft Windows Server 2000, Azure Active Directory B2C, Azure Analysis Services, Barracuda Spam Firewall, Kaspersky Endpoint Security Cloud, HPE Disk Array Storage Systems, MITRE ATT&CK, Tint, Python","","","","",71000000,"",69c281681cba2c0001f0de13,7379,54151,"WBS IT-Service GmbH is a prominent IT service provider based in Central Germany, established in 1990. With over 180 employees across five locations, including its headquarters in Leipzig, the company specializes in comprehensive IT infrastructure solutions. WBS focuses on planning, creating, constructing, and operating IT systems that optimize business processes and ensure high availability. + +The company offers a wide range of services, including IT consulting, project management, installation, support, and maintenance. WBS emphasizes high-availability IT solutions and security, providing services such as disaster recovery, cloud services, cybersecurity, and data storage. They also offer modular Security Operations Center (SOC) services with 24/7 monitoring and penetration testing for vulnerability detection. WBS partners with major vendors like Veeam, Amazon, and HP, ensuring tailored solutions for various industries.",1990,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e4f603ed67570001d6f327/picture,"","","","","","","","","" +JobRouter AG,JobRouter AG,Cold,"",72,information technology & services,jan@pandaloop.de,http://www.jobrouter.com,http://www.linkedin.com/company/jobrouter-gmbh,https://facebook.com/jobrouter.workflow,https://twitter.com/jobrouter_en,24 Hans-Thoma-Strasse,Mannheim,Baden-Wuerttemberg,Germany,68163,"24 Hans-Thoma-Strasse, Mannheim, Baden-Wuerttemberg, Germany, 68163","archiving, business process automation bpm, digital transformation platform, integrated data management, agile document management, endtoend reconciliation, fast transformation of analogue processes, enterprise content management ecm, trade management, transaction reporting, intelligent document recognition, business process management bpm, low code digitization, intelligent invoice recognition, process automation, workflow management, document management dms, it services & it consulting, workflow automation, role-based access control, process monitoring, ai-driven data extraction, consulting, cloud integrations, services, api connectivity, sap integration, digital process automation, construction, information technology and services, sharepoint automation, audit-proof archiving, sage integration, data processing, real-time process monitoring, finance, customer relationship management, escalation management, distribution, b2b, sap, process lifecycle management, computer systems design and related services, software development, scalability, manufacturing, saas integration, saas, app modules, security standards, low-code process design, custom workflow development, system integration, process optimization, electronic signature, automation tools, financial services, business process management, process management, legal services, digital transformation, business process modeling, microsoft office, information technology & services, crm, sales, enterprise software, enterprises, computer software, mechanical or industrial engineering",'+49 621 426460,"Outlook, Microsoft Office 365, Hubspot, Slack, Apache, Mobile Friendly, Remote, AI","",Merger / Acquisition,0,2024-12-01,3000000,"",69c281681cba2c0001f0de14,7375,54151,"JobRouter AG is a software company based in Mannheim, Germany, founded in 1992. Originally established as Weber, Jäck & Partner GmbH, it has evolved into a global provider of low-code digital process automation platforms. The company was recently acquired by Aptean, enhancing its scalability and reach. JobRouter serves over 2,000 customers worldwide, offering a modular and customizable platform that supports various industries. + +The core product, JobRouter®, is a low-code digitalization platform designed to manage and automate complex business processes in real-time. Key features include workflow management, document management through JobArchive, and data integration with JobData. The platform also offers intelligent document recognition, archiving, and additional capabilities for process modeling and optimization. With a focus on full automation, JobRouter supports companies of all sizes in their digital transformation efforts.",2003,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/695a0bb5999ad70001732b72/picture,Main Capital Partners (main.nl),60f403f6ce494f000190cfba,"","","","","","","" +Cubefinity GmbH,Cubefinity,Cold,"",19,information technology & services,jan@pandaloop.de,http://www.cubefinity.de,http://www.linkedin.com/company/cubefinity,"","","",Straubing,Bavaria,Germany,94315,"Straubing, Bavaria, Germany, 94315","it services & it consulting, data visualization, it automation, enterprise service management, notification cube, it infrastructure optimization, power bi, workflow automation, iam addons, consulting, contract management, system integration, services, asset management, it asset lifecycle, connector integration, computer systems design and related services, custom add-ons development, license management, data quality management, business intelligence, it prozesse, it plattformen, it entwicklung, jira connector, data analytics, mobile asset app, process automation, asset lifecycle management, baramundi, confluence connector, compliance, it optimization, it solutions, power bi reports, b2b, azure devops connector, software development, it audit support, it infrastructure, custom software, it service management, it support services, information technology and services, power bi integration, it compliance, it beratung, digital transformation, data security, it support, automation, matrix42, it consulting, service desk, unified endpoint management, power bi data insights, endpoint management, information technology & services, analytics, computer & network security, management consulting",'+49 160 1608227,"Outlook, GoDaddy Hosting, Google Tag Manager, WordPress.org, Varnish, Mobile Friendly, YouTube, AI, Remote","","","","","","",69c281681cba2c0001f0de1d,7375,54151,"Die Cubefinity GmbH ist ein innovatives IT-Unternehmen, das sich auf Enterprise Service Management, Unified Endpoint Management und Business Intelligence spezialisiert hat. + +Wir bieten maßgeschneiderte Lösungen für unsere Kunden und setzen auf Qualität, Nachhaltigkeit und Innovation. + +Unser junges und dynamisches Team besteht aus hochqualifizierten Experten, die sich leidenschaftlich für ihre Arbeit engagieren und immer auf der Suche nach neuen Herausforderungen sind.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/672851086f116c0001acc47d/picture,"","","","","","","","","" +H&F Solutions GmbH,H&F Solutions,Cold,"",17,information technology & services,jan@pandaloop.de,http://www.hf-solutions.co,http://www.linkedin.com/company/h-f-solutions-gmbh,"","",11 Bei den Eichen,Bibertal,Bayern,Germany,89346,"11 Bei den Eichen, Bibertal, Bayern, Germany, 89346","erpbenchmarks, unternehmensvernetzung, wertorientierte beratung, proalpha, softwareentwicklung, strategieberatung, proalpha support, idi intelligent data interchange, erpsysteme, it support, management beratung, workshops, erp publiklationen, ariba, tagungen, ki, webkonfigurator, produktkonfigurator, fachbuecher, sap, vernetzungstechnologie, systemtechnik, erp beratung, releasewechsel, machine learning, startup, digitalisierung, vernetzung, intelligenter belegaustausch, belegtransfer, industrie 40, skalierung, software development, manual data entry reduction, cost reduction, smart document processing, ai in procurement, intelligent data interchange, interoperability with erp systems, ai-driven automation, digital supply chain, automated invoice processing, secure data transmission, compliance with standards, distribution, smart contract data exchange, manufacturing, b2b, rpa alternative, workflow optimization, secure cloud platform, edi alternative, automated document processing, cloud integration with sap, computer systems design and related services, b2b document automation, ai data exchange, digital transformation, digital invoice validation, real-time data transfer, automated compliance checks, cloud document automation, no it projects needed, contextual data exchange, intelligent data transfer, process automation, standardized e-invoicing, automated order processing, cloud-based document exchange, digital document exchange, pdf to erp integration, erp system compatibility, erp integration, invoice automation, services, sap, proalpha, navision integration, saas, artificial intelligence, information technology & services, mechanical or industrial engineering, computer software",'+49 795 12979980,"Rackspace MailGun, Outlook, Mobile Friendly, Apache, Google Tag Manager, WordPress.org, IoT, Remote","","","","","","",69c281681cba2c0001f0de0d,7375,54151,"H&F Solutions GmbH is a German deep-tech company based in Bibertal, specializing in intelligent networking software for automated document exchange between ERP systems. Founded in January 2018 by Tobias Hertfelder and Philipp Futterknecht, the company aims to enhance B2B document exchange by enabling up to 99% automation through its Intelligent Data Interchange (IDI) and AI-driven processing. + +The flagship product, dara®, is a cloud software solution that facilitates fully automated B2B document exchanges, such as orders and invoices, without the need for manual entry. It integrates seamlessly with various ERP systems, including SAP and Microsoft Dynamics. H&F Solutions also offers mobile ERP content apps, process optimization, and advanced technology solutions to improve efficiency and security in document management. The company serves a wide range of industries, focusing on digitalization, document management, and automation, and operates across Europe, Asia, and North America.",2018,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/684165a6f0ef7400018f42e2/picture,"","","","","","","","","" +kemb GmbH,kemb,Cold,"",12,management consulting,jan@pandaloop.de,http://www.wearekemb.com,http://www.linkedin.com/company/kemb-gmbh,"","","",Frankfurt,Hesse,Germany,"","Frankfurt, Hesse, Germany","finanzierung, brand, datenvisualisierung, snowflake, geschaeftsprozesse, online marketing, controlling, sea, data analytics, performance markeitng, content marketing, beratung, seo, dbt, performance marketing, bi, google ads, backops, lead generation, business intelligence, paid ads, ga4, powerbi, tableau, brand building, internet, ppc, metabase, fivetran, business consulting & services, etl processes, data pipeline automation, data quality assurance, data analytics in healthcare, data lineage tracking, data analytics in e-commerce, data consulting services, cloud data platforms, data analytics tools, business intelligence and analytics, cloud data warehousing, data governance frameworks, data migration, data strategy development, data modeling, data consulting, data security, information technology and services, data visualization dashboards, b2b, marketing and advertising, bi infrastructure, data management, google analytics 4, data analytics in finance, data transformation pipelines, data optimization, data lineage, data infrastructure, data integration, data transformation, data insights, data warehousing, data governance, data quality monitoring, data infrastructure modernization, data reporting, data warehouse optimization, data migration strategies, data strategy, services, data science, data pipelines, data management tools, data automation, reverse etl, bi reporting, data quality, data scalability, management consulting, data orchestration, management consulting services, power bi, consulting, data visualization, data-driven culture, data integration in cloud, data science for business, data-driven decisions, e-commerce, healthcare, finance, marketing & advertising, information technology & services, search marketing, marketing, sales, analytics, computer & network security, enterprise software, enterprises, computer software, consumer internet, consumers, health care, health, wellness & fitness, hospital & health care, financial services",'+49 69 77044500,"Route 53, Amazon SES, Gmail, Google Apps, Hubspot, Slack, Google Maps, DoubleClick, Google Font API, Google Maps (Non Paid Users), Hotjar, DoubleClick Conversion, WordPress.org, Nginx, Mobile Friendly, Google Analytics, Google Dynamic Remarketing, Google Tag Manager, Google Analytics Ecommerce Tracking, Paypal, Bootstrap Framework, KNIME, Sisense, Domo, Wordpress","","","","","","",69c281681cba2c0001f0de19,7375,54161,"We are kemb, a digital consultancy agency. Our mission is to support you and your team along the path to digital success. In our unique approach, we focus on providing our clients with the skills necessary to achieve these goals. + +We support companies in building data-driven strategies and processes to achieve their goals in digital marketing, business intelligence and digital transformation. Whether by defining your digital marketing strategy, managing your PPC campaign or setting up your BI reporting infrastructure from scratch, we will bring your digital efforts to the next level. + +Our clients range from small- to medium-sized companies covering both B2B and B2C areas. Our specialists include lead generation, eCommerce, PropTech, fashion and healthcare. + +Over the last couple of years, we worked with over 70 clients and not only optimized their digital performance but also transferred our knowledge to their teams and enabled them to pave their way for success on their own. + +Our offer in Digital Marketing: https://wearekemb.com/en/what-we-do/digital-marketing/ +Our offer in Business Intelligence: https://wearekemb.com/en/what-we-do/business-intelligence/ +Our offer in Digital Transformation: https://wearekemb.com/en/what-we-do/digital-transformation/ + +Imprint / Impressum: https://wearekemb.com/imprint/",2016,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68b670a12bed93000116abbf/picture,"","","","","","","","","" +MR.KNOW,MR.KNOW,Cold,"",17,information technology & services,jan@pandaloop.de,http://www.mrknow.ai,http://www.linkedin.com/company/mrknow,"","",1 Leopoldstrasse,Sankt Georgen im Schwarzwald,Baden-Wuerttemberg,Germany,78112,"1 Leopoldstrasse, Sankt Georgen im Schwarzwald, Baden-Wuerttemberg, Germany, 78112","solutions, digitalisierung, ki, digital assistant, business process management, bpm, prozessautomatisierung, rpa, bpmn, workflow, software development, application modernization, systemintegration, process simulation, ki-assistenz, prozessanalyse, middleware solutions, user interface design, fachkräftemangel bekämpfung, automatisierte formular- und dokumentenerstellung, computer systems design and related services, automatisierte berichte, prozess- und datenmanagement, verwaltungsprozesse digital, digital transformation, no-code-bpm, ki-gestützte compliance-überwachung, process optimization, individuelle prozessanpassung, nutzerfreundliche oberfläche, process board, middleware-integration, public administration, low-code-entwicklung für fachanwender, effizienzsteigerung, regelbasierte automatisierung, portale und schnittstellen, automatisierte gesetzes- und regulierungsanpassung, automatisierte workflows, cloud solutions, low-code-plattform, business intelligence, analytics tools, government, medienbruchfreie prozesse, ki-basierte prozessvorschläge, anwendungsmodernisierung, consulting, geschäftsprozessautomatisierung, digitale assistenten in verwaltung und polizei, bpmn 2.0, process documentation, individuelle prozessmodelle für behörden, automatisierte dokumentenerstellung, workflow-management, process modeling, risk management, prozessoptimierung, data integration, information technology & services, ki-gestützte lösungen, ai learning, manufacturing, b2b, digital worker, business rules engine, sicherheits- und compliance-tools, higher education, prozessmodernisierung ohne migration, digitale transformation, prozessdigitalisierung, workflow automation, digitale assistenten, automatisierte formularverwaltung, regulation compliance, services, process monitoring, prozessmanagement, prozessautomatisierung in öffentlichen verwaltungen, echtzeit-überwachung, medienbruchfreie digitalisierung, anwendungsentwicklung ohne programmierung, automatisierte entscheidungsfindung, kunden- und projektmanagement, portale für verwaltung, system erweiterung, process consulting, künstliche intelligenz in prozessen, prozessmodellierung, education, non-profit, cloud computing, enterprise software, enterprises, computer software, analytics, mechanical or industrial engineering, education management, nonprofit organization management",'+49 7724 8599010,"SendInBlue, Microsoft Office 365, Adobe Marketing Cloud, AI, Linkedin Marketing Solutions, Microsoft PowerPoint, AWS SDK for JavaScript, Javascript, Java EE, HTML5 Maker, CSS, Kotlin, Eclipse, Git, Jenkins, Kubernetes, Discourse","","","","","","",69c281681cba2c0001f0de1b,7375,54151,"MR.KNOW, operated by Inspire Technologies GmbH, is a German software company that specializes in intelligent process automation, digital workers, and no-code/low-code Business Process Management (BPM) solutions. Founded in 2008, the company builds on a legacy of BPM software development that began in 1996. Headquartered in St. Georgen, Germany, with additional offices in Leipzig and Cologne, MR.KNOW employs around 17-18 people and reported $6.4 million in revenue in 2024. + +The company offers a cloud-based platform that enables rapid process digitalization and automation without extensive programming. Their core platform features a BPM process engine, middleware for IT integration, and AI capabilities for analytics and content classification. MR.KNOW also provides AI-powered digital workers that assist in various tasks across sectors such as sales, administration, and compliance. Their solutions are designed to support BPMN 2.0 standards and include features like low-code configuration, unstructured data processing, and modern user interfaces. MR.KNOW also caters to specific industries, including energy suppliers, with tailored solutions for complaint management and billing.",2008,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6884814c4e06c600018d5e46/picture,"","","","","","","","","" +Xtentio Consulting GmbH,Xtentio Consulting,Cold,"",22,management consulting,jan@pandaloop.de,http://www.xtentio.com,http://www.linkedin.com/company/xtentio-gmbh,"",https://twitter.com/xtentio,11H Marktstrasse,Bielefeld,North Rhine-Westphalia,Germany,33602,"11H Marktstrasse, Bielefeld, North Rhine-Westphalia, Germany, 33602","programmmanagement, itberatung, cpq, safe, product information management, unternehmensberatung, projektmanagement, managementberatung, elearning, digital asset management, data services, digitale transformation, produktdatenmanagement, agile frameworks, enterprise architecture management, change management, projektleitung, crm, product lifecicle management, informationsmanagement, softwareauswahl, mdm, media asset management, ecommerce, information supply chain management, business consulting & services, project management, digitale distribution, content & channel management, management consulting, data & content management, services, digital vision engineering, software selection, software rollout, digital audits, digital roadmapping, consulting, process optimization, digital strategy, technology consulting, management consulting services, information technology and services, software development, data management, customer relationship management, b2b, digital transformation, software publishing, e-commerce, distribution, consumer products & retail, e-learning, internet, information technology & services, computer software, education, education management, sales, enterprise software, enterprises, consumer internet, consumers, productivity, marketing, marketing & advertising",'+49 551 7977430,"Outlook, Microsoft Office 365, CloudFlare Hosting, Hubspot, Slack, DoubleClick, WordPress.org, Google Dynamic Remarketing, Mobile Friendly, DoubleClick Conversion, Vimeo, MailChimp, Google Tag Manager, Jira, Kanbanize, Scrum Do, Microsoft Teams Rooms, Salesforce CRM Analytics","","","","","","",69c281681cba2c0001f0de05,8742,54161,"Xtentio Consulting GmbH is a strategy and implementation consultancy based in Bielefeld, Germany, specializing in Product Information Management (PIM) and Digital Asset Management (DAM). Since its establishment in 2009, Xtentio has focused on helping companies optimize their product data management. The firm operates independently from software vendors, ensuring unbiased consulting services tailored to client needs. + +Xtentio offers a wide range of services, including digital strategy development, consulting in PIM and DAM, implementation and project management, and data services. Their approach emphasizes efficient and scalable solutions to improve data management and enhance multichannel sales. The company also supports human resource development through coaching and training. With a team of around 29 professionals, Xtentio is recognized as a leading consultancy in the DACH market, dedicated to delivering projects on time and within budget.",2009,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/679a1b79e7aa960001829cdd/picture,"","","","","","","","","" +esentri - Part of Gofore Group,esentri,Cold,"",86,information technology & services,jan@pandaloop.de,http://www.esentri.com,http://www.linkedin.com/company/esentri,"",https://twitter.com/esentri,128 Pforzheimer Strasse,Ettlingen,Baden-Wuerttemberg,Germany,76275,"128 Pforzheimer Strasse, Ettlingen, Baden-Wuerttemberg, Germany, 76275","innovation, ki, digitalisierung, kuenstliche intelligenz, csrd, data science, new work, esg, software entwicklung, nachhaltigkeit, it services & it consulting, organisationsentwicklung, consulting, management consulting, net zero, sustainability strategy, legacy modernization, cloud migration, services, circular economy, software publishing, generative ai, organizational development, iot, management consulting services, ai readiness check, green software, data platforms, cloud computing, digital products & applications, data analytics, cloud services, digital twin, business innovation, strategie & beratung, digital strategy, b2b, big data, connectivity & integration, industrial analytics & iot, customer identity management, corporate carbon footprint, eu ai act, esg management, twin transformation, predictive maintenance, ai agenten industrie, information technology and services, artificial intelligence, csrd-reporting, smart energy management, machine learning, eudr-compliance, digital transformation, künstliche intelligenz, data pipeline machine learning, esg-reporting, analytics & reporting, nachhaltigkeitsberichterstattung, ai, information technology & services, enterprise software, enterprises, computer software, marketing, marketing & advertising",'+49 724 3354900,"Salesforce, Route 53, Gmail, Google Apps, Microsoft Office 365, Atlassian Cloud, Create React App, Sophos, Hubspot, Slack, Vimeo, Hotjar, Cedexis Radar, Google Tag Manager, Adobe Media Optimizer, YouTube, Linkedin Marketing Solutions, Mobile Friendly, WordPress.org, Nginx, Node.js, Android, Docker, Snowflake, Remote, AI, AWS SDK for JavaScript, Mode","","","","","","",69c281681cba2c0001f0de0f,8748,54161,"esentri AG is a German consulting firm that specializes in digital transformation. The company supports businesses in reshaping their value chains through digital, sustainable, and human-centered approaches, particularly with its Twin Transformation strategy. This holistic process combines digital and sustainable changes using technologies such as AI, machine learning, IoT, and Big Data analytics. + +Founded to reimagine the future beyond simple modernization, esentri emphasizes digital thinking and integrates people at the core of its strategy. The company operates in a self-organized manner, promoting autonomous actions and dynamic leadership roles. esentri has achieved B Corporation status for meeting high social and environmental standards and is recognized as Germany's first Fair Pay Developer, reflecting its commitment to fairness in pay. The firm also received 2nd place in the Modern Work Award 2022 for its innovative work culture. + +esentri offers strategy and consulting services for digitalization, including the development of digital products and applications, connectivity and integration of systems, and analytics and reporting for data-driven decision-making. These services are designed to support the Twin Transformation, helping clients create efficient and future-proof business models.",2009,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69a530f037eb150001d12ea3/picture,Gofore (gofore.com),54a11bda69702d8ed44b6200,"","","","","","","" +igniti GmbH,igniti,Cold,"",43,information technology & services,jan@pandaloop.de,http://www.igniti.de,http://www.linkedin.com/company/igniti-gmbh,"",https://twitter.com/igniti_gmbh,1 Leutragraben,Jena,Thueringen,Germany,07743,"1 Leutragraben, Jena, Thueringen, Germany, 07743","ecommerce, mobilecommerce, consulting, projektmanagement, softwareentwicklung, qualitaetssicherung, performanceanalyse, integration von drittsystemen, usability, onlinemarketing, implementierung, strategie, konzeption, design, user experience, magento, pim, usabilityoptimierung, shopware, akeneo, qt, interaktive frontends, sensorikfirmware, backendentwicklungen, shopmanagement, ai-powered personalization, cloud computing, enterprise e-commerce, continuous digital evolution, customer data platforms, headless cms, operational efficiency, cloud-native applications, d2c, experience design, data migration, digital experience, software engineering, customer engagement, microservices, cloud data platforms, digital strategy, customer experience, b2b, e-commerce, ai & machine learning, computer systems design and related services, system integration, business intelligence, composable architecture, crm & marketing automation, software development, data analytics, search & personalization, digital transformation, ai-driven insights, cloud infrastructure, mach architecture, custom software development, cloud technology, e-commerce platforms, machine learning, business modernization, cloud data warehousing, digital marketing, pre-architecting solutions, managed services, ai & data analytics, data security, microservices-based platforms, cloud platforms, b2c, brand strategy, ai solutions, strategy & consulting, composable commerce, content management systems, content management, retail, headless commerce, mach alliance, digital commerce solutions, information technology and services, transactional technologies, data & insights, services, distribution, consumer products & retail, transportation & logistics, consumer internet, consumers, internet, information technology & services, ux, enterprise software, enterprises, computer software, marketing, marketing & advertising, analytics, internet infrastructure, artificial intelligence, computer & network security",'+49 364 1327720,"Microsoft Office 365, Atlassian Cloud, Remote","","","","",6000000,"",69c281681cba2c0001f0de15,7375,54151,"igniti GmbH is a full-service digital agency based in Jena, Thüringen, Germany, founded in 2007. The company specializes in developing innovative technical solutions for e-commerce, high-tech applications, and digitalization projects. With a team of approximately 37-60 employees, igniti reported an annual revenue of $16.6 million in 2024. The agency focuses on strategic consulting, project management, and the technical implementation of digital projects, ensuring scalability and performance. + +The services offered by igniti encompass the entire digital project lifecycle. This includes strategic consulting, customized solution creation, and technical implementation using established systems like Magento, Shopware, and Spryker. They also provide support for shop and marketplace management, online marketing, and the development of high-performance backend applications and interactive frontends. Additionally, igniti develops cross-platform applications using C# and C++ for various industrial sectors. Recently, the company was acquired by Mindcurv, enhancing its capabilities and expanding its reach within the digital ecosystem.",2007,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66baa4b0d1a0ac00015ee6f8/picture,"","","","","","","","","" +Kilum Automation & Service GmbH,Kilum Automation & Service,Cold,"",11,machinery,jan@pandaloop.de,http://www.kilum.de,http://www.linkedin.com/company/kilum,"","",43 Steinkirchring,Villingen-Schwenningen,Baden-Wuerttemberg,Germany,78056,"43 Steinkirchring, Villingen-Schwenningen, Baden-Wuerttemberg, Germany, 78056","schraubtechnik, siemens steuerungen, kollaborativer roboter, schaltschrankbau, fanuc robotik, dguv v3 pruefungen, wago steuerung, labview, omron steuerungen, kuka robotik, eplan, automation machinery manufacturing, industrie it, industrial automation, automatisierung in der pharmazie, visionssysteme, manufacturing, qualitätskontrolle, systemintegration, consulting, project management, wartungsmanagement, system integration, automatisierungslösungen, maßgeschneiderte automatisierung, services, retrofit von anlagen, kostenreduktion, maßgeschneiderte lösungen, automatisierung für luft- und raumfahrt, robotik, prozessleittechnik, maschinendatenerfassung, effizienzsteigerung, fertigungsprozesse, datenanalyse, cloud computing, mes, operational efficiency, distribution, mes-systeme, industrie 4.0, zykluszeitverkürzung, softwareentwicklung, vision-basierte qualitätssicherung, iot-technologien, schaltschrankautomatisierung, robotics, b2b, electrical engineering, industrial machinery manufacturing, software development, bildverarbeitung, produktivitätssteigerung, cloud-integration, predictive maintenance, industrie 4.0 implementierung, automatisierte inspektion, roboterintegration, automatisierung, automation, künstliche intelligenz, effizienz in der serienfertigung, sicherheitsoptimierung in der produktion, sicherheitssteigerung, elektrokonstruktion, customer relationship management, durchsatzsteigerung, mechanical or industrial engineering, productivity, enterprise software, enterprises, computer software, information technology & services, crm, sales",'+49 7720 810122,"Outlook, Microsoft Office 365, WordPress.org, Google Font API, Mobile Friendly, Vimeo, Apache, Remote","","","","","","",69c281681cba2c0001f0de1c,3589,33324,"Herzlich willkommen bei Kilum GmbH, Ihrem führenden Partner im Bereich der Automatisierung. Mit über 28 Jahren Erfahrung sind wir Ihr erfahrener Experte für anspruchsvolle Lösungen zur Automatisierung von Produktionsanlagen. Unser Fokus liegt auf maßgeschneiderten Lösungen, um die Effizienz Ihrer Produktionslinien zu steigern und Ihre Wettbewerbsfähigkeit zu stärken.",1995,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6700ef20c8739c0001030b9b/picture,"","","","","","","","","" +AFFINITY,AFFINITY,Cold,"",36,information technology & services,jan@pandaloop.de,http://www.aequitas-affinity.de,http://www.linkedin.com/company/aequitas-affinity,"","",29 Christoph-Probst-Weg,Hamburg,Hamburg,Germany,20251,"29 Christoph-Probst-Weg, Hamburg, Hamburg, Germany, 20251","project turnarounds, demand management, digitalisation, change management, programme turnarounds, access & identity management, transition transformation, data centre, programme management, programme management as a service, digitisation, information technologie, strategy execution, it management consulting, solution delivery, interim management, strategic transformation, project management as a service, project managment, portfolio management, cloud computing, digitalisierung, strategy modelling, platform management, project management, it services & it consulting, b2b, information technology and services, cloud services, it strategie, technologie, consulting, process optimization, prozess-optimierung, digital transformation, operational efficiency, it automatisierung, data management, machine learning, risk assessment, it strategieentwicklung, it infrastructure, data analytics, technology, it prozessmanagement, it ressourcenmanagement, it transformation, it plattformmanagement, transformation, it management, it projektmanagement, it architektur, it compliance, it management beratung, it sicherheitsstrategie, business intelligence, services, it cloud strategie, it sicherheitsarchitektur, strategy, computer systems design and related services, it infrastruktur, program management, enterprise software, enterprises, computer software, information technology & services, productivity, artificial intelligence, analytics",'+49 40 300838800,"Outlook, Microsoft Office 365, WordPress.org, Apache, Mobile Friendly, Google Tag Manager, Adobe Media Optimizer, Vimeo, Cedexis Radar, Remote, AI","","","","","","",69c28160196b9000017ed6b1,7379,54151,"Aequitas Affinity GmbH, operating as AFFINITY, is an IT services and consulting firm based in Hamburg, founded in 2013. The company specializes in IT management, strategy, transformation, and technology delivery. As part of the Aequitas Group, it leverages over 20 years of experience to support clients across various industry sectors. With a team of approximately 29-32 employees, AFFINITY reported annual revenue of $17.7 million in 2024. + +AFFINITY provides a range of services, including IT management consulting, project and program management, change management, and solution architecture. The firm focuses on areas such as hybrid data centers, managed workplaces, regulatory compliance, and technical consultancy. Additionally, it is involved in the wholesale of computers, peripheral equipment, and software, as well as trading and leasing systems in data processing environments.",2013,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6763d004f45c030001e019a9/picture,"","","","","","","","","" +Goserver GmbH,Goserver,Cold,"",30,information technology & services,jan@pandaloop.de,http://www.goserver.de,http://www.linkedin.com/company/goserver,"","",72 Marsstrasse,Munich,Bavaria,Germany,80335,"72 Marsstrasse, Munich, Bavaria, Germany, 80335","digitale transformation, security, endpoints, cloud services, modern workplace, it projekte, dell partner, betriebsunterstuetzung, networking, microsoft 365 azure, server storage hci, it services & it consulting, network management, multi secured endpoint, storage solutions, computer systems design and related services, it projektoptimierung, it consulting, it procurement, procurement, vulnerability & patch management, firewall systems, vulnerability management, quality assurance, data security, information technology and services, b2b, security platform knowbe4, partner network, endpoint protection, app security, cybersecurity, it services, perimeter / gateways, hybrid cloud solutions, ai-gestützte email-security, cloud security, security solutions, network planning, barracuda cloudgen access, security incident response, storage, cloud infrastructure, it solutions, services, it projects, xdr / edr, app zugriff statt vpn, cybersecurity awareness, zero trust network access, siem, security awareness training, infrastruktur, endpoint security, it security, system integration, server / hci, consulting, mimecast email security, support & maintenance, multi factor authentication, cloud computing, enterprise software, enterprises, computer software, information technology & services, management consulting, computer & network security, internet infrastructure, internet",'+49 89 54042500,"Mimecast, Microsoft Office 365, Apache, Mobile Friendly, Remote","","","","","","",69c28160196b9000017ed6af,7379,54151,"Worauf legen Sie bei Ihrem IT-Dienstleister den größten Wert Kosteneffizienz, Verlässlichkeit Ihrer Systeme oder eine verständliche Beratung Wir sind der Meinung, alle Bereiche müssen stimmen. Denn nur so können wir Sie als Kunden umfassend zufriedenstellen. Und um Kosten und Komfort für Sie zu optimieren, bieten wir Ihnen sämtliche Produkte und Dienstleistungen aus einer Hand auf Wunsch auch über den üblichen Service hinaus.",2002,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6910100314f64b0001655ac1/picture,"","","","","","","","","" +Network Concept GmbH,Network Concept,Cold,"",16,information technology & services,jan@pandaloop.de,http://www.networkconcept.info,http://www.linkedin.com/company/network-concept-gmbh,"","",6 Gottlieb-Daimler-Strasse,Lich,Hesse,Germany,35423,"6 Gottlieb-Daimler-Strasse, Lich, Hesse, Germany, 35423","erploesungen, sage 100, imsloesungen, prozessberatung, xrmloesungen, cas genesisworld, software development, skalierbarkeit, schulungsangebote, schnittstellenentwicklung, automatisierung, unternehmensorganisation, ims, unternehmensdokumentation, it-services, dokumentation, partnernetzwerk, workshops, partnerunternehmen, veranstaltungen, schulungen, beratung, api-integration, softwareentwicklung, software-updates, schnittstellen, softwareanpassung, crm-optimierung, datensicherheit, effizientes beziehungsmanagement, information technology and services, kundensupport, datenschutz, support-tickets, implementierung, kundenmeinungen, support-tools, on-premise-lösungen, cloud-lösungen, geschäftsprozessoptimierung, digitalisierung, support, unternehmensprozesse optimieren, arbeitsablaufgestaltung, nachhaltige dokumentation, consulting, maßgeschneiderte software, business software, crm, geschäftsprozesse, webinare, kundenbindung stärken, business intelligence, kundenreferenzen, business consulting, it-beratung, mobile lösungen, unternehmensberatung, support-services, modulare software, benutzerfreundlichkeit, vertriebslösungen, unternehmensentwicklung, unternehmenssoftware, benutzerverwaltung, software-integration, computer systems design and related services, datenmigration, softwarelösungen, erp, kundenportal, b2b, projektbegleitung, kundenbindung, branchenlösungen, marketing automation, betreuung, kundenreferenzberichte, systemintegration, vertriebsautomatisierung, computer software, services, projektmanagement, kundenmanagement, sicherheitskonzepte, non-profit, distribution, information technology & services, sales, enterprise software, enterprises, analytics, management consulting, marketing & advertising, saas, nonprofit organization management",'+49 64 04695990,"Outlook, Nginx, reCAPTCHA, WordPress.org, Mobile Friendly","","","","","","",69c28160196b9000017ed6b4,7375,54151,"Wir bringen Ihr Unternehmen digital voran. Wir finden in Zusammenarbeit mit Ihnen die optimale CRM- und ERP-Lösung für Ihr Unternehmen und verbinden die Systeme zu einem großen Ganzen: Informationen zentral an einem Ort, mehr Transparenz, mehr Zeit für das Wesentliche, zufriedenere Kunden. + +Seit 1993 sind wir für unsere Kunden im Einsatz und unterstützen ihren unternehmerischen Erfolg mit maßgeschneiderten Softwarekonzepten. +Dabei haben wir uns im Laufe der Zeit als überregionaler Spezialist für CRM-, ERP- und IMS-Anwendungen etabliert. Wir arbeiten dazu mit renommierten Partnern zusammen: https://www.networkconcept.info/partner/ + +Was können Sie von uns erwarten? +- Das richtige Konzept für Ihr Unternehmen +- Projekteinführung mit System +- Umfassende Beratung und Betreuung +- Direkte Ansprechpartner +- Umsetzung spezieller Anforderungen + +Erfahren Sie mehr über uns und unsere Leistungen auf unserer Website: +https://www.networkconcept.de + +Unsere Referenzen finden Sie unter https://www.networkconcept.info/referenzen/ + +Sie möchten sich genauer zu CRM- und ERP-Lösungen informieren? Dann kontaktieren Sie uns! Wir freuen uns auf Sie.",1993,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6752795625cf310001c0b780/picture,"","","","","","","","","" +DMS Daten Management Service GmbH,DMS Daten Management Service,Cold,"",66,utilities,jan@pandaloop.de,http://www.dms-gruppe.de,http://www.linkedin.com/company/dms-gruppe,https://de-de.facebook.com/DMSGruppe,"","",Gera,Thuringia,Germany,"","Gera, Thuringia, Germany","management consulting services, process automation, schulungen energiewirtschaft, zukunftssichere energielösungen, it and automation energy, fachkräftesupport energiewirtschaft, automated dispute management, intelligent process automation, sap s/4hana schulungen, automated meter reading, energy process consulting, interim solutions energy, hybrid services energy, employee training energy, automated billing energy, digitalisierung energiewirtschaft, customer service energy, digital energy solutions, ki in energy processes, hybride services energiewirtschaft, automated workflows energy, energy market expertise, hybride automatisierungslösungen, smart process solutions, energy process digitalization, automatisierung mit ki und rpa, hyperautomation energy, b2b, automated customer dialogs, regulatory compliance energy, energy data management, energieversorger outsourcing, utilities, information technology, sap s/4hana transition, effizienzsteigerung energieunternehmen, energy sector consulting, process consulting energy, digitalization strategy energy, rpa solutions energy, energiebranche innovationen, energy, services, prozessoptimierung energiebranche, kundenservice energiewirtschaft, consulting, outsourcing energy industry, energy market communication, bpo in der energiewirtschaft, automatisierte backoffice-prozesse, digital transformation energy, process optimization energy, prozessautomatisierung energie, education, distribution, energy & utilities",'+49 365 552200,"MailJet, Outlook, WordPress.org, Apache, Bootstrap Framework, Mobile Friendly, reCAPTCHA, jPlayer, Hotjar, Remote, Microsoft Windows Server 2012, Microsoft Office, Secured MVC Forum on Windows 2012 R2","","","","","","",69c28160196b9000017ed6c2,7389,54161,"Die DMS Gruppe ist mit über 950 Mitarbeitern einer der größten unabhängigen Dienstleister in der Versorgungswirtschaft. + +Die Unternehmensgruppe besteht aus 4 Einzelunternehmen: + +DMS Energie: unterstützt Sie operativ und strategisch in den Bereichen Kundenservice und Prozessbearbeitung. Vom manuellen Handling über intelligente Steuerung bis zur Automationsprogrammierung sind wir Ihre Spezialisten. Die DMS Hybrid Services vereinen das beste aus 2 Welten aus 1 Hand. + +PMD Experten: sind Ihre strategischen und umsetzenden Berater in den Disziplinen Projekt-, Prozess-, Qualitäts-, Test- und Interims-Management + +DMS Akademie: ist Ihr Partner für Weiterbildung bei Fachthemen der Energiewirtschaft, Kommunikationstraining, Methodenkompetenz und relevanten Zukunftsthemen + +DMS Romania: ergänzt als operativer Prozessdienstleister unser Standortportfolio","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6884ab6f4349fd0001af2678/picture,"","","","","","","","","" +NEA X,NEA X,Cold,"",17,information technology & services,jan@pandaloop.de,http://www.nea-x.de,http://www.linkedin.com/company/nea-x,"","",3 Am Kraftversorgungsturm,Aachen,North Rhine-Westphalia,Germany,52070,"3 Am Kraftversorgungsturm, Aachen, North Rhine-Westphalia, Germany, 52070","it services & it consulting, enterprise software, system analysis, technology services, digital business solutions, production support, system integration, information technology and services, cost control, cost control systems, b2b, digital transformation in industry, digital transformation, enterprise cloud services, data management, online services, manufacturing, business intelligence, services, engineering, cloud solutions, technology consulting, consulting, cloud computing, cloud technology, software development, cloud solutions for manufacturing, computer systems design and related services, predictive analytics, cloud services, operational efficiency, system integration for production, cost management, microsoft partner, information technology & services, enterprises, computer software, mechanical or industrial engineering, analytics, management consulting","","Outlook, Microsoft Azure Hosting, Mobile Friendly, Android, AI","","","","","","",69c28160196b9000017ed6b6,7375,54151,"NEA X hat als digitale Einheit der NEUMAN & ESSER Group langjähriges Branchen-Know-How im Business des Maschinen- und Anlagenbaus. Uns liegt die Befähigung des klassischen Maschinenbaus mit digitalen Zukunfts-technologien in der Cloud am Herzen. + +Daher stehen bei NEA X integrierte digitale Prozesse und vor allem die Unterstützung der Anwender mit digitaler Intelligenz im Fokus. + +Seit der ersten Stunde der Cloud-Zeitrechnung bieten wir als Microsoft-Partner praxiserprobte digitale Lösungen an - basierend auf Online-Diensten für Unternehmen mit ausgeprägter Fortschrittskultur.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6752e6623207ff000162d2b3/picture,"","","","","","","","","" +Pickert,Pickert,Cold,"",13,information technology & services,jan@pandaloop.de,http://www.pickert.de,http://www.linkedin.com/company/pickertgmbh,https://facebook.com/pickertgmbh,https://twitter.com/pickertgmbh,10 Haendelstrasse,Pfinztal,Baden-Wuerttemberg,Germany,76327,"10 Haendelstrasse, Pfinztal, Baden-Wuerttemberg, Germany, 76327","intelligente prozessautomatisierung, makecom, prozessoptimierung, automatisierung, business process automation, kiagenten, it services & it consulting, workflow-optimierung, predictive analytics, geschäftsprozesse, podcast automation, computer systems design and related services, financial services, tool-integration, ki-reifegradanalyse, effizienzsteigerung, ki-agenten, automatisierte finanzbuchhaltung, ki-gestützte kundenkommunikation, ki-gestützte datenintegration, automatisierte social media posts, data management, automatisierte prozesse, b2b, automatisierung as a service, ki-podcast, automatisiertes marketing, software development, prozessautomatisierung, no-code-automatisierung, business services, content marketing, ki-gestützte automatisierung, ki-lösungen, information technology and services, make.com, content-marketing automation, digital transformation, finanzmanagement automation, ki in businessprozessen, ki-basierte workflow-optimierung, prozessanalyse, ki-gestützte content-erstellung, information technology & services, ki-gestützte marketingkampagnen, saas, finance, distribution, enterprise software, enterprises, computer software, marketing & advertising",'+49 721 66520,"Outlook, Microsoft Office 365, Gmail, Google Apps, Nginx, Google Font API, Mobile Friendly, YouTube, Apache, WordPress.org, Hubspot","","","","","","",69c28160196b9000017ed6b9,7375,54151,"In recent years, we all experience great changes in the world of work. Never standing still and constantly evolving is necessary for everyone. + +Classic business models are being overtaken by digitalization at the latest - this is a huge challenge. Initiating such changes feels uncomfortable for many people at first, because stepping into uncertainty usually seems more uncertain than sticking with the tried and tested status quo. +Pickert has evolved to where we are today precisely out of this circumstance. We have been at home in software since 1981 and are known to many as a medium-sized family business based in Berghausen, near Karlsruhe. At the beginning of 2021, we restructured ourselves and now offer services for all companies within our group of companies, but also for external customers.",1981,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e37d9adcb6a000011b9860/picture,"","","","","","","","","" +pco GmbH & Co. KG,pco GmbH & Co. KG,Cold,"",160,information technology & services,jan@pandaloop.de,http://www.pco-online.de,http://www.linkedin.com/company/pco-gmbh-&-co.-kg,"","",8 Albert-Einstein-Strasse,Osnabrueck,Niedersachsen,Germany,49076,"8 Albert-Einstein-Strasse, Osnabrueck, Niedersachsen, Germany, 49076","modern infrastructure, itconsulting, software defined infrastructure, digitalisierung, managed services, cybersecurity, digital workplace, cloud, itberatung, itsecurity, it services & it consulting, it-assessment, it-performance, managed security services, it-sicherheitsarchitektur für healthcare, automatisierte notfall- und krisenmanagement, it-support, it-infrastrukturmanagement, it-sicherheitsaudit, it-beratung, it-modernisierung, automatisierte sicherheitsdokumentation, it-notfallmanagement, automatisierte sicherheitsüberwachung, it-audit, automatisierung & industrie 4.0, workshops, it consulting and support, it-compliance-management, artificial intelligence, automatisierte sicherheitsrichtlinien, it-implementierung, it-workshops, software development and implementation, datenschutz, it-projektmanagement, hybrid cloud, services, it-upgrade, it-sicherheitszertifizierung, it-sicherheitskonzept, it-compliance, cloud computing, cybersecurity services, it-risikoanalyse, it-sicherheitslösungen, compliance, cyber resilience in produktion, b2b, nis2-compliance, nis2, it-management, software development, it-architektur, iso 27001 zertifizierung, datenschutzberatung, information technology and services, data security, automatisierte schwachstellenanalyse, automatisierte datenanalyse, it-optimierung, it-sicherheitsstrategie, cloud computing services, computer and network security, cloud-lösungen, kritische infrastrukturen (kritis), consulting, it-sicherheitsberatung, computer systems design and related services, it-sicherheitskonzepte, automatisierte sicherheitsüberwachung in der cloud, it-security, it-service-management, automatisierte bedrohungserkennung, cloud & hybrid cloud, it-infrastruktur, cyber security, cyber resilience, automatisierte penetrationstests, tisax-zertifizierung, network security, automobilindustrie tisax, it-sicherheitsarchitektur, it-transformation, datenschutz in der automobilbranche, cyber security für kritische infrastrukturen, management consulting, business process services, automatisierte sicherheitszertifizierung, it-sicherheit, iso 27001, it-risikomanagement, tisax, it-strategie, datenschutzmanagement, cloud services, change management, it-optimierungskonzepte, it-notfallplanung, automatisierte compliance-checks, it-sicherheitsmanagement, data management and analytics, telecommunications, it-beratung mittelstand, automatisierte risikoanalyse, security operations center, it-organisation, healthcare, finance, education, legal, manufacturing, distribution, transportation & logistics, energy & utilities, construction & real estate, information technology & services, enterprise software, enterprises, computer software, computer & network security, health care, health, wellness & fitness, hospital & health care, financial services, mechanical or industrial engineering",'+49 541 6051500,"Outlook, Autotask, Microsoft Office 365, Hubspot, Google Tag Manager, Google Maps, Apache, Mobile Friendly, Google Maps (Non Paid Users)","","","","",30000000,"",69c28160196b9000017ed6ba,7371,54151,"pco GmbH & Co. KG is an IT consulting and system house located in Osnabrück, Germany. The company specializes in providing tailored IT solutions for mid-sized businesses, focusing on areas such as strategy, security, data analytics, AI, managed services, and compliance. pco emphasizes the importance of IT in optimizing business processes and ensuring robust, future-proof infrastructures. + +Founded to deliver comprehensive IT services, pco positions itself as a reliable partner for mid-sized enterprises. The company offers proactive IT management and high-quality services through long-term partnerships with leading manufacturers. Key offerings include custom AI solutions for data analysis, IT strategy and compliance consulting, managed services for IT systems, and Desktop as a Service (DaaS) solutions. pco is committed to security and compliance, holding certifications like ISO/IEC 27001 and being recognized as an APT-Response service provider, which supports critical infrastructure operators in defending against advanced threats.",1984,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6843ecffe2c4e70001291b2f/picture,"","","","","","","","","" +SKS Solutions GmbH | Part of Accenture,SKS Solutions,Cold,"",19,information technology & services,jan@pandaloop.de,http://www.skssolutions.de,"","","",56 Wetzlarer Strasse,Potsdam,Brandenburg,Germany,14482,"56 Wetzlarer Strasse, Potsdam, Brandenburg, Germany, 14482","vor und machbarkeitsstudien, fach und prozessberatung, projekt und testmanagement, itarchitekturmanagement, data governance, methoden und branchenkompetenz, application management, sap service partner, analytical banking, core banking, meldewesenfabrik, 1st, 2nd, 3rdlevelsupport, itspezialist, fullserviceanbieter fuer banken und finanzdienstleister, sap releasewechsel, it services & it consulting, sustainable it, digital transformation, information technology and services, generative ai applications, platform modernization, b2b, technology integration, services, consulting, digital strategy, cloud migration, software and platforms, technology consulting, innovation enablement, outsourcing solutions, industry x digital engineering, strategy consulting, ai and data analytics, cloud services, generative ai, edge computing for business, cloud computing, industry-specific solutions, enterprise software, it infrastructure, computer systems design and related services, ai-enabled customer support, management consulting, data-driven decision making, cybersecurity resilience, customer experience, business agility, ai-powered business solutions, government, data security, business process optimization, cybersecurity, managed services, automation, business consulting, sustainable growth, financial services, saas, healthcare, finance, information technology & services, marketing, marketing & advertising, strategic consulting, enterprises, computer software, computer & network security, health care, health, wellness & fitness, hospital & health care","","OneTrust, SendInBlue","","","","","","",69c28160196b9000017ed6bb,8742,54161,"Als SKS Solutions GmbH - vormals ib-bank-systems GmbH – betreuen wir als innovatives IT-Beratungshaus und SAP-Service-Partner seit dem Jahr 2002 erfolgreich und zuverlässig die IT-Anwendungssysteme von Kreditinstituten. Unsere Berater verfügen über vielschichtige Ausbildungshintergründe, aussagekräftige Zertifizierungen und mehrjährige Berufserfahrung. + +Seit September 2008 gehören wir als 100%-Tochter zur SKS Group. Um die Zugehörigkeit zur SKS Group und das gemeinsame Commitment in die erfolgreiche Zukunft unseres Unternehmens zu unterstreichen, firmieren wir seit Juni 2020 als SKS Solutions GmbH. +Im Februar 2023 wurde die SKS Group zu einem Teil der Accenture Technology. Gemeinsame erweitern wir damit unsere Kompetenzen zur Unterstützung der Banken- und Finanzdienstleister. + +Unser Ziel ist es, uns wesentlich stärker auf Full-Service-Angebote für Banken und Finanzdienstleister zu fokussieren sowie aus einer Hand die Kombination aus Fachexpertise, IT-Betrieb und IT-Plattform anzubieten, um unsere Kunden nachhaltig zu unterstützen. + +Wenn Sie neugierig geworden sind, zögern Sie nicht, sich über aktuelle Stellenangebote unseres Unternehmens zu informieren. + +Die SKS Solutions sucht fortlaufend versierte Mitarbeiterinnen und Mitarbeiter. Wir bieten Ihnen eine anspruchsvolle Beratungsaufgabe, in der Sie Ihre Kreativität, Ihr Engagement sowie Ihre Professionalität unter Beweis stellen können. Sie finden bei uns eine Firmenkultur, die geprägt ist von einer kollegialen, teamorientierten Atmosphäre, die motiviert und fördert. + +Informieren Sie sich jetzt: + +Karriereportal - Willkommen bei der SKS Group | SKS Karriereportal (sks-group.eu) + +Impressum: +SKS Solutions GmbH +Wetzlarer Straße 56 +14482 Potsdam +Tel.: 0331 / 7041 0 +E-Mail: solutions@sks-group.eu +Geschäftsführer Dirk Appelhoff | Peter David | Robert Gerstenberger | Markus Hamprecht | Thomas Herz +Registergericht: Amtsgericht Potsdam +Registernummer: HRB15173P +Umsatzsteueridentifikations-Nr. gemäß § 27 UStG: DE216659028",2002,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/655e98d6de180100019ab5dc/picture,"","","","","","","","","" +STI-Consulting,STI-Consulting,Cold,"",110,information technology & services,jan@pandaloop.de,http://www.sti-consulting.com,http://www.linkedin.com/company/sticonsulting,https://www.facebook.com/profile.php,"",22 Ainmillerstrasse,Munich,Bavaria,Germany,80801,"22 Ainmillerstrasse, Munich, Bavaria, Germany, 80801","resource management, product innovation, ideation, agile, it, business analysis, crm, artificial intelligence, process optimisation, innovation management, blockchain, business intelligence, business consulting, automation, datawarehouse, systematic inventive thinking, problem solving, business model innovation, digitalisation, innovation, software, management consulting, scrum, design thinking, it services & it consulting, sales, enterprise software, enterprises, computer software, information technology & services, b2b, analytics",'+49 89 45205420,"Outlook, Microsoft Office 365, Slack, Linkedin Marketing Solutions, WordPress.org, Adobe Media Optimizer, Cedexis Radar, Apache, Nginx, Gravity Forms, Mobile Friendly, Vimeo, Google Tag Manager, Remote, AI, Salesforce CRM Analytics, Excel4Apps, Microsoft PowerPoint, GoToAssist (FASTchat), Oracle Analytics Cloud, Microsoft Azure Monitor, Microsoft Sql Server, Nevron Vision for SSRS, Veracode Static Analysis (SAST), Snowflake, Airflow, Databricks, PowerBI Tiles, SAP SD, SAP, ServiceNow, SAP S/4HANA, TIBCO EBX","","","","",17300000,"",69c28160196b9000017ed6c5,"","","STI Consulting is a family-owned company based in Munich, Germany, and Vienna, Austria, specializing in digital transformation. The company focuses on consulting services in data, AI, business intelligence, customer excellence, and IT projects. With a diverse team from 19 nations, STI Consulting promotes a culture of trust, open communication, and continuous development. + +The company offers a range of services, including data architecture, engineering, and analysis, as well as business intelligence solutions that turn raw data into actionable insights. Their customer excellence strategies encompass marketing, CRM, and service management, aimed at enhancing customer experiences. STI Consulting also engages in IT infrastructure projects and analytics, particularly in sectors like electric mobility. They emphasize data-driven decision-making and long-term support to improve process efficiency and business value.",1996,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/672fdf65d2dcf10001b94e3d/picture,"","","","","","","","","" +Endava D,Endava D,Cold,"",56,information technology & services,jan@pandaloop.de,http://www.exozet.com,http://www.linkedin.com/company/endava-dach,https://facebook.com/exozet,https://twitter.com › exozet_games,6 Platz der Luftbruecke,Berlin,Berlin,Germany,12101,"6 Platz der Luftbruecke, Berlin, Berlin, Germany, 12101","web applications, video portals, mobile apps, games, newtv, smart tv applications, interface design, user experience, virtual reality, augmented reality, immersive media, agile entwicklung, digital consulting, service design, gamification, digital strategy, continuous delivery, devops, e-commerce, apps, consumer internet, internet, information technology, it services & it consulting, ai and data analytics, cloud computing, ai in telecommunications, core modernization capabilities, software engineering, ai integration, technology integration, computer systems design and related services, digital transformation, ai automation in business, digital innovation, cloud-native development, ai implementation, sector expertise, ai in healthcare, industry solutions, ai-powered solutions, industry digitalization, ai in automotive, ai delivery, industry-specific knowledge, ai in energy, technology modernization, technology consulting, cloud solutions, complex challenge navigation, digital ecosystem, government, ai frameworks, technology partnership, retail and consumer goods, consulting, digital platform, ai in government, healthcare, telecommunications, ai in retail, industry expertise, ai in travel, ai-driven growth, enterprise software, ai in supply chain, technology support, ai delivery framework, digital shift support, financial services, data integration, market success, manufacturing, b2b, sector-specific ai solutions, ai-native approach, energy and utilities, software development, enterprise technology, business growth support, technology deployment, technology strategy, industry-specific solutions, information technology and services, ai for industry growth, services, ai in finance, digital business enablement, technology support services, automation, cloud modernization, enterprise ai, ai, ai and automation, automation tools, intelligent automation, data analytics, ai in gaming, core modernization, ai-powered industry solutions, cloud infrastructure, custom software development, ai tools, innovative technologies, growth acceleration, ai-native delivery framework, future-ready solutions, ai research, finance, consumer products & retail, transportation & logistics, energy & utilities, ux, information technology & services, marketing, marketing & advertising, consumers, enterprises, computer software, management consulting, health care, health, wellness & fitness, hospital & health care, mechanical or industrial engineering, internet infrastructure",'+49 30 2465600,"MailJet, Gmail, Outlook, Google Apps, Microsoft Office 365, Microsoft Azure Hosting, VueJS, React Redux, React, GitLab, Remote","",Venture (Round not Specified),0,2014-06-01,10000000,"",69c28160196b9000017ed6ae,7375,54151,"Exozet GmbH is a Berlin-based digital agency founded in 1996, specializing in digital transformation services. As part of Endava since December 2019, Exozet focuses on creating user-centric digital products across various industries, including automotive, media, sports, finance, and entertainment. The agency employs around 150-156 digital experts and operates additional offices in Hamburg, Vienna, and Potsdam-Babelsberg. + +Exozet offers a range of services, including strategy and consulting, design and user experience, development and implementation, and marketing. They excel in mobile and immersive technologies, providing solutions such as responsive web applications, mobile apps for multiple platforms, video management systems, and immersive tech experiences like virtual and augmented reality. Their collaborative approach ensures that they deliver innovative solutions tailored to their clients' needs.",2000,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66fa9828e8aa9d00013e4200/picture,Endava (endava.com),54a1391469702de5b3390c00,"","","","","","","" +DMG,DMG,Cold,"",25,information technology & services,jan@pandaloop.de,http://www.thisisdmg.com,http://www.linkedin.com/company/thisisdmg,"","",26 Nieschlagstrasse,Hanover,Lower Saxony,Germany,30449,"26 Nieschlagstrasse, Hanover, Lower Saxony, Germany, 30449","digitale transformation, digitale trends, mobile development, software, dxp, crm, mobile, apps, cms, software development, voice interface, beratung, iot, it services & it consulting, custom software development, retail, predictive analytics, erp and crm integration, b2b, roi focus, security and compliance (iso 27001, dsgvo), devsecops, business process automation, data governance in enterprise, real-time data synchronization, computer systems design and related services, enterprise software, application development, voice first in enterprise, ai-powered automation, customer portals, enterprise security standards, cloud deployment (aws, azure, google cloud), predictive maintenance, agile development, digital platforms, content hub platforms, business intelligence, system integration for large corporations, supply chain management, ai integration, b2c, e-commerce, multi-project management, multi-location implementation, data analytics tools, content management systems, enterprise software development, ai solutions, digital transformation, erp integration, process automation, data analytics, change management, legacy system modernization, financial technology, data privacy, data-driven solutions, custom software, microservices architecture, b2b-commerce platforms, customer portal optimization, machine learning, information technology and services, cloud solutions, cloud computing, services, consulting, agile methodology, multi-tenant cloud platforms, marketing automation, roi guarantee, industrial automation, cybersecurity, d2c, omnichannel marketing, process optimization, ai in enterprise systems, api management, customer engagement, enterprise, ai, cloud, legacy modernization, agile, information technology & services, sales, enterprises, computer software, internet, app development, analytics, logistics & supply chain, consumer internet, consumers, finance technology, financial services, artificial intelligence, marketing & advertising, saas, mechanical or industrial engineering",'+49 51 11692990,"Cloudflare DNS, Outlook, Microsoft Office 365, React Redux, GitLab, Slack, WordPress.org, YouTube, Google Tag Manager, Vimeo, Mobile Friendly, Google Font API, JQuery 2.1.1, Piwik, Nginx, Ubuntu, Android, React Native, Remote, ClickUp, DatoCMS, PHP, Symfony, Linkedin Marketing Solutions","","","","","","",69c28160196b9000017ed6b2,7375,54151,"DMG (Digital Media Group) is a digital transformation company based in Hanover, established in 2006. The company specializes in enterprise software development, AI solutions, and innovative digital platforms for small to large corporations globally. With a team of over 160 experts, DMG focuses on customized strategies that enhance efficiency, achieving notable results such as 40% faster processes and annual cost savings of €2.3 million for clients. + +Originally founded as an adgame agency, DMG has evolved into a full-service digital partner, expanding its offerings to include mobile apps, IoT solutions, and immersive learning experiences. The company employs agile methodologies and emphasizes GDPR compliance and enterprise security. DMG provides a range of services, including AI and data science, custom software development, extended reality applications, and digital platforms tailored to various industries. With a commitment to transparency and client collaboration, DMG has successfully partnered with over 200 companies, delivering measurable results across diverse sectors.",2006,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6714fa24672710000142b94f/picture,"","","","","","","","","" +VICO Research & Consulting GmbH,VICO Research & Consulting,Cold,"",30,market research,jan@pandaloop.de,http://www.vico-consulting.com,http://www.linkedin.com/company/vico-research-&-consulting-gmbh,https://facebook.com/vico.friend,https://twitter.com/vico_news,9 Eichwiesenring,Stuttgart,Baden-Wuerttemberg,Germany,70567,"9 Eichwiesenring, Stuttgart, Baden-Wuerttemberg, Germany, 70567","social media monitoring, opinion leader identifiakation management, produkt monitoring, social media analysen, social media marketing, review monitoring, fruehwarnung crisis management, kampagnenplanung amp optimierung, opinion leader identifiakation amp management, pr amp marketingcontrolling, social data, kampagnenplanung optimierung, pr marketingcontrolling, zielgruppenanalyse, fruehwarnung amp crisis management, ai, knowledge graphs, product safety monitoring, ratings & reviews, social tv, social media studien, huslicher unterricht corona-krise, business process automation, market research tools, customer journey insights, real-time monitoring, in-house gpt, api data integration, data visualization, echtzeit-alerting, management consulting services, automated reports, product development support, text analytics, ki-lösungen, social data integration, consumer insights, content analysis, data privacy, natural language processing, app monitoring, generative ai, consumer behavior insights, data annotation, data visualization tools, big data technologies, social listening for b2b, nano-influencer marketing, social data in unternehmensprozesse, process integration, customer engagement, reputation management, krisenfrüherkennung, data analysis with ai, machine learning, social data analytics, trend detection, kundenfeedback, consumer electronics trends, product optimization, sentiment analysis, ai integration, data security, dashboard visualization, customer feedback analysis, ai-powered data analysis, product communication, social listening, data analytics, trend analysis, krisenmanagement, social media benchmarking, market research, benchmarking, influencer identification, ai solutions, b2b, consumer internet, consumers, internet, information technology & services, marketing & advertising, artificial intelligence, computer & network security",'+49 711 7878290,"Outlook, Microsoft Office 365, Google Tag Manager, Facebook Login (Connect), Google Dynamic Remarketing, DoubleClick, Facebook Custom Audiences, Google Maps (Non Paid Users), Apache, DoubleClick Conversion, Linkedin Marketing Solutions, Google Maps, Google Analytics, Facebook Widget, Mobile Friendly, Google AdWords Conversion, Vimeo, Google Font API, Reviews","","","","",3095000,"",69c28160196b9000017ed6bc,7375,54161,"VICO Research & Consulting unterstützt Sie, die Daten, die Ihnen das Web bietet, zu nutzen um Ihre Produkte und Ihre Marke voranzutreiben. Hierbei ist VICO spezialisiert auf Analyse-Dienstleistungen, unterstützt durch AI, sowie Social Media- und Produkt-Monitoring-Lösungen. VICO liefert wertvolle Insights aus Social Media zur Optimierung Ihrer Produkte und Ihrer Produktkommunikation. +Seit 2005 ist VICO primär auf dem deutschen Markt für den größeren Mittelstand und Konzerne tätig. Die Projekte und Analysen von VICO werden weltweit durchgeführt mit dem Ziel Produkte erfolgreicher zu machen.",2005,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670b8988e29ce40001532c72/picture,"","","","","","","","","" +ACENT AG,ACENT AG,Cold,"",120,management consulting,jan@pandaloop.de,http://www.acent.de,http://www.linkedin.com/company/acent,"","",171 Friedrichstrasse,Berlin,Berlin,Germany,10117,"171 Friedrichstrasse, Berlin, Berlin, Germany, 10117","operationalization, digitalisierung, it kosteneffizienz, sap, enterprise architecture, digitization, cyber strategy, digital strategy, cyber security, itcompliance, itpotentialanalyse, s4hana, management consulting, risk mitigation, cybersecurity, ittransformation, ciso, project restructuring, itadvisory, digital innovation, project program management, cdo, cio, business process optimization, business consulting & services, marketing, marketing & advertising, computer & network security, information technology & services",'+49 30 60978620,"Outlook, Nginx, Mobile Friendly, Google Tag Manager, Bootstrap Framework, WordPress.org, Remote, AI","","","","","","",69c28160196b9000017ed6bf,"","","ACENT AG is a management consulting firm based in Berlin, Germany, founded in 2001. The company specializes in planning and managing complex IT-oriented transformation projects. With a team of approximately 47-55 employees, ACENT emphasizes real-world experience, particularly from consultants with CIO-level expertise. The firm operates independently, focusing on client needs without implementation interests, ensuring a neutral selection of service providers. + +ACENT offers a range of consulting services, including digitization of business models and processes, development of future-oriented IT landscapes, and management of carve-outs and mergers. The firm also excels in designing and controlling major transformation projects. Through its ACENT Technology division, it combines project management skills with technical expertise for complex transformations. Additionally, the ACENT Innovation Hub collaborates with young technology firms to explore innovative investment opportunities in the tech sector.",2001,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6710e771938ca9000102b6d4/picture,"","","","","","","","","" +MAI Group,MAI Group,Cold,"",59,information technology & services,jan@pandaloop.de,http://www.mai-group.com,http://www.linkedin.com/company/mai-group,"","",3 Goldbekplatz,Hamburg,Hamburg,Germany,22303,"3 Goldbekplatz, Hamburg, Hamburg, Germany, 22303","technology, information & internet, personalization, ai adoption, programmatic advertising, ux/ui design, digital transformation, digital inclusion, predictive analytics, lead generation, data management, customer experience management, business intelligence, customer journey optimization, government, customer acquisition, digital strategy, digital platforms, e-commerce, consulting, digital marketing and advertising, market research, ai integration, b2c, data-driven insights, artificial intelligence, human-ai collaboration, automation, multichannel marketing, customer retention, data analytics, business agility, customer experience, performance marketing, d2c, service design, strategic consulting, customer insights, ui design, management consulting services, b2b, cloud environment, digital service innovation, cloud computing, digital ecosystem, customer loyalty, digital consulting, retail, managed services, digital engagement, sustainable digital transformation, information technology and services, experience automation, consulting services, ux design, services, technology consulting, experience marketing, content marketing, accessibility design, customer journey mapping, business innovation, ai in cloud, experience design, digital services, sector-specific digital solutions, content creation, finance, distribution, information technology & services, enterprise software, enterprises, computer software, marketing & advertising, sales, analytics, marketing, consumer internet, consumers, internet, management consulting, financial services",'+49 40 334676210,"Cloudflare DNS, Outlook, MailChimp SPF, Microsoft Office 365, CloudFlare Hosting, Webflow, Sophos, Hubspot, Slack, Google Tag Manager, TYPO3, Mobile Friendly, IoT, Remote, Google Marketing Platform, Salesforce Marketing Cloud, Braze, Rapid7 InsightVM, SQL, AMP, Liquid, VelocityEHS Accelerate | EHS & ESG, HTML Pro, CSS, SharePoint, Linkedin Marketing Solutions, Salesforce CRM Analytics, Google Analytics, Looker Studio, PowerBI Tiles, Shopware, Bing Ads, Google Ads, Meta Ads, Tableau, Spreadsheet Server by insightsoftware, Emarsys, Figma, Adobe Photoshop, Strato","","","","","","",69c28160196b9000017ed6c1,7375,54161,"MAI Group (MAI Marketing Automation Intelligence GmbH) is a prominent German digital agency group that specializes in digital transformation. With a team of around 450 experts, the group combines strategy, technology, and solutions to foster sustainable business growth and enhance long-term customer relationships. With over 25 years of experience, MAI Group integrates strategy and consulting with operational excellence, focusing on measurable growth and customer experience optimization. + +The group consists of several specialized agencies, each contributing unique expertise. These include _crsd, which focuses on performance CRM and marketing automation; DIGITALBERATUNG, specializing in digital business transformation; and klaro media, emphasizing marketing automation and programmatic advertising. MAI Group offers a wide range of services, including digital transformation strategy, AI consulting, and customer experience optimization. Their digital and AI solutions include tools for lead generation, semantic search, and training programs, all designed to enhance business processes and drive competitive advantages. The group also hosts events and webinars to share insights on digital trends and innovations.",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6959fb47eb51f100018b60da/picture,"","","","","","","","","" +Comma Soft AG,Comma Soft AG,Cold,"",120,information technology & services,jan@pandaloop.de,http://www.comma-soft.com,http://www.linkedin.com/company/comma-soft-ag,https://facebook.com/CommaSoft,https://twitter.com/commasoft,202-204A Puetzchens Chaussee,Bonn,Nordrhein-Westfalen,Germany,53229,"202-204A Puetzchens Chaussee, Bonn, Nordrhein-Westfalen, Germany, 53229","it process automation, data science consulting, compliance, cyber itsecurity, it service management, big data, data science, data it consulting, business intelligence analytics, industrie 40, cloud, life science, data strategy, transformation, generative ki, customer analytics, it consulting, digitalisierung, machine learning operations mlops, business intelligence, internet of things, data analytics, strategy, kuenstliche intelligenz, digitale transformation, it portfolio management, modern workplace, ai, transition to the cloud, security analytics, business, it services & it consulting, ai integration, ai scalability, data management, predictive analytics, change management, ai governance, ai in logistics, ai-powered automation, ai for public sector, generative ai, risk management, customer experience, logistics, automation, it infrastructure, ai automation, workflow automation, manufacturing, b2b, ai for sustainability, ai in healthcare, ai in pharma, enterprise ai, cloud security, sustainable solutions, ai platform, ai training, cloud solutions, ai in manufacturing, ai for insurance, healthcare, data architecture, digital transformation, ai deployment, ai ethics, services, ai prototypes, consulting, data visualization, ai agent development, ai use cases, healthcare it, cyber security, data privacy, finance, energy management, ai for finance, ai consulting, data-driven business, computer systems design and related services, machine learning, transportation & logistics, enterprise software, enterprises, computer software, information technology & services, management consulting, analytics, mechanical or industrial engineering, cloud computing, health care, health, wellness & fitness, hospital & health care, computer & network security, financial services, oil & energy, artificial intelligence",'+49 22 897700,"SendInBlue, Outlook, Microsoft Application Insights, Netlify, Microsoft Azure, Slack, Linkedin Marketing Solutions, Mobile Friendly, Vimeo, YouTube, WordPress.org, Apache, Remote, Kubeflow, Kubernetes, GitLab, GitHub Actions, MLflow, Argo CD, Flux, Terraform, Ansible, HELM, Docker, Prometheus, Grafana, ELK Stack, Python, LinkedIn Ads, Amazon Web Services (AWS), C#, CSS, HTML Pro, TypeScript, OpenTelemetry","","","","",23000000,"",69c28160196b9000017ed6c4,7375,54151,"Comma Soft AG is a family-owned IT consulting and software development company based in Bonn, Germany. Founded in 1989, it specializes in digital transformation, data sciences, and enterprise solutions for a diverse range of clients, including DAX-listed corporations, medium-sized companies, family-owned businesses, and public authorities. The company is known for its commitment to innovation and invests over 25% of its turnover in research and development. + +With a team of approximately 104-141 employees, primarily scientists from fields like physics, mathematics, and computer science, Comma Soft offers comprehensive services that include consulting, IT strategy, custom software development, and business-IT alignment. Its proprietary technologies, such as Infonea for knowledge management and helpLine for call center support, reflect its focus on creating tailored solutions for digital business models. Comma Soft has built a strong reputation as a digital think tank, recognized for its early adoption of Microsoft technologies and its agile approach to implementing digital strategies.",1989,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/695788390803120001b9bd2b/picture,"","","","","","","","","" +CAS Concepts and Solutions AG,CAS Concepts and Solutions AG,Cold,"",140,information technology & services,jan@pandaloop.de,http://www.c-a-s.de,http://www.linkedin.com/company/cas-concepts-and-solutions-ag,"","",128 Luebecker Strasse,Hamburg,Hamburg,Germany,22087,"128 Luebecker Strasse, Hamburg, Hamburg, Germany, 22087","it loesungen, prozessoptimierungen, retail, systemintegrationen, beratung, ibm, salesforce, consulting, technologie, integration, business intelligence, lobster, migration, industry, sap, insurance, data analytics, consulting & integration, financial services, hinweisgebersystem, it services & it consulting, sap analytics cloud, sustain:data, cas mon go, regulatory compliance, sap omnichannel promotion pricing, clue#zo hinweisgebersystem, it-infrastruktur, energiedatenmanagement, distribution, customer relationship management, nachhaltigkeit, data mesh, it-architektur, b2b, supply chain optimization, digital transformation, sap cloud platform, sap integration, low-code development, manufacturing, data warehouse, supply chain management, regulatorische compliance, cas casemanager, computer systems design and related services, sap fsdm, systemintegration, nachhaltigkeitsmanagement, sap bw/4hana, energie-management, sap s/4hana, cas realtime datahub, api-management, co2-footprint, cloud computing, sap industry cloud, data governance, data management, energy & utilities, data fabric, it consulting, risk management, digitalisierung, kundenprojekte, it-consulting, cas integration service platform, cas lc-x low-code plattform, automatisierung, prozessautomatisierung, low-code plattform, services, data security, cloud-lösungen, sap fsdp, it-beratung, sap data services, information technology and services, sap lösungen, finance, legal, analytics, information technology & services, crm, sales, enterprise software, enterprises, computer software, mechanical or industrial engineering, logistics & supply chain, management consulting, computer & network security",'+49 40 5389940,"Outlook, Pardot, Microsoft Office 365, Jira, Atlassian Confluence, Amazon SES, Salesforce, WordPress.org, Piwik, Mobile Friendly, Nginx, Shutterstock, Vimeo, Remote, SAP, SAP R/3, SAP S/4HANA, SAP Fiori, SAP HANA, CAPTCHA, REST, Amazon Web Services (AWS), SQL, Microsoft Active Directory Federation Services, , Gem, SAP Cloud Platform Integration, ABAP, NeoData, Surfcam, Power BI Documenter, Personio","","","","",25000000,"",69c28160196b9000017ed6b3,7375,54151,"CAS Concepts and Solutions AG (CAS AG) is a German IT consulting firm established in 1988. The company specializes in strategy, process, and technology consulting, providing integrated solutions tailored to the needs of clients in Financial Services, Industry, and Retail. With a team of approximately 165-185 employees across multiple locations in Germany, CAS AG supports clients from initial requirements through implementation and ongoing operations. + +The firm offers a range of services, including strategy and technology consulting, full lifecycle support, and system integration. CAS AG is committed to sustainability, providing digitalization solutions that align with client ESG initiatives. Notable offerings include the CAS Store Solution for retail management and Sustainable:Tech for compliance and sustainability efforts. The company fosters a collaborative culture, emphasizing partnerships and open communication to achieve sustainable results for its clients. CAS AG has been recognized as a Top Consultant for 2024, reflecting strong client satisfaction in its consulting services.",1988,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69b271d8c67f62000127ab82/picture,"","","","","","","","","" +NEXT DIGITAL GROUP,NEXT DIGITAL GROUP,Cold,"",17,management consulting,jan@pandaloop.de,http://www.nextdigital.de,http://www.linkedin.com/company/next-digital-group-transforming-your-business-dna,https://www.facebook.com/nextdigitalgroupgmbh,"",2 Haus Meer,Meerbusch,Nordrhein-Westfalen,Germany,40667,"2 Haus Meer, Meerbusch, Nordrhein-Westfalen, Germany, 40667","market transformation, technology transformation, marketing transformation, business transformation, people transformation, business consulting & services, digitalization of value chains, market analysis tools, digital service design, cloud strategies, agile methodologies, sustainable growth, kommunale it-konsolidierung, energy sector consulting, information technology & services, energieversorger innovationen, ai and data analytics, kommunale it-fusionen, customer experience enhancement, organizational agility, energy & utilities, ki-use cases in energie, industrial digitalization, smart city konzepte, utilities, public administration, energie- und versorgungskonzepte, transformation consulting, it modernization, b2b, change communication, innovation workshops, energieeffizienz durch digitalisierung, innovation, ki-workshops, data & tech transformation, sustainability, resilience strategies, technology integration, customer journey mapping, machine learning, kundenbindung durch digitalisierung, fusion and cooperation strategies, digital strategy, k.i. integration, market development, data governance, process optimization, smart metering strategien, public sector consulting, customer-centric strategies, innovation management, digital maturity assessment, strategy consulting, services, digital transformation, energiewende-strategien, digitalisierung im öffentlichen sektor, business model innovation, business services, digitale plattformen für versorger, energiewirtschaft digitale transformation, energievertrieb digital, ai strategy, organizational development, management consulting, cybersecurity in transformation, management consulting services, consulting, leadership coaching, data-driven decision making, digital infrastructure, transportation & logistics, change management, sustainable strategies, leadership development, non-profit, distribution, environmental services, renewables & environment, artificial intelligence, marketing, marketing & advertising, strategic consulting, professional training & coaching, nonprofit organization management",'+49 40 35085425,"Outlook, Microsoft Office 365, WordPress.org, Google Tag Manager, Mobile Friendly, Apache, Woo Commerce","","","","","","",69c28160196b9000017ed6b5,8742,54161,"Next Digital Group (NDG) is an independent strategy and management consulting firm based in Meerbusch, Germany. The company specializes in holistic transformation services focused on digitalization, business, people, marketing, and technology. With a team of fewer than 25 employees, NDG has successfully delivered over 250 projects for more than 80 clients, achieving high customer satisfaction and recognition in the consulting industry. + +NDG offers four core competency areas: Business Transformation, People Transformation, Marketing Transformation, and Data & Tech Transformation. These services help organizations develop sustainable business models, modernize leadership and HR practices, design effective marketing strategies, and integrate technology and data intelligence. The firm emphasizes a non-hierarchical culture and combines strategy with implementation strength, ensuring measurable impact for its clients. NDG also collaborates with its subsidiary, Digital Motion, for technology-related implementations.",2013,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68c5f4d1b92bc60001e07cbc/picture,"","","","","","","","","" +PICA GmbH,PICA,Cold,"",29,information technology & services,jan@pandaloop.de,http://www.pica.de,http://www.linkedin.com/company/pica-gmbh,https://de-de.facebook.com/PICAit,"","",Munich,Bavaria,Germany,"","Munich, Bavaria, Germany","outsystems, lowcode entwicklungen mit outsystems, projektleitung, it services, digitale tranformation, itconsulting, business analyse, office 365, lowcode, it consulting, softwareloesungen, sharepoint, individuelle softwareloesungen, testautomatisation testmanagement, it services & it consulting, c#, outsystems partner, mitarbeitermotivation, it infrastructure, ui/ux, azure devops, cloud solutions, devops, softwareentwicklung, consulting, services, nosql, information technology and services, it security, testing, kundenorientierung, governance, visual studio, plattformintegration, nachhaltige anwendungen, frameworks: .net, .net core, backlog bearbeitung, it-modernisierung, digitalisierung, project management, low-code entwicklung, softwarelösungen, b2b, it-beratung, mitarbeiterschulung, sicherheitsstandards, computer systems design and related services, software development, it support, low-code, it-beratungsdienstleistungen, automatisierung, javascript, outsystems zertifizierung, open source komponenten, schnelle anwendungsentwicklung, digitale plattformen, agile methoden, it-services, saas-lösungen, sql, datensicherheit, ki-gestützte entwicklung, high-code entwicklung, digitale transformation, saas-integration, outsystems workshop, digital transformation, saas, information technology & services, management consulting, cloud computing, enterprise software, enterprises, computer software, computer & network security, productivity",'+49 89 895250,"Cloudflare DNS, Outlook, Mobile Friendly, WordPress.org, Nginx, Typekit, Google Tag Manager, Remote","","","","","","",69c28160196b9000017ed6b7,7375,54151,"PICA GmbH – Ihr Partner für intelligente Softwarelösungen seit 1985 + +Seit vier Jahrzehnten unterstützen wir Unternehmen dabei, ihre digitale Zukunft aktiv zu gestalten. +Was uns antreibt: Technologie sinnvoll machen – als Digitalpartner, Innovator und Enabler. + +Wir kombinieren Erfahrung mit Innovationskraft und begleiten unsere Kunden von der Idee bis zum produktiven Betrieb – schnell, sicher und nachhaltig. + +🚀 Was wir tun + +Wir entwickeln individuelle Softwarelösungen und digitale Plattformen, die Prozesse vereinfachen, Geschäftsmodelle erweitern und Organisationen entlasten. + +Unser Ansatz: +👉 Wir denken End-to-End – von der Beratung und Architektur über Entwicklung, Betrieb und Optimierung. +👉 Wir setzen auf High-Performance Low-Code mit OutSystems, um Anwendungen in Wochen statt Monaten bereitzustellen. +👉 Wir helfen Unternehmen, den Fachkräftemangel durch Automatisierung, smarte Workflows und moderne IT-Architekturen abzufedern. +👉 Wir arbeiten mit führenden Partnern wie T-Systems, Microsoft, OutSystems und spezialisierten Technologieanbietern zusammen – immer mit dem Ziel, die beste Lösung für unsere Kunden zu schaffen. + +🌐 Unser Anspruch + +Technologische Vielfalt braucht neue Denkweisen. +Wir verstehen uns als verlässlicher Partner für digitale Transformation, Softwareentwicklung und Systemintegration – seit 1985, mit Erfahrung, Leidenschaft und Weitblick. + +Unsere Stärke liegt nicht in Schlagwörtern, sondern in Umsetzung: +✅ Digitale Transformation +✅ Individuelle Softwarelösungen +✅ Low-Code & KI-Agenten +✅ IT-Consulting & Projektleitung +✅ Business-Analyse & Testmanagement + +🤝 Gemeinsam mehr erreichen + +PICA steht für ein starkes Team aus erfahrenen Spezialistinnen und Spezialisten, das Verantwortung übernimmt – füreinander und für den Erfolg unserer Kunden. +Wir glauben an Zusammenhalt, Kompetenz und Innovation, um Software zu schaffen, die Wirkung zeigt. + +PICA GmbH – Center of Intelligence for Digital Transformation",1985,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67482d2258ea200001f58d05/picture,"","","","","","","","","" +Aequitas integration AG,Aequitas integration AG,Cold,"",36,information technology & services,jan@pandaloop.de,http://www.aequitas-integration.de,http://www.linkedin.com/company/aequitas-integration-ag,https://www.facebook.com/Aequitasintegration/,"",3 Hongkongstrasse,Hamburg,Hamburg,Germany,20457,"3 Hongkongstrasse, Hamburg, Hamburg, Germany, 20457","microsoft sharepoint, microsoft exchange, sap osdb migration, sap s4 hana, sap security, sap on microsoft azure, sap bw on hana, sap bw4 hana, sap technologieberatung, sap solution manager, sap hana, microsoft azure, microsoft office 365, it services & it consulting, it-transformation healthcare, it-performance, transformationsprojekte, qualitätssteigerung, microsoft technologien, it-sourcing, it-projekte, digitalisierung, cloud/ms, it-strategie, it-management, system integration, cloud computing, services, digitalisierungsberatung, automatisierung, it-lösungen, it-implementierung, testautomatisierung, ki-gestützte prozessautomatisierung, operational efficiency, it-qualitätsmanagement, it-prozess, it-security, eprocurement automatisierung, supply chain management, risk management, consulting, cloud solutions, eprocurement, it-infrastruktur, it-prozesse, it-services, it-consulting, it-architektur, testmanagement nach istqb, cloud-integration, business intelligence, it-sicherheitsaudits, regulatory compliance, it-integration, it-transformation, plattformübergreifende automatisierung, machine learning, software development, effizienzsteigerung, it-sicherheit, it-optimierung im gesundheitswesen, ressourcenoptimierung, it-beratung, healthcare, ressourcenmanagement, information technology & services, it-entwicklung, plattformautomatisierung, it-innovation, workflow automation, b2b, it-projektmanagement, end-to-end automatisierung, computer systems design and related services, ki-unterstützung, automatisierte lieferkettenüberwachung, automatisierte tests, geschäftsprozesse, digital transformation, it-tools, it-optimierung, erp/sap, testmanagement, kostenreduktion, it-systems, prozessautomatisierung, enterprise software, enterprises, computer software, logistics & supply chain, analytics, artificial intelligence, health care, health, wellness & fitness, hospital & health care",'+49 40 300838800,"Outlook, Microsoft Office 365, Adobe Media Optimizer, Google Tag Manager, Mobile Friendly, Vimeo, Apache, WordPress.org, Cedexis Radar, Remote, AI","","","","","","",69c28160196b9000017ed6bd,7375,54151,"Aequitas integration AG - Mit dem Blick für das Ganze. Und für Ihre IT. +Digitalisierungs Optimierer +Die Leistungsfähigkeit einer Organisation wird bestimmt von der Qualität der IT. Mit dieser Überzeugung unterstützen wir Kunden bei der Umsetzung ihrer Innnovationsagenda. + +WEITSICHT, OFFENHEIT, REALISMUS UND PRAGMATISMUS. UNSERE HAMBURGER GENE SIND NICHT ZU ÜBERSEHEN. + +Aequitas integration ist für uns Versprechen und Positionierung zugleich: Als aktiver Part bei der Umsetzung Ihrer digitalen Agenda besetzen wir die Nahtstellen zwischen Organisation, Technologie, Lösungen und Prozessen. Konkret kümmern wir uns in den Kompetenzfeldern Procurement, SAP, Qualitätssicherung und Modern Workplace um die Eingliederung von technologischer Expertise in die betriebswirtschaftliche Realität. + +Deshalb finden wir, dass Begriffe wie „Systemhaus"" oder „Berater"" etwas zu kurz greifen. Wir sind mehr. Challenger, Berater, Macher, SAP-Spezialist, IT-Sourcing-Experten. Oder ganz einfach: Generalisten für den digitalen Erfolg. Wir nennen das: Digitalisierungs-Optimierer. Und hier kommen unsere Wurzeln in Spiel. Auch, wenn wir national und international agieren: Hamburg ist für uns geistige Heimat und professioneller Anspruch zugleich. Weitsicht, Offenheit, Realismus und Pragmatismus: diese vier klassischen Hamburger Tugenden kennzeichnen wie selbstverständlich unserer Projekte. + +Wir haben gelernt, wie Kaufleute zu denken und unter diesem Blickwinkel die technologischen Möglichkeiten zu beleuchten. Doch es geht auch andersherum. Unsere Kollegen sind gefragte Experten für die konkrete technische Realisierung. Vom Design von Infrastrukturen über Cloud-Technologien, SAP, Collaboration bis hin zu Qualitätssicherung und Sourcing. Wir fragen, wie man in Transformations-Projekten, im Internet of things, in Big Data Architekturen, der Industrie 4.0 die überwältigenden Möglichkeiten neuer Technologien wirtschaftlich sinnvoll nutzbar macht.",2007,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e0142fbd138d0001507557/picture,"","","","","","","","","" +hanseConcept GmbH,hanseConcept,Cold,"",21,information technology & services,jan@pandaloop.de,http://www.hanseconcept.de,http://www.linkedin.com/company/hanseconcept-gmbh,https://www.facebook.com/hanseConcept,"",28 Holzdamm,Hamburg,Hamburg,Germany,20099,"28 Holzdamm, Hamburg, Hamburg, Germany, 20099","it security, it betrieb, workplace anywhere, microsoft, software definierte infrastruktur, datacenter, software, cloud, software defined infrastructure, office 365, it operation, cybersecurity, cloud transition, azure, servicedesk, data center operation, it services & it consulting, virtual desktop infrastructure, it infrastructure, cloud security, cloud-lösungen, retail, it-projekte, infrastructure design, security monitoring, it architecture, it security quickcheck, logistics technology, retail technology, azure cloud, endpoint management, risk management, filialnetzwerk sd-wan, cybersecurity zero trust, b2b, cybersecurity für mittelstand, it strategy, security services, migration, cloud migration, services, vulnerability assessment, it-infrastruktur, it-strategie, cloud pos plattform, pos plattform auf azure, it-architektur, security as a service modell, pos automatisierung, it-consulting, it optimization, cloud solutions, cloud security check, point of sale security, it-beratung, point of sale, security strategien, zero trust security, infrastruktur, it support, threat detection, modern work, cloud computing, cloud infrastructure, microsoft 365, virtual desktop, pos cloud platform, it-compliance, microsoft solutions partner, migration services, security automation, managed security services, compliance, it-sicherheitskonzepte, it-support, information technology and services, computer software and services, computer systems design and related services, it operations, business continuity, cybersecurity solutions, security quickcheck, it consulting, cloud-basiertes pos, security as a service, it-transformation, consulting, hybrid cloud, it-optimierung, incident response, it-security, azure virtual desktop, managed security, it-management, filialnetzwerk sicherheit, it-services, distribution, transportation & logistics, computer & network security, information technology & services, information architecture, enterprise software, enterprises, computer software, pos, payments, financial services, internet infrastructure, internet, management consulting",'+49 40 808103600,"Outlook, Mobile Friendly, WordPress.org, Google Tag Manager, Google Analytics, Apache, Remote","","","","","","",69c28160196b9000017ed6be,7375,54151,"hanseConcept ist ein unabhängiges, inhabergeführtes Unternehmen mit Sitz in Hamburg und einer Niederlassung am Medienstandort Potsdam. Seit 1997 erbringen wir IT-Dienstleistungen für kleine, mittlere und große Unternehmen. + +Wir bieten unseren Kunden innovative IT-Lösungen, eigenständige und herstellerunabhängige Beratung sowie umfängliche Serviceleistungen aus einer Hand und in Zusammenarbeit mit unseren Partnern. Organisches Wachstum auf der Basis langfristiger Partnerschaften und die Schaffung zusätzlicher Mehrwerte für unsere Kunden sind unsere Ziele. + +Wir begleiten unsere Kunden bei Ihrem Weg in die Cloud über Beratung, Konzeption, Durchführung und Betrieb. Sicherheit und Wirtschaftlichkeit dabei in Einklang zu bringen ist uns sehr wichtig und aus unserer Sicht die Grundlage jeder guten Partnerschaft. + +Wir legen großen Wert darauf, unseren Mitarbeitern eine langjährige Arbeitsperspektive zu bieten. Eine ausgewogene Work-Life-Balance, ein modernes Arbeitsumfeld sowie die Vereinbarkeit von Familie und Beruf zu gewährleisten, sind für uns wichtige Voraussetzungen, um ein motiviertes und leistungsfähiges Team zu schaffen und auf Dauer zu erhalten. Die individuelle Aus- und Weiterbildung stehen dabei ebenso im Fokus, wie die persönliche Entwicklung im Unternehmen. Wir verstehen uns gesamtheitlich als Team. Unser Erfolg ist das Resultat des gemeinsamen Wirkens aller Beteiligten.",1997,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69ad8e6c55cc360001f7ebe5/picture,"","","","","","","","","" +Insiders Technologies GmbH,Insiders,Cold,"",170,information technology & services,jan@pandaloop.de,http://www.insiders-technologies.com,http://www.linkedin.com/company/insiderstechnologies,https://www.facebook.com/InsidersTechnologies/,"",1 Bruesseler Strasse,Kaiserslautern,Rhineland-Palatinate,Germany,67657,"1 Bruesseler Strasse, Kaiserslautern, Rhineland-Palatinate, Germany, 67657","dokumentanalyse, accounts payable invoice processing, digital transformation, kuenstliche intelligenz, email responsemanagement, chatbots, artificial intelligence, email response management, kundenkommunikation, business intelligence, mobile solutions, predictive analysis, omnichannel input management, software as a service, mobile capture, cloud solutions, document analysis, cognitive computing, process control with business intelligence, customer communication, deep learning, order processing, multichannel input management, it services & it consulting, b2b, automatisierung, software development, ki-gestützte rechnungsverarbeitung, energiecontrolling, ki-basierte energiebeleglesung, cloud services, datenschutzsichere automatisierung, ki-gestützte energiecontrolling-lösungen, kundenorientierte ki-lösungen, cloud computing, ki im bankwesen, informationsextraktion, consulting, rechnungsverarbeitung, ki im öffentlichen sektor, geschäftsprozessautomatisierung, automatisierte dokumentenverarbeitung, ki-basierte geschäftsprozessautomatisierung, deep learning-technologien, nutzerfeedback in echtzeit, manufacturing, energiecontrolling mit ki, ki im gesundheitswesen, ki-modelle benchmarking, branchenvielfalt, ki in industrie und handel, services, cloud-basierte ki-services, ki-use cases, public sector, insurance, ki im energiecontrolling, government, innovation in ki, automatisierte rechnungsverarbeitung, cognitive process automation, compliance, information technology and services, rest-apis, healthcare, skalierbarkeit, automatisierte schadenprozesse, data encryption, automatisierte transaktionen, neurale netze, automatisierte kundenkommunikation, cloud-services, computer systems design and related services, machine learning, ai, prozessoptimierung, ki im versicherungswesen, mobile hr-prozesse, generative ai, künstliche intelligenz lösungen, künstliche intelligenz, support 24/7, ki-gestützte energie- und rechnungsprozesse, digitale touchpoints, reaktionszeitverkürzung, partnernetzwerk, natural language processing, large language models (llms), ki-lösungen, ki-gestützte energiebelege, banking, heterogene inhalte verstehen, data security, prozessautomatisierung, intelligente touchpoints, financial services, finance, education, non-profit, distribution, information technology & services, analytics, saas, computer software, enterprise software, enterprises, mechanical or industrial engineering, health care, health, wellness & fitness, hospital & health care, computer & network security, nonprofit organization management",'+49 631 920811700,"Outlook, Microsoft Office 365, Slack, Google Tag Manager, Facebook Custom Audiences, Vimeo, Google Dynamic Remarketing, Nginx, Google Font API, Cedexis Radar, reCAPTCHA, Facebook Login (Connect), Adobe Media Optimizer, DoubleClick, Shutterstock, WordPress.org, Facebook Widget, Mobile Friendly, DoubleClick Conversion, Remote, C#, .NET, Elasticsearch, Kotlin, SAP, Angular, TypeScript, GitLab, AWS Trusted Advisor, Kubernetes, Salesforce CRM Analytics, ABAP, React, SQL","","","","","","",69c28160196b9000017ed6c3,7375,54151,"Insiders Technologies GmbH is a German AI software company based in Kaiserslautern, founded in 1998 as a spin-off from the German Research Center for Artificial Intelligence (DFKI). The company specializes in cognitive process automation for document-centric business processes and has grown to over 200 employees. Insiders focuses on translating AI research into practical solutions, positioning itself as a leader in intelligent document recognition and process optimization. + +The company offers AI-based software solutions powered by its OVATION engine, which supports intelligent document recognition, automatic data classification, and process automation. Its services cater to various sectors, including insurance, healthcare, banking, and public services, with applications in areas like e-invoicing, customer communication, and HR processes. Insiders serves over 6,000 customers globally and emphasizes partnerships for expansion, including a recent acquisition by Proalpha Group to enhance its Industrial AI Platform.",1998,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6874c0df7b102300019d9269/picture,"","","","","","","","","" +TAS AG,TAS AG,Cold,"",110,public relations & communications,jan@pandaloop.de,http://www.tasag.de,http://www.linkedin.com/company/tas-ag,https://www.facebook.com/tasag.dialogmanagement/,https://twitter.com/tas_ag,13 Kohlgartenstrasse,Leipzig,Saxony,Germany,04315,"13 Kohlgartenstrasse, Leipzig, Saxony, Germany, 04315","contact center services, sales support, customer service, consulting, kundenkommunikation, vertriebsdienstleistungen, call center software, business process outsourcing, kundenservice dienstleistungen, training, near offshoring, service design, public relations & communications services",'+49 341 355950,"Outlook, Zendesk, WordPress.org, Linkedin Marketing Solutions, Google Tag Manager, Nginx, Mobile Friendly, Multilingual, Google Font API, Remote, AI, Microsoft Windows Server 2012, Microsoft Office, Gem","","","","",3944000,"",69c28160196b9000017ed6b0,7380,"","Since 1992 TAS AG has been providing all-round solutions for customer communications, making it one of Germany's oldest complex full-service operators in dialogue management. + +In addition to pure multilingual contact centre services TAS AG carries out complete projects in the field of business process outsourcing, advises customers on internal communications solutions and links classical channels of communications with present-day demands for modern e-business processes. +Our service portfolio also includes the training programmes offered by the TAS Academy and the implementation of the latest scientific findings in the field of innovation and research. + +Our extensive experience gives us a major advantage in the training of our staff, in working processes and in quality assurance. There are good reasons why TAS AG was one of the very first companies to receive ISO 27001 IT security certification by TÜV Rheinland. +After all, to make sure that projects can be implemented efficiently we will receive from you data and information which is normally accessible only within your company. Our certified security standards enable us to guarantee to you that your data will be treated in the strictest confidence. +In addition to maintaining the highest standards of data processing and compliance with data confidentiality legislation, our staff are highly sensitive to the confidentiality of client data and are under an obligation of non-disclosure. + + +The company's head office and main current production location is Leipzig. In addition TAS AG has a representative in Merseburg.",1992,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/672769a30f451f0001187063/picture,"","","","","","","","","" +Contiva GmbH,Contiva,Cold,"",13,information technology & services,jan@pandaloop.de,"",http://www.linkedin.com/company/contiva-com,"","",2 Yokohamastrasse,Hamburg,Hamburg,Germany,20457,"2 Yokohamastrasse, Hamburg, Hamburg, Germany, 20457","api management, sap po, sap integration, interfaces, sap pi, integration, sap integration suite, sap cpi, it services & it consulting, information technology & services","","","","","","","","",69c28160196b9000017ed6c0,"","","Integration, Interfaces, APIs, SAP PI, SAP PO, SAP CPI, Schnittstellen",2014,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/674052144fe87f00011d2c63/picture,"","","","","","","","","" +ORBIS Modern Work GmbH,ORBIS Modern Work,Cold,"",81,information technology & services,jan@pandaloop.de,http://www.orbis-modern-work.de,http://www.linkedin.com/company/orbis-modern-work-gmbh,https://www.facebook.com/ORBIS.SE,"","",Saarbruecken,Saarland,Germany,"","Saarbruecken, Saarland, Germany","nintex workflow, cloud erp, business intelligence, prozessoptimierung, robotic process automation, nintex promapp, microsoft system center, digitalisierung, sap successfactors, sap mobile business, microsoft sharepoint sap business bydesign sap successfactors nintex workflow cloud computing microso, automatisierung, change management, sap business bydesign, nintex rpa, digitale transformation, teams telefonie, windows intune, microsoft sharepoint, innovationsmanagement, cloud computing, microsoft office 365, social intranet, it services & it consulting, analytics, information technology & services, enterprise software, enterprises, computer software, b2b",'+49 68 198915100,"Outlook, Microsoft Office 365, Atlassian Cloud, Azure Active Directory, SuccessFactors (SAP), Mobile Friendly, TYPO3, reCAPTCHA, Apache, Linkedin Marketing Solutions, Multilingual, Google Tag Manager, WordPress.org, Intershop","","","","","","",69c28160196b9000017ed6ad,"","","ORBIS Modern Work GmbH is a German IT consulting firm established in 2004, specializing in digitalization and cloud solutions. As a Microsoft Solutions Partner, the company focuses on helping businesses transition to the cloud, enhancing infrastructure and productivity through Microsoft technologies. With around 50 employees, ORBIS positions itself as a long-term partner for organizations undergoing digital transformation. + +The company offers a variety of services centered on Microsoft ecosystems, including support for Microsoft 365, secure cloud implementations, and the development of modern intranets. They also provide tailored change management strategies and tools for managing Microsoft Teams environments, such as WorkspaceHub for governance and administration, and ORBIS CallingONE for integrating telephony into Teams. ORBIS Modern Work GmbH draws on over 20 years of experience in digital transformation projects to ensure successful outcomes for its clients.",2004,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6874a109e477630001e1e80b/picture,ORBIS France (orbis.fr),5e55ff99ca55260001b8d4cd,"","","","","","","" +semvox GmbH,semvox,Cold,"",130,information technology & services,jan@pandaloop.de,http://www.semvox.de,http://www.linkedin.com/company/semvox-gmbh,https://www.facebook.com/paragonsemvoxgmbh,https://twitter.com/semvox,"",Kirkel,Saarland,Germany,66459,"Kirkel, Saarland, Germany, 66459","ontologies, industry 40, home automation, app development, automotive, medical technologies, hmi, dialog systems, speech control, interfaces, multimodal, speech dialog, smart home, assistant systems, semantics, software development, data security, multilingual neural tts, speech recognition accuracy, gesture recognition, sensor sdk, smart logistics ai, emotion detection, neural tts, large language models, multi-language support, robot communication, industrial logistics, ai-powered automation, process optimization, context-aware ai, customizable ai solutions, conversational ai, natural language processing, ai safety and security, hybrid ai architecture, activity recognition, proactive assistance, industrial voice control, asr (automatic speech recognition), digital factory assistant, multi-device voice control, ai for healthcare device control, b2b, embedded voice systems, voice recognition, ai in healthcare, sensor data integration, real-time incident alert generation, embedded voice ai, robotics, llm integration, ai assistance platform, industrial automation, automotive voice ai, neural tts technology, ai for vehicle manual access, healthcare, ai for industrial diagnostics, genu:os platform, services, llm, proactive dialog system, consulting, contextual conversation management, multimodal interaction, ai-driven incident messages, symbolic business logic integration, voice interface sdk, cloud and on-premise deployment, ai training and customization, domain-specific llms, computer systems design and related services, empathy detection in robots, robotics ai, text-to-speech, machine learning, distribution, transportation & logistics, consumer electronics, consumers, hardware, internet of things, apps, information technology & services, computer & network security, artificial intelligence, mechanical or industrial engineering, health care, health, wellness & fitness, hospital & health care",'+49 681 99191980,"Outlook, Mobile Friendly, Apache, WordPress.org, Android, Python, Jira, AWS SDK for JavaScript",710000,Merger / Acquisition,0,2022-12-01,990000,"",69c28160196b9000017ed6b8,7375,54151,"semvox GmbH is a prominent provider of voice assistance technology and conversational AI solutions, located in Kirkel-Limbach, Saarland, Germany. Established in 2008 as a spin-off from the German Research Center for Artificial Intelligence, the company has expanded internationally, employing over 180 people across Germany, China, and India. Since May 2023, semvox has been a wholly-owned subsidiary of CARIAD SE, the software division of the Volkswagen Group. + +The company specializes in developing interactive and intelligent solutions, utilizing its proprietary ODP S3 and geni:OS development platforms. semvox's offerings include advanced voice control, Automatic Speech Recognition (ASR), Text-to-Speech (TTS) technology, and context-based multimodal interaction management. Their solutions cater to various industries, including automotive, smart logistics, robotics, and healthcare, enhancing user experiences with personalized and proactive assistance. Quality is a priority for semvox, which adheres to A-SPICE L2 and ISO 21434:2021 standards, supported by dedicated quality assurance and cybersecurity teams.",2008,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69597d7957cc440001c4da1d/picture,CARIAD (cariad.technology),5fc9ab79a75d70000189155b,"","","","","","","" +IF-Tech AG,IF-Tech AG,Cold,"",62,information technology & services,jan@pandaloop.de,http://www.if-tech.de,http://www.linkedin.com/company/if-tech-ag,"","",4 Willy-Brandt-Allee,Munich,Bavaria,Germany,81829,"4 Willy-Brandt-Allee, Munich, Bavaria, Germany, 81829","single sign on solutions, modern datacenter, nutanix, enterprise mobility, darktrace, enterprise mobility management, azure, cloud service provider, it architecture, arbeiten 40, next datacenter, files everywhere, homeoffice, remote work, digital workplace, sso, future of work, datacenter, microsoft, email security, cloud readiness, cloudbased services, cloud solutions, citrix, puppet, digital workspace, cloud computing, managed services, red hat, cato, virtualization, modern workplace, emm, hybrid cloud, next generation workplace, followme data, network security, network architecture, linux, sase, singlesign on, collaborative solutions, business continuity, igel, it services & it consulting, open source automation, it-dienstleister, it infrastructure, security management, cybersecurity, consulting, devops, services, it-infrastruktur, information technology and services, netzwerk & it-security, it security, computer software and services, it-resilienz, rechenzentrum & infrastruktur, cloud migration, automatisierte it-sicherheit, containerisierung, compliance management, it-consulting, it-beratung, linux solutions, b2b, data center & infrastructure, computer systems design and related services, zero trust, microsoft 365, cross-tenant migration, it solutions, hybrid multi-cloud, devops services, it consulting, it support, virtualisierung, automatisierung, sd-wan, lokale ki-lösung, ki-lösungen, sase cloud, künstliche intelligenz, cloud services, data security, digital transformation, hybrid it, infrastructure-as-code, security assessment, information architecture, information technology & services, enterprise software, enterprises, computer software, computer & network security, management consulting",'+49 89 200066910,"Microsoft Office 365, WordPress.org, Google Tag Manager, Gravity Forms, Etracker, Mobile Friendly, Vimeo, Adobe Media Optimizer, Apache, Cedexis Radar, Hubspot, reCAPTCHA, Linkedin Marketing Solutions, Bootstrap Framework, Remote, Nutanix","","","","","","",69c281641cba2c0001f0db12,7375,54151,"IF-Tech AG is an IT service provider based in Munich, Germany, specializing in cloud solutions, modern workplace technologies, security, and artificial intelligence. Founded in 2010, the company has established itself as a leading consultant for Microsoft technologies in Germany and is part of the connexta Group. The management team, led by Marco Klose and Hans-Jörg Friedrich, guides the company's strategic direction. + +The company offers a range of IT solutions, including cloud services that focus on compliance, digital identity management, and AI-powered security. IF-Tech also creates modern digital work environments to enhance agile working conditions and develops customized AI solutions for business process automation and customer service. Additionally, the company provides cybersecurity and infrastructure automation services, utilizing leading Microsoft technologies to enhance data security and modernize IT operations. IF-Tech serves large mid-market and enterprise clients in Germany and internationally, positioning itself as an innovation leader and strategic partner.",2010,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68bd95e666cda70001e9c993/picture,"","","","","","","","","" +pelo IT,pelo IT,Cold,"",15,information technology & services,jan@pandaloop.de,http://www.pelo-it.com,http://www.linkedin.com/company/pelo-it,"","",8 Peiner Strasse,Hanover,Lower Saxony,Germany,30519,"8 Peiner Strasse, Hanover, Lower Saxony, Germany, 30519","pmo, it outsourcing, contract management, migration, matrix42, vertragsverhandlung, it projekte, vertragsgestaltung, projekt management, it consulting, it beratung, prozessoptimierung, it service management, java, requirements engineering, itil, vermittlung von freiberuflern, freelancer, service management, endpoint managment, cobol, lizenzmanagement, it-systeme, it infrastructure, it vendor management, consulting, information technology and services, services, it automation, it-partner, it-lösungen, it security, it consulting services, it-contract & sourcing management, it platform consolidation, it workflow automation, it system integration, it sourcing, it change management, it project implementation, it compliance, digitalisierung, it-projekte, it project support, it process automation, it service automation, transformation & change management, it-management, it-beratung, b2b, computer systems design and related services, it sourcing strategies, it solutions, it cost optimization, it support, it transformation, it-services, it services, it system optimization, it service integration, it process automation tools, it data management, it strategy, digital transformation, it management platform, it asset management, outsourcing/offshoring, information technology & services, management consulting, computer & network security",'+49 51 184897730,"Outlook, Microsoft Office 365, Google Analytics, Apache, Squarespace ECommerce, Google Tag Manager, Typekit, Mobile Friendly, Bing Ads, Linkedin Marketing Solutions, WordPress.org, Vimeo","","","","","","",69c281641cba2c0001f0db16,7371,54151,"pelo IT – We make people love IT + +Die pelo IT GmbH steht für nachhaltige Digitalisierung mit Herz und Verstand. Als erfahrenes IT-Beratungsunternehmen mit über 40 Jahren Expertise begleiten wir unsere Kunden ganzheitlich auf ihrem Weg in die digitale Zukunft. Unsere Leistungen gliedern sich in drei spezialisierte Divisions: + +● IT-Contract & Sourcing Management: Wir unterstützen Unternehmen bei der strategischen Auswahl, Steuerung und Optimierung externer IT-Dienstleister und Verträge. +● Transformation & Change Management: Wir gestalten Veränderungsprozesse aktiv mit – durch klare Kommunikation, gezieltes Stakeholder-Management und nachhaltige Verankerung neuer Arbeitsweisen. +● Professional Services: Unsere Expert:innen bringen tiefes technisches Know-how in Ihre Projekte ein – von der IT-Strategie bis zur operativen Umsetzung. + +Was uns auszeichnet? Ein partnerschaftlicher Ansatz auf Augenhöhe, ein tiefes Verständnis für Technologie und Organisation – und der Anspruch, IT für Menschen erlebbar und erfolgreich zu machen.",1984,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66dd114bbf128c0001fd7dd8/picture,"","","","","","","","","" +FUTUREDAT GmbH,FUTUREDAT,Cold,"",19,information technology & services,jan@pandaloop.de,http://www.futuredat.com,http://www.linkedin.com/company/futuredat,"","",9 Otto-Dix-Strasse,Gera,Thuringia,Germany,07548,"9 Otto-Dix-Strasse, Gera, Thuringia, Germany, 07548","consulting, it service management, prozesse, cybersecurity, access rights management, itam, sam, weiterbildungen, compliance management, it security, it lifecycle management, it services & it consulting, b2b, softwarelösungen, it operations, it system management, firewall, it-security, it monitoring, managed services, it-solutions, labeldruck software, information technology and services, it consulting, it-lösungen, benutzerrollen kopieren, dns security, cyber security solutions, massendatenänderung, inhouse-entwicklung, it-workflow builder, unified endpoint management, it asset management, it risk management, it system integration, it security germany, compliance software, cloud-based it, managed service management, it infrastructure management, iso 27001, automatisierte softwareverteilung, it-management add-ons, it-management, it-asset inventarisierung, rechtssicherer labeldruck, datenschutz, managed service providers, services, it-infrastruktur, it-prozessdigitalisierung, it process optimization, cyber security, it workflow automation, data security, it service automation, computer systems design and related services, endpoint security, it-services, it security software, schnittstellenentwicklung, endpoint management, threat detection, automatisierung, softwareentwicklung, business compliance, it-beratung, it-sicherheitskonzepte, custom software development, service management, it support, it compliance, mobile device management, software development, it infrastructure, computer & network security, information technology & services, management consulting",'+49 365 77356860,"Outlook, VueJS, Slack, Apache, Mobile Friendly, GoToWebinar, Remote, IoT, AI","","","","","","",69c281641cba2c0001f0db1f,7375,54151,"FUTUREDAT steht für IT-Beratung mit Haltung – ehrlich, lösungsorientiert und auf Augenhöhe. +Seit 2006 begleiten wir Unternehmen und öffentliche Organisationen dabei, ihre IT sicher, transparent und zukunftsfähig aufzustellen. + +Unser Fokus liegt auf Enterprise Service Management (ESM), IT-Security und souveränen Cloud-Infrastrukturen. Dabei verbinden wir Beratung, Technologie und Praxisnähe – immer mit dem Ziel, nachhaltige Lösungen zu schaffen, die von allen Beteiligten getragen werden. + +Wir hören zu, analysieren und entwickeln gemeinsam mit unseren Kunden tragfähige IT-Strategien – statt auf kurzfristige Tools oder Ad-hoc-Maßnahmen zu setzen. + +FUTUREDAT ist ein inhabergeführtes Unternehmen mit Standorten in Gera und Erfurt.",2006,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69a80543a9024c000120a595/picture,"","","","","","","","","" +MAI crsd,MAI crsd,Cold,"",30,marketing & advertising,jan@pandaloop.de,http://www.crsd.de,http://www.linkedin.com/company/mai-crsd,"","",4 Zur Alten Flussbadeanstalt,Berlin,Berlin,Germany,10317,"4 Zur Alten Flussbadeanstalt, Berlin, Berlin, Germany, 10317","performance crm, strategy consulting, crm, tracking amp testing, development, user experience design, tracking testing, strategy amp consulting, advertising services, digital marketing, customer engagement, market research, marketing and advertising, data analysis, digital strategy development, b2b, data-driven marketing, information technology and services, computer systems design and related services, data management, marketing automation, customer relationship management, customer data analysis, user experience, analytics, b2b marketing, innovation, data integration, crm strategy, digital branding, services, digital transformation, crm implementation, crm consulting, data analytics, performance marketing, brand strategy, user experience (ux), customer journey mapping, ux design, product experience, multi-channel communication, customer data, ux excellence, strategic consulting, management consulting, sales, enterprise software, enterprises, computer software, information technology & services, marketing & advertising, saas, ux",'+49 172 6310263,"Gmail, Google Apps, Microsoft Office 365, WordPress.org, Vimeo, Bootstrap Framework, Apache, Mobile Friendly, Google Tag Manager, Salesforce Marketing Cloud, Braze, Rapid7 InsightVM, SQL, Figma, Adobe Photoshop, Strato","","","","","","",69c281641cba2c0001f0db20,7375,54151,"Analyse, Strategie und dann: Einfach mal machen! Mit dieser Einstellung begeistern wir unsere Kunden und überzeugen durch messbare Erfolge. Fokussiert auf Performance CRM, UX Excellence und Marketing Automation, verbinden wir Produkte mit relevanter Kommunikation und schaffen so eine einheitliche User Experience über alle Kanäle. Wir agieren nicht als klassischer Dienstleister, sondern als Partner auf Augenhöhe. Dabei schauen wir nicht nur in die Augen unserer Kunden, sondern auch tief in ihre Daten. So gestalten wir gemeinsam und integriert Digitalstrategien, Nutzererlebnisse und nachweislich erfolgreiche CRM-Projekte. + +MAI crsd ist Teil der MAI Group + +Nachhaltige Werte für unsere Kunden. Eine konsequente End-to-end-Digitalisierung entlang der gesamten Wertschöpfungskette ist die Basis für eine zukunftsfähige digitale Ausrichtung von Unternehmen. +Unser Team aus über 300 Digitalspezialisten entwickelt dafür digitale Marken- und Produkterlebnisse aus einer Hand. So schaffen wir für Sie nachweisbares digitales Wachstum. + +www.mai-group.com",2015,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/691566b342b6bf000116f78b/picture,"","","","","","","","","" +WDW Group,WDW Group,Cold,"",66,information technology & services,jan@pandaloop.de,http://www.wdw-consulting.com,http://www.linkedin.com/company/wdw-group,https://de-de.facebook.com/WDWConsulting/,"",7 Charlottenburger Allee,Aachen,North Rhine-Westphalia,Germany,52068,"7 Charlottenburger Allee, Aachen, North Rhine-Westphalia, Germany, 52068","development, managed services, consulting, it services & it consulting, legacy system modernisierung, it prozessdigitalisierung, it-projektmanagement, automatisierte workflow-orchestrierung, devops, rechenzentrumsumzüge, ki-prompts, gitlab, microservices, it-architekturberatung, cloud infrastructure, computer systems design and related services, docker, it-sicherheit, prozessautomatisierung, automatisierte deployment-prozesse, ci/cd pipelines, it security, it-transformation, custom software, services, it-infrastruktur, it monitoring, it consulting, ki-basierte kundenservice-optimierung, automatisierungstools, it compliance, powershell, skripterstellung, kubernetes, b2b, terraform, fehlerbehebung, ci/cd, bash, azure devops, softwareentwicklung, container management, it-architektur, business analyse, camunda bpm, information technology and services, cloud migration, ki-gestützte optimierung, information technology & services, enterprise software, enterprises, computer software, internet infrastructure, internet, computer & network security, management consulting",'+49 24 1968920,"Outlook, Microsoft Office 365, Atlassian Cloud, Slack, Azure Devops, Microsoft PowerShell, GitLab, Kubernetes, Docker, Radia Client Automation","","","","","","",69c281641cba2c0001f0db10,7375,54151,"Seit über 30 Jahren bringen wir Menschen zusammen, um gemeinsam die IT-Probleme unserer Kunden zu lösen. Wir stehen für Pragmatismus, absolute Zuverlässigkeit und außergewöhnliche Kompetenz. In der Zusammenarbeit mit unseren Konzernkunden spielen wir unsere Stärken aus und stehen verbindlich zu unserem Wort. + +Durch die enge Zusammenarbeit unserer Fachkräfte aus den Bereichen Consulting, Development und Managed Services sind wir Umsetzungspartner für IT-Projekte mit den Schwerpunkten Prozessautomatisierung, Softwareentwicklung und Managed Services. + +Dabei ist WDW mehr als nur gemeinsames Arbeiten. Wir lieben, was wir tun, bevorzugen flache Hierarchien und eine ordentliche Portion Pragmatismus. Vor allem aber haben wir Spaß bei der Arbeit.",1995,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/677ac5df2ed7db00011e8522/picture,"","","","","","","","","" +Amplio — Amplifying brands digitally,Amplio — Amplifying brands digitally,Cold,"",17,management consulting,jan@pandaloop.de,http://www.tmc-amplio.de,http://www.linkedin.com/company/amplio,"","","",Paderborn,North Rhine-Westphalia,Germany,"","Paderborn, North Rhine-Westphalia, Germany","digital marketing, growthdriven design, webtech, tech, strategy, data ux, user experience, business consulting & services, personalisierung, api-driven webentwicklung, api-entwicklung, services, cloud-services, web-development & api, ki-gestützte content-optimierung, e-commerce-integration, e-commerce-lösungen, datenvisualisierung, ki in der content-strategie, web-apps, digital beratung, barrierefreie webentwicklung, content-erstellungstools, datenanalyse, api-sicherheit und datenschutz, virtuelle assistenten, data analytics, ki-gestützte customer experience, information technology and services, markenentwicklung, ki-gestützte personalisierung, web development, markenstrategie, webanwendungen, content marketing, cms-entwicklung, customer journey, generative ai, api-management, cloud computing, ki-basierte lösungen, api-first-strategie, datengetriebenes marketing, content creation, kundenorientierung, api economy, seo-optimierung, web-performance, performance marketing, content delivery networks, chatbots, agile methoden, datenbasierte strategien, marketing automation, nachhaltiges wachstum, user research, online marketing & crm, agile entwicklung, b2b, web-lösungen, responsive design, digital transformation, seo, api-integration, digitales marketing, automatisierungstools, customer engagement, customer experience, customer journey mapping, automatisierung, heatmaps, web-performance-optimierung, digital marketing and advertising, digitalstrategie, technologieberatung, web-architekturen für skalierbarkeit, barrierefreies design, digital strategy, barrierefreiheit, ux-design, ki-basierte content-erstellung, kanalübergreifende kampagnen, e-commerce, automatisierte content-optimierung, webplattformen, technologieentwicklung, a/b-testing, innovationsmanagement, web-integrationen mit ki, consulting services, ki-implementierung, partnernetzwerk, barrierefreie weblösungen, weblösungen, webhosting, web development and software engineering, ki-integration, kanalstrategie, digital ecosystems, automatisierte nutzeranalysen, consulting, digitales wachstum, generative ai im marketing, content-erstellung, digitalberatung, api-first-ansatz, content management, kundenbindung, software development, webentwicklung, webdesign, computer systems design and related services, api-management für unternehmen, api-sicherheit, ux-testing, digitales wachstum für b2b-unternehmen, innovative technologien, distribution, consumer_products_retail, transportation_logistics, marketing & advertising, ux, management consulting, information technology & services, enterprise software, enterprises, computer software, saas, search marketing, marketing, consumer internet, consumers, internet, web design",'+49 5251 688870,"Outlook, Microsoft Office 365, Mobile Friendly, Google Tag Manager, Apache, Remote, Jira Work Management, TYPO3, Shopware, PHP, MySQL","","","","","","",69c281641cba2c0001f0db0d,7375,54151,"Amplio is a hybrid digital consultancy and agency based in Paderborn and Bielefeld, Germany. As a spin-off of TMC _ The Marketing Company, Amplio specializes in digital growth, marketing, and sales digitalization. The agency focuses on enhancing brand presence in the digital space through strategic innovation and hands-on implementation. With over 30 years of experience from the TMC group, Amplio emphasizes a ""3-in-1"" principle, offering integrated marketing solutions that include digital marketing, creative branding, and event management. + +Amplio provides a range of digital services, including digital strategy development, customer intelligence, and experience enhancement. The agency creates growth-oriented digital marketing campaigns and develops innovative websites, eCommerce solutions, and connected platforms. Amplio prioritizes data-driven strategies and fosters collaboration with clients to achieve sustainable success in their marketing and sales efforts. Key management includes Jan Leifker, Co-Founder and CEO.",2023,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6725b2ef755f840001a06f5d/picture,"","","","","","","","","" +wirverbindenwelten.de GmbH,wirverbindenwelten.de,Cold,"",21,information technology & services,jan@pandaloop.de,http://www.wirverbindenwelten.de,http://www.linkedin.com/company/wirverbindenwelten.de-gmbh,"","",33 Parkstrasse,Hohenwestedt,Schleswig-Holstein,Germany,24594,"33 Parkstrasse, Hohenwestedt, Schleswig-Holstein, Germany, 24594","managed itservices outsourcing, digitale transformation itmodernisierung, cloudstrategie cloudmigration, datenmanagement itcompliance dsgvo, netzwerk und infrastrukturmanagement, itsicherheit cybersecuritykonzepte, softwareentwicklung apimanagement, itstrategieberatung technologieroadmaps, itdienstleistungen itsupport, zero trust security identitaetsmanagement, hybridit multicloudmanagement, modern workplace digital workflows, endpointsecurity mobile device management, enterprise itarchitektur systemintegration, it services & it consulting, information technology & services",'+49 800 0060011,"SendInBlue, Outlook, Microsoft Office 365, Rackspace MailGun, Kajabi, Hubspot, Facebook Login (Connect), Apache, Facebook Widget, Mobile Friendly, Google Tag Manager, Facebook Custom Audiences, WordPress.org","","","","","","",69c281641cba2c0001f0db15,"","","DIGITAL IMPULSE DRIVES – Transformation beginnt mit klaren Impulsen + +Die digitale Transformation ist kein vorübergehender Trend – sie ist Umbruch, Zeitenwandel und die Realität, in der Unternehmen und Kunden auf neuen Wegen zusammenfinden. + +Mit 25 Jahren IT-Expertise bieten wir Unternehmen und Organisationen in der Wirtschaftsregion Schleswig-Holstein und Hamburg gezielte Impulse und messbare Mehrwerte für die dynamische Nutzung digitaler Möglichkeiten. + +Digitale Transformation ist ein neues Kapitel der technischen Umsetzung unserer Kommunikation, unserer Zusammenarbeit und der Verknüpfung von Prozessen, in der Datenschutz, IT-Security und Informationssicherheit die robuste Basis für Vertrauen und neue Wege bilden, wie wir unsere Arbeit in Angriff nehmen. + +Wir begleiten Unternehmen strategisch auf dem Weg ihrer digitalen Transformation – mit den richtigen Inhalten, Lösungen und Werten einer digitalen Zukunft. + +DIGITAL IMPULSE DRIVES – Impulse für die Herausforderungen unserer digitalen Zukunft. + +www.wirverbindenwelten.de",1998,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/682ab2f0a8019e0001501e19/picture,"","","","","","","","","" +G+H Systems GmbH,G+H,Cold,"",26,information technology & services,jan@pandaloop.de,http://www.guh-systems.de,http://www.linkedin.com/company/guh-systems,"","",8 Ludwigstrasse,Offenbach,Hesse,Germany,63067,"8 Ludwigstrasse, Offenbach, Hesse, Germany, 63067","inchorus, consulting, it-infrastruktur, it-asset management, it consulting, it-management tools, softwareentwicklung, daccord, information technology and services, daccord microsoft edition, it-lösungen, computer systems design and related services, endpoint management solutions, software integration, it-compliance tools, support services, access control, zenworks management, it-sicherheitslösungen, endpoint management, b2b, it-security management, it-management, daccord access governance edition, access control systems, microsoft edition, access governance, it-beratung, support, it-security solutions, it-automatisierung, software solutions, it-rollenmodellierung, software development, compliance, it-security, services, identity management, it support, it-prozessoptimierung, it-sicherheit, information technology & services, management consulting, privacy",'+49 69 8500020,"Outlook, Microsoft Office 365, Piwik, Apache, Mobile Friendly, GoToWebinar, Google Tag Manager, IoT, Data Analytics, AI","","","","","","",69c281641cba2c0001f0db18,7375,54151,"Die G+H Systems GmbH ist ein führendes, bundesweit agierendes Software und Consulting Unternehmen mit Sitz in Offenbach am Main. Das Unternehmen beschäftigt sich mit IT-Lösungen von exklusiven Partnern und eigens entwickelten Softwareprodukten. + +Lösungsbereiche sind: + +· Infrastruktur Lösungen + +· Web Lösungen + +· Identity- & Access Management Lösungen + +· Produktentwicklung + +· Support + +Die G+H Systems hat es sich zur Aufgabe gemacht, Kunden von der Auswahl und Konzeption bis hin zur Integration und Inbetriebnahme komplexer IT-Systeme zu begleiten und zu beraten. Das Ziel der G+H ist es, Kunden durch die Implementierung bedarfsgerechter IT-Lösungen sowohl Kosten- als auch Wettbewerbsvorteile zu verschaffen.",2005,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68b7f870b3ffe600019401b3/picture,"","","","","","","","","" +"Actinium Consulting AG, Lindau",Actinium Consulting AG Lindau,Cold,"",18,information technology & services,jan@pandaloop.de,http://www.actinium.de,http://www.linkedin.com/company/actinium-consulting-gmbh-lindau,https://facebook.com/actiniumconsulting,"",28 Robert-Bosch-Strasse,Lindau,Bavaria,Germany,88131,"28 Robert-Bosch-Strasse, Lindau, Bavaria, Germany, 88131","big data, planning, processes, data lake, reporting, marketing sales, crm, data analytics, innovation knowledge management, business intelligence, data warehousing, erp, digitalisierung, consolidation, financial consolidation, azure, ai & ml, branding strategy, human ressources management, data warehouse, infor ln erp, microsoft bi, it services & it consulting, business consulting, cloud computing, it strategy, data management, iot, business strategy, geschäftsprozesse, business process reengineering, data evaluation, supply chain, management consulting, global business integration, security, b2b, professional, scientific, and technical services, data consolidation, management consulting services, government, software development, erp solutions, digital transformation, it security, supply chain optimization, data architecture, datenanalyse, data quality management, data security audits, process optimization, machine learning, business process rationalization, consulting, data migration support, business performance management, data mining, data visualization, data governance, data-driven decision making, artificial intelligence, it-organisation alignment, information technology and services, it-integration, business process automation, services, enterprise software, enterprises, computer software, information technology & services, sales, analytics, computer & network security",'+49 8382 2772780,"WordPress.org, Vimeo, Mobile Friendly, Facebook Custom Audiences, Facebook Login (Connect), reCAPTCHA, Google Tag Manager, Facebook Widget, Nginx, Remote","","","","","","",69c281641cba2c0001f0db1a,7375,54161,"Die Actinium Consulting AG ist eine 1999 gegründete internationale Beratungsagentur mit Hauptsitz in Lindau und Projektbüros in Dortmund, Wien, Graz und Au (St. Gallen). + +Actinium steht für Fortschritt in Ihrem Business. +Unsere Kernkompetenzen in unseren Geschäftsbereichen ""Business Intelligence"" und ""Infor LN"" stellen sicher, dass Unternehmen durch unsere Expertise effektivere Geschäfts- und Entscheidungsprozesse erleben. + +Unsere Dienstleistungen: +• Business Intelligence (BI): Unsere Herstellerunabhängigkeit im BI-Bereich ermöglicht es uns, maßgeschneiderte Lösungen für Data Warehouse, Planung & Reporting, Datenanalyse, KI und ML zu anzubieten. Auch Themen wie Industrie 4.0 und Digitalisierung sind für uns kein Neuland– wir garantieren einen signifikanten Nutzen in kürzester Zeit. +• Infor LN: Als Infor Partner transformieren wir Ihre Geschäftsprozesse. Sei es durch Neuimplementierungen (Cloud), Anpassungen von Infor LN, oder durch die Integration von innovativen Technologien wie Mobile-Apps, Drittsystemen, etc. Für die Umsetzung durchgängiger Prozesse sind wir der ideale Partner. + +Werte & Philosophie: +• Qualität: Wir stehen für durchgängige Daten- und Informationsflüsse, standardisierte Prozesse und erstklassige Ergebnisse. +• Transparenz & Agilität: In einer sich ständig verändernden Geschäftswelt sind wir der agile, transparente und ergebnisorientierte Partner, den Sie benötigen. +• Partnerschaft: Unser Beratungs- und Implementierungsansatz stellt sicher, dass wir in enger Abstimmung mit Ihnen den optimalen Weg finden. + +Mission: +Komplexe Anforderungen sinnvoll vereinfachen. Unser Bestreben ist es, jedes Unternehmen, mit dem wir zusammenarbeiten, durch innovative Technologien und Strategien zu stärken.",1999,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68325c1c85b66500018a0236/picture,"","","","","","","","","" +Experience One,Experience One,Cold,"",110,design,jan@pandaloop.de,http://www.experienceone.com,http://www.linkedin.com/company/weareeo,https://facebook.com/weareeo,https://twitter.com/experienceoneag,5 Schinkelplatz,Berlin,Berlin,Germany,10117,"5 Schinkelplatz, Berlin, Berlin, Germany, 10117","transformation, design, strategy, business design, technology, engineering, fintech, configurator, agentic ai, custom solutions, cui, ux, ui, connected car, cx, customer experience, ai, experience design, generative ai, ki, ux design, data analysis, retail, mobile app, b2b, whitepapers, ai experience maturity model, generative ai in marketing, digital marketing, customer journey, consulting, customer experience strategy, cx consulting, ai frameworks, ai-driven customer experience, data science, information technology and services, mobile apps, automotive, government, platform development, digital solutions, services, digital twin in customer service, digital transformation, design system, computer systems design and related services, e-commerce, d2c, software development, agentic ai roadmap, web development, ai-enabled energy consulting, finance, distribution, transportation & logistics, finance technology, information technology & services, financial services, data analytics, marketing & advertising, consumer internet, consumers, internet","","Microsoft Office 365, Jira, Atlassian Confluence, React Redux, GitLab, GitHub Hosting, Hubspot, Slack, Google Analytics, Vimeo, Google Tag Manager, Mobile Friendly, Remote, React Native, Data Analytics, Python, TypeScript, AWS Bedrock, Azure Data Lake Storage, Dell EMC PowerStore, Google, Langchain, LangGraph, MLflow","","","","","","",69c281641cba2c0001f0db1c,7375,54151,"Experience One is a customer experience and digital solutions company based in Germany. With over 130 experience engineers, the company operates from three locations: Berlin, Frankfurt, and Stuttgart. Experience One focuses on transforming customer experiences into business success by developing digital products that blend technology, design, and strategy. + +The company offers a range of services, including strategy and research, design, and development. They specialize in creating complex platforms that enhance customer engagement and integrate various touchpoints into seamless customer journeys. Notable projects include the Mercedes me Store App, an award-winning Lifestyle Configurator, and a comprehensive B2C platform for Bosch. Experience One collaborates with prominent brands such as Mercedes-Benz, AOK, and Deutsche Bahn, delivering impactful digital solutions across multiple markets.",2006,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670af81a952d190001748b61/picture,"","","","","","","","","" +Blackboat,Blackboat,Cold,"",33,management consulting,jan@pandaloop.de,http://www.blackboat.com,http://www.linkedin.com/company/blackboat,"","",54A Bogenstrasse,Hamburg,Hamburg,Germany,20144,"54A Bogenstrasse, Hamburg, Hamburg, Germany, 20144","on the way to new work, collaboration, future of work, microsoft 365, change management, digitalisierung, it security, company building, lean business processes, unternehmensberatung, g suite, google, digitalization, coo chief operating officer, internet, new work, digitale transformation, office 365, ai enablement, slack, microsoft, workspace, microsoft teams, chatgpt, genai, kollaboratives arbeiten, ki, sales basics, operations, innovation, cloud, business consulting & services, workplace automation, google workspace consulting, remote work, ai project support, google workspace support, information technology & services, b2b, ai implementation, collaboration tools, digital collaboration culture, digital tools training, ai in communication, generative ai training, ai officer training, collaboration enhancement, educational services, ai officer certification, cloud security, consulting, microsoft copilot, ai strategy, content creation, ai storytelling, microsoft 365 change pack, digital culture, services, information technology and services, ai bootcamp, cloud tools, automation, eu ai act compliance, cloud integration, workplace digitalization, virtual support, management consulting services, management consulting, remote collaboration, cloud license management, ai in hr, digital transformation, employee engagement, digital workplace, ai training, ai strategy consulting, microsoft 365 consulting, education, computer & network security",'+49 40 40110080,"Mimecast, Outlook, MailChimp SPF, Zendesk, Oracle Cloud, Microsoft Power BI, Microsoft Azure, Slack, Apache, YouTube, Mobile Friendly, Bing Ads, Shopify, Google Tag Manager, Vimeo, SailPoint, CyberArk, AI, Hubspot","","","","","","",69c281641cba2c0001f0db0f,7375,54161,"Blackboat – The New Work Group is a business consulting firm based in Hamburg, Germany, founded in 2010. The company specializes in optimizing workplace collaboration through artificial intelligence, cloud technologies, and modern tools. With around 29-30 employees, Blackboat reported $4 million in annual revenue in 2024. Their motto, #WorkFasterTogether, reflects their commitment to enhancing team collaboration and productivity. + +Blackboat offers a range of services, including transformation and change management, digital workplace implementation, AI strategy, and communication enhancement. They focus on creating sustainable, human-centered workplaces that prioritize joy, speed, and effectiveness. The firm integrates various technologies, such as Microsoft 365, Google Workspace, and Slack, to support their consulting services. Blackboat also promotes its ""New Work"" philosophy internally, fostering innovation and self-determined work through digital tools.",2010,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66ed073016abac0001bb7158/picture,"","","","","","","","","" +Cloud Orbit Technologies,Cloud Orbit,Cold,"",53,information technology & services,jan@pandaloop.de,http://www.cloudorbit.tech,http://www.linkedin.com/company/cloudorbit-technologies,"","",9 Haidhauser Strasse,Munich,Bavaria,Germany,81675,"9 Haidhauser Strasse, Munich, Bavaria, Germany, 81675","data management, microservices architecture, mulesoft, application integration, cloud computing, mq integration, digital transformation, enterprise integration, driver monitoring system, data recovery, information technology and services, it services, vehicle camera systems, automation, lane departure warning system, iot, system integration, surround view system, data security, manufacturing, disaster recovery planning, security implementation, automatic side mirror, consulting, infrastructure, api integration, b2b, high availability, transportation & logistics, openshift, open source services, devops support, services, software development, kubernetes, computer systems design and related services, redhat openshift, cloud infrastructure, distribution, enterprise software, enterprises, computer software, information technology & services, computer & network security, mechanical or industrial engineering, internet infrastructure, internet","","Outlook, Mobile Friendly, Google Font API, Bootstrap Framework, WordPress.org, Remote, C#, Azure Linux Virtual Machines, BlackBerry QNX, Android, ServiceNow Case and Knowledge Management, SAP, SAP SD, .NET, Python, Jira, CAT, Oracle Cloud, Red Hat OpenShift, Amazon Linux 2, Triple Whale, Gradle, Totango, ABAP, FICO Safe Driving Score, Argocd, HELM, Kubernetes, Terraform, Ansible, Git, Octane, IBM Rational DOORS, React Router, FIS, SAP BusinessObjects Business Intelligence (BI), VTScada","","","","","","",69c281641cba2c0001f0db13,7375,54151,"Cloud Orbit Technologies (COT) is an IT services startup founded in 2020, based in Frankfurt Am Main, Germany, with a UK entity established in December 2025. The company specializes in digital transformation, enterprise integration, cloud infrastructure, and advanced technologies such as AI and IoT. COT aims to bridge technology and society through innovative services and consulting, focusing on DevOps, Agile transformation, and built-in quality development. + +COT offers a wide range of IT services, including custom software development, cloud computing, enterprise integration, and data management. Their technical support is available 24/7, providing problem ownership and expert consultations. The company also develops industry-specific technologies, particularly in automotive systems, such as Advanced Driver Assistance Systems (ADAS) that include driver monitoring and lane departure warning systems. COT emphasizes flexible architectures to streamline operations and enhance competitiveness for its clients.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/673c47e9eb83f100012f2b56/picture,"","","","","","","","","" +OMM Solutions GmbH,OMM Solutions,Cold,"",18,information technology & services,jan@pandaloop.de,http://www.omm-solutions.de,http://www.linkedin.com/company/omm-solutions-gmbh,"","",19 Vor dem Lauch,Stuttgart,Baden-Wuerttemberg,Germany,70567,"19 Vor dem Lauch, Stuttgart, Baden-Wuerttemberg, Germany, 70567","external innovation management, startup research, technology navigation, java, trusttech, law firms, legal market, data visualization, business intelligence, innovation research, process automation, entrepreneurship, rpa, digital innovation, innovation tools, frugal innovation, strategic innovation management, automation, business modelling, corporate foresight, digital transformation, open innovation, new technology management, startup collaboration, market research, project management, incubation, software development, innovation management, new business models, performance marketing, startup as a service, software programming, collaboration management, tech education, innovation marketing, consulting, corporate startup, corporate startup garage, solution finder, sparring, angular, externes innovationsmanagement, legaltech, regulatory market, entrepreneurial orientation, innovation compliance, government, geschäftsmodelle, automatisierung, risk assessment, partnerschaften, technology scouting, blockchain, cloud services, technologiebewertung, partnerschaftsmanagement, healthcare, digital product development, technology assessment, computer systems design and related services, iot, automatisierungslösungen, solution operation, digitale plattformen für energieversorger, prozessautomatisierung, partner- & netzwerk-orchestration, energy & utilities, big data, data analytics, digital transformation tools, services, data-warehouse, rpa-workshops, automatisierte finanzberichterstattung, technologietrends frühzeitig erkennen, gewerbeflächendatenbank, cloud-plattformen, chatbot-integration, solution development, ai & machine learning, b2b, information technology & services, digitale lösungen für medizintechnik, financial services, digital ecosystem, product development, innovationsnetzwerke, technologieentwicklung, ai-technologien, manufacturing, technology consulting, ai integration, automatisierte konstruktion, cloud computing, workflow automation, process optimization, cloud deployment, finance, non-profit, analytics, productivity, marketing & advertising, enterprise software, enterprises, computer software, health care, health, wellness & fitness, hospital & health care, mechanical or industrial engineering, management consulting, nonprofit organization management",'+49 711 99598580,"Gmail, Google Apps, Hubspot, Mobile Friendly, Google Tag Manager, Google Font API, Apache, WordPress.org, Remote, AI","","","","","","",69c281641cba2c0001f0db17,7375,54151,"OMM Solutions GmbH is an independent digital transformation partner based in Stuttgart, Germany. Founded in 2012, the company focuses on innovation, technology development, and business process automation for medium-sized and large enterprises. With a team of around 25 employees, OMM Solutions has successfully completed over 250 projects across more than 15 industries, generating approximately $2 million in revenue. + +The company offers three main services: digital innovation and collaboration, digital solutions implementation, and process automation. OMM Solutions specializes in Robotic Process Automation (RPA), particularly in AI-driven document understanding and process mining. Their technical expertise spans various technologies, including JavaScript, HTML, and PHP. OMM Solutions is committed to customer-centric delivery and emphasizes end-to-end project execution, ensuring organizations receive comprehensive support throughout their digital transformation journey.",2013,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6718436cdf82c10001322ded/picture,"","","","","","","","","" +S-KON Sales Kontor Hamburg AG,S-KON Sales Kontor Hamburg AG,Cold,"",41,telecommunications,jan@pandaloop.de,http://www.saleskontor.com,http://www.linkedin.com/company/s-kon-sales-kontor-hamburg-ag,"","","",Hamburg,Hamburg,Germany,"","Hamburg, Hamburg, Germany","","","SendInBlue, Outlook, Google Cloud Hosting, Microsoft Office 365, Google Tag Manager, Google Frontend (Webserver), Mobile Friendly","","","","","","",69c281641cba2c0001f0db11,"","",S-KON Sales Kontor Hamburg AG is a telecommunications company based out of Germany.,"",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/63edac0a998f12000100b12d/picture,"","","","","","","","","" +Skilja,Skilja,Cold,"",23,information technology & services,jan@pandaloop.de,http://www.skilja.com,http://www.linkedin.com/company/skilja,"",https://twitter.com/Skilja_DU,49 Kartaeuserstrasse,Freiburg,Baden-Wuerttemberg,Germany,79102,"49 Kartaeuserstrasse, Freiburg, Baden-Wuerttemberg, Germany, 79102","it services & it consulting, online learning, unstructured data processing, workflow automation, hierarchical classification, consulting, enterprise software, ai model testing, deep learning, ai model lifecycle, ai ocr, services, idp solutions, text analysis, model deployment, computer systems design and related services, ai model customization, ai model management, ocr recognition, ai model creation, ai model versioning, online model training, multi-channel document processing, cloud services, process automation, ai model optimization, enterprise platform, ai model learning, document clustering, ai model management system, ai model training, semantic understanding, ai model training tools, scalable platform, b2b, business process management, business critical processes, ai model monitoring, document understanding, software development, on-premise deployment, predictive generative algorithms, data extraction, enterprise automation, cognitive document recognition, cognitive services, information technology and services, rpa integration, artificial intelligence, ai model integration, ai model configuration, machine learning, ai technologies, microservice architecture, security and privacy, ai model deployment tools, ai model development, ai model improvement, ai, information technology & services, e-learning, internet, computer software, education, education management, enterprises, cloud computing",'+49 761 76602355,"Slack, WordPress.org, Google Font API, Apache, Mobile Friendly, AI, Xamarin",630000,Other,630000,2014-09-01,"","",69c281641cba2c0001f0db1b,7375,54151,"Skilja is about finding ways to facilitate decisions and to make automatic decisions. Decisions need document understanding because decisions are based on the meaning of text and therefore the meaning of text must be understood. + +Skilja.com features several articles per month about the technology of document understanding and decision making. We cover the complete spectrum from basic principles of cognitive science and their usage over software technology down to market analysis and practical applications. + +Skilja is also company that actively works in producing software for document understanding. We do this either through consulting and project management in cooperation with other companies or by programming our own components.",2012,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e6aa516bb4ac000161686d/picture,"","","","","","","","","" +TMK Thomas Mack Kommunikation GmbH,TMK Thomas Mack Kommunikation,Cold,"",47,information technology & services,jan@pandaloop.de,http://www.tmk.de,http://www.linkedin.com/company/tmk-thomas-mack-kommunikation-gmbh,https://www.facebook.com/people/TMK-Thomas-Mack-Kommunikation-GmbH/100087116316391/,"",9 Neuer Weg,Muenzenberg,Hessen,Germany,35516,"9 Neuer Weg, Muenzenberg, Hessen, Germany, 35516","conceptual design, lan, data centers, siptrunking, planning, carrier amp provider, wlan, virtualization, unified communication, archiving, human change management, feasibility study, pmo, uc collaboration, wan, project management, carrier provider, cloudification, devices peripherals, workflow integration, automation, risk management, migration planning, storage backup, voice portals, consulting, telephony, sd networks, it workplace, m365 o365, videoconferencing, recording, workforce engagement, stakeholder management, mobility, network management, dialer, windows office migration, trading telephony, conferencing, omnichannel contact center, project marketing, security concepts, service transition, storage amp backup, uc amp collaboration, mobile network, fixed network, directory services, self services, iso27001, rfp rfi, requirement management, control center telephony, user experience, public tender, implementation management, it services & it consulting, critical event management, netzautomatisierung, public sector, migration, it-security, netzkonzepte, data center, soc as a service, projektmanagement, unified communications, information technology and services, videokonferenzsysteme, digitalisierung, change management, telecommunications, ucc, it-transformationsprojekte, multi-cloud-strategien, virtualisierung, eu-weite ausschreibungen, cloud, security services, vergabemanagement, it-strategie, endpoint security, it-sicherheitskonzepte, services, user adoption management, government, netzwerke, sicherheitskonzepte nach bsi, it-beratung, netzmanagement, bsi grundschutz, cloud readiness, it-architekturplanung, automatisierung von it-prozessen, security, beschaffung, iso 27001, b2b, kommunikation, 5g, it-servicemanagement, management consulting services, it-infrastruktur, vpn, it-change-projekte, internet service providers, information technology & services, productivity, ux, communications",'+49 600 491480,"Outlook, Microsoft PowerPoint, Canva, Figma, Adobe Creative Suite, Microsoft Office, VMware SD-WAN, .NET, Microsoft Fabric, Cisco Secure Firewall Management Center, Rust, ChinaCache, Cisco VPN, Sizmek (MediaMind), Five9 Intelligent Cloud Contact Center Platform, Gem","","","","","","",69c281641cba2c0001f0db1d,7375,54161,"Die TMK Thomas Mack Kommunikation GmbH ist mit >60 Beratern und Projektleitern eines der größten unabhängigen, rein beratend tätigen Unternehmen in Deutschland. Unsere fachlichen Schwerpunkte liegen im Bereich Kommunikation & Collaboration, Contact Center & Customer Experience, Cloud & Data Center, sowie Netze & Security. + +Seit über 30 Jahren beraten wir Kunden in der Privatwirtschaft sowie öffentliche Auftraggeber. Wir entwickeln IT- und Digitalisierungsstrategien, erstellen aktuelle Marktübersichten, individuelle Wirtschaftlichkeitsbetrachtungen und konkrete Handlungsempfehlungen. Wir erarbeiten Fachkonzepte und optimieren Arbeitsplatzprozesse als Basis für erfolgreiche IT-Change-Projekte. Darüber hinaus beraten wir unsere Kunden umfassend zu Governance- und Betriebsmodellen, bei der Einführung von IT Service Management sowie im Bereich Souveränität, Resilienz und IT-Notfallplanung. + +Mit unseren Erfahrungen aus einer Vielzahl erfolgreich umgesetzter Kundenprojekte unterstützen wir im Beschaffungsprozess und in der Umsetzungsphase mit fachlich fundiertem Projektmanagement sowie an der Nutzerschnittstelle mit professionellem und kontinuierlichem User Adoption Management. + +Wir bringen langjährige fachliche und methodische Expertise sowie ein hohes Maß an sozialer Kompetenz in die Aufgabenstellungen ein. Durch unsere umfassende Erfahrung haben wir sehr aktuelle Markt- und Fachkenntnisse bzgl. Anbieter, deren Serviceangebote und Leistungsfähigkeit, Lösungsalternativen und Preisstellungen. + +Unsere Kunden profitieren durch Zeit- & Ressourcenersparnis, fundierte Entscheidungsgrundlagen, Planungssicherheit, Kosten- & Leistungstransparenz sowie eine außerordentliche Projektqualität. + +Portfolio: +• Kommunikation +• Collaboration +• Customer Experience +• Trading & Recording +• Netze +• IT-Sicherheit +• Informationssicherheit +• Cloud & Data Center +• Beschaffung +• Transition Management +• Adoption +• Betrieb + +Rechtliches: +https://www.tmk.de//datenschutz/ +https://www.tmk.de//impressum/",1993,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6863a241dbc419000114e08a/picture,"","","","","","","","","" +AIM,AIM,Cold,"",48,information technology & services,jan@pandaloop.de,http://www.agile-im.de,http://www.linkedin.com/company/agile-it-management,"","",44 Kriegerstrasse,Hanover,Lower Saxony,Germany,30161,"44 Kriegerstrasse, Hanover, Lower Saxony, Germany, 30161","data science, prescriptive logistics, xray, predictive maintenance, testmanagement, releasemanagement, atlassian, smart machines, intelligent document management, jira, industrielle ki & technologieberatung, ai journey, predictive logistics, kuenstliche intelligenz, intelligent digital asset management, predictive supply chain, artificial intelligence, agile journey, industrielle kuenstliche intelligenz, agile, machine learning, devops, technologieberatung, confluence, it services & it consulting, standards and methods, requirements management, automatisierte releaseprozesse, devops tools, software lifecycle, ki integration, cloud migration, itsm, ci/cd, software development, ki-gestützte anforderungen, management consulting services, process optimization, automation, legacy system modernization, information technology & services, it service management, automatisierte testverfahren, knowledge management, test management tools, ki im sdlc, potenzialanalyse softwareentwicklung, tool integration, data driven testing, sicherheits- und compliance-standards, test management, test automation, data-driven testing, continuous delivery, komplexitätsreduktion teams, data security, regulatory compliance, services, consulting, software lifecycle management, agile methods, teams and technologies, team collaboration, b2b, release management, automatisierte patch-prozesse, tool-wildwuchs, process automation, quality assurance, strukturierte migration cloud, education, computer & network security",'+49 511 87459050,"Cloudflare DNS, Rackspace MailGun, Outlook, Microsoft Office 365, Google Tag Manager, Gravity Forms, Nginx, WordPress.org, Ubuntu, Typekit, Mobile Friendly, Remote","","","","","","",69c281641cba2c0001f0db21,7375,54161,"AIM hilft Unternehmen, flexibel auf dynamische Veränderungen zu reagieren. + +Der Vorsprung unserer Kund:innen beruht auf maßgeschneiderten Beratungslösungen, die passgenau auf ihre spezifischen Anforderungen zugeschnitten sind. + +Unser Spirit und Expertise liegt zudem darin, die gewonnenen Vorteile mit DevOps-Prinzipien und innovativen Technologien schneller ausspielen zu können und eine höhere Produktivität und Anpassungsfähigkeit mit robusten, skalierbaren Abläufen und hohem Automatisierungsgrad zu verwirklichen. + +AIM ist als Atlassian Gold Solution Partner und zertifizierter Xray-Partner und Mitglied der Cloud Native Computing Foundation ein führender Anbieter von Softwarelösungen und Beratungsleistungen für den digitalen Arbeitsplatz. Unsere Experten und Expertinnen begleiten Unternehmen aller Branchen bei der Auswahl, der Einführung und dem Betrieb der richtigen Lösung aus der Atlassian Produktpalette.",2015,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f097924ae32b0001a86958/picture,"","","","","","","","","" +the-Company.de GmbH & Co. KG,the-Company.de GmbH & Co. KG,Cold,"",24,telecommunications,jan@pandaloop.de,http://www.the-company.de,http://www.linkedin.com/company/the-company-de,https://www.facebook.com/theCompany.de,"",17 Planckstrasse,Vaihingen an der Enz,Baden-Wuerttemberg,Germany,71665,"17 Planckstrasse, Vaihingen an der Enz, Baden-Wuerttemberg, Germany, 71665","anwendungen fuer contact center kundenerlebnis, mobilfunkinternet iotvernetzungen, notversorung bei pandemien, alarmserver, wlanund breitbandloesungen, tools zur kollaboration und kooperation, cloudloesungen, bundesweites servicenetz, krisenmanagement auf allen ebenen, mobiles schwesternrufsystem von everon, businesstelekommunikationssysteme von mitel, siptrunk mit tcoconnectde, service support, hospitality, carrier management, telefonansagen, omnichannel, hospitality communication, managed services, branchenlösungen, computer systems design and related services, industrial communication, carrier services integration, contact center, business communication solutions, hybrid cloud, unified communications platform, information technology and services, real-time communication analytics, manufacturing, b2b, innovation, location networking, communication technology, healthcare, healthcare communication, itk solutions, customer experience, government, industry-specific communication solutions, scalable communication systems, telephony systems, remote communication management, itk infrastructure, iot, alarm and emergency systems, private cloud, customer engagement tools, cloud services, public sector, unified communications, telecommunications, services, internet of things, carrier solutions, custom communication solutions, cloud telephony, security and emergency communication, public sector communication, consulting, digitalization support, hotellerie, industrie, öffentlicher sektor, cloud, leisure, travel & tourism, information technology & services, mechanical or industrial engineering, health care, health, wellness & fitness, hospital & health care, cloud computing, enterprise software, enterprises, computer software",'+49 7042 288655,"MailJet, Gmail, Outlook, Google Apps, Google Tag Manager, Mobile Friendly, WordPress.org, Apache, Avaya, Mitel","","","","","","",69c281641cba2c0001f0db22,7375,54151,"Wir, die the-Company.de, bieten Ihnen innovative Lösungen und Dienstleistungen +für intelligente Business-Kommunikationslösungen, Konnektivität, Digitalisierung +und Netzdienste. +Als zertifizierter Platinum Partner der Firma Mitel realisieren wir seit 3 Jahrzehnten +maßgeschneiderte Lösungen für Unternehmen aller Größen und Branchen - mit im +Markt unübertroffener Zuverlässigkeit und Wirtschaftlichkeit. +Im Mittelpunkt unseres Full Service-Angebots stehen die Planung, Projektierung und Integration von Kommunikation, unterstützt durch ein bundesweites Service-Netz mit Kooperationspartnern und einem 24-Stunden-Service.",1984,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/676f970415d615000107b2c7/picture,"","","","","","","","","" +enmore consulting AG,enmore consulting AG,Cold,"",62,information technology & services,jan@pandaloop.de,http://www.enmore.de,http://www.linkedin.com/company/enmore-consulting,"",https://twitter.com/enmore_ag,4 Im Leuschnerpark,Griesheim,Hesse,Germany,64347,"4 Im Leuschnerpark, Griesheim, Hesse, Germany, 64347","energiewirtschaft, s4hana, customer experience, landscape transformation, sap, business process management, maco cloud, billing, business transformation management, it, data analytics, sap cx, sap customer engagement, mkv, utilities, c4hana, makonauten, it services & it consulting, operational efficiency, next level billing, it-beratung, it-architektur, robotic process automation, energieversorger it-architektur, digitalisierung, technology consulting, cloud solutions, project management, energiewende, energiewirtschaft it-lösungen, automation, it-management, management consulting services, datenmanagement, prozessmanagement, smart metering prozesse, transformationsprojekte, digital transformation, datenmigration, energy & utilities, customer relationship management, b2b, enterprise automation, sap s/4hana, it consulting, systemmigrationen, energiebranche digitalisierung, business process intelligence, kundenerlebnis, it-organisation, sap ccw, it-portfolio-optimierung, it-transformation, cloud-lösungen, it-strategie, system integration, sap signavio, energiewende beratung, sap lt, it-transformationsstrategie, services, customer engagement, automatisierung, data transformation energiewirtschaft, process optimization, consulting, information technology & services, management consulting, cloud computing, enterprise software, enterprises, computer software, productivity, crm, sales",'+49 615 56667100,"Outlook, Microsoft Office 365, Apache, Mobile Friendly, SAP Analytics Cloud, Remote, ABAP, Microsoft Teams, Office365, , WinSCP, Process automation package for service request creation in SAP S/4HANA Utilities, SAP Business Technology Platform, SAP Build Process Automation, ACL, CAT, SAP Landscape Transformation replication server, SAP Cloud Platform Integration, SAP Activate, Scrum Do, WorkSafeBC, Less, Google DeepMind, SAP Supplier Relationship Management","","","","","","",69c281641cba2c0001f0db23,7379,54161,"enmore consulting AG is a German IT and process consulting firm founded in 2000, now headquartered in Griesheim. The company specializes in the energy sector, providing support to energy suppliers in areas such as digital transformation, regulatory compliance, and IT optimization. With a focus on adaptability, enmore combines the reliability of an established firm with the agility of a startup, positioning itself as a partner in the energy transition and digital transformation. + +The firm offers a range of services tailored to energy suppliers, including project and process management, IT management, and enterprise automation. They utilize models like ""Innovate – Design – Transform"" to enhance IT capabilities and provide specialized support for SAP S/4HANA Utilities. enmore also emphasizes co-creation of IT innovations and collaborates with educational institutions to drive advancements in the energy sector. Recognized for its expertise, enmore holds SAP Gold Partner status and received the ""Top Consultant"" award in 2022.",2000,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6820ac93b7511b0001dca67c/picture,"","","","","","","","","" +Acto,Acto,Cold,"",33,information technology & services,jan@pandaloop.de,http://www.heyacto.com,http://www.linkedin.com/company/heyacto,"","",1C Lise-Meitner-Strasse,Paderborn,North Rhine-Westphalia,Germany,33104,"1C Lise-Meitner-Strasse, Paderborn, North Rhine-Westphalia, Germany, 33104","b2b vertrieb, sales intelligence, wholesale solutions, ai software, decision intelligence, churn prevention, sales analytics, machine learning, erp, wholesale, crossselling, sales signals, predictive analytics, erp automation, software as a service, manufacturing solutions, software development, customer retention, voice briefing, artificial intelligence, lead scoring, distribution sales solutions, product portfolio management, sales opportunity detection, services, sales insights, sales data analysis, customer reactivation tactics, sales follow-up automation, crm integration, data security, sales enablement, customer segmentation, data analytics, customer risk detection, sales activity tracking, targeted customer management, revenue growth strategies, opportunity prioritization, gdpr compliance, mobile sales support, sales performance, sales pipeline management, sales automation, customer insights, opportunity management, product upsell, sales forecasting, market trend analysis, pattern recognition, business intelligence, sales task automation, sales efficiency, sales process optimization, customer reactivation, customer behavior analysis, manufacturing, b2b, product recommendation engine, automated follow-ups, opportunity alerts, erp integration, distribution, upsell and cross-sell suggestions, customer engagement, sales signal detection, wholesale sales software, operational efficiency, market data analysis, sales planning, customer lifetime value, revenue intelligence, sales call preparation, sales growth, automated visit planning, ai sales platform, ai sales software, data-driven sales, sales strategy, sales productivity, sales performance analytics, sales prioritization, sales team collaboration, sales report automation, enterprise software, management consulting services, client retention, predictive modeling, sales team onboarding, customer acquisition, data management, workflow automation, manufacturing sales tools, information technology & services, enterprises, computer software, saas, computer & network security, analytics, mechanical or industrial engineering",'+49 52 516945707,"Cloudflare DNS, Route 53, Gmail, Google Apps, Webflow, Slack, Hubspot, DoubleClick, Mobile Friendly, YouTube, Google AdWords Conversion, DoubleClick Conversion, Linkedin Marketing Solutions, Google Tag Manager, Google Dynamic Remarketing, Google AdSense, IoT, Circle, Remote, Data Analytics, Android, AI, Wider Planet, React, Kotlin, Spring Boot, GraphQL, PostgreSQL, ClickHouse, Docker, Kubernetes, Figma, AWS Trusted Advisor, Amazon EKS Anywhere, Terraform, ANGEL LMS, TypeScript, AWS SDK for JavaScript",4070000,Seed,4070000,2024-03-01,"","",69c281641cba2c0001f0db24,7375,54161,"Acto is a B2B decision intelligence platform based in Paderborn, Germany. Founded by Pascal Salmen and Andre Stollhans, the company focuses on enhancing sales operations for distributors, manufacturers, and wholesale businesses. Acto's AI-driven software helps field sales teams identify opportunities, prevent customer churn, and optimize revenue. + +The platform integrates with existing enterprise systems like CRMs and ERPs to provide actionable insights from customer data and external web data. Key features include intelligent customer prioritization, churn prevention, upsell and cross-sell recommendations, customer reactivation strategies, and sales automation. Acto is designed for the wholesale and manufacturing sectors, particularly those with complex product catalogs and large customer bases. The company has raised €3.7 million in seed funding to expand its product offerings and grow its team while maintaining a strong focus on data privacy and security.",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69a38dcc551b0d0001a81568/picture,"","","","","","","","","" +KOM4TEC GmbH,KOM4TEC,Cold,"",41,information technology & services,jan@pandaloop.de,http://www.kom4tec.de,http://www.linkedin.com/company/kom4tec-gmbh,"","",9 Bamberger Strasse,Aschaffenburg,Bavaria,Germany,63743,"9 Bamberger Strasse, Aschaffenburg, Bavaria, Germany, 63743","modern workplace, rollout management, power bi, microsoft office, azure, business intelligence, cloud, microsoft office 365, projektmanagement, infrastructure, managed services, microsoft office365, new work, microsoft sharepoint, it, learning center, sharepoint, microsoft, office 365, it services & it consulting, microsoft 365, consulting, automation, azure data lake, cloud computing, citizen developer, real-time data analysis, services, data governance, data integration, microsoft fabric, power platform, cloud infrastructure, data pipelines, b2b, data management, power apps, data science, notebooks with python & r, security, azure synapse, azure data lakehouse, data modeling, information technology, ux/ui standards, ml models, software development, computer systems design and related services, data warehouse, business services, cloud solutions, data security, event streaming, data analytics, azure machine learning, power automate, ai & metaverse, e-commerce, finance, distribution, analytics, information technology & services, enterprise software, enterprises, computer software, internet infrastructure, internet, computer & network security, consumer internet, consumers, financial services",'+49 6021 8623600,"Outlook, MailChimp SPF, CloudFlare Hosting, WordPress.org, Google Tag Manager, Mobile Friendly, Azure Devops, Docker","","","","","","",69c281641cba2c0001f0db0e,7375,54151,"KOM4TEC GmbH is a New Work agency based in Aschaffenburg, Germany, specializing in Microsoft 365 and digital transformation solutions for enterprises. The company focuses on modernizing workplace collaboration and business processes through comprehensive Microsoft 365 implementations and related digital services. With over 60,000 installations, KOM4TEC is dedicated to enabling organizations to achieve modern collaboration and effective new work structures. + +The company offers a range of services, including Microsoft 365 implementation and consulting, custom business applications, workflow automation, and business intelligence through Power BI. They also provide cloud infrastructure solutions, collaboration tools, change management coaching, and managed services. Additionally, KOM4TEC is involved in AI and future technologies, including Copilot for Microsoft 365 and metaverse solutions. Their branded offerings include a New Work Coffee product and an interactive technology showcase called qntm.vis, featuring demonstrations of immersive technologies.",2016,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670cbff50b3cbf00016eaec1/picture,"","","","","","","","","" +diginea GmbH,diginea,Cold,"",15,information technology & services,jan@pandaloop.de,http://www.diginea.de,http://www.linkedin.com/company/diginea,https://de-de.facebook.com/diginea/,"",30 Detmolder Strasse,Bielefeld,North Rhine-Westphalia,Germany,33604,"30 Detmolder Strasse, Bielefeld, North Rhine-Westphalia, Germany, 33604","intranetloesungen, itarchitektur, digital marketing, full stack java development, online marketing, shoploesungen, digitale transformation, wissensmanagement, itconsutling, strategische und operative begleitung, social commerce, front und backendentwicklung, systemauswahl, softwareentwicklung, projektemanagement, ecommerce, analytics, crm, big data, ki, interim management, systemarchitektur, implementierung, business development, it services & it consulting, business model innovation, e-commerce beratung, data-driven decisions, process optimization, systemintegration, ki & machine learning implementierung, workflow automation, ki-strategie, consulting, enterprise software, customer experience, system integration, management consulting, projektmanagement, multi-channel commerce, services, customer journey, digital business roadmap, digital asset management, online-shop entwicklung, generative ai, e-commerce plattformen, disruptive technologien, b2c, generative ki, headless commerce architektur, management consulting services, business intelligence, content management systeme, b2b & b2c digitalstrategien, digitalstrategie, pim-systeme, data analytics, prozessoptimierung, devops, open-source-frameworks, digital innovation, strategieberatung, change management, cloud solutions, technology consulting, b2b, pimcore, open-source e-business plattformen, software development, e-commerce, it-architektur, it infrastructure, workflow engines, it-consulting, marktplatzstrategien, large language models, information technology and services, d2c, machine learning, cloud integration, custom software development, digital transformation, digital ecosystem management, automatisierung, headless commerce, saas lösungen, ki & automatisierung, pim & dam integration, it consulting, customer experience management, digital experience platform, systemlösungen, apache ofbiz, api-first systeme, retail, customer data platform, distribution, marketing & advertising, consumer internet, consumers, internet, information technology & services, sales, enterprises, computer software, cloud computing, artificial intelligence",'+49 52 189725996,"Outlook, Microsoft Office 365, Atlassian Cloud, Hubspot, Google Tag Manager, Apache, Mobile Friendly, Node.js, React Native, Android, AWS SDK for JavaScript","","","","","","",69c281641cba2c0001f0db14,7375,54161,"diginea ist der unabhängige Beratungs- und Umsetzungspartner mit langjähriger und hoher Digitalexpertise. Wir unterstützen Unternehmen aus dem B2C- und B2B-Bereich dabei, ihr Geschäftsmodell, Produkte & Services, Marketing & Sales, IT und ihre Prozesse für die digitale Welt neu zu denken, um ihre Wettbewerbsfähigkeit zu erhalten und auszubauen.",2018,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6779c68f2dea770001b61b81/picture,"","","","","","","","","" +comNET Solutions Group,comNET Solutions Group,Cold,"",64,information technology & services,jan@pandaloop.de,http://www.comnet-solutions.de,http://www.linkedin.com/company/comnet-gesellschaft-f-r-kommunikation-&-netzwerke-mbh,https://www.facebook.com/comNETHannover,"",42 Woehlerstrasse,Hanover,Lower Saxony,Germany,30163,"42 Woehlerstrasse, Hanover, Lower Saxony, Germany, 30163","monitoring, mobilitaet wlan, cloudloesungen, open source, itservice, glasfasernetzverkabelung, itsecurity, itconsulting, unified computing, consulting smart citybig data, it services & it consulting, open source automation, open source devops, information technology & services, server & virtualisierung, open source plattformen, open source security, consulting, e-commerce, it-infrastruktur, services, iot industrie 4.0, open source-lösungen, it-security, campus lan & wlan, open-source-management, open source virtualisierung, managed services, open source software, data analytics, firewall, open source monitoring, data center networking, b2b, computer systems design and related services, cloud native solutions, endpoint protection, open source orchestration, open source netzwerk, 5g campusnetz, smart city, data center, privileged access management, network access control, netzwerklösungen, kubernetes, proxmox, iot, kommunikation, microsoft teams, telecommunications, veeam, managed hosting, open source infrastruktur, computer & network security, open source cloud, open source container, sip trunks, distribution, transportation & logistics, energy & utilities, computer software, consumer internet, consumers, internet, internet service providers, communications",'+49 511 358650,"Outlook, Bootstrap Framework, TYPO3, Apache, Mobile Friendly, Xamarin, Node.js, Android, IoT, React Native, Remote, AI, checkmk, Salesforce CRM Analytics, Ceph, Microsoft Hyper-V Server, Oracle ZFS, Proxmox VE, Upserve, VMware","","","","","","",69c281631cba2c0001f0db0c,3571,54151,"Die comNET GmbH ist ein inhabergeführtes IT-Systemhaus mit Hauptsitz in Hannover und Niederlassungen in Hamburg, Bremen, Braunschweig, Starnberg und Hilden. Wir beschäftigen rund 100 Mitarbeiter:innen und legen unseren Schwerpunkt seit 1991 auf Beratung, Verkauf und Bereitstellung von IT-Infrastruktur mit diversen Service-Dienstleistungen. Durch flexible Kooperationen mit erstklassigen Anbietern gewährleisten wir optimale Technologien und hochwertige Produkte. + +Leistungen im Überblick: +Netzwerk, WLAN, Unified Computing, Unified Communication & Collaboration, IT-Security, Open Source, IT-Systemintegration & Managed Services von A-Z, Cloud Solutions, Consulting, Monitoring & Management + +Kontaktieren Sie uns gerne: https://www.comnet-solutions.de/kontakt-und-hilfe/direktkontakt + + + +Wir sind seit 2003 mehrfach ausgezeichneter Ausbildungsbetrieb. Nachwuchskräfte, darunter auch duale Studierende, erhalten bei uns eine fundierte kaufmännische und technische Ausbildung. + +Hier geht's zu unseren aktuellen Stellenausschreibungen: https://jobs.comnet-solutions.de/de",1991,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6762a43a62fa990001a5d713/picture,"","","","","","","","","" +twomynds,twomynds,Cold,"",25,management consulting,jan@pandaloop.de,http://www.twomynds.de,http://www.linkedin.com/company/twomynds,"","","",Leverkusen,North Rhine-Westphalia,Germany,"","Leverkusen, North Rhine-Westphalia, Germany","kundenwertoptimierung, standortbestimmung, sales analytics, unternehmensausrichtung, datenverwertung, marketing analytics, finanzauswertung, teamentwicklung, business consulting & services, b2b, information technology and services, data-driven consulting, data enablement, data & ai solutions, consulting, training & in-housing, data & ai analytics, genai powered solutions, data & ai roadmap, data & ai implementation, data landscape assessment, a/b testing, ai technologies, data & ai roadmap erstellung, management consulting, data product ownership, data & ai potential analysis, data & ai business cases, data & ai use case implementierung, data analytics, ai roadmap development, data & ai-powered solutions, data strategy, sentiment analysis, data & kpi strategy, ai implementation, ai strategy, data & ai in marketing & sales, data & ai skill development, data & ai consulting, data & ai use cases, business model analysis, data & ai reifegradbewertung, sales forecasting, data & ai programm- & projektverwaltung, data analysis, data maturity assessment, data & ai foundation, services, management consulting services, churn prediction, data & ai strategy, project management, data & ai skill analysis, data integration, customer segmentation, information technology & services, productivity, enterprise software, enterprises, computer software",'+49 221 56080027,"Outlook, Microsoft Office 365, Slack, WordPress.org, Typekit, Apache, Mobile Friendly, Google Tag Manager, Remote, Python, Flask, Streamlit, Fastapi, PySpark, Power BI Documenter, Make, AWS Analytics, Azure Analysis Services, IBM ILOG CPLEX Optimization Studio, AI, Salesforce CRM Analytics, PowerBI Tiles, ANGEL LMS, AWS Trusted Advisor, Google Cloud AutoML, Google Cloud Platform, Microsoft Azure Monitor, NLP","","","","","","",69c281641cba2c0001f0db19,8742,54161,"twomynds GmbH is a Germany-based company located in Leverkusen, specializing in Data and AI services. Founded by Nicolas Lautenschlager, the company focuses on providing end-to-end solutions that are strategic, execution-focused, and outcome-driven. With a team of 11-50 employees, twomynds is dedicated to creating value through data and AI, positioning itself as a partner for businesses seeking innovative digital solutions. + +The company offers a range of services, including strategic planning, execution, and outcome delivery in Data and AI. It also has expertise in custom software development, cloud services, and IT consulting. These services aim to optimize operations, accelerate digital transformation, and build scalable technology platforms. twomynds is committed to quality and client satisfaction, helping organizations enhance their capabilities through tailored technology solutions.",2022,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6906c28e695bdb00018335ab/picture,"","","","","","","","","" +VINTIN GmbH - now enthus,VINTIN,Cold,"",26,information technology & services,jan@pandaloop.de,http://www.vintin.de,http://www.linkedin.com/company/vintin-gmbh,"","",4 Felix-Wankel-Strasse,Sennfeld,Bavaria,Germany,97526,"4 Felix-Wankel-Strasse, Sennfeld, Bavaria, Germany, 97526","dell, citrix, nutanix, bitsight, commvault, azure, kentix, rechenzentrum, mobotix, prolion, it infrastruktur, netapp, igel, systemhaus, sentinelone, sophos, office 365, fortinet, datacenter management, informationstechnologie, aws, datenschutz, microsoft, it managed services, cloud, rittal, it security, it services & it consulting, it-service management, sd-wan, it-training, data analytics, it-notfallmanagement, hybrid cloud, device as a service, edge computing, physical security, it-security, it-dokumentation, managed services, it-consulting, it-compliance, it-partner, information technology and services, data backup, projektmanagement, it-infrastruktur, modern workplace, naas, kubernetes management, it-operations, sase, it-transformation, disaster recovery, cybersecurity, managed detection & response, mdr, netzwerkmanagement, remote support, it-security strategy, cloud services, network as a service, dcim, it-asset management, cyber security, computer systems design and related services, cloud-lösungen, security automation, b2b, computer & network security, information technology & services, cloud computing, enterprise software, enterprises, computer software",'+49 972 16759410,"Rackspace MailGun, Outlook, Google Cloud Hosting, Microsoft Office 365, Cloudflare DNS, Active Campaign, Nginx, Bootstrap Framework, Mobile Friendly, Bing Ads, Hotjar, Linkedin Marketing Solutions, Google Dynamic Remarketing, Google Tag Manager, UserLike, DoubleClick, DoubleClick Conversion, AI, Remote","","","","","","",69c281641cba2c0001f0db1e,7375,54151,"Enthus, formerly known as VINTIN GmbH, is an IT services company that specializes in modern workplace design, network security, and cloud data management. The company positions itself as a collaborative partner, providing hands-on support to clients to implement effective IT infrastructures. + +Enthus offers a variety of services tailored to enhance infrastructure and operations. This includes customizing contemporary workplace environments, protecting networks from security threats, and managing data storage and access in cloud environments. Additionally, the company provides onsite datacenter services, which encompass installation, maintenance, migration, and monitoring to ensure efficient datacenter management.",1990,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6718d9eaa8690000015eb352/picture,"","","","","","","","","" +IMG | Interactive Marketing Group GmbH,IMG,Cold,"",16,marketing & advertising,jan@pandaloop.de,http://www.img.ag,http://www.linkedin.com/company/interactive-marketing-group-gmbh,https://facebook.com/profile.php?id=100069109231119,"",9 Roedingsmarkt,Hamburg,Hamburg,Germany,20459,"9 Roedingsmarkt, Hamburg, Hamburg, Germany, 20459","organic traffic development, content commerce, digital strategy, business intelligence, content marketing, analytics, marketing technology, brand communities, digital strategy brand communities organic traffic development analytics, advertising services, management consulting services, seo, data analytics, retail, customer lifecycle management, journey orchestration, customer data platform, digital growth strategy, barrier-free web design, performance tracking, data science, user experience optimization, data-driven marketing, content hub, information technology and services, customer experience, customer experience excellence, customer insights, b2b, seo optimization, customer engagement, e-commerce, marketing analytics, seo services, marketing automation, relevance first strategy, content strategy, conversion optimization, ai in marketing, martech integration, dashboarding, ai solutions, ai-powered insights, d2c, market research, digital transformation, marketing and advertising, services, consulting, content personalization, real-time performance analytics, traffic acquisition, mid funnel marketing, customer journey optimization, performance marketing, digital marketing, relevance analysis, conversion rate optimization, finance, distribution, marketing, marketing & advertising, information technology & services, search marketing, consumer internet, consumers, internet, saas, computer software, enterprise software, enterprises, financial services",'+49 40 411255680,"Cloudflare DNS, Gmail, Google Apps, Microsoft Office 365, Mobile Friendly, Google Tag Manager, reCAPTCHA, Hotjar, Google Analytics, Adobe Analytics, Looker Studio, PowerBI Tiles, YouTube, TikTok, Pinterest","","","","",4500000,"",69c2815dd22e0100019e8907,8742,54161,"Wir arbeiten mit Digitalen Champions an den besten Customer Experiences. + +Zum Beispiel mit großen Marken wie Nivea, o2, der Bahn, Eurowings, Lufthansa und Audi. Dabei sind wir ihr Sparringspartner über die gesamte digitale Wertschöpfungskette hinweg.  + +Wir finden, dass Menschen zu Recht anspruchsvoll gegenüber Customer Experiences sind. Denn sie kosten Lebenszeit. Darum hören wir ihnen so genau zu wie kein anderer – und schaffen Erlebnisse, die allen den größtmöglichen Mehrwert bieten. + +Unter anderem wurden wir 2021 und 2022 vom Focus zu Top-Beratern für Digitalisierung in Deutschland gekürt.",2005,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66fd100a79d3a90001a45070/picture,"","","","","","","","","" +WOLF IT Consulting GmbH,WOLF IT Consulting,Cold,"",12,information technology & services,jan@pandaloop.de,http://www.witconsulting.de,http://www.linkedin.com/company/wolf-it-consulting-gmbh,"","","",Huetschenhausen,Rhineland-Palatinate,Germany,66892,"Huetschenhausen, Rhineland-Palatinate, Germany, 66892","proalpha dienstleistungen, proalpha beratung, proalpha softwareentwicklung, proalpha prozessoptimierung, proalpha einfuehrungsberatung, technology, information & internet, ressourcennutzung, digitalisierung, it-dienstleistungen, b2b, cloud computing, data science, mobile apps, it-services, laser-identifikation, digital transformation, werkzeugverfolgung, softwareentwicklung, it support, business intelligence, industrie 4.0 lösungen, branchenlösungen, prozessoptimierung, services, predictive maintenance, manufacturing, machine learning, smart factory, digital enterprise, mes, smartsolutions, computer systems design and related services, supply chain optimization, industrie 4.0 plattformen, lean management, industrie 4.0, data analytics, verschwendungsmanagement, künstliche intelligenz, produktivitätssteigerung, industrial automation, erp beratung, systemintegration, wertschöpfungskette, proalpha, customer support, erp-software, software development, fertigungsplanung, smartassistenzsysteme, information technology and services, smartdata, supply chain management, consulting, manufacturing it, automatisierte prozesssteuerung, automation, distribution, information technology & services, enterprise software, enterprises, computer software, analytics, mechanical or industrial engineering, artificial intelligence, logistics & supply chain",'+49 6372 91730010,"Nginx, WordPress.org, Mobile Friendly","","","","","","",69c2815dd22e0100019e8909,7375,54151,"Seit über 25 Jahren sind wir ein erfolgreiches IT-Dienstleistungsunternehmen und wir führen diesen Erfolg auf den Aufbau und die Pflege vertrauensvoller Partnerschaften mit unseren Kunden zurück. +Um diesen Erfolg auch weiterhin in die Zukunft tragen zu können ist es wichtig, dass wir uns stets bewusst darüber sind, was uns einzigartig, erfolgreich und innovativ macht und uns somit zu einem Premium-Partner für kleine und mittelständische Unternehmen prägt. +In unserer täglichen Arbeit trägt das gesamte WOLF IT-Team dazu bei, das Vertrauen unserer Kunden und Partner zu stärken, um somit der maximalen Kundenzufriedenheit ein Stück näher zu kommen.",1999,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67c3e778600a410001107a41/picture,"","","","","","","","","" +abilex GmbH,abilex,Cold,"",75,information technology & services,jan@pandaloop.de,http://www.abilex.de,http://www.linkedin.com/company/abilex-gmbh,https://facebook.com/abilex.de,"",4 Loeffelstrasse,Stuttgart,Baden-Wuerttemberg,Germany,70597,"4 Loeffelstrasse, Stuttgart, Baden-Wuerttemberg, Germany, 70597","digitale transformation, digital asset management, contentmanagement, customer relationship management, produktinformationsmanagement, qualitaetsmanagement, salesforce, salesforce cloud reseller, product data management, marketing automation, projektmanagement, ecommerce, agentforce, business process outsourcing, prozessmanagement, business und itloesungen, it services & it consulting, workflow automation, servicemanagement, information technology & services, migration & integration, consulting, cloud solutions, e-commerce, services, projekte & implementierung, business intelligence, salesforce cloud, content services, managed services, beratung, content services technologien, digital architecture, content management system, data analytics, crm, digitalisierung, produktinformationsmanagement (pim), business intelligence experten, b2b, cloud computing, software development, digital asset management (dam), business consulting, change management, customer journey, salesforce lizenzen, partnernetzwerk, process automation, managed services plattformen, ecommerce integration, cpq / konfiguration, management consulting services, künstliche intelligenz, data management, sales, enterprise software, enterprises, computer software, marketing & advertising, saas, consumer internet, consumers, internet, analytics, management consulting",'+49 711 7191880,"Outlook, Pardot, Salesforce, Adobe Media Optimizer, Vimeo, reCAPTCHA, Nginx, WordPress.org, Mobile Friendly, Cedexis Radar, Remote","","","","","","",69c2815dd22e0100019e890e,8742,54161,"Abilex GmbH is a German IT consulting and services company based in Stuttgart, founded in 2004. The company specializes in the digital transformation of sales, marketing, and service processes. With a team of 50-199 professionals, Abilex focuses on building long-term partnerships with multinational corporations, startups, and medium-sized businesses. + +Abilex offers a range of services that include strategic consulting, project implementation, system migration, integration, and managed services. Their expertise spans various industries, providing tailored solutions for service management, CRM, marketing automation, eCommerce, and more. The company emphasizes a ""cloud first"" strategy, ensuring scalable and future-proof solutions for its clients. Abilex collaborates with key technology partners such as Salesforce, Stibo, and Viamedici to implement best-in-class technologies, enhancing their clients' operational efficiency.",2004,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68714d2bc4d6560001790137/picture,"","","","","","","","","" +compeople AG,compeople AG,Cold,"",120,information technology & services,jan@pandaloop.de,http://www.compeople.de,http://www.linkedin.com/company/compeople,"","",8 Untermainanlage,Frankfurt am Main,Hessen,Germany,60329,"8 Untermainanlage, Frankfurt am Main, Hessen, Germany, 60329","digitalisierung, kotlin, mendix, low code, mobile, individual, highly userfriendly it systems for sales support, geschaeftsanwendungen, softwareloesungen, java, it services & it consulting, customer retention, artificial intelligence, cloud, generative ai, custom software development, it consulting, cloud governance, customer experience, cloud computing, cloud services, services, ai development, data & ai strategy, cloud management, cloud migration strategy, digital innovation, cloud migration, operational efficiency, digital experience, digital solutions, experience, end-to-end automation, cloud native, process automation, consulting, cloud solutions, cloud security, process optimization, enterprise software, ai-powered decision making, microservices architecture, hr lifecycle management, digital experience design, automation solutions, predictive analytics, data security, cloud compliance, digital strategy, managed services, low code development, cloud cost optimization, ai solutions, regulatory compliance, ai-powered insights, customer lifecycle management, smart document ai, omnichannel customer experience, mashine learning, information technology and services, machine learning, cloud infrastructure, custom software, data management, user experience, automation, cloud monitoring, computer systems design and related services, b2b, cloud native applications, cloud architecture, application development, digital transformation, data & ai, cloud foundation, innovation, user experience design, ai deployment, saas, internet, information technology & services, management consulting, enterprises, computer software, computer & network security, marketing, marketing & advertising, internet infrastructure, ux, app development, apps, software development",'+49 69 27221854,"Gmail, Outlook, Google Apps, Microsoft Office 365, WordPress.org, Linkedin Marketing Solutions, Mobile Friendly, Apache, Umantis, Google Tag Manager, IoT, Remote","","","","",66000000,"",69c2815dd22e0100019e8900,7375,54151,"compeople AG is a German IT company founded in 1999, based in Frankfurt/Main. The company specializes in digital transformation solutions, focusing on custom software development, low-code technologies, and cloud-based projects. With a commitment to enhancing business process efficiency, compeople AG has grown to 130 employees as of 2023. + +The company offers a range of services, including custom software development, mobile platform development, and cloud-first projects. Notable partnerships include Mendix for low-code solutions, Mulesoft for integration projects, and Google Cloud. compeople AG has a history of successful projects, such as developing a sales system for FDL and implementing cloud solutions in the insurance sector. The company emphasizes a human touch in its approach to crafting digital solutions.",1999,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/695b92039831320001ad5255/picture,"","","","","","","","","" +ICB GmbH,ICB,Cold,"",16,management consulting,jan@pandaloop.de,http://www.icb-gmbh.de,http://www.linkedin.com/company/icb-gmbh,"","",73 Balanstrasse,Munich,Bavaria,Germany,81541,"73 Balanstrasse, Munich, Bavaria, Germany, 81541","itsourcingmanagement, it procekt management, process mining, modern workplace, cloud crm, sourcing management, it process management, information security management as a service, it project management, it strategy consulting, digital change, crm, risk management, it sourcing management, digital transformation, digital business, digital workplace, change management, unified communication collaboration, it risk management, itprojektmanagement as a service, project management, strategy consulting, process management, it change management, cloud erp, erp, portale, business consulting & services, real-time process monitoring, process automation, data-driven decision making, data analytics, management consulting services, software development, erp consulting, digital maturity, process optimization, process discovery, business consulting, data governance, agile transformation, crm consulting, business software, information technology and services, customer experience, it infrastructure, workflow automation, b2b, it security, end-to-end process optimization, business innovation, workplace modernization, low-code development, digital strategy, cloud security, hybrid cloud strategies, generative ki, operational efficiency, it consulting, cloud solutions, cloud migration, digital culture, business process management, enterprise software, ai technologies, business continuity, services, consulting, management consulting, cloud computing, technology adoption, it service management, data integration, business intelligence, sales, enterprises, computer software, information technology & services, productivity, strategic consulting, computer & network security, marketing, marketing & advertising, analytics",'+49 89 12509080,"Cloudflare DNS, Outlook, Mobile Friendly, Google Tag Manager, Dynamics 365 Finance, , Microsoft Dynamics 365 CE, Microsoft Power Platform, Microsoft Power Apps, PowerBI Tiles, Microsoft Power Automate, Copilot, Gem, Microsoft Azure Monitor, CSC, Microsoft Dynamics 365 Supply Chain Management","","","","","","",69c2815dd22e0100019e8903,7375,54161,"The ICB has proven itself as one of the most successful IT strategy consulting firms in Germany and acting as a solution-oriented change companion for the digital transformation. The ICB connects people, organizations and technologies and develops collaborative innovation cultures together with its customers which improve competitiveness in the long run. Customers appreciate the ICB for having creative ideas combined with strong technical and methodological expertise.",2000,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/687635956625690001eb54ab/picture,"","","","","","","","","" +bonamic GmbH,bonamic,Cold,"",33,telecommunications,jan@pandaloop.de,http://www.bonamic.de,http://www.linkedin.com/company/bonamic-gmbh,"","","",Bochum,North Rhine-Westphalia,Germany,"","Bochum, North Rhine-Westphalia, Germany","nrw, m2m, iot, device as a service, new workspace, deutschland, geschaeftskundenvermarktung, mobilfunk, itsystemhaus, managed services, it, tarife, business mobilfunk, arbeit 40, zukunft der arbeit, telecommunications, distribution, cybersecurity schutz, sd-wan, it security, computer and electronic product manufacturing, netzwerke & konnektivität, cloud computing, services, ransomware-schutz, hardware-lösungen, voip telefonanlagen, it-security, e-mail-security, consulting, hybrid cloud, smartphones & tablets, it-infrastruktur, transportation & logistics, it-services, netzwerkoptimierung, thin clients, microsoft 365 betreuung, it-kostenoptimierung, cloud-lösungen, samsung knox, backup, information technology and services, vpn, information technology & services, computer systems design and related services, cloud-telefonie, b2b, it-assetmanagement, wholesale trade, multi-faktor-authentifizierung, firewall, non-profit, computer & network security, enterprise software, enterprises, computer software, nonprofit organization management","","Outlook, Mobile Friendly, Google Tag Manager, reCAPTCHA, WordPress.org, Nginx, Remote","","","","","","",69c2815dd22e0100019e890a,7375,54151,"Digitale Infrastruktur muss verlässlich, sicher und flexibel sein – ohne Umwege. bonamic aus Bochum steht seit 2019 für leistungsstarke IT-Services, stabilen Business-Mobilfunk und schnelles Internet. + +Mit starken Partnern wie Microsoft, HP, Dell, Apple und Samsung sowie direkten Anbindungen an Telekom, o2 Telefónica und Vodafone gestalten wir moderne, sichere Arbeitsplätze. Über 30 Expert*innen entwickeln passgenaue IT-Konzepte mit Security-, Cloud- und Managed Services. + +„Wir machen IT, Mobilfunk und Internet einfach – mit Lösungen, die Unternehmen wirklich voranbringen."" + +bonamic – Dein Partner für moderne IT & Konnektivität. Wir schaffen #newworkspaces.",2019,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68144c837f1b8c00013469b9/picture,"","","","","","","","","" +sqanit,sqanit,Cold,"",17,information technology & services,jan@pandaloop.de,http://www.sqanit.com,http://www.linkedin.com/company/sqanit,"","",69B Balanstrasse,Munich,Bavaria,Germany,81541,"69B Balanstrasse, Munich, Bavaria, Germany, 81541","software development, consumer electronics, qr-code, ki chat, remote assistance, offline nutzung, kundenservice, ar video calls, power tools, business intelligence, customer feedback, self-service support, b2b, automatisierte content-erstellung, produktqualität analyse, ticketing system, task management, data security, e-commerce, digitaler produktpass, support plattform, multilingual support, product data management, lab technology, produktinformationen, product lifecycle tracking, customer experience management, compliance monitoring, product history, data analytics, services, manufacturing, produktdaten, ai assistance, d2c, ar support, all other miscellaneous manufacturing, no app needed, energieeffizienz, fehlercode zuordnung, regulation compliance, asset management, after-sales, home appliances, user experience, customer support automation, digital twin, user engagement, lifecycle analytics, whitepaper on dpp, multi-device support, automation, regulatory compliance, nfc tag, healthcare, integration apis, service management, kundenbindung durch support, b2c, fortune 500 trust, service optimization, nachhaltigkeit, regulation, sustainability, ai chat, qr code, nfc, information technology & services, consumers, hardware, analytics, productivity, computer & network security, consumer internet, internet, mechanical or industrial engineering, ux, health care, health, wellness & fitness, hospital & health care, environmental services, renewables & environment, qr codes, mobile, semiconductors",'+49 23 4567890,"Outlook, Microsoft Office 365, Hubspot, Slack, Google Tag Manager, Nginx, Linkedin Marketing Solutions, Mobile Friendly, WordPress.org, reCAPTCHA, Google Font API, Google Places, Google Maps, Android, Remote, AI, Postman, Java EE, Red Hat JBoss Enterprise SOA Platform, REST, Apollo, Webflow, Azure Digital Twins","","","","","","",69c2815dd22e0100019e8911,3999,33999,"Founded in 2014 and headquartered in Munich, sqanit pioneers a transformative B2B SaaS solution, reshaping how brands connect with their customers and users. By introducing an innovative in-context communication channel and harnessing the power of the Internet of Twins, we've revolutionized the communication paradigm. + +Our mission is simple: Eliminate the cost of friction and miscommunication between brands and users of their physical products. We achieve this by creating a platform where users are empowered to interact in-context. When they seek assistance, we ensure it's swift, immediate, and hassle-free. + +At the heart of our solution lies a fusion of QR codes, state-of-the-art progressive web applications, and a robust cloud-based management system. This seamless integration offers an unparalleled low-friction user experience. And by coupling these with the Internet of (digital) Twins, we pave a groundbreaking path for users to connect with brands, all within the context of the individual devices involved. + +Contact adress: +sqanit GmbH +Balanstraße 71a +81541 Munich +Telephone +49 (0) 89 44451155 +E-Mail: info@sqanit.com + +Represented by Business Executives: Christian Hieronimi",2014,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6863ae67fd6d030001061b8d/picture,"","","","","","","","","" +IT-P Information Technology-Partner GmbH,IT-P Information Technology-Partner,Cold,"",110,information technology & services,jan@pandaloop.de,http://www.it-p.de,http://www.linkedin.com/company/itpgmbh,https://www.facebook.com/ITPGMBH/,https://twitter.com/ITPGmbH,6 Seligmannallee,Hanover,Lower Saxony,Germany,30173,"6 Seligmannallee, Hanover, Lower Saxony, Germany, 30173","big data, enterprise mobility, itprojektmanagement, collaboration enterprise, appdevelopment, itservicemanagement, cloudsolutions, it services & it consulting, business intelligence, sap services, ki-gestütztes wissensmanagement, it consulting, business process optimization, computer systems design and related services, prozessautomatisierung, it outsourcing, it-transformation, digital transformation, digital strategy, consulting, artificial intelligence, custom software development, ai in business, data quality, ai consulting, it support, cloud migration, information technology and services, it solutions, business consulting, cloud data management, automation services, software engineering, real-time analytics, machine learning, cloud architecture, automation tools, ai-powered solutions, cloud solutions, power platform infrastruktur, managed services, künstliche intelligenz, regulatory compliance, it project support, whitepapers on it trends, software development, automatisierte datenintegration, sap btp prozessautomatisierung, services, experts on demand, lokale ki-wissenssuche, enterprise software, it security, data integration, cybersecurity, devops, cloud computing, microsoft copilot studio, data automation, cloud infrastructure, data strategy, aws, dsgvo-konformes datenmanagement, b2b, data security, business software, knowledge management, custom software, cloud services, system integration, data governance, data security solutions, softwareentwicklung, wisbee ki-lösung, data management, data analytics, distribution, transportation & logistics, enterprises, computer software, information technology & services, analytics, management consulting, outsourcing/offshoring, marketing, marketing & advertising, computer & network security, internet infrastructure, internet",'+49 51 16168040,"Mimecast, Outlook, Hubspot, Linkedin Marketing Solutions, Facebook Login (Connect), Google Tag Manager, WordPress.org, DoubleClick Conversion, Mobile Friendly, Google Dynamic Remarketing, YouTube, Facebook Widget, Google Font API, Apache, Facebook Custom Audiences, DoubleClick, Remote, Microsoft Azure Monitor, Microsoft Windows Server 2012, , SAP BTP for Spend Management, Rapid7 InsightVM, CAPTCHA, ABAP, SAP Fiori, Salesforce Journey Builder, SAP, SAP S/4HANA, SAP Build, Adobe InDesign, Canva","","","","","","",69c2815dd22e0100019e890f,7379,54151,"IT-P Information Technology-Partner GmbH is a family-owned IT service provider based in Hannover, Germany, with over 25 years of experience in digital transformation. The company combines strategic consulting with technological development and implementation, focusing on long-term partnerships with clients and employees. IT-P employs over 150 staff members and emphasizes customer success by identifying opportunities for business optimization and value creation. + +The company offers a wide range of IT services tailored to digitalization, process efficiency, and business model innovation. Its specialized Centers of Excellence (CoEs) include areas such as Business Process Automation, Digital Transformation, and Project Management. Key services encompass AI optimization, SAP services, process automation, and digital transformation consulting. IT-P supports end-to-end project implementation, leveraging nearly 30 years of expertise in innovative technologies like AI and cloud solutions. The company has successfully assisted over 500 customers in enhancing their business processes and competitiveness through digital models.",1996,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6702a40b3e807d00016f809f/picture,"","","","","","","","","" +spheos GmbH,spheos,Cold,"",12,information technology & services,jan@pandaloop.de,http://www.spheos.com,http://www.linkedin.com/company/spheos-gmbh,"",https://twitter.com/spheoscom,41 Birkenleiten,Munich,Bavaria,Germany,81543,"41 Birkenleiten, Munich, Bavaria, Germany, 81543","customer self service plattformen, magnolia cms, opentext wsm, chatbotsvoicebots, enterprise cms, employee self service portale, customer lifecycle management, haendlerund lieferantenportale, liferay dxp, migration upgrade auf liferay dxp, cloud application development, saas development, communityplattformen, uxui design, conversational ai, dxp, it consulting, it services & it consulting, digital transformation services, b2c, customer experience and engagement, d2c, predictive analytics, enterprise portals, consulting, e-commerce, services, retail, cognigy, content hub, information technology and services, firstspirit, business intelligence, liferay, government, digital ecosystems, user experience, customer experience, content management optimization, content management system, customer relationship management, content reuse, enterprise software, digital communication ki, chatbots, opentext, b2b, headless architecture, consulting services, responsive design, computer systems design and related services, software development, web portals and content management, content personalization, industry 4.0, cloud platforms, digital rathaus, magnolia, multi-language support, content automation, web portals, customer engagement platforms, cms evaluation, api integration, digital transformation, headless cms, self-service portals, migration services, omnichannel, ai communication, content localization, healthcare, finance, education, legal, non-profit, manufacturing, distribution, construction, information technology & services, management consulting, enterprises, computer software, consumer internet, consumers, internet, analytics, ux, crm, sales, health care, health, wellness & fitness, hospital & health care, financial services, nonprofit organization management, mechanical or industrial engineering",'+49 89 6283390,"Outlook, Microsoft Office 365, Zendesk, Microsoft Azure Hosting, OneTrust, SendInBlue, Slack, Google Font API, Shutterstock, Ubuntu, Mobile Friendly, Apache, Google Tag Manager, Remote, AI, Node.js, React Native","","","","","","",69c2815dd22e0100019e8912,7375,54151,"spheos entwickelt benutzerzentrierte Online-Plattformen für Ihre Digitalstrategie. Die Zielgruppen und Mitarbeiter von Unternehmen erwarten heute eine individuell überzeugende User-Experience und vielfältige, einfach nutzbare Online-Services. Diese Lösungen zukunftsorientiert zu konzipieren und agil zu realisieren und zu betreuen ist die Stärke von spheos. Dazu zählen neben Self Service-Plattformen, Vertriebs-, E-Commerce- und Chatbot-Lösungen auch Corporate Websites. Seit 2003 entwickelt spheos gemeinsam mit seinen Kunden Online-Plattformen, die unterschiedlichste Anforderungen abbilden und immer einen messbaren Nutzen für deren Business und ihre Anwender erzielen. + +spheos fokussiert diese Ziele: +• Kundenerwartungen erfüllen durch eine optimierte User Experience +• Vertriebsprozesse verbessern und mehr Umsatz mit Neu- und Bestandskunden +• Kosten sparen durch Automatisierung und Self Services + +Die Experten von spheos greifen auf umfassende Erfahrungen aus Online-Projekten für mehr als 100 Kunden zurück. Führende Unternehmen aus allen Branchen wie die Konrad Adenauer Stiftung, msg life, Stadt Kempten, Bühler, DAAD, Coop, KfW Bankengruppe, VHV Versicherungen und Voith vertrauen auf die digitale Kompetenz von spheos. + +Wir sind Teil eines erfolgreichen Partnernetzwerkes, zu dem unter anderem Liferay, Magnolia, Crownpeak (ehem. e-Spirit) und OpenText zählen. Außerdem sind wir auch Teil der Software Allianz Deutschland.",2003,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/676f871e4b881e0001d43b35/picture,"","","","","","","","","" +knk Customer Engagement GmbH,knk Customer Engagement,Cold,"",30,information technology & services,jan@pandaloop.de,http://www.knkcustomerengagement.com,http://www.linkedin.com/company/knk-customer-engagement-gmbh,https://www.facebook.com/weareknkGroup/,"",1 Messberg,Hamburg,Hamburg,Germany,20095,"1 Messberg, Hamburg, Hamburg, Germany, 20095","social selling, community building, azure machine learning studio, marketing automation, microsoft azure, media, microsoft dynamics crm, machine learning, publishing, microsoft dynamics 365 for sales, publishing software, microsoft dynamics 365, crm, ai, ad sales, microsoft dynamics 365 for marketing, it services & it consulting, services, cloud technology, customer journey, customer data merging, interface framework (lion), dubletten-management, process optimization, media sales, customer support automation, social media management, data analytics, software publishing, crm software, customer data centralization, customer journey management, b2b, data synchronization, data merging, consulting, mobile data access, reporting tools, data integration, system connectivity, media & publishing, automated customer interaction, real-time analytics, real-time sales analytics, cloud & on-premises integration, information technology & services, sales forecasting, automated processes, api integration, data merging framework, customer engagement, customer loyalty, customer support system, dubletten-erkennung, cross-media marketing, ai literacy workshops, data monitoring, customer journey automation, cross-channel support, sales support, business consulting, system integration, real-time data, lead generation, cloud-integration, customer feedback analysis, cloud solutions, business intelligence, omnichannel customer support, customer relationship management, data security, bi & analytics, business intelligence & analytics, customer service, ai solutions, computer systems design and related services, systemübergreifende schnittstellen, marketing & advertising, saas, computer software, enterprise software, enterprises, artificial intelligence, sales, management consulting, cloud computing, analytics, computer & network security",'+49 431 579720,"Outlook, Microsoft Office 365, Slack, Salesforce, Apache, Google Tag Manager, Mobile Friendly, WordPress.org, Google Font API, Google Maps, Vimeo, Google Analytics, Google Maps (Non Paid Users), reCAPTCHA, Remote, AI, , Visual Studio Code, Azure Devops, Microsoft Dynamics 365, Micro, Jira, Office365, Microsoft Azure Monitor, Microsoft SQL Server Reporting Services, Microsoft Active Directory Federation Services, Microsoft Exchange Server 2003, Microsoft 365","","","","","","",69c2815dd22e0100019e8901,7375,54151,"Verlagsexperten: +Als Teil der knk-Gruppe haben wir langjährige Erfahrung in der Verlags- und Medienbranche. Wir kennen nicht nur Ihre Anforderungen und Geschäftsmodelle, sondern sind auch bestens mit den aktuellen Herausforderungen und Umbrüchen der Branche vertraut. + +Cloudexperten: +Wir sind Experten für moderne und sichere Cloudtechnologie. Durch unsere Partnerschaft mit Microsoft bieten wir Ihnen stets die neueste technologische Basis für Ihre Verlagssysteme. + +Zukunftslieferanten: +Mit uns sehen Sie sicher in die Zukunft. Durch die Kombination aus umfangreichem Branchen-Knowhow und modernsten Technologien, bieten wir Ihnen zum einen Investitionssicherheit und zum anderen passende Lösungen, um Ihre Kundeninteraktion effektiv zu gestalten. + +Trendscouts: +Wir kennen die aktuellen Trends der internationalen Verlags- und Medienbranche sowie der IT-Branche. Mit uns stellen Sie daher sicher, dass Sie immer über die aktuellen und zukünftigen Anforderungen des Marktes eine Antwort haben. + +Die knk Customer Engagement GmbH als Teil der knk-Unternehmensgruppe: +Die knk-Unternehmensgruppe beschäftigt derzeit rund 140 Mitarbeiter in Deutschland und Amerika und ist TOP-Arbeitgeber im Mittelstand (yourfirm), Preisträger des Großen Preises des Mittelstands, Microsoft-Gold-Partner mit Gold-Zertifizierung in fünf Kategorien und ein „hidden champion"" im weltweiten Markt für Verlagssoftware / Medien. knk hat sich auf die Beratung von Verlagen und Medienunternehmen spezialisiert und entwickelt sowie vertreibt die einzige von Microsoft zertifizierte Verlagssoftware weltweit. + +Neben dem Hauptsitz in Kiel, hat knk mittlerweile sieben weitere Standorte in Deutschland, Frankreich und den USA aufgebaut und realisiert spannende Projekte mit mehr als 150 Kunden in Europa, Asien und Nordamerika.",2018,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6748401a6727210001e47b73/picture,knk Group (knkpublishingsoftware.com),54a12a5f69702dc84182c301,"","","","","","","" +LEANEA GmbH,LEANEA,Cold,"",22,information technology & services,jan@pandaloop.de,http://www.leanea.com,http://www.linkedin.com/company/leanea-gmbh,"","","",Langenfeld,North Rhine-Westphalia,Germany,"","Langenfeld, North Rhine-Westphalia, Germany","it services & it consulting, digital transformation, workflow automation, ai automation, identity management, ai-driven decision making, workflow orchestration, ai decision modules, interoperability, financial services, business process automation, security management, data security, custom application development, user interface design, low-code integration, smart integration builder, data orchestration system, consulting, asset management, financial reporting, scalability, application integration, information technology, security automation, data management, multi-tenant architecture, business automation, data transformation, computer systems design and related services, b2b, unified digital environment, data synchronization, manufacturing, government, custom workflow creation, education, api integration, multi-cloud support, seamless connectivity, automation, enterprise application design, multi-application support, security and compliance, security integration, microservices management, digital workspace platform, real-time data exchange, healthcare, automation layer, cloud compatibility, custom application design, application orchestration, hybrid cloud, telecommunications, operational efficiency, services, system integration, financial, telecommunication, security, modernize_it, hybrid-cloud, desktop_as_a_service, virtual_desktop_infrastructure, business_process_automation, zero_touch_it, employee_onboarding, small_business, enterprise, information technology & services, privacy, computer & network security, software development, mechanical or industrial engineering, health care, health, wellness & fitness, hospital & health care",'+49 214 868320,"Outlook, Microsoft Azure Hosting, Microsoft Azure, Slack, Google Font API, Bootstrap Framework, Mobile Friendly, WordPress.org, YouTube, Google Tag Manager, Nginx, Android, Remote, AI","","","","","","",69c2815dd22e0100019e890c,7375,54151,"LEANEA GmbH is an AI-powered Integration Platform as a Service (iPaaS) based in Langenfeld, Germany. Founded in 2022, the company employs 18 people and offers a centralized digital workspace solution that helps enterprises integrate applications, automate workflows, and improve operational efficiency. + +The LEANEA platform features three integrated layers: Harmony for integration and connectivity, Maestro for workflow orchestration and automation, and Symphony for custom application design and deployment. Key capabilities include a drag-and-drop integration builder, customizable user interfaces, pre-built integrations for various sectors, and an AI Decision-Making Module that analyzes data patterns and automates decisions. LEANEA serves enterprises and small businesses across industries such as healthcare, education, finance, and telecommunications, focusing on modernizing IT infrastructure and enhancing productivity.",2022,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/676948688bb7970001be5c63/picture,"","","","","","","","","" +BUSINESS UNICORNS,BUSINESS UNICORNS,Cold,"",15,information technology & services,jan@pandaloop.de,http://www.business-unicorns.de,http://www.linkedin.com/company/business-unicorns-gmbh,https://www.facebook.com/businessunicorns,"",87 Bahnhofsallee,Velen,North Rhine-Westphalia,Germany,46342,"87 Bahnhofsallee, Velen, North Rhine-Westphalia, Germany, 46342","individualentwicklung, kundenportale, customerselfservice, b2bhaendlerportale, leasingportale, portale, ecommerce, laravel, komplexe webanwendungen, webentwicklung, it services & it consulting, b2b-portale, customer journey, e-commerce plattformen, ux/ui-design, system integration, sap-integration, customer experience, cloud computing, services, consulting, process optimization, digitale lösungen, kundenorientierung, enterprise software, headless cms, data security, vue.js, api management, nuxt.js, business intelligence, agile methoden, customer self service, single sign-on (sso), e-commerce, information technology and services, kundenbindung, software development, industrie 4.0, web development, webflow, computer systems design and related services, digitale transformation, kundenportal, b2b, automatisierte kundenprozesse, digital transformation, cms, self-service, terraform, performance analyse, prozessautomatisierung, digital marketing, b2c, manufacturing, distribution, consumer_products_retail, transportation_logistics, consumer internet, consumers, internet, information technology & services, enterprises, computer software, computer & network security, analytics, marketing & advertising, mechanical or industrial engineering",'+49 286 37542470,"Cloudflare DNS, Route 53, Gmail, Google Apps, Microsoft Office 365, Typeform, Webflow, Active Campaign, reCAPTCHA, Mobile Friendly, Google Tag Manager, Remote, Aircall","","","","","","",69c2815dd22e0100019e8913,7375,54151,"Seit mehr als fünf Jahren beschäftigen wir uns schon mit den digitalen Herausforderungen von Unternehmen, beseitigen dabei Hürden und optimieren Prozesse. Hierdurch schaffen wir mehr Zeit für den sinnvollen Teil des Alltags und leisten unseren Beitrag für eine fabelhafte Zukunft. + +Als Digital-Agentur sind wir dein Experte für individuelle Webanwendungen.",2016,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66ef20984d3a3300012de717/picture,"","","","","","","","","" +Weiconet GmbH,Weiconet,Cold,"",13,management consulting,jan@pandaloop.de,http://www.weiconet.de,http://www.linkedin.com/company/weiconet,"","",122b Oststrasse,Norderstedt,Schleswig-Holstein,Germany,22844,"122b Oststrasse, Norderstedt, Schleswig-Holstein, Germany, 22844","consulting, it security, interimsmanagement, projektmanagement, business consulting & services, project management, cloud communication, zeitarbeit in it, contact center, avaya communication solutions, herstellerneutral, data security, cloud services, microsoft technologies, security, documentation, information technology and services, unified communications, networking, testmanagement, computer systems design and related services, b2b, ucc & cc, customer journey optimization, training, virtualization, telecommunications, services, computer & network security, information technology & services, management consulting, productivity, cloud computing, enterprise software, enterprises, computer software",'+49 41 928968256,"Outlook, Microsoft Office 365, Mobile Friendly, Apache","","","","","","",69c2815dd22e0100019e8916,7375,54151,"Weiconet – Begleiter und Beschleuniger für anspruchsvolle ITK-Projekte + +Die Weiconet unterstützt Unternehmen bei der Umsetzung komplexer IT- und Telekommunikationsprojekte. Unsere Arbeit beginnt dort, wo aufgrund mangelnder Ressourcen und fehlendem Know-How professionelle Unterstützung benötigt wird. + +Unser erfahrenes und gut ausgebildetes Team aus Experten mit langjähriger Praxis garantiert eine qualifizierte Umsetzung. Alle unsere Mitarbeiter bringen die erforderliche technische Expertise mit und sind in Ihren Schwerpunkttätigkeiten zertifiziert. + +Stets haben wir den Zeitplan und Budgetrahmen im Blick. Unsere Partnerschaften zu führenden Branchenunternehmen sind ein wichtiger Faktor hinsichtlich einer erfolgreichen Projektumsetzung. Wir arbeiten mit den modernsten Methoden und fühlen uns höchsten Qualitätsansprüchen verpflichtet. + +Die Schwerpunkte unseres Angebots liegen in den Bereichen Projektmanagement, Consulting und Interimsmanagement. Darüber hinaus sind wir verlässlicher Partner rund um das Thema IT-Security. + + +Wir sind permanent auf der Suche nach klugen Köpfen mit herausragenden und interessanten Persönlichkeiten. Sie haben Lust darauf, ein Mitglied der Weiconet-Familie zu werden und können Ihren Einsatz bei spannenden und herausfordernden Projekten nicht erwarten? Dann freuen wir uns auf Ihre Initiativbewerbung. + + +Impressum + +Angaben gemäß § 5 TMG: + +Weiconet GmbH +Oststr. 122 B +22844 Norderstedt + +Vertreten durch: +Sönke Weisner, Carsten Weisner + +Kontakt: +Telefon: +49 40 808190404 +E-Mail: info@weiconet.de + +Registereintrag: + +Eintragung im Handelsregister: +Registergericht: Kiel +Registernummer: HRB 13307",2011,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6711d668fad3cb00016715eb/picture,"","","","","","","","","" +divve,divve,Cold,"",12,information technology & services,jan@pandaloop.de,http://www.divve.com,http://www.linkedin.com/company/divve,"","","",Wilnsdorf,North Rhine-Westphalia,Germany,57234,"Wilnsdorf, North Rhine-Westphalia, Germany, 57234","technology, information & internet, digital transformation, it consulting, multi-channel content delivery, application development, automated translation workflows, system architecture, cloud infrastructure, product data management, consulting, b2b digital solutions, information technology and services, content management, automated product catalog, headless cms, computer systems design and related services, content management system, b2b solutions, b2b, digital experience platform, modular content management, interactive visitor info, user experience design, brand management platform, real-time documentation, custom system architecture, custom application, digital strategy, process automation, api architecture, offline mobile apps, platform integration, custom software development, software development, digital consulting, digital training platform, user experience, api design, automation tools, services, platform development, system integration, education, information technology & services, management consulting, app development, apps, enterprise software, enterprises, computer software, internet infrastructure, internet, marketing, marketing & advertising, ux",'+49 271 58009020,"Cloudflare DNS, Gmail, Outlook, Google Apps, Microsoft Office 365, Zendesk, CloudFlare Hosting, Hubspot, Slack, Mobile Friendly, Google Tag Manager","","","","","","",69c2815dd22e0100019e8917,7375,54151,"Entfalten Sie das digitale Potenzial Ihres Unternehmens! +Gemeinsam mit Ihnen erschaffen wir digitale Lösungen, die intuitiv sind und von Ihren Kund:innen, Partner:innen und Mitarbeiter:innen gerne genutzt werden. Und so nachhaltig zu ihrem Unternehmenserfolg beitragen. +Less digital bullshit, more digital drive.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e4db144e0a3a0001db7ffb/picture,"","","","","","","","","" +Chromedia – Customer Experience Communications,Chromedia – Customer Experience Communications,Cold,"",33,marketing & advertising,jan@pandaloop.de,http://www.chromedia.de,http://www.linkedin.com/company/chromedia-gmbh,https://facebook.com/chromedia,"",10 Osterwaldstrasse,Munich,Bavaria,Germany,80805,"10 Osterwaldstrasse, Munich, Bavaria, Germany, 80805","churn management, cx, customer experience, customer journey, customer loyalty, lead capturing, data driven marketing, automation, lead nurturing, automotive, crm, onetoone marketing, performance marketing, cxm, contextual personalisation, green cx, automotive cx, customer relationship, personalisierung, luxury cx, contextual marketing, immersive cx, customer journey map, customer centricity, dialogmarketing, datenmanagement, omni channel marketing, digital marketing, digital experience, martech, journey mapping, touchpoint management, customer experience management, branded cx, customer journey management, luxury, advertising services, customer relationship management, personalization, brand communication, customer insights, digital transformation, kpi tracking, customer engagement, marketing technologies, segmentation strategies, customer feedback management, after sales communication, loyalty programs, user experience design, customer onboarding, brand awareness, cross-selling, customer lifecycle, campaign management, social media marketing, one-to-one marketing, marketing analytics, data management, customer data platforms, predictive analytics, chats bots, marketing automation, e-mail marketing, search engine marketing, visual merchandising, content creation, customer service management, analytics and reporting, brand loyalty, customer interaction, user journey mapping, customer retention, customer satisfaction, b2b, b2c, e-commerce, d2c, consulting, services, retail, sales, enterprise software, enterprises, computer software, information technology & services, marketing & advertising, marketing, consumer internet, consumers, internet, design, social media, analytics, saas, email marketing, sem",'+49 89 3619490,"Outlook, Microsoft Office 365, Jira, Atlassian Confluence, Hubspot, Apache, DoubleClick Conversion, Google Tag Manager, Google Dynamic Remarketing, DoubleClick, Google AdWords Conversion, Vimeo, Mobile Friendly, WordPress.org, Microsoft Excel","",Other,"",2021-10-01,"","",69c2815dd22e0100019e8904,8742,54181,"Chromedia is an internationally active marketing agency founded in Munich in 1995 and focused on integrated customer experience (CX) communication. With strategic-creative programs and campaigns, Chromedia creates inspiring and emotional moments for unique brand, purchase and owner experiences. To this end, Chromedia implements cross-channel data-driven dialog, digital and CRM communication that inspires, activates and loyalizes target groups along the entire customer journey. Chromedia serves national and international top brands from medium-sized businesses and corporations in B2B and B2C marketing - strategically, creatively, technologically and implements CX communication in global markets. + +References: 3M ESPE Dental, Arabella Starwood Hotels & Resorts (Westin, Le Méridien), Associated British Foods (Twinings Tea), Accor Hospitality (Etap, Ibis, Mercure, Novotel, Pullman, Sofitel), ADAC, Audi, Cartier, Daimler Insurance Services, Fujitsu, Giesecke & Devrient, O2 Germany, Porsche, René Lezard, Scheufelen, Skoda, Sopra Steria Consulting, Vergölst Reifen + Autoservice, Wander (Caotina, Ovomaltine), Warema Renkoff, Webasto, ZF Sachs.",1996,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6884dce238d8af00016726d3/picture,"","","","","","","","","" +Prozesswerk,Prozesswerk,Cold,"",21,"",jan@pandaloop.de,http://www.prozesswerk.eu,"","","",10B Feringastrasse,Unterfoehring,Bavaria,Germany,85774,"10B Feringastrasse, Unterfoehring, Bavaria, Germany, 85774","",'+49 89 124137000,"Microsoft Office 365, Microsoft Azure Hosting, Remote","","","","","","",69c2815dd22e0100019e8906,7379,54133,"Well prepared for future challenges in mechatronics PROZESSWERK - as a brand of umlaut systems GmbH - uses its competence to enhance the business of its customer in a high performance way. + +The key is our LEAN MECHATRONIK concept which allows to improve the business performance on the product-, process-, employee- and organization level, by applying individual sets of methodologies. + +Take your advance of our experience from mechatronic excellence in different Industries like Automotive, Mechanical and Plant Engineering, Electrical Engineering, Software Development and Medical Devices. + +Don't hesitate to contact us for further information.",2007,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/653268b7744bb00001a55e10/picture,"","","","","","","","","" +Archtexx Consulting GmbH,Archtexx Consulting,Cold,"",17,information technology & services,jan@pandaloop.de,http://www.archtexx.com,http://www.linkedin.com/company/archtexxconsulting,"","","",Bad Soden,Hesse,Germany,"","Bad Soden, Hesse, Germany","worldwide, vendoor management, it consulting, consulting, transformation, s4hana, it services & it consulting, management consulting services, process automation, data analytics, contract negotiation, large-scale transformation, data management, change management, vendor strategy, quality assurance framework, process optimization, transformation journey management, data strategy, business transformation, business services, generative ai, global e-invoice regulations, risk management, system integration, vendor sourcing, it infrastructure, continuous improvement in data strategy, b2b, ai readiness assessment, business process optimization, operational efficiency, information technology, cloud solutions, market insights for vendors, einvoice compliance, rfp construction & vendor comparison, it strategy, digital transformation, business case development, operational efficiency enhancement, services, sap s/4hana, ai strategy, management consulting, transformation roadmap, vendor management, strategic vendor oversight, regulatory compliance, governance & evaluation, technology, information technology & services, cloud computing, enterprise software, enterprises, computer software",'+49 6173 998700,"Outlook, Atlassian Cloud, Slack, Mobile Friendly, WordPress.org, Apache, SAP S/4HANA, FICO Safe Driving Score, SAP Ariba Platform, AI, SAP","","","","","","",69c2815dd22e0100019e8908,8742,54161,"Archtexx Consulting GmbH is a management consulting firm based in Bad Soden a. Taunus, Germany, established in 2007. The company focuses on providing trusted advisory and consulting services to C-level and C-1 level executives, bridging the gap between business strategy and technology implementation. Archtexx operates on a 100% referral-based model and positions itself as an extension of client teams. + +The firm specializes in six key areas: digital transformation, vendor management, generative AI, SAP S/4HANA migration, data strategies and management, and e-invoice compliance. Archtexx aims to deliver measurable business value through its expertise in these domains, helping organizations navigate complex challenges in the computer consultancy activities industry.",2007,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66fb94f11ca4360001a81677/picture,"","","","","","","","","" +Kaeyros Analytics,Kaeyros Analytics,Cold,"",41,information technology & services,jan@pandaloop.de,http://www.kaeyros-analytics.com,http://www.linkedin.com/company/kaeyros-analytics,"","","",Dortmund,North Rhine-Westphalia,Germany,"","Dortmund, North Rhine-Westphalia, Germany","data infrastructure & analytics, information technology & services","","Cloudflare DNS, Outlook, Microsoft Office 365, CloudFlare Hosting, Kubernetes, Rancher Labs, Argo CD, Argo, GitHub Actions, Ansible, Bash, Python, Node.js, Grafana Loki, Grafana, Temporal Cloud, Prometheus, Elasticsearch, Logstash, Kibana, Docker, HELM, Terraform","","","","","","",69c2815dd22e0100019e890d,"","","Kaeyros Analytics GmbH is a seed-stage startup based in Dortmund, Germany, founded in 2021. The company specializes in data science, digital transformation, and IT consulting services, primarily targeting small and medium-sized enterprises (SMEs) in Francophone African markets. With a small team of 1-10 employees, Kaeyros aims to help SMEs overcome barriers to digitalization by providing affordable solutions. + +Led by Managing Director Tanguy Thierry Monthe Nguedjui, Kaeyros focuses on developing data-driven products and applications, including automated scoring models. The company offers IT consulting, DevOps support, and broader digital solutions to optimize business operations and create new digital product portfolios. Kaeyros has set ambitious growth targets, aiming for significant revenue by 2027 through a diverse range of products and a growing client base.",2019,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69ac90aeb2fed90001b3d9c2/picture,"","","","","","","","","" +Virtimo AG,Virtimo AG,Cold,"",50,information technology & services,jan@pandaloop.de,http://www.virtimo.de,http://www.linkedin.com/company/virtimo-ag,"","",18 Behrenstrasse,Berlin,Berlin,Germany,10117,"18 Behrenstrasse, Berlin, Berlin, Germany, 10117","branchenspezifische itloesungen, automatisierung von geschaeftsprozessen, systemintegration, digitale transformation, business process management, cloud solutions, process automation, data analytics, retail, low-code platform, user-centric interface, data management, real-time market data, hybrid cloud, security monitoring, energy sector solutions, process optimization, process modelling, security by design, cloud platform, automotive, information technology and services, iot platform integration, data streaming, system integration, workflow automation, data encryption, b2b, it security, performance monitoring, api integration, cloud security, data orchestration, utilities, application development, digital transformation, insurance, innovation, energy, market communication services, bpmn 2.0 modeling, services, cloud scalability, consulting, iot integration, automated monitoring, energy market processes, performance kpis, cloud services, cloud computing, regulatory compliance automation, real-time data processing, process dashboard, computer systems design and related services, data integration, system connectivity, government, smart data flows, transportation & logistics, energy & utilities, enterprise software, enterprises, computer software, information technology & services, computer & network security, app development, apps, software development",'+49 30 55574400,"Amazon SES, Mailchimp Mandrill, Rackspace MailGun, Gmail, Google Apps, Apache, WordPress.org, Mobile Friendly, Gravity Forms","",Merger / Acquisition,0,2020-01-01,"","",69c2815dd22e0100019e8905,7375,54151,"THE COMPANY WITH THE V-FACTOR. V LIKE VALUE. +VIRTIMO IS YOUR IT PARTNER FOR AUTOMATED BUSINESS PROCESSES. + +VIRTIMO. +Our mission as an IT consulting company is to reduce complexity for you! Easier, faster, better: We analyse business processes, design the technical realisation of client requirements and implement products or custom solutions. Our industry focus is on the energy sector; in addition we support clients from the automotive, technical, insurance and retail sectors with our extensive business process expertise. + +VERSTEHEN. LIKE UNDERSTANDING. +Understanding starts with listening: We are here for you, from first analysis to conceptual design, to implementing, initiating and operating your application, and to training your employees. Personally and reliably. + +VORAUSDENKEN. LIKE FORWARD-THINKING. +Forward-thinking is crucial for us: We keep an eye on what is important, we think unconventionally and always ask ourselves what would be smarter, faster, better: In this way we can provide you with comprehensive functional and technical advice and support you with fitting solutions – especially in questions about digitisation and the digital transformation of business processes. + +VEREINFACHEN. LIKE SIMPLIFICATION. +Simplification is our premise in the development of our tailored products and solutions: Modern and form-fitted technologies, custom software, process tools and professional applications that will facilitate your work! + +VIELFALT. LIKE DIVERSITY. +We view diversity as the basis of our success: By now, our team consists of 120 experts – and real personalities. We bring in our individual characteristics, skills and perspectives to achieve the best results. And fun is not neglected either! + +VORSTELLUNG. LIKE INTRODUCTION. +You would like to get to know us? You have questions? A concrete problem to solve? We are happy to hear from you and to introduce you to Virtimo!",2010,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66fce24d019734000137ea90/picture,Bosch (bosch.com),5e564eb29d5ff70001d8de77,"","","","","","","" +Provectus Technologies GmbH,Provectus,Cold,"",130,information technology & services,jan@pandaloop.de,http://www.provectus.de,http://www.linkedin.com/company/provectus-technologies-gmbh,https://www.facebook.com/provectustechnologiesgmbh,"",250B Leopoldstrasse,Munich,Bavaria,Germany,80807,"250B Leopoldstrasse, Munich, Bavaria, Germany, 80807","nutanix, modern app delivery, microsoft, digital workplace, mobility services, digitale transformation, corporate access, compliance, new work it, modern workplace, virutalisierung, virtualisierung, server based computing, itsicherheit, citrix, zero trust architecture, azure cloud, remote work, data security, saas, citrix virtual apps & desktops, computer systems design and related services, cloud cost optimization, virtual desktop infrastructure, automation with no code/low code, it consulting, devops, saas security, cloud solutions, microsoft purview, zero trust, modern work & ki, it security & compliance, zero trust security, data governance, digital transformation, process automation, azure, automation, it-beratung, cloud computing, consulting, hybrid cloud, b2b, infrastructure as code, cloud migration, digital workplace strategy, information technology and services, microsoft 365, software development, cloud infrastructure & solutions, microsoft copilot, managed services, cybersecurity, business process optimization, security & compliance, microsoft defender, power platform, endpoint management, cloud infrastructure, workplace modernization, azure virtual desktop, cloud governance, services, citrix netscaler adc, user adoption, computer & network security, information technology & services, computer software, management consulting, enterprise software, enterprises, internet infrastructure, internet",'+49 89 71040920,"MailJet, Outlook, Microsoft Office 365, Microsoft Azure Hosting, Microsoft Dynamics 365 Marketing, Atlassian Cloud, Microsoft Azure, Hubspot, WordPress.org, Bootstrap Framework, Linkedin Marketing Solutions, Mobile Friendly, Nginx, Microsoft 365, AI","","","","","","",69c2815dd22e0100019e890b,7375,54151,"Provectus Technologies GmbH is an IT company based in Munich, founded in 2001. It specializes in digital transformation for enterprise and mid-sized businesses by providing tailored technologies and solutions. The company focuses on integrating modern innovations into existing systems, helping clients optimize their operations and improve productivity. + +With over 20 years of experience, Provectus offers a range of services, including cloud solutions, process automation, business applications, managed services, and expertise in Microsoft 365. The firm emphasizes a culture of teamwork, flexibility, and open communication, fostering an environment where employees can grow and innovate. Provectus aims to empower clients to independently use and develop solutions, positioning itself as a technology pioneer in the IT sector.",2001,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/682a724c8d6f4b00015eca05/picture,"","","","","","","","","" +BITConEx,BITConEx,Cold,"",41,information technology & services,jan@pandaloop.de,http://www.bitconex.de,http://www.linkedin.com/company/bitconex,"","",396 Landsberger Strasse,Munich,Bavaria,Germany,81241,"396 Landsberger Strasse, Munich, Bavaria, Germany, 81241","wholebuy, wholesale, telecommunication, tm forum, java, business intelligence, telecommunications, spri, telecom, clearing platform, wbci, it services & it consulting, security architecture, industry 4.0 software, telecom service integration, system integration, custom software development, it consulting, telco-partner-management, telecom process automation, tm forum standards, nearshoring, services, industrial iot solutions, customer-specific solutions, tmf-compliant adapters, telecommunications solutions, wholebuy services, data exchange interfaces, mozak, process automation, consulting, cloud solutions, smart manufacturing, inter-carrier processes, com-som-adapter, data security, machine optimization, data mapping, process automation in tk market, system interoperability, telecom process management, information technology and services, industry 4.0 platform, software development, industrie 4.0, manufacturing, b2b it services, outsourcing, telecom partner platform, real-time data analysis, computer systems design and related services, b2b, industrial automation, it solutions, digital transformation, api integration, distribution, analytics, information technology & services, management consulting, cloud computing, enterprise software, enterprises, computer software, computer & network security, mechanical or industrial engineering",'+49 89 46225421,"Outlook, Remote","","","","","","",69c2815dd22e0100019e8915,7373,54151,"1. A leader in IT solutions since 2008: We are an established company with many years of experience in the telecoms industry and the public sector, among others. +2. Growing team of IT experts: Our team of around 50 highly qualified IT experts is constantly growing in order to always offer the best solutions. +3. International presence: With locations in Munich, Sarajevo and Novi Pazar, we have a broad base in Europe and can provide customers with optimum local support. +4. Member of the TM Forum since 2023: This membership strengthens our networking, resources and innovative power to develop industry-leading solutions. +5. Customer-focused innovation: Our experienced IT consultants use state-of-the-art technologies to create customised, practical solutions for the individual needs of our customers.",2008,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e448551d64b40001e52aca/picture,"","","","","","","","","" +OMNIVOLUTION GmbH,OMNIVOLUTION,Cold,"",16,information technology & services,jan@pandaloop.de,http://www.omnivolution.com,http://www.linkedin.com/company/omnivolution,"","","",Aschaffenburg,Bavaria,Germany,"","Aschaffenburg, Bavaria, Germany","software development, hyperautomatisierung mit ki, energy & utilities, automatisierte datenverarbeitung, natural language processing, d2c, prozessoptimierung, maßgeschneiderte softwarelösungen, web-applikationen, e-commerce-lösungen, automatisierte workflows, information technology & services, mobile app entwicklung, manufacturing, web-technologien, b2b, e-commerce, digitalisierung, flexible systemarchitektur, low-code-plattform, branchenlösungen, computer systems design and related services, webshops & portalsungen, predictive analytics, content-engagement, api-integration, digital transformation, sicherheitsstandards, content-management-systeme, natural language processing (nlp), benutzerfreundlichkeit, consulting, healthcare, api-schnittstellen, content-distribution, content-monetarisierung, construction & real estate, content management, ki-basierte entscheidungsfindung, retail, native mobile apps, logistics & transportation, ki-gestützte automatisierung, echtzeit-datenanalyse, machine learning (ml), services, skalierbare anwendungen, finance, distribution, consumer_products_retail, transportation_logistics, energy_utilities, construction_real_estate, artificial intelligence, mechanical or industrial engineering, consumer internet, consumers, internet, enterprise software, enterprises, computer software, health care, health, wellness & fitness, hospital & health care, financial services",'+49 6021 3730041,"Sendgrid, Outlook, Microsoft Office 365, Hubspot, Slack, Mobile Friendly, WordPress.org, Apache, Google Tag Manager, reCAPTCHA, Multilingual, Typekit, Android","","","","","","",69c2815dd22e0100019e8918,7375,54151,"Welcome to OMNIVOLUTION, where innovation meets execution in the world of software development. We're a forward-thinking software development company that specializes in transforming bold ideas into dynamic, user-centric software solutions. Our mission is to drive digital transformation through cutting-edge technologies, bespoke software development, and agile methodologies. From startups to enterprise giants, we empower organizations to thrive in the digital era with scalable, robust, and intuitive applications. At OMNIVOLUTION, we're not just developers; we're your strategic partners in the digital journey, committed to excellence, innovation, and an omnichannel approach that evolves with your business needs. Let's shape the future of technology, together.",2023,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/682c60111022f200016c005f/picture,"","","","","","","","","" +United Digital Group,United Digital Group,Cold,"",180,information technology & services,jan@pandaloop.de,http://www.udg.de,http://www.linkedin.com/company/udg-united-digital-group,https://www.facebook.com/UDG.World/,https://twitter.com/UDG_DE,45 Hindenburgstrasse,Ludwigsburg,Baden-Wuerttemberg,Germany,71638,"45 Hindenburgstrasse, Ludwigsburg, Baden-Wuerttemberg, Germany, 71638","relations, sites portals, consulting, performance marketing, learning amp development, ui, systems technology, ux, media, data analysis, conversion rate optimization, branding, operations, learning development, systems amp technology, sites amp portals, data amp analysis, technology, information & internet, e-commerce accessibility, content management system, european accessibility act, customer journey, content cloud, hybrides headless cms, digitale strategieberatung, b2c, web3d, services, conversion rate optimierung, d2c, retail, künstliche intelligenz, digital marketing and advertising, konfigurator-lösungen, digital experience platform, webanalyse tools, data-driven marketing, digitalagentur, accessibility audit, cx-check, digitale barrierefreiheit, multisite management, e-commerce, digital style guides, information technology and services, software development, a/b testing, webentwicklung, user experience, wcag-standards, computer systems design and related services, coremedia, multiexperience orchestration, b2b, web accessibility standards, digital transformation, ux design, echtzeit produktkatalog, content strategy, ki-beratung, personalisierte customer experience, marketing & advertising, data analytics, information technology & services, consumer internet, consumers, internet",'+49 40 4506993,"Rackspace MailGun, Mimecast, Outlook, MailChimp SPF, Microsoft Office 365, Facebook Custom Audiences, Facebook Login (Connect), Mobile Friendly, Linkedin Marketing Solutions, FullStory, Facebook Widget, Google Tag Manager, Browserstack, FirstSpirit, AWS SDK for JavaScript, SiteCore, NTENT, React/node.js Storefront, GraphQL, ASP.NET, C#, Secured MVC Forum on Windows 2012 R2, Microsoft SQL Server Reporting Services, REST, Jira, Confluence, Microsoft Azure Monitor, Terraform, Docker, Vscode, Microsoft PowerShell, Microsoft Application Insights, Angular, Microsoft Excel, DATEV Accounting, AWS Trusted Advisor, Ansible, Docker Compose, Kubernetes, HELM, Azure Devops, GitLab, Next.js, Nuxtjs, Node.js, Astro by Astronomer, React, VueJS, Storyblok, Contentful, TypeScript, TYPO3, Anthropic Claude, Claude, Langchain, Meta Llama 3, OpenAI, Google AdWords Conversion, Microsoft Teams Rooms, Slack, HTML Pro, Oracle XML DB, Tailwind, PowerBI Tiles, Looker, Google Ads, Metabase, Dv360, The Trade Desk, Adobe Analytics, Google Analytics, Google Search Console, Sprout Social, Visual Studio Code, Python, go+, Bash, Javascript","",Merger / Acquisition,0,2024-11-01,42000000,"",69c2815dd22e0100019e8902,7375,54151,"United Digital Group (UDG) is a full-service digital agency based in Hamburg, Germany, specializing in digital marketing, transformation, and sales strategies. Founded in 2011, UDG focuses on creating integrated, data-driven customer experiences for brands. The agency operates 12 offices in Germany and one in London, employing around 408 people. UDG is part of the PIA Group and joined the MSQ agency group in late 2024. + +UDG offers a comprehensive range of services, including consulting, brand development, digital marketing, technology solutions, and data analytics. Their expertise spans digitization strategies, customer journey optimization, and unique brand experiences. UDG serves various industries, including automotive, engineering, retail, and health, and has established long-term relationships with clients such as Porsche and Bosch. The agency emphasizes holistic digital transformation to enhance business models and marketing channels.",2011,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69ae946264723f00017cc7ee/picture,MSQ (msqpartners.com),55f739ddf3e5bb16bc000291,"","","","","","","" +Spectos GmbH,Spectos,Cold,"",90,information technology & services,jan@pandaloop.de,http://www.spectos.com,http://www.linkedin.com/company/spectos-gmbh,https://www.facebook.com/Spectos/,https://twitter.com/spectosnews,91 Kaethe-Kollwitz-Ufer,Dresden,Saxony,Germany,01309,"91 Kaethe-Kollwitz-Ufer, Dresden, Saxony, Germany, 01309","customer panel management, endtoend runtime measurements, transit time measurement, video coding, integration, market research next generation, wifi tracking, en 13850, realtime measurements, process experience, quality management in healthcare, tracker technology, data analytics, rfid, en 14534, employee survey tool, complaint management system, six sigma, mystery shopping, rfid technology, advanced data analytics, multichannel feedback solutions, realtime cockpits, enterprise feedback management, employee experience, service quality solutions, market research, quality management, operations experience, tailored reporting, digitization solutions, performance management software, software, complaint management, rpm platform, retail store servicequality monitoring, realtime performance management, tracking, customer experience, redress management, consultancy, kpi tracking, employee experience management, big data analytics as a service, six sigmabased technology, realtime measurements & reports according to en 13850 en 14534, big data analytics, service quality management, digitization data entry, enterprise feedback management in realtime, performance management system, employee satisfaction surveys, ecommerce solutions, cem, customer engagement platform, employee engagement tool, customer experience monitoring amp management, quality of service monitoring for mail postal industry, retail amp store servicequality monitoring, service quality monitoring, customized dashboards, issue management software, customer experience monitoring management, quality of service monitoring for mail amp postal industry, customer experience platforms, postal performance, performance management solutions, it services & it consulting, postal logistics, performance reporting, public transport performance, data capturing & digitization, smart logistics solutions, healthcare process monitoring, rfid tracking, performance dashboards, customer satisfaction, performance control, customer experience management, business intelligence, e-commerce performance, audit & certification management, post & parcel logistics performance, performance analytics, process automation & digitization, e-commerce, operational kpis, performance alerts, cold chain monitoring, process digitization, data integration, feedback management, performance optimization, healthcare, quality improvement, real-time alerts, retail & supply chain logistics, management consulting services, b2b, kpi monitoring, airline network monitoring, supply chain performance, data visualization, logistics performance, retail, performance management, supply chain transparency, customer dialogue system, transit time measurement systems, real-time data analysis, customer feedback systems, services, sensor technologies, real-time shipment tracking, mobility & transport, european standards compliance, compliance monitoring, transit time monitoring, cold chain global monitoring, operational efficiency, logistics, postal, supply_chain, transportation, performance_management, service_quality, real_time_monitoring, data_analysis, digitalization, audit_certification, customer_experience, performance_analytics, sensor_technology, compliance, performance_control, feedback_system, monitoring, kpis, visualization, information technology & services, consulting, management consulting, enterprise software, enterprises, computer software, consumer internet, consumers, internet, analytics, health care, health, wellness & fitness, hospital & health care",'+49 351 32025229,"Amazon SES, Gmail, Google Apps, Microsoft Office 365, Zendesk, Amazon AWS, Jira, Atlassian Confluence, React, Slack, GoToWebinar, WordPress.org, Google Tag Manager, Gravity Forms, Google Analytics, YouTube, Vimeo, reCAPTCHA, Mobile Friendly, Remote, AI, Canon Printers, Microsoft Office, Canva, Wordpress","","","","",10609000,"",69c2815dd22e0100019e8910,7389,54161,"Spectos GmbH, based in Dresden, Germany, has been a leader in international data collection and analysis since its founding in 2001. The company specializes in providing technology-driven solutions that help service-oriented businesses enhance service quality through tailored B2B offerings. With a team of approximately 88-93 employees, Spectos generates around $13 million in revenue and focuses on making data accessible for real-time insights. + +The company offers SaaS and PaaS solutions, including the Spectos Service Quality Cloud and Real-Time Performance Management™ platform. These solutions utilize Six Sigma methodology to integrate real-time data from various sources, such as customer feedback and operational systems. Key features include intuitive dashboards, monitoring tools, and tailored modules for measuring and improving service quality across different industries, including logistics, healthcare, and public services. Spectos emphasizes agile collaboration and provides TÜV-certified solutions to support continuous quality assurance and proactive improvements.",2001,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/683bdd09099c9c000179634f/picture,"","","","","","","","","" +avarno GmbH,avarno,Cold,"",20,telecommunications,jan@pandaloop.de,http://www.avarno.de,http://www.linkedin.com/company/avarno,https://www.facebook.com/AvarnoGmbH/,"",7 Moerikestrasse,Zuzenhausen,Baden-Wuerttemberg,Germany,74939,"7 Moerikestrasse, Zuzenhausen, Baden-Wuerttemberg, Germany, 74939","allip, process engineering, 5g, pesq, cloud, out of the box, migration, requirements engineering, automatisierungen, ausschreibung, ucc, change management, speech quality evaluation, telecommunication, kommunikationsinfrastruktur, security, monitoring, business analysis, testing, large language models, digitalisierung, chat bots, ki compliance, ngn, projektmanagement, business analyse, roll out, transformation, kuenstliche intelligenz, qualitaetssicherung, netzwerk, consulting services, it process optimization, telecom infrastructure, ucc structures, information technology & services, customer project support, it consulting, telecommunications, management consulting services, cloud computing, telecom migration, unified communications, public sector it, cloud-based systems, it project management, cloud contact center, services, technology integration, digital strategy, telecom network analysis, project coordination, digital transformation, project implementation, it strategy, it service management, hybrid team management, digital workplace, interdisciplinary teams, process design, technology consulting, telecom project support, communication infrastructure, b2b, telecom modernization, migration projects, information technology and services, telecom product development, telecommunications consulting, government, consulting, communication solutions, management consulting, enterprise software, enterprises, computer software, marketing, marketing & advertising",'+49 622 65534500,"Outlook, Google Tag Manager, Mobile Friendly, Apache, WordPress.org, Genesys, Microsoft Application Insights, Anywhere365","","","","","","",69c2815dd22e0100019e8914,7375,54161,"Unsere Mission ist es, durch innovative und maßgeschneiderte IT- und Digitalisierungsstrategien Unternehmen und öffentliche Organisationen dabei zu unterstützen, ihre Prozesse effizienter zu gestalten und zukunftssicher aufzustellen. Wir legen großen Wert auf den Know-how-Transfer, denn unser Ziel ist es, unsere Kunden so zu befähigen, dass sie ihre Herausforderungen eigenständig bewältigen können. Wir arbeiten in interdisziplinären Teams und stellen sicher, dass unsere Berater so lange zur Verfügung stehen, wie sie benötigt werden. Wir verlassen ein Projekt erst, wenn das Wissen vollständig weitergegeben und implementiert ist, sodass unsere Kunden nachhaltig von unseren Lösungen profitieren und langfristig unabhängig agieren können. Dabei setzen wir stets den Menschen in den Mittelpunkt und schaffen Lösungen, die technische Komplexität in verständliche, umsetzbare Konzepte übersetzen.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6770393615d61500010b0596/picture,"","","","","","","","","" +Büro am Draht,Büro am Draht,Cold,"",37,information technology & services,jan@pandaloop.de,http://www.dasburo.com,http://www.linkedin.com/company/dbad,"","",22 Bluecherstrasse,Berlin,Berlin,Germany,10961,"22 Bluecherstrasse, Berlin, Berlin, Germany, 10961","digital business infrastructure, carconfigurators, cloud, online, cms, web, java, int, ecommerce, dam, softwaredevelopment, cloud migration, digital transformation, process automation, data analytics, customer engagement, digital experience, workshops and assessments, software development, digital solutions, it consulting, retrospective workshops, self-service portals, agile methodology, chatbots, digital check, it infrastructure, architecture assessment, custom software development, computer systems design and related services, information technology and services, cyber-security, cloud computing, data security, consulting, services, scalability and security, cloud solutions, cybersecurity, it architecture, b2b, user experience, e-commerce, consumer internet, consumers, internet, information technology & services, management consulting, enterprise software, enterprises, computer software, computer & network security, information architecture, ux",'+49 30 6903550,"Gmail, Google Apps, Microsoft Office 365, Google Cloud Hosting, CloudFlare, Netlify, React, Slack, Mobile Friendly, Apache, Android, Remote, AWS SDK for JavaScript, Standalone Tomcat - Java Servlet and JSP Platform by TurnKey Linux (HVM), Javascript, TypeScript, HTML Pro, CSS, Barracuda MSP, Coralogix, Ext JS, Spring Boot, GraphQL, Docker, GitLab, GitHub Actions, Barracuda Email Security Service, Kubernetes, ECS, IBM Storage Suite for IBM Cloud Paks, Python, Bash, Argocd, Flux, HELM, Imperva Serverless Protection, Amazon Elastic Load Balancing, Akamai CDN Solutions, Azion Edge Caching, Pulumi, Terraform, Ansible, GitHub, Azure Devops","",Merger / Acquisition,0,2024-11-01,"","",69c281591e946c0001ef793e,7375,54151,"Welcome to Büro am Draht - Your Trailblazer in the Digital World! 🌐 + +Our mission? To propel and captivate your business in the digital age! 🚀 + +We offer: +𝗜𝗱𝗲𝗻𝘁𝗶𝘁𝘆 & 𝗣𝗼𝗿𝘁𝗮𝗹𝘀: Robust security meets seamless interaction. Protect your data and delight both customers and employees. + +𝗖𝘂𝘀𝘁𝗼𝗺𝗲𝗿 𝗘𝘅𝗽𝗲𝗿𝗶𝗲𝗻𝗰𝗲: More than just satisfaction. We craft experiences that fascinate and retain your customers. + +𝗗𝗶𝗴𝗶𝘁𝗮𝗹 𝗠𝗼𝗱𝗲𝗿𝗻𝗶𝘇𝗮𝘁𝗶𝗼𝗻: Your upgrade for the digital future. Optimize your IT and set the course for sustainable success. + +You are at the center of what we do. We listen, understand, and create solutions as unique as your business. + +📞 Ready for the next level of your digital success? Contact us now and embark on your tailored digital journey! 👆 + +Büro am Draht: +A brand of Cloudfactory GmbH",1995,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68b69f7be826f20001e8c516/picture,"","","","","","","","","" +Micromata GmbH,Micromata,Cold,"",110,information technology & services,jan@pandaloop.de,http://www.micromata.de,http://www.linkedin.com/company/micromata-gmbh,https://www.facebook.com/MicromataGmbH/,https://twitter.com/Micromata,1 Marie-Calm-Strasse,Kassel,Hesse,Germany,34131,"1 Marie-Calm-Strasse, Kassel, Hesse, Germany, 34131","cloud, itberatung, agiles projektmanagement, itsecurity, kuenstliche intelligenz, usability engineering, software development, projektmanagement, softwareentwicklung, business process modelling, change management, ux design, data science, big data, barrierefreiheit, digital transformation, machine learning anwendungen, user experience design, support & maintenance, b2b, open-source-technologien, it-beratung, automatisierung, penetration testing, sicherheitszertifizierungen, project management, consulting, iot integration, user experience, ki-integration, it security, digitales sicherheitsmanagement, kundenorientierte lösungen, open source technologien, compliance, sap migration, it-infrastruktur, risk management, machine learning, maßgeschneiderte softwarelösungen, automatisierte code-refaktorisierung, services, ai in der logistik, predictive analytics, intelligente kpis, artificial intelligence, automatisierte tests, ki-workshops, kubernetes, data science & ai, devops, it consulting, cloud management, it-security & cloud defense, custom software development, devops prozesse, ai pentesting, cloud solutions, computer systems design and related services, ki & data science, information technology and services, cloud computing, agile methoden, consulting services, prototyping & proof of concept, cybersecurity, ai-assistenten, digitale transformation, data analytics, transportation_logistics, information technology & services, enterprise software, enterprises, computer software, computer & network security, productivity, ux, management consulting",'+49 561 3167930,"Gmail, Outlook, Google Apps, Microsoft Office 365, Nginx, Mobile Friendly, reCAPTCHA, Google Font API, Facebook Custom Audiences, Facebook Widget, Facebook Login (Connect), Linkedin Marketing Solutions, WordPress.org, Google Tag Manager, GitLab, Azure Devops, GitHub Actions","","","","",118000,"",69c281591e946c0001ef7932,7375,54151,"Micromata GmbH is a German software development and digitalization consulting company based in Kassel, founded in 1997. With around 180 employees, the company specializes in custom software solutions, AI integration, and SAP-related services. Micromata focuses on intelligent and tailored digitalization, helping businesses leverage software to achieve their goals. It has been recognized as one of the ""6 Great Place to Work"" certified organizations and serves top German blue-chip firms, known as DAX40 companies, along with other leading global clients. + +The company offers a range of services, including custom software development, AI technology integration, and SAP migration support. Micromata's innovative solutions include AI-assisted analysis strategies and intelligent automation for seamless SAP landscape migrations. One of its key products is INVAIIDER, an AI-driven penetration testing solution that enhances digital security through advanced scanning techniques. Micromata's expertise spans various industries, enabling it to create synergies and future-oriented solutions for its clients.",1997,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6955f40706fed90001628a0d/picture,"","","","","","","","","" +Hypatos,Hypatos,Cold,"",99,information technology & services,jan@pandaloop.de,http://www.hypatos.ai,http://www.linkedin.com/company/hypatos,"",https://twitter.com/Hypatos_AI,162 Rudolf-Breitscheid-Strasse,Potsdam,Brandenburg,Germany,14482,"162 Rudolf-Breitscheid-Strasse, Potsdam, Brandenburg, Germany, 14482","backoffice automation, artifical neural networks, machine learning, agentic ai, recordtoreport automation, deep learning, p2p automation, data science, business process automation, documentbased process automation, accounts payable automation, llms, procuretopay automation, ap automation, autonomous finance, docoument data capturing, ordertocash automation, global business services, ai, agentic process automation, ai agents, einvoincing, hiretoretire automation, software development, retrieval-augmented generation, ai in finance, intelligent document processing, multi-language processing, natural language processing, cost savings, data enrichment, regulatory compliance, real-time insights, audit readiness, enterprise ai, sap integration, manufacturing, b2b, rpa alternative, high accuracy, ai in order management, computer systems design and related services, workday integration, scalability, ai agent control, financial process automation, natural language instructions, finance, end-to-end transaction processing, financial automation, document processing, xsuite, fraud detection, cloud security, ai-driven compliance, ai agent monitoring, consulting, enterprise idp, healthcare, touchless operations, data security, transaction matching, compliance & risk management, ai in expense management, multi-channel document intake, hyperautomation, error reduction, workflow automation, sap, ai-powered data extraction, ai agent learning, enterprise productivity, retail, workday, process automation, services, artificial intelligence, information technology & services, mechanical or industrial engineering, financial services, computer & network security, health care, health, wellness & fitness, hospital & health care",'+49 30 2099700,"Cloudflare DNS, Route 53, MailJet, Outlook, Microsoft Office 365, CloudFlare, Atlassian Cloud, Webflow, MongoDB, Hubspot, Active Campaign, reCAPTCHA, Mobile Friendly, Vimeo, Google Tag Manager, AI, React, TypeScript, Google AlloyDB for PostgreSQL, Docker, ANGEL LMS, Azure Data Lake Storage, Microsoft 365, Microsoft Office, Jira, Slack, Adform DMP, Microsoft Windows Server 2012, Apple macOS, Salesforce, Telligent, Mode, Ning, Spark, Apache Kafka, Kubernetes, ClickHouse, Tor, SAP, AWS SDKs, IBM ILOG CPLEX Optimization Studio, Playwright, Python",15320000,Venture (Round not Specified),0,2025-02-01,5000000,"",69c281591e946c0001ef7933,7375,54151,"Hypatos is an AI company based in Berlin and Potsdam, specializing in deep learning and process automation for document capture and financial operations. Founded in 2015, the company has grown to around 100 experts and operates in multiple locations, including New York, Miami, and Wroclaw. Hypatos focuses on cognitive process automation, which enhances traditional robotic process automation by providing contextual understanding of documents. + +The company offers a platform for AI-driven document processing tailored to financial operations. This includes autonomous AI agents that handle high-volume documents and transactions, ensuring compliance and improving efficiency. Hypatos automates the extraction and management of various financial documents, such as invoices and expense claims, significantly reducing errors and boosting productivity. The company serves approximately 50 large corporations across Europe and North America, helping them streamline their back-office processes and achieve rapid returns on investment.",2018,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69ace1df0aaa6f000131fc37/picture,"","","","","","","","","" +impacx,impacx,Cold,"",49,information technology & services,jan@pandaloop.de,http://www.impacx.de,http://www.linkedin.com/company/impacx,"","",32 Siemensstrasse,Kleve,North Rhine-Westphalia,Germany,47533,"32 Siemensstrasse, Kleve, North Rhine-Westphalia, Germany, 47533","crm, zendesk, sales, omnichannel kundenmanagement, customer service, customer retention, outsourcing, it services & it consulting, customer interaction platform, customer service technology, customer service optimization, impacx ki-basierte kommunikationsanalyse, d2c, customer service automation software, customer communication tools, customer satisfaction metrics, customer service digitalization, customer interaction management, impacx cx-plattform, impacx customer support automatisierung, b2b, e-commerce, customer feedback management, customer engagement tools, digitale cx-produkte, customer feedback analysis, customer service scalability, impacx marktplatzintegration, customer support automation, management consulting services, customer feedback collection, cx-lösungen, software development, customer service workflow automation, impacx qualittsindex, digital transformation, customer experience consulting, impacx omnichannel cx, customer service outsourcing, customer experience digital tools, customer service integration, customer service cloud, consulting, customer feedback tools, impacx automatisierte kundenkommunikation, customer experience management, customer support platforms, impacx customer service cloud, logistics and supply chain, customer service automation, omnichannel customer service, customer satisfaction enhancement, b2c, customer journey mapping, customer experience platforms, customer data integration, retail, impacx customer feedback system, customer data analytics, information technology and services, impacx marketplace management, services, customer journey optimization, customer experience strategy, distribution, transportation & logistics, enterprise software, enterprises, computer software, information technology & services, consumer internet, consumers, internet, logistics & supply chain",'+49 8000 000995,"Outlook, Pardot, Microsoft Office 365, Salesforce, DoubleClick Conversion, Mobile Friendly, Apache, Google Tag Manager, WordPress.org, Shutterstock, Google Dynamic Remarketing, DoubleClick","","","","","","",69c281591e946c0001ef7935,7375,54161,"impacx steht für fundiertes Know-how zu Strategien, Prozessen und technischen Lösungen im Kundenservice. Über 25 Jahre operative und beratende Erfahrung am Markt kombiniert mit technisch anspruchsvollster Expertise – für großartige Kundenerlebnisse und ein smartes, intuitives Customer Experience Management.",2022,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/686639512349b00001a969e7/picture,"","","","","","","","","" +avendon GmbH,avendon,Cold,"",37,telecommunications,jan@pandaloop.de,http://www.avendon.com,http://www.linkedin.com/company/avendon,https://www.facebook.com/avendon/,"",3a Alter Stadthafen,Oldenburg,Niedersachsen,Germany,26122,"3a Alter Stadthafen, Oldenburg, Niedersachsen, Germany, 26122","telefonie, dialogmarketing, outbound, bestandskundenpflege, kundenberatung, vertrieb, kampagnenmanagement, customer engagement, customer loyalty, customer data management, human-centered design, customer support, data intelligence, customer care, customer experience management, customer relationship centric, data analytics, b2c, b2b, customer journey mapping, customer satisfaction, customer satisfaction optimization, human2human, customer relationship management, projektmanagement, customer service outsourcing, information technology, customer insights software, customer loyalty programs, crm, cloud infrastructure, performance marketing, customer insights, customer journey, management consulting services, business analytics, data normalization, data-science, empathy in customer service, consulting, business services, services, multi-channel services, customer experience strategy, customer behavior prediction, customer feedback analysis, customer data analysis, data aggregation, customer experience, customer interaction, relationship centric approach, support services, empathie & innovation, customer communication, proactive customer approach, sales, enterprise software, enterprises, computer software, information technology & services, internet infrastructure, internet, marketing & advertising",'+49 441 77795910,"Outlook, Slack, Apache, Mobile Friendly, Microsoft Windows Server 2012, Secured MVC Forum on Windows 2012 R2","","","","","","",69c281591e946c0001ef7937,7389,54161,"Willkommen bei der avendon GmbH, Deinem Experten für Service- und Dialogmarketing! + +Seit fast einem Jahrzehnt unterstützen wir unsere Kunden mit innovativen Lösungen aus den Bereichen Multi-Channel-Management, In- und Outbound Services sowie intelligenten IT-Lösungen im Vertriebsumfeld. Wir setzen unsere Lösungen seit 2015 erfolgreich mit unserem erfahrenen Team am Standort Oldenburg um und haben uns damit als zuverlässiger Partner in der Branche etabliert. + +Unsere Erfolgsgeschichte spiegelt sich auch in unserem Wachstum der letzten Jahre wider. Über 100 Mitarbeiterinnen und Mitarbeiter arbeiten heute gemeinsam an einem Ziel: Die Zufriedenheit unserer Kunden. Wir sind stolz darauf, ein attraktiver Arbeitgeber zu sein, der kreative und kommunikative Menschen anspricht. Wenn Du Freude an der Beratung und am Kundenservice hast, dann bist Du bei uns genau richtig. + +Unser Ziel ist es, gemeinsam mit unseren Kunden Vertriebs- und Marketingaktivitäten weiterzuentwickeln und dabei stets am Puls der Zeit zu bleiben. Durch unsere umfassende Expertise und unser Engagement haben wir bereits zahlreiche Kunden von uns überzeugt. Wir möchten auch Dich von unseren Lösungen begeistern. + +Wenn Du nach einem dynamischen Arbeitsumfeld suchst und Teil eines erfolgreichen Teams sein möchtest, dann bewirb Dich jetzt bei uns. Wir freuen uns darauf, Dich kennenzulernen und gemeinsam mit Dir die Zukunft des Service- und Dialogmarketings zu gestalten.",2014,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/683c73807022f60001dcf4a6/picture,"","","","","","","","","" +noventum consulting GmbH,noventum consulting,Cold,"",100,information technology & services,jan@pandaloop.de,http://www.noventum.de,http://www.linkedin.com/company/noventum-consulting,https://www.facebook.com/noventum.consulting,https://twitter.com/noventum,111 Muensterstrasse,Muenster,North Rhine-Westphalia,Germany,48167,"111 Muensterstrasse, Muenster, North Rhine-Westphalia, Germany, 48167","itoutsourcing, it technologie beratung, organisationsentwicklung, culture change management, sapprozesse organisation, post merger integration, business intelligence, itprozesse organisation, it quality improvement, data center services, modern workplace, corporate culture concepts, agilitaet, enterprise it, data analytics, people analytics, it cost reduction, itprozesse amp organisation, hr consulting, it strategie, collaboration, sapprozesse amp organisation, it services & it consulting, ai maturity, managed services, digital innovation, agile organizational development, design thinking in product development, it consulting, service integration, intercultural it team management, international it projects, data modernization, it strategy, it implementation, knowledge transfer in it, ai maturity models, intercultural teams, artificial intelligence, power bi and erp data analysis, cultural change management, b2b, it project management, operational efficiency, ai and genai, data & analytics, it infrastructure, rpa projects, design thinking workshops, ai chatbots for data analysis, intercultural collaboration, agile working, ai and culture in it, data integration, etl modernization, project management, ai in publishing industry, data governance, microsoft dynamics, knowledge transfer, power bi and microsoft business central, power bi data integration, it success factors, ai in data analytics, services, ai and data governance challenges, digital transformation, ai support for data warehouse automation, process automation, ai governance, tech hubs in europe and asia, design thinking, siam, talent management, management consulting, power bi integration, ai-driven etl modernization, microsoft business central, knowledge transfer sustainability, chat with data, it management, management consulting services, power bi, genai tools, consulting, information technology, data-driven decision making, it service management, it transformation, chatgpt and ai tools, rpa and process mining, leadership development, analytics, information technology & services, enterprise software, enterprises, computer software, productivity",'+49 25 0693020,"Outlook, Microsoft Office 365, Hubspot, Sophos, Linkedin Marketing Solutions, Apache, Mobile Friendly, Remote","","","","",23000000,"",69c281591e946c0001ef7947,8748,54161,"noventum consulting GmbH is a German IT management consultancy established in 1996. The company specializes in people-oriented IT strategies, digital optimization, and organizational transformation for medium-sized businesses and large corporations, including DAX-listed companies. With a team of over 110 employees and a revenue of around €13.1 million, noventum operates from its headquarters in Münster and has additional locations in Düsseldorf, along with an international presence. The company is recognized for its trust-based corporate culture and has been acknowledged as a top employer in Münsterland. + +The core services offered by noventum include IT management consulting, digital transformation, and service operations improvement. They focus on implementing IT strategies, enhancing corporate culture, and designing innovative business models. The company also emphasizes Robotic Process Automation (RPA), data analytics, and people & culture consulting. noventum maintains partnerships with leading IT providers and supports clients in their digitization efforts, including AI adoption for B2B services. Their proprietary methodologies and frameworks are designed to ensure effective service transformations and engagement at the executive level.",1996,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e90aab2bb2ca000183ce15/picture,"","","","","","","","","" +hartech Systemhaus GmbH,hartech Systemhaus,Cold,"",50,information technology & services,jan@pandaloop.de,http://www.hartech.de,http://www.linkedin.com/company/hartech-systemhaus,"","","",Rehlingen-Siersburg,Saarland,Germany,66780,"Rehlingen-Siersburg, Saarland, Germany, 66780","power apps, azure, citrix, it servicemanagement, cloud services, sophos, vmware, modern workplace, pure storage, virtualisierung, microsoft 365, power automate, sicherheitsaudits, care services, desktopvirtualisierung, automatisierung, power bi, itil, veeam, it schulungen, managed services, professional services, bsi grundschutz, dell, it services & it consulting, cloud computing, it-infrastruktur, it-projektmanagement, it-security, automation, b2b, data center, it-services, computer systems design and related services, uipath, rechenzentrum, robotic process automation, low code, consulting, hybrid it, microsoft power platform, information technology and services, softwareentwicklung, services, distribution, enterprise software, enterprises, computer software, information technology & services, professional training & coaching, internet service providers","","Outlook, Microsoft Office 365, Sophos, Hubspot, Apache, WordPress.org, Google Tag Manager, Google Maps, Mobile Friendly","","","","","","",69c281591e946c0001ef7939,7379,54151,"Seit über 30 Jahren sind wir als unabhängiges, familiengeführtes IT-Unternehmen der starke Partner für Unternehmen, die ihre IT nicht dem Zufall überlassen wollen und eine erstklassige Betreuung für die digitalen Herausforderungen dieser Zeit suchen. + +Unser Anspruch: Höchste Qualität, klare Prozesse und echte Experten an Ihrer Seite. + +Datenschutzhinweise: https://www.hartech.de/datenschutzhinweise/#linkedin +Impressum: https://www.hartech.de/impressum/",1994,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f9f5f9ae5fb100012901f7/picture,"","","","","","","","","" +TALLENCE AG,TALLENCE AG,Cold,"",110,information technology & services,jan@pandaloop.de,http://www.tallence.com,http://www.linkedin.com/company/tallence-ag,https://www.facebook.com/Tallence,https://twitter.com/tallence,13 Neue Groeningerstrasse,Hamburg,Hamburg,Germany,20457,"13 Neue Groeningerstrasse, Hamburg, Hamburg, Germany, 20457","technologieentwicklung, digital marketing sales, it development, business process design, it service management, digitale transformation, testmanagement, digitale barrierefreiheit, carrier grade email systementwicklung, programm und projektmanagement, softwareentwicklung, digital products, dynamikrobuste organisationsentwicklung, ecommerce content management, consulting, creation services, prozess und it servcie management, digital accessibility, business process reengineering, contentmanagement und carrier grade emailsysteme, ecommerce amp content management, digital marketing amp sales, it servcie management, digital experience, itconsulting, it services & it consulting, in-services, information technology & services, software as a service, it infrastructure, cyber security solutions, cybersecurity, ai-driven technologies, cloud solutions, rapid prototyping, services, cloud infrastructure, innovation in telecom, ki-integration, ki-gestützte dialogsysteme, network-as-a-service, technology consulting, digital experience platforms, digital ecosystems, naas-plattform, voice processing (vas), customer experience, speech2text, telecommunications solutions, data analytics, modulare plattformen, mageschneiderte software, security solutions, open-source software, migrationsstrategien, data-driven solutions, enterprise software, digital experience design, voice & messaging services, visual voicemail, b2b, customer selfservice, customer experience optimization, computer systems design and related services, software development, voice & messaging, business consulting, service integration and management, identity and access management, customer journey, legacy system modernization, network migration, customer identity & access management, modular platform development, customer identity access management (ciam), telecommunications it, security architecture, carrier communication solutions, telecommunications, digital platforms, software engineering, nutzererfahrung, custom software, digital platform development, call completion services, cloud-native communication platform, künstliche intelligenz, aws, cyber security, b2b consulting, custom software development, identity management, digital transformation, barrierefreie designs, hybrid cloud solutions, customer journey mapping, ai integration, transportation & logistics, saas, computer software, cloud computing, enterprises, internet infrastructure, internet, management consulting, computer & network security, privacy",'+49 40 360935100,"Outlook, Microsoft Office 365, Amazon AWS, Atlassian Cloud, Hubspot, Slack, Linkedin Marketing Solutions, Apache, Ubuntu, Mobile Friendly","","","","",12000000,"",69c281591e946c0001ef7940,7375,54151,"TALLENCE AG is a German technology and management consultancy focused on digital transformation. With around 130 employees, the company operates from its headquarters in Hamburg and additional offices in Frankfurt, Marburg, Görlitz, and Karlsruhe. Founded over 25 years ago, TALLENCE specializes in developing digital products and scalable services in areas such as telecommunications, cloud computing, e-mobility, cyber security, and automotive services. + +The company’s mission is to create value in the digital landscape through modular solutions that combine custom developments with established products. TALLENCE offers a range of consulting, development, and implementation services, including digitalization strategy advice, IT infrastructure optimization, and custom digital platforms. Their key offerings include the Tallence Telco Suite, which features a cloud-based Network as a Service platform and various identity management and security tools. TALLENCE primarily serves telecommunications providers and tech-intensive industries, contributing to major German communications networks and automotive sectors.",1999,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69a940043e218b000165391d/picture,"","","","","","","","","" +ALEX & GROSS GmbH,ALEX & GROSS,Cold,"",180,marketing & advertising,jan@pandaloop.de,http://www.alex-gross.com,http://www.linkedin.com/company/alex-gross-gmbh,https://www.facebook.com/ALEX-GROSS-108979197650443,https://twitter.com/axivasgmbh,"",Mannheim,Baden-Wuerttemberg,Germany,"","Mannheim, Baden-Wuerttemberg, Germany","account based marketing, web development, webentwicklung, consulting, inbound marketing, b2b marketing, b2b vertrieb, telemarketing, inside sales, digital marketing, leadgenerierung, data driven marketing, advertising services, information technology & services, marketing & advertising","","Route 53, Postmark, Outlook, Microsoft Office 365, Amazon AWS, VueJS, Freshdesk, Slack, Mobile Friendly, Google Tag Manager, Linkedin Marketing Solutions, Nginx, Facebook Login (Connect), Google Dynamic Remarketing, DoubleClick, Google Analytics, reCAPTCHA, Facebook Custom Audiences, DoubleClick Conversion, WordPress.org, Facebook Widget, AI, Remote, SAP, Microsoft Office, Salesforce CRM Analytics, Infor CloudSuite HCM, SAP SuccessFactors Learning, SAP Marketing Cloud, LinkedIn Ads, Microsoft 365, AWS Trusted Advisor, Cisco VoIP, SAP SuccessFactors","",Merger / Acquisition,0,2007-02-01,318000,"",69c281591e946c0001ef7941,7380,"","ALEX & GROSS GmbH is a German sales and marketing services company founded in 1998, specializing in B2B growth solutions. With headquarters in Mannheim and additional locations in Berlin, Barcelona, Sofia, and Cairo, the company employs over 300 people and generates annual revenue between €25-50 million. The founders, Jochen Gross and Andreas Alex, have built a strong reputation in IT, technology, and relationship management. + +The company offers a variety of scalable services, including consulting, digital marketing, inside sales, and technology solutions. Their approach, known as Sales Strategy 4.0, combines traditional telemarketing with modern digital strategies. A key product is Everlead, an AI-powered lead management software designed to enhance sales and marketing processes. ALEX & GROSS is committed to customer focus, measurable success, and sustainable growth, actively participating in the UN Global Compact since 2012 to promote environmental protection and social responsibility.",1999,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69ad4f7ac8b20500013118ee/picture,"","","","","","","","","" +Strategion GmbH,Strategion,Cold,"",21,information technology & services,jan@pandaloop.de,http://www.strategion.de,http://www.linkedin.com/company/strategion-gmbh,"","",2 Science Park,Saarbruecken,Saarland,Germany,66123,"2 Science Park, Saarbruecken, Saarland, Germany, 66123","ki, mittelstand, transformation, lean management, it services & it consulting, technology consulting, ai ethics, consulting, management consulting, regulatory compliance, machine learning, information technology and services, data science, ki-strategieentwicklung, artificial intelligence, operational automation, data-driven business models, ki-ethik, ai scalability, ai-first-strategie, ki-organizational-change, ki-responsible-use, digital excellence, ai competence building, ai project management, innovation, leadership development, process optimization, ai enablement, ki in operational excellence, ai governance, sustainability, ai infrastructure, b2b, management consulting services, automation, operational excellence, operational efficiency, ki-strategie, ki-transformation, ai-managementberatung, ki-regulatorik, ai responsible use, business consulting, software development, smart enterprise, cloud services, ki-infrastruktur, ki-compliance, business process optimization, ai risk management, services, ai strategy, ki-managementframework, digital transformation, ai organizational change, holistic ki management, ai implementation, scalability of ai solutions, ki in digital services, ai technology integration, information technology & services, environmental services, renewables & environment, cloud computing, enterprise software, enterprises, computer software",'+49 1525 6899001,"Outlook, Nginx, Google Font API, Mobile Friendly, WordPress.org, AI",840000,Other,840000,2022-12-01,"","",69c281591e946c0001ef794a,8748,54161,"Strategion ist eine schnell wachsende Managementberatung. Wir beraten und begleiten Konzerne und mittelständische Unternehmen bei + +- der Entwicklung und Umsetzung neuer, datengetriebener Geschäftsmodelle (digitale Produkt/Servicebündel), der Entwicklung und Implementierung von Digitalisierungsstrategien und Digitalisierungsroadmaps sowie der Entwicklung und technischen Umsetzung von KI Use Cases. + +- der Optimierung und Neugestaltung heute manueller Prozesse durch Automatisierung und Digitalisierung durch den Einsatz von KI - zur Steigerung Ihrer Produktivität und zur Linderung des Fachkräftemangels. + +Wir verstehen uns als Ihr Sparringspartner auf Ihrem Weg hin zum Smart Enterprise! + +Wir freuen uns auf ein Gespräch mit Ihnen. +info@strategion.de",2010,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/695b3c03092e3f00013df1b7/picture,"","","","","","","","","" +itmX GmbH,itmX,Cold,"",61,information technology & services,jan@pandaloop.de,http://www.itmx.de,http://www.linkedin.com/company/itmx-gmbh,https://www.facebook.com/itmxgmbh,https://twitter.com/itml_gmbh,8 Stuttgarter Strasse,Pforzheim,Baden-Wuerttemberg,Germany,75179,"8 Stuttgarter Strasse, Pforzheim, Baden-Wuerttemberg, Germany, 75179","crm, modern worklplace, marketing automation, commerce, business intelligence, service, it services & it consulting, crm suite, geschäftsprozesse, kundenportal, automatisierte berichte, branchenfokus, it-beratung, ki im crm, distribution, user dashboard, digital marketing, sap integration, crm software, sap, remote services, user experience, sap-erp schnittstellen, digitale freigabeprozesse, vertrieb, automatisierte workflows, microsoft power platform, mobile crm, nachhaltige software, automatisierte leistungsverzeichnisse, microsoft teams, manufacturing, datenintegration, lead nurturing, workflow automation, ki-gestützte vertriebsprozesse, services, customer journey, business consulting, logistics, cloud computing, datenvisualisierung, data analytics, saas, microsoft 365, customer insights, kundenbindung, business process management, b2b, software development, datenmanagement, ki-gestützte automatisierung, echtzeit-daten, multichannel customer engagement, prozessdigitalisierung, information technology and services, predictive customer analytics, digital transformation, data security, echtzeit-transparenz, customer engagement, customer relationship management, predictive analytics, forecasting, vertriebsautomatisierung, consulting, api-schnittstellen, prozessautomatisierung im bauwesen, innovative lösungen, computer systems design and related services, multichannel-kommunikation, echtzeit kpi dashboard, mobiler zugriff, kundenmanagement, langfristige kundenbindung, construction, cloud-integration, iot-anbindung, kundenbeziehungen, customer data platform, e-mail marketing, power apps, ki-basierte verkaufsabschlüsse, digitalisierung, vertriebs- und marketing-kpis, systemintegration, power bi, automatisierte angebotserstellung, customer experience, vertriebs- und service-optimierung, schnittstellenfreiheit, sap s/4hana integration, vertriebs- und marketingstrategie, datenanalyse, lead management, prozessoptimierung, branchenspezifische crm-lösungen, data enrichment, b2b vertriebsplattformen, ki-gestützte lead-qualifizierung, cloud solutions, e-commerce, predictive maintenance, datenqualität, langfristige softwarepflege, digital signage integration, kundenservice-optimierung, langfristige partnerschaften, künstliche intelligenz, vertriebssteuerung, retail, consumer_products_retail, transportation_logistics, construction_real_estate, sales, enterprise software, enterprises, computer software, information technology & services, marketing & advertising, analytics, ux, mechanical or industrial engineering, management consulting, computer & network security, email marketing, consumer internet, consumers, internet",'+49 7231 14546,"Outlook, Microsoft Office 365, DoubleClick Conversion, Nginx, Facebook Widget, Google Tag Manager, Linkedin Marketing Solutions, Google Dynamic Remarketing, Vimeo, WordPress.org, Facebook Login (Connect), DoubleClick, Facebook Custom Audiences, Mobile Friendly, React Native, Android, Remote, Vincere, Microsoft 365, Salesforce CRM Analytics, SAP, Confluence","","","","",5000000,"",69c281591e946c0001ef7936,7375,54151,"itmX GmbH is a medium-sized software and consulting company based in Pforzheim, Germany. With over 20 years of experience, itmX specializes in CRM (Customer Relationship Management) solutions and is a subsidiary of NTT Data Business Solutions AG. The company focuses on optimizing solutions that enhance customer benefits and supports businesses in achieving a comprehensive view of their customers. + +The flagship offering, the itmX CRM Suite, is fully integrated into SAP ERP and compatible with Microsoft 365. It includes specialized modules for marketing, sales, service, commerce, and project management. In addition to the CRM suite, itmX provides holistic process consulting services, including CRM strategy development and implementation, as well as solutions based on the Microsoft Power Platform. The company serves various industries, including mechanical engineering, construction, automotive, and pharmaceuticals, emphasizing user experience and personal advisory services.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/677a90a6a8d54b000191880c/picture,"Symphony Management Consulting, now an itelligence company (itelligencegroup.com)",54a1af39746869401250d207,"","","","","","","" +Clientfocus GmbH,Clientfocus,Cold,"",34,information technology & services,jan@pandaloop.de,http://www.clientfocus-experten.de,http://www.linkedin.com/company/clientfocus-gmbh,"","",20 Lyoner Strasse,Frankfurt,Hesse,Germany,60528,"20 Lyoner Strasse, Frankfurt, Hesse, Germany, 60528","celonis, process mining, datenintegration, uipath, hyper automation, rpa, esm, grc, itsm, digitalisierung, integration, service management, service now, micro focus, asset management, servicenow, bcm, dataintegration, big data, process automation, ai integration, data analytics, bait and vait compliance, ki, ai in servicenow, management consulting services, service-oriented architecture, hybrid cloud, software development, hybrid it service management, transportation & logistics, business process automation, it security management, natural language processing, business transformation, business services, cloud platform, smart request fulfillment, information technology and services, automated asset management, cloud sourcing management, automation, it infrastructure, cloud management with servicenow, it-organisation, digital workflows, b2b, ai-powered service analytics, enterprise service management, multi-cloud automation, smart cloud orchestration, service optimization, data-driven decisions, cybersecurity, smart tools, automatisierung, cloud orchestration, automation solutions, agile service management, agile cloud service orchestration, digital transformation, cybersecurity asset management, service integration, multi-provider management, rpa integration with uipath, services, consulting, multi-provider control, cloud services, cloud computing, smart software solutions, hybrid it management, ai, digital service design, process mining with celonis, distribution, enterprise software, enterprises, computer software, information technology & services, artificial intelligence",'+49 69 8383150,"Outlook, Microsoft Office 365, Joomla, Apache, Mobile Friendly, Remote, AI","","","","","","",69c281591e946c0001ef793a,7375,54161,"Internationale und nationale Marktführer setzen auf unser ganzheitliches Vorgehen bei der Erschließung von Innovations- und Verbesserungspotentialen für ihre IT-Organisationen. Qualität, Nachhaltigkeit und Zukunftssicherheit kommen nicht von ungefähr, wir verbinden umfassende Erfahrung im Praxisvorgehen mit zukunftsorientierten Ansätzen und individueller, agiler Umsetzung. + +Unsere Stärke sind übergreifende End2End-Lösungen zur Neuausrichtung und Optimierung im IT-Business. Dabei vernetzen wir umfangreiche theoretische und praktische Erfahrungen aus den Bereichen Organisation/Prozesse, Software-Lösungen und Betriebs-Automation. Zusätzlich erfüllen wir Projektanforderungen nach hochqualifizierten Experten in aktuellen IT-Businessthemen.",2001,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67188a84d259480001d774da/picture,"","","","","","","","","" +THREERUN,THREERUN,Cold,"",17,management consulting,jan@pandaloop.de,http://www.threerun.de,http://www.linkedin.com/company/threerun-consulting,"","",Campus Fichtenhain,Krefeld,Nordrhein-Westfalen,Germany,47807,"Campus Fichtenhain, Krefeld, Nordrhein-Westfalen, Germany, 47807","innovation strategy, digital transformation, lean management, industry 40, project management office, automation, digital process automation, process mining, project management, business model design, artificial intelligence, s4 hana, business excellence, robotic process automation, change management, process design, business intelligence, sap, business consulting & services, sap business technology platform, end-to-end automation solutions, b2b, sap system optimization, sap consulting and services, cutover management, sap process automation, sap cloud services, sap btp, robotic automation, consulting, sap system integration, sap cloud migration, sap automation journey, process optimization, technology consulting, software development, microsoft power platform, sap test automation, sap s/4hana transformation, automation academy, services, intelligent document processing, computer software, sap test automation tools, business process management, sap support as a service, sap rapid automation, requirement engineering, process automation, sap btp skills, sap offshore development, digital hub services, information technology and services, testmanagement, intelligent automation, sap consulting, sap s/4hana migration, sap process orchestration, sap support, sap cloud platform, sap cloud support, it transformation, computer systems design and related services, content creation, sap digital roadmap, finance, manufacturing, distribution, productivity, information technology & services, analytics, management consulting, financial services, mechanical or industrial engineering",'+49 176 48738696,"Outlook, WordPress.org, Google Font API, Varnish, Apache, Mobile Friendly, Remote, ABAP, CAPTCHA, Google Identity Services APIs, , SAP S/4HANA Cloud, SAP, FICO Safe Driving Score, SAP S/4HANA, Rapid7 InsightVM, Azure Load Testing, Git, SAP Ariba Cloud Integration Gateway, Azure API Management, Process automation package for service request creation in SAP S/4HANA Utilities","","","","","","",69c281591e946c0001ef793b,7375,54151,"THREERUN is a consulting and service company based in Krefeld, Germany, focused on digital transformation and intelligent automation. The company acts as a think tank and transformation companion, helping organizations navigate their digital change initiatives. + +THREERUN provides a wide range of services, including project management, ERP-IT project implementation, and strategic business consulting. They work with industrial and service companies, as well as public institutions, to enhance their digital workplaces and foster innovation. The company operates through multiple registered entities, such as Threerun Consulting GmbH and Threerun Solutions GmbH, to deliver comprehensive consulting and technical implementation services.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e3c988bf1dd80001bba793/picture,"","","","","","","","","" +MAXXYS AG,MAXXYS AG,Cold,"",31,information technology & services,jan@pandaloop.de,http://www.maxxys.de,http://www.linkedin.com/company/maxxys-ag,https://www.facebook.com/maxxysag,https://twitter.com/maxxysag,"",Butzbach,Hesse,Germany,35510,"Butzbach, Hesse, Germany, 35510","schnittstellenmanagement, system integrator, apm, security loesungen, application performance management, client automation, automation, consulting, appneta, lizenzmanagement, project portfoliomanagement, process automation, broadcom tier 1 partner, it service management, endpoint management, infrastucture management, pam, privilegiertes zugriffsmanagement, services education, job scheduling, priviligiertes zugriffmanagement, security api, network management, automic, maa, identity & access management, it services & it consulting, hybrid cloud, cybersecurity, it-compliance, drivelock endpoint security, ai for it operations, it-performance optimization, it-optimierung, maxxops, layer7 api gateway, it-sicherheitslösungen, multi-cloud monitoring, multi cloud, b2b, services, it-infrastruktur-transformation, cloud automation, cloud network monitoring, dx netops spectrum, zero trust security, business continuity, it-workflow automation, cloud computing, automic automation, endpoint security, it-consulting, cloud services, computer software, information technology and services, it-transformation, it consulting and support, computer systems design and related services, network monitoring, it-systemintegration, ivanti service manager, api-management, it-beratung, cloud management, aiops, it-asset management, security monitoring, appneta network monitoring, hybrid cloud management, it-performance monitoring, netops, managed services, it-security, it-asset tracking, it-process automation, it-infrastrukturmanagement, it-service management, it-operations, finance, information technology & services, enterprise software, enterprises, financial services",'+49 64 41210040,"Outlook, Hubspot, Google Tag Manager, DoubleClick, Mobile Friendly, Linkedin Marketing Solutions, reCAPTCHA, WordPress.org, Apache, Android, Micro, Node.js, React Native, Remote, IoT, Acumatica, AI","","","","","","",69c281591e946c0001ef7943,7375,54151,"We, MAXXYS AG, are an independent IT-Software System Integrator and support IT departments in planning, construction, setup, and maintenance of IT systems. Every day we analyze, install, configure, and maintain simple to highly complex systems. +MAXXYS AG provides centrally managed IT software solutions and ensures an efficient and secure IT infrastructure in the company. As an independent system integrator, we remain free to select the right software solutions and can react flexibly and efficiently to customer requirements. To this end, we are well networked with the most important providers in the IT industry and draw on the know-how of our IT-Experts.",2002,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6750382d4a3b790001954f6f/picture,GBC Group GmbH (gbc-group.de),5fc9a21ec2ce3100013946fe,"","","","","","","" +"NumBirds - CRM, Marketing Automation und Omnichannel",NumBirds,Cold,"",15,information technology & services,jan@pandaloop.de,http://www.numbirds.com,http://www.linkedin.com/company/numbirds,https://www.facebook.com/TUIReiseCenterKempten,"","",Cologne,North Rhine-Westphalia,Germany,"","Cologne, North Rhine-Westphalia, Germany","it services & it consulting, services, customer retention, performance measurement, customer behavior analysis, travel industry crm, digital transformation, customer profiling, consulting, customer journey mapping, api integration, web development, customer feedback, multi-channel communication, data integration, tourism industry solutions, crm software, native app development, tourism and travel, bergbahn crm, ai and machine learning, customer loyalty, chatbots, customer data collection, smart data engineering, automated marketing, data science, cross-selling techniques, customer insights, skischule crm, trigger-based email campaigns, webinar training, messenger marketing, performance analytics, storytelling in marketing, b2b, customer lifetime value, kpi tracking, data security, e-learning solutions, omnichannel orchestration, ai-powered recommendations, personalized campaigns, app development, tourism, customer engagement, software development, customer behavior prediction, customer data merging, marketing automation, personalization algorithms, chatwerk integration, user experience design, content marketing, omnichannel marketing, upselling strategies, custom software development, tourismusmarketing, mobile marketing, information technology and services, customer relationship management, real-time analytics, predictive analytics, data-driven marketing, campaign management, data analysis, dynamic offer personalization, customer data platform, hotel crm, b2b tourism solutions, customer experience optimization, conversational marketing, computer systems design and related services, customer communication channels, ai personalization, customer segmentation, destination marketing, marketing analytics, education, information technology & services, enterprise software, enterprises, computer software, computer & network security, apps, marketing & advertising, saas, crm, sales, data analytics",'+49 831 24342,"Route 53, Outlook, Microsoft Office 365, Slack, reCAPTCHA, Mobile Friendly, WordPress.org, Google Tag Manager, Bootstrap Framework, Nginx, Google Font API, Facebook Login (Connect), Vimeo, Apache, Facebook Custom Audiences, Facebook Widget, Ansible, Mitel","","","","","","",69c281591e946c0001ef7942,7375,54151,"Wir sind ein Softwareunternehmen im Bereich von intelligentem Customer Relationship Management (CRM). Unser Hintergrund liegt in der Touristik. Hier sind momentan die meisten unserer Kunden zu Hause. Unsere Lösung hilft Veranstaltern, Reisebüro-ketten, Reisebüros, Skischulen, Destinationen und Hotels. Wir analysieren deren Kundendaten und ermöglichen ein zielgerichtetes Marketing ohne Streuverlust und hoher Conversionrate. Um das zu erreichen nutzen wir Smart Data, Machinelearning und künstliche Intelligenz. Interesse? Kommen Sie auf einen Kaffee vorbei, oder rufen Sie an. Wir freuen uns auf Sie.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670c058dde7acc00013fde1e/picture,"","","","","","","","","" +plstr.,plstr,Cold,"",14,marketing & advertising,jan@pandaloop.de,http://www.plstr.digital,http://www.linkedin.com/company/plstr,"","",6 Richard-Wagner-Strasse,Mannheim,Baden-Wuerttemberg,Germany,68165,"6 Richard-Wagner-Strasse, Mannheim, Baden-Wuerttemberg, Germany, 68165","onlinemarketing, hubspot, performancemarketing, digitalmarketing, google adwords, social media marketing, performance recruiting, digital strategie, salesforce pardot, digitalisierung, marketing automation, digitalberatung, seo, advertising services, marketing success, ai-automation, marketing technology, sales enablement, marketing strategy, ai-based content marketing, ai-based marketing automation, ai solutions, ai-driven marketing, ai in website cro, ai-powered tools, digital assets, ai-enabled social selling, brand development, b2b agency, marketing data visualization, ai-driven content, ai-enabled customer journey, ai-powered marketing operations, ai-powered sales assets, ai-enabled marketing analytics, ai-driven marketing measurement, ai-powered campaigns, ai-driven customer insights, digital sales assets, ai in social media, ai in campaign management, ai-powered leadgenerierung, ai-enabled brand development, crm optimization, ai-driven outbound sales, ai in lead nurturing, lead generation, crm setup, ai-strategie, ai consulting, marketing and advertising, ai in crm, information technology and services, b2b, outbound marketing, sales strategy, ai in tracking, digital marketing, ai campaign optimization, ai-driven data visualization, ai integration, software development, ai-optimization, ai in brand management, ai-based website cro, b2b marketing, ai in customer insights, data-driven decisions, ai in marketing operations, social selling, ai in outbound marketing, ai in process optimization, ai-powered sales tools, ai in sales, ai-driven marketing success, marketing analytics, ai-powered digital assets, ai in data management, ai-application, digital change, ai in marketing automation, ai content development, marketing operations, ai-powered lead scoring, ai consulting services, website management, ai process automation, martech-setup, management consulting, management consulting services, ai-analytics, marketing reporting, ai-driven brand strategy, ai agents, ai in personalization, ai in digital assets, ai marketing consulting, customer relationship management, ai in sales enablement, ai-driven marketing campaigns, digital branding, digital solutions, services, digital transformation, ai in customer engagement, marketing enablement, ai in content creation, customer acquisition, consulting, ai-powered tracking and cro, ai tools, content marketing, ai applications, marketing campaigns, marketing, marketing & advertising, consumer internet, consumers, internet, information technology & services, saas, computer software, enterprise software, enterprises, search marketing, sales, crm",'+49 621 39739750,"Gmail, Google Apps, Webflow, Hubspot, Typekit, Facebook Login (Connect), Facebook Widget, Google Analytics, Apache, Google Tag Manager, Google Font API, reCAPTCHA, DoubleClick, WordPress.org, Mobile Friendly, Hotjar, Facebook Custom Audiences, Wordpress, TYPO3, Shopware","","","","","","",69c281591e946c0001ef7934,7375,54161,"plstr. was founded in 2015. Now operating internationally as PLSTR DIGITAL GmbH, it started with simple freelance services for SMEs in Germany, Austria and Switzerland. + +We master digital challenges of organisations through result-oriented marketing measures. +With our consulting and implementation services, we deliver measurable results across all target levels. In doing so, we dovetail all relevant digital marketing components into a running system for our clients and take over the execution of projects and campaigns. From over 100 clients and more than 200 projects, we are constantly gaining new experience in diverse digital ecosystems.  + +16x smartness. 16x passion. 16x digital native. +plstr. unites people who act freely, purposefully and value-oriented. Personal development is a central building block of our company. Personality and individualism create outstanding results at plstr. + +Measurable digital success since 2015. +Everything we do is geared towards achieving your goals, month after month. Straightforward and straight to the point - for over 100 clients with a total of over 200 projects in the areas of performance marketing, digital branding and CRM.",2016,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/686a7c4cf56ac10001a0ab55/picture,"","","","","","","","","" +IP Dynamics GmbH,IP Dynamics,Cold,"",87,information technology & services,jan@pandaloop.de,http://www.ipdynamics.de,http://www.linkedin.com/company/ip-dynamics-gmbh,"",https://twitter.com/ipdynamics,103 Billstrasse,Hamburg,Hamburg,Germany,20539,"103 Billstrasse, Hamburg, Hamburg, Germany, 20539","five9, unified communications, cloud, voip, novomind, ip telephony systems, maintance & managed service solutions, contact center, genesys, quality assurance, voxtron communication center, microsoft, innovaphone, avaya, skype for business, software development, b2b, information technology and services, retail, cloud services, customer service automation, telecommunications, multichannel customer interaction, process optimization, customer relationship management, consulting, workload management, workload reprioritization, transkription in echtzeit, digital transformation, award-winning customer service software, customer experience, cloud solutions, dynamic workload software, skill-based routing, software publishers, support activities for transportation, customer self-service solutions, microsoft teams integration, cloud computing, data protection, it services, business consulting, api integration, customer service software, automated customer dialogue, customer experience enhancement, deep learning, conversational ai, computer systems design and related services, real-time task distribution, cloud & hosting in germany, services, video consulting platform, ai customer support, cloud customer service, gdpr compliance, spracherkennung, project management, monitoring and reporting, data security, distribution, transportation_logistics, information technology & services, enterprise software, enterprises, computer software, crm, sales, management consulting, artificial intelligence, productivity, computer & network security",'+49 40 57276767,"Cloudflare DNS, Outlook, Mobile Friendly, Linkedin Marketing Solutions, Avaya, Remote, Azure Linux Virtual Machines, Microsoft Windows Server 2012, Amazon Linux 2, Secured MVC Forum on Windows 2012 R2, PowerBI Tiles, Kubernetes, Red Hat OpenShift, Microsoft 365, Microsoft Azure Monitor, BASE, IBM Data Warehouse, Microsoft Skype for Business, Contact Center Solution, .NET, Barracuda Spam Firewall","","","","","","",69c281591e946c0001ef793c,7375,54151,"Machen Sie Ihren Kundenservice leistungsstärker denn je – mit intelligenter Aufgabenverteilung, automatischer SLA-Priorisierung sowie KI-Sprach- und Chatbots.",2005,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69b23440295cee00017d1155/picture,"","","","","","","","","" +T.D.M. Telefon-Direkt-Marketing GmbH,T.D.M. Telefon-Direkt-Marketing,Cold,"",53,facilities services,jan@pandaloop.de,http://www.tdm.de,http://www.linkedin.com/company/tdm-gmbh,"","",12 Kaethe-Paulus-Strasse,Sarstedt,Lower Saxony,Germany,31157,"12 Kaethe-Paulus-Strasse, Sarstedt, Lower Saxony, Germany, 31157","multilinguales callcenter, 34d gewo, kundenrueckgewinnung, spendensoftware, aussendienstunterstuetzung, aftersales service, bestellannahme, leadgenerierung, terminvereinbarungen, stoerungshotlines, schriftbearbeitung, genai voicebots, kaltakquise, notfallhotlines, kundenservice, inbound, outbound, ticketbearbeitung, telephone call centers, telecommunications, retail, ki-training und optimierung, customer journey, technische unterstützung, customer service, data management, ki-gestützte self-services, multichannel communication, customer support, automation in customer service, predictive analytics, process optimization, b2c, customer retention, information technology & services, customer experience, ai in callcenter, b2b customer support, it services, workflow automation, call center, b2b, automatisierte lieferstatusabfragen, echtzeit-kpi-tracking, customer service solutions, callcenter, e-commerce, system support, api integration, customer relationship management, ki-agent, bpo, ki-gestützte triage, voicebot integration, ki-basierte gesprächsanalyse, automatisierung, cost reduction, hybrid kundenservice, customer journey optimierung, dsgvo compliance, technical support, mehrsprachigkeit, chatbots, lead generation, digital transformation, crm integration, customer acquisition, iso 9001, services, helpdesk services, consulting, prozessautomatisierung, agenten-assistenzsysteme, business process outsourcing, scalability, quality management, multi-sprachen support, call center & customer support services, finance, non-profit, distribution, transportation & logistics, facilities services, enterprise software, enterprises, computer software, consumer internet, consumers, internet, crm, sales, marketing & advertising, financial services, nonprofit organization management",'+49 5066 60600,"Zendesk, Google Tag Manager, Apache, Mobile Friendly, reCAPTCHA, WordPress.org, Render","","","","","","",69c281591e946c0001ef7949,7389,56142,"Here, you will find far more than just call centre services. From winning new customers via customer loyalty measures to training operatives and inbound services, we support our customers with professional solutions in the field of dialogue marketing.",1983,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/676a58441e593b0001e392ca/picture,"","","","","","","","","" +DEFACTO,DEFACTO,Cold,"",89,management consulting,jan@pandaloop.de,http://www.defacto.de,http://www.linkedin.com/company/defacto-engage-gmbh,"","",2 Am Pestalozziring,Erlangen,Bavaria,Germany,91058,"2 Am Pestalozziring, Erlangen, Bavaria, Germany, 91058","it solutions, customer service, business consulting, crm, service now, data management, loyalty management, business consulting & services, b2b, management consulting, sales, enterprise software, enterprises, computer software, information technology & services",'+49 913 197122173,"Outlook, Pardot, Microsoft Office 365, Cloudflare DNS, CloudFlare Hosting, Atlassian Cloud, Leadfeeder, OneTrust, Active Campaign, Slack, Facebook Login (Connect), Apache, Facebook Custom Audiences, WordPress.org, Shutterstock, Google Tag Manager, Mobile Friendly, Facebook Widget, AI, SAP Ariba","","","","","","",69c281591e946c0001ef7938,"","","DEFACTO is a German-based company that specializes in customer-centric business consulting and technology integration. The company focuses on enabling sustainable growth through automation, AI, and omnichannel strategies. DEFACTO's team consists of strategists, tech experts, and operational enablers dedicated to enhancing customer experiences and improving business processes. + +The company offers a range of integrated services, including business consulting, loyalty management, and automation solutions. Their DEFACTO Loyalty Engine serves as a central platform for loyalty strategies, integrating data and processes to enhance customer engagement. DEFACTO also emphasizes the importance of personalized experiences and data-driven decisions, helping businesses optimize their customer journeys and marketing efforts. They support various industries, including retail and consumer goods, and address the evolving needs of customers in a post-pandemic landscape.",1989,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/695f83b39719bd0001d40398/picture,"","","","","","","","","" +Contact and Sales GmbH,Contact and Sales,Cold,"",28,telecommunications,jan@pandaloop.de,http://www.contact-sales.de,http://www.linkedin.com/company/contact-and-sales-gmbh,"","",2 Gutenbergstrasse,Schutterwald,Baden-Wuerttemberg,Germany,77746,"2 Gutenbergstrasse, Schutterwald, Baden-Wuerttemberg, Germany, 77746","communication, telecommunication, livechat, b2c, customer care, helpdesk, chat services, digital marketing, sales services, b2b, communication multicanal, customer loyalty, information technology & services, customer service strategy, social media support, customer service, d2c, multichannel support, customer service in france, outsourcing, e-commerce, services, customer service optimization, customer support, customer service for ebusiness, chat & messaging, sales & vertrieb, customer experience, customer retention, customer service software, customer service analytics, technical support, customer relationship management, customer feedback, customer service transformation, customer service in germany, customer service quality assurance, business process outsourcing (bpo), customer care outsourcing, multilingual team, customer support solutions, multilingual customer support, customer service training, customer journey, b2b customer service, customer satisfaction, customer service for isps, customer service automation, 2nd-level support, telecommunications, customer service excellence, customer engagement, customer experience lab, customer service & support, telephone call centers, customer service awards, marketing & advertising, consumer internet, consumers, internet, crm, sales, enterprise software, enterprises, computer software, facilities services",'+49 781 96679011,"CloudFlare CDN, Outlook, CloudFlare Hosting, Apache, WordPress.org, Google Tag Manager, reCAPTCHA, Mobile Friendly","","","","","","",69c281591e946c0001ef793d,7389,56142,"Fondée en 2014, Contact&Sales est une entreprise de services innovante et tournée vers l'avenir qui s'est imposée dans le secteur de la communication. + +Nous nous distinguons sciemment d'autres fournisseurs dans le secteur du service, car nous suivons une voie innovante. + +Le succès et la qualité de Contact&Sales proviennent de notre équipe compétente, regroupant diverses nationalités (en grande partie des collaborateurs allemands et français). Des hiérarchies horizontales garantissent des circuits de décision courts. Chaque membre de l'équipe a ses propres responsabilités. Nous communiquons d'égal à égal. + +Et notre objectif commun, devenir et rester le leader sur le marché, c'est cela: innovant, jeune et dynamique. + +En collaboration avec nos mandants, nous développons des concepts adaptés et orientés processus que nous mettons en place, par exemple, dans des conditions de laboratoire pour les tester et les optimiser jusqu'à leur maturité. Ensuite, les mandants décident de confier le projet entièrement à Contact&Sales ou de transférer le savoir-faire ainsi obtenu au mandant. + +Dans les deux cas, une ressource du projet reste chez Contact&sales, pour assister les développements ultérieurs et transmettre les idées pour le quotidien professionnel du mandant. + +Nous offrons nos services dans les langues suivantes: + +-Deutsch +-Français +-English",2014,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670dd0c8e1065400012a6926/picture,"","","","","","","","","" +Topcom Kommunikationssysteme GmbH,Topcom Kommunikationssysteme,Cold,"",25,information technology & services,jan@pandaloop.de,http://www.topcom-group.de,http://www.linkedin.com/company/topcom-kommunikationssysteme-gmbh,"","",47 Rochusstrasse,Duesseldorf,North Rhine-Westphalia,Germany,40479,"47 Rochusstrasse, Duesseldorf, North Rhine-Westphalia, Germany, 40479","robotic process automation, brm, supply chain automation, purchasetopay, rpa, p2pautomation, edi, customer journey automation, intelligent automation, marktkommunikation, digital mailroom, ordertocash, bpm, ibpm, digital transformation, business communication, mailroom, totalagility, as4 bsi, ki, redispatch, tr resiscan, posteingangsloesung, it services & it consulting, end-to-end-geschäftslösungen, omnikanal-kommunikation, industrial automation, edi-integration, künstliche intelligenz in der prozessautomatisierung, stammdatenmanagement, business communication plattform, supply chain management, stammdatenharmonisierung für supply chain, ticketmanagement, tungsten automation (ehemals kofax), technologieberatung, künstliche intelligenz, ai-technologie, predictive maintenance, fax-as-a-service, manufacturing, stammdatenharmonisierung, fristenmanagement in regulierten branchen, b2b, services, fristenüberwachung, kofax, geschäftsprozessautomatisierung, power pdf, government, digitalisierung, tungsten automation, fehleranalyse, virtimo, fristenmanagement, energy, purchase-to-pay-automation, consulting, process intelligence, automatisierung, edi in der energiewirtschaft, energiewirtschaft, predictive maintenance in der industrie, virtimo technologie, branchenlösungen, computer systems design and related services, systemintegration, ticketing-system, predictive analytics, distribution, information technology and services, fehlererkennung, end-to-end-lösungen, ticketing-systeme für compliance, information technology & services, mechanical or industrial engineering, logistics & supply chain, enterprise software, enterprises, computer software",'+49 211 17460,"Outlook, LeadForensics, Google Tag Manager, Mobile Friendly, reCAPTCHA, Apache, AI, AVEVA PDMS, ICP, Pega BPM","","","","","","",69c281591e946c0001ef793f,7375,54151,"""We offer customized communication solutions that connect all business-critical processes with all major communications media. We extend existing IT systems with the help of SMTP, voice, SMS, fax, XML and EDI technologies to provide the communication capability of the existing IT infrastructure.""","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/671b6ba40fa6e500013f040c/picture,"","","","","","","","","" +IKOR GmbH | PART OF x1F,IKOR,Cold,"",74,information technology & services,jan@pandaloop.de,"",http://www.linkedin.com/company/ikor-gmbh,"","",20 Borselstrasse,Hamburg,Hamburg,Germany,22765,"20 Borselstrasse, Hamburg, Hamburg, Germany, 22765","produkte entwicklung und einfuehrung von sapaddons, assurance kompetenz zu sapanwendungen fuer die versicherungswirtschaft, foerdergeschaeft kompetenz zu foerderbanken und oeffentliche foerderinstitutionen, industrie und dienstleister logistik und rechnungswesenkompetenz fuer die industrie und partner fuer, finsure kompetenz zu guidewiretechnologie, financial services kompetenz zu geschaeftsbanken und versicherern, rpa, nearshoring fuer sap und javaentwicklung, system integration, alm, it services & it consulting, information technology & services","","","","","","","","",69c281591e946c0001ef7944,"","","IKOR GmbH is a German technology consultancy and software manufacturer focused on digital transformation in the financial services and insurance sectors. With over 25 years of experience, IKOR provides comprehensive services including technology consulting, platform integration, and software development. The company supports clients in regulated markets with solutions in system integration, cloud architectures, AI, and process automation. + +As a key subsidiary of the X1F Group, IKOR has expanded its reach with multiple subsidiaries across Europe, including IKOR Assurance GmbH and IKOR PX in London. The company has achieved significant growth, employing around 180 people and generating annual revenues exceeding €100 million. IKOR is recognized for its expertise in SAP solutions and has developed proprietary tools like the IKOR Process Control Station™ and System Integration Platform to enhance efficiency and automation. The company serves a diverse clientele, including financial institutions and insurance companies, particularly in German-speaking Europe.",1997,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/682ae5ca0e850c0001e0b366/picture,"","","","","","","","","" +accompio,accompio,Cold,"",180,information technology & services,jan@pandaloop.de,http://www.accompio.com,http://www.linkedin.com/company/accompio,"",https://twitter.com/proficomag,12 Werner-von-Siemens-Ring,Grasbrunn,Bayern,Germany,85630,"12 Werner-von-Siemens-Ring, Grasbrunn, Bayern, Germany, 85630","itsecurity, it services & it consulting, it-management, threat detection, managed infrastructure, penetration testing, patch management, security monitoring, infrastructure & cloud management, it-security, testautomatisierung, backup & monitoring, ci/cd pipelines, data center management, agile coaching, managed services, it-compliance, container security, information technology and services, automation, it-infrastruktur, modern workplace, managed service providers, ki-gestützte it-lösungen, mobile device management, b2b, security automation, container plattformen, cloud security, security audits, it-process automation, cybersecurity, it-services, it-qualitätssicherung, automatisierung, enduser services, it consulting, digitalisierung, künstliche intelligenz (ki/ai), it-beratung, security as a service, cyber incident response, remote support, services, rechenzentrum, consulting, it-service provider, cloud services, cloud computing, it-support, it-asset management, computer systems design and related services, security operations center, cloud-lösungen, devops consulting, information technology & services, computer & network security, management consulting, enterprise software, enterprises, computer software",'+49 35 1440080,"Outlook, Route 53, Autotask, Microsoft Office 365, Zendesk, Slack, Salesforce, Learnworlds, Mapbox, Sophos, Active Campaign, Hubspot, Apache, Mobile Friendly, Google Tag Manager, WordPress.org, Microsoft Windows Server 2012, Salesforce CRM Analytics, Cisco Secure Firewall Management Center, Siemens SIMATIC S7, Adobe Experience Manager, Amazon Web Services (AWS), Kubernetes, Docker, Pipedrive, Cloud Foundry, Trend Micro XDR, Azure Virtual Machines, Security, Microsoft Excel, DATEV Accounting, SAP, , Office365, Microsoft Active Directory Federation Services, Microsoft Intune Enterprise Application Management, Microsoft PowerShell, CSS, HTML5 Maker, Aryson MySQL to MSSQL Converter, MySQL, PostgreSQL, AWS SDK for JavaScript, MyEclipse, Visual Studio Code, Git, Jenkins, JUnit, Mockito, Ansible, Terraform, Red Hat OpenShift, Microsoft Exchange Online, SharePoint, Microsoft Teams Rooms, Microsoft OneDrive for Business, Microsoft Entra ID, Zen Planner, Micro, Microsoft Defender for Office 365, Microsoft Defender for Endpoint, Microsoft Defender for Identity, Microsoft Azure Monitor, AT&T, Oracle Analytics Cloud, TOPdesk, Windows 11, Microsoft Office, TeamViewer, LENOVO, Tor, Microsoft Teams, Splashtop, Gem, Rust, Excel4Apps, Power Query, Microsoft Power Automate, Copilot, AI, AWS Trusted Advisor","",Merger / Acquisition,0,2024-10-01,105000000,"",69c281591e946c0001ef7945,7375,54151,"Accompio is an IT service provider based in Munich, specializing in digitalization support for businesses. The company offers a range of services, including modern workplace optimization, DevOps consulting, IT security, big data management, cloud solutions, and end-user support. Accompio aims to enhance productivity and competitiveness for its clients through agile and customized IT services. + +With a workforce of around 500-700 specialists across multiple locations in Germany, Austria, Hungary, and Bulgaria, Accompio has experienced significant growth since an investment from EOS Partners in 2021. The company has achieved over €100 million in revenue through organic expansion and targeted acquisitions. Accompio focuses on building long-term partnerships and emphasizes values like teamwork and innovation in its approach to client relationships.",2023,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69ad7c548ef5e00001c1fb41/picture,"Eos Management, L.P. (eospartners.com)",62b868e221fef000018225ce,"","","","","","","" +kuehlhaus AG,kuehlhaus AG,Cold,"",26,information technology & services,jan@pandaloop.de,http://www.kuehlhaus.com,http://www.linkedin.com/company/kuehlhaus-ag,"",https://twitter.com/kuehlhaus,12 Cecil-Taylor-Ring,Mannheim,Baden-Wuerttemberg,Germany,68309,"12 Cecil-Taylor-Ring, Mannheim, Baden-Wuerttemberg, Germany, 68309","usability consulting, content marketing, ux, inxmail, online marketing, ki, oxid esales, ux consulting, b2b, optimizely, salesforce, kentico, online shops, microsoft cloud platform gold partner, sitecore, user experience design, mobile apps, experience platform, adobe, communication, webinar services, web development, cateno, epi server, ecommerce, marketing automation, strategy consulting, microsoft application development gold partner, b2c, hybrid events, ai, s4hana, social media, experience commerce, commercetools, corporate websites, shopware, microsoft cloud solution provider, online events, m365, email marketing, sap, esg, technology, information & internet, digital transformation, customer journey, retail, erp, it consulting, oxid eshop, customer engagement, kentico partner, digital experience, digital agency, consulting services, sitecore partner, agile development, consulting, microsoft, information technology and services, content management, multilanguage websites, technology consulting, crm solutions, digital solutions, end-to-end solutions, computer systems design and related services, e-commerce, digital marketing, cloud computing, personalized user journeys, crm, digital experience platform, digital innovation, automation, aws cloud, lead generation, customer experience, multichannel marketing, multisite management, data-driven marketing, digital strategy, content management systems, aws, sap integration, optimizely platform, web design, platform integration, cloud solutions, seo, software development, adobe solutions, sustainability, paas, user experience, saas, enterprise platforms, personalization, d2c, digital ecosystem, api integration, microsoft azure, services, ux/ui design, consumer products & retail, marketing & advertising, information technology & services, consumer internet, consumers, internet, computer software, enterprise software, enterprises, strategic consulting, management consulting, sales, marketing, search marketing, environmental services, renewables & environment",'+49 21 1540747074,"Outlook, Microsoft Office 365, Microsoft Application Insights, Jira, Atlassian Confluence, Atlassian Cloud, Microsoft Power BI, Slack, Nginx, Mobile Friendly, Facebook Widget, Linkedin Marketing Solutions, Facebook Login (Connect), Google Analytics, WordPress.org, Facebook Custom Audiences, Google Tag Manager, Remote","",Merger / Acquisition,0,2025-01-01,"","",69c281591e946c0001ef7946,7375,54151,"kuehlhaus AG, now operating as ACTUM Digital Deutschland, is a digital agency based in Mannheim that specializes in digital transformation and customer experience for both B2B and B2C markets. With nearly 30 years of combined leadership experience, the agency focuses on human-centered design to create personalized digital experiences. It emphasizes efficiency, exceptional service, and sustainable business growth, achieving €6.3 million in revenue in 2020 and ranking among the top 23% of owner-operated digital agencies in Germany. + +The agency offers a wide range of services, including consulting, strategy, UX/UI design, development, and data analytics. It is a Silver Implementation Partner for Sitecore and a Gold Partner for Microsoft in various application development areas. kuehlhaus also provides e-commerce solutions, multilingual SEO, and content marketing. The agency is committed to sustainability, reducing CO2 footprints through efficient development practices. Its notable projects include partnerships with Cyncly, Freudenberg Sealing Technologies, and Mainz 05, showcasing its expertise across various industries.",1995,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6907d404a6fb580001013184/picture,"","","","","","","","","" +Aliru GmbH,Aliru,Cold,"",20,information technology & services,jan@pandaloop.de,http://www.aliru.de,http://www.linkedin.com/company/aliru-gmbh,"","",1 Julius-Hatry-Strasse,Mannheim,Baden-Wuerttemberg,Germany,68163,"1 Julius-Hatry-Strasse, Mannheim, Baden-Wuerttemberg, Germany, 68163","dynamics 365, entwicklung, sales, crm, it services & it consulting, data quality management, services, software development, microsoft teams integration, power bi services, system integration, data quality checks, custom development, microsoft dynamics 365, custom software, teams-integration, datenqualität, outlook-integration, sap schnittstelle, datenmigration, branchenfokus mittelstand, marketing, b2b, zeiterfassung in dynamics 365, no-code schnittstellenkonfiguration, geschäftsprozessoptimierung, consulting, self-service pflege, systementwicklung, it-consulting, prozessautomatisierung, projektmanagement, dynamics 365 crm, customizing, data management, systemintegration, automatisierung, power platform, outlook integration, workflow automation, computer systems design and related services, customer service, ki-meeting-assistent, sap-schnittstelle, information technology & services, projektbegleitung, meeting-transkription, schnittstellenentwicklung, microsoft teams, anforderungsanalyse, crm-beratung, power bi, power apps, zeiterfassung, individuelle systemlösungen, distribution, enterprise software, enterprises, computer software",'+49 621 49088670,"Outlook, Amazon AWS, reCAPTCHA, Mobile Friendly, Google Tag Manager, Remote, Salesforce CRM Analytics, Canva, , C#, DotNetNuke, Javascript, TypeScript, Microsoft Power Apps, Microsoft Power Platform, Azure Functions, Microsoft Azure Monitor, Azure Logic Apps, Azure Devops, .NET, Microsoft Dynamics 365, AWS SDK for JavaScript, React, CapCut, Hugging Face, Python, Flutter, Cisco AppDynamics","","","","","","",69c281591e946c0001ef7948,7375,54151,"Die Aliru GmbH verwirklicht Ihre Dynamics 365 & Power Apps Projekte mit höchster Qualität. Egal ob Planung, Entwicklung, Einführung oder Support - Wir sorgen dafür, dass Ihre Vertriebsprozesse 1 zu 1 in Dynamics abgebildet werden. Für Ihren Erfolg. + +Spezialisiert auf die Branchen Banken & Finanzen, Fertigungsindustrie, Transport und Energieversorgung betreuen wir seit Jahren Weltkonzerne wie Freudenberg, Deutsche Bahn und Lichtblick.",2015,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6815e3e0dba3fd00017bcd97/picture,"","","","","","","","","" +RUF Beratung GmbH,RUF Beratung,Cold,"",13,management consulting,jan@pandaloop.de,http://www.ruf-beratung.de,http://www.linkedin.com/company/ruf-beratung,"","",40 Leopold-Simon-Strasse,Essen,North Rhine-Westphalia,Germany,45239,"40 Leopold-Simon-Strasse, Essen, North Rhine-Westphalia, Germany, 45239","contact center, workforce management, kundenservice, customer journey, dienstleistersteuerung, quality management, outsourcing, business consulting & services, management consulting services, ruf ranking 2025, interim management, automatisierung mit ki, prozessberatung, kontaktcenter benchmarking, strategische prozessberatung contact center, mitarbeitereinsatzplanung contact center, technologieberatung, prozessoptimierung, operative unterstützung, führungskräfteentwicklung, cx magazin 2025, business consulting, personaleinsatzplanung, information technology and services, projektmanagement, branchenanalyse contact center, marktanalyse, technologieauswahl, mitarbeitermanagement, trend-studie contact center 2024/2025, kundenservice-optimierung, omnichannel, b2b, automatisierung mit daten, effizienzsteigerung, qualitätsmanagement, kundenservice zufriedenheitsstudie, automatisierungslösungen, automatisierung im kundenservice, kanalstrategie-entwicklung, automatisierung, digitalisierung, automatisierungstechnologien, customer journey optimierung, omnichannel-lösungen, kundenbindung, contact center beratung, ai-gestützte prozesse, services, consulting, strategische beratung, agiles prozessmanagement, management consulting, performance management, performance kpi, ai in contact centers, operatives management, digitalisierung im kundenservice, information technology & services",'+49 172 6765526,"Outlook, Microsoft Office 365, Mobile Friendly, WordPress.org, Avaya, Vonage","","","","","","",69c2815552a8f400012db81f,8742,54161,"RUF Beratung GmbH is a contact center consultancy based in Essen, Germany. The company specializes in interim management, business consulting, omnichannel strategies, and implementation support. Their goal is to enhance contact centers by aligning technology, workflows, and personnel to improve efficiency, customer satisfaction, and revenue. + +The firm adopts a people-centered approach, focusing on the entire business process. Their consulting methodology includes analysis, concept development, technology integration, and process optimization. The team consists of experienced senior consultants with expertise in various areas, including business development, quality management, and digital transformation. RUF Beratung collaborates with network experts as needed to deliver tailored solutions for their clients.",2014,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670c384503690100011cfaca/picture,"","","","","","","","","" +Ströer X GmbH,Ströer X,Cold,"",170,telecommunications,jan@pandaloop.de,http://www.stroeer-x.de,http://www.linkedin.com/company/stroeer-x-gmbh,https://facebook.com/optimiseit,https://twitter.com/optimiseitbiz,3 Georgiring,Leipzig,Saxony,Germany,04103,"3 Georgiring, Leipzig, Saxony, Germany, 04103","regelbasierter bot, business process outsourcing, nearshore, ecommerce, travel, financial services, chatgpt, telekommunikation, kiloesungen, livechat, sales services, chatbot, evu, value added services, contact center, customer support, voicebot, llmbot, customer journey, automation, data analytics, e-commerce, leadgenerierung, digital transformation, multilingual customer support, dialogmarketing, innovationslab ki, customer journey management, customer experience, predictive analytics, energie customer service, ki & automatisierung, automatisierte prozesse, customer loyalty, customer support software, cross selling automation, community management, information technology & services, social media management, real-time chat solutions, services, telekommunikation kundenbindung, performance marketing, customer feedback analysis, outsourcing, lead generation, energy & utilities, e-commerce peak support, customer retention strategies, b2b, b2c, marketing & advertising, telecommunications, consulting, field service, customer service & support, e-learning, multichannel customer service, backoffice service, d2c, customer service, retail, workforce management, omnichannel support, other services related to advertising, finance, distribution, energy, utilities, consumer internet, consumers, internet, enterprise software, enterprises, computer software, sales, education, education management",'+49 341 22900100,"Outlook, Microsoft Office 365, MailChimp SPF, Mapbox, Hubspot, Apache, Mobile Friendly, RealPerson Chat (Optimise-IT), Google Tag Manager, Remote, Dell Tablet, Apple Laptop, Adition Technologies - Advertisers, ValueClick Mediaplex, Microsoft Excel, React Router, Box, Microsoft Office, AT&T, Azure Synapse Analytics, OneTrust","","","","","","",69c2815552a8f400012db823,7389,54189,"Ströer X GmbH is an outsourcing partner for sales and customer services located in Leipzig, Germany. As part of the Ströer Group, it combines the resources of a large corporation with the agility of a mid-sized enterprise. The company has over 40 years of experience in dialog marketing and operates more than 20 contact centers and 150 sales locations, employing over 3,500 customer advisors and 2,500 field service employees across Germany and Europe. + +Ströer X specializes in customer communication solutions that enhance customer satisfaction. Its services cover the entire value chain, from customer acquisition to after-sales support, utilizing multiple channels and media formats. The company focuses on strategic concepts and innovations that help clients save time and concentrate on their core business activities. With a flat organizational structure, Ströer X promotes employee autonomy, enabling quick implementation and effective execution of its services.",2004,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f0ef2855f738000177e8ec/picture,"","","","","","","","","" +mpl Software GmbH,mpl,Cold,"",24,information technology & services,jan@pandaloop.de,http://www.mpl.de,http://www.linkedin.com/company/mpl-software,"","",2 Zettachring,Stuttgart,Baden-Wuerttemberg,Germany,70567,"2 Zettachring, Stuttgart, Baden-Wuerttemberg, Germany, 70567","cas merlin cpq, prozessberatung prozessoptimierung, daten datenschutzberatung, branchenloesungen, schnittstellen erp, individualanpassungen, cpq merlin, u v m, crm, cas genesisworld, prozessberatung, crmstrategieberatung, branchenloesungen fuer kmu, bpmn kigestuetzte automatisierung, systemintegration schnittstellen erp, strategieberatung, schnittstellen dms, mplcampus, smartwe, crmsoftware, digitale transformation, outlook, reporting analayse, projektmanagement implementierung, mpl konnektor, managed services hosting, customer experience kundenbindung, emailmarketing, cpq, smartwe cloud crm, dms, marketingautomation, leadmanagement salesexcellence, mobile crm webloesungen, it services & it consulting, workflow automation, datenanalyse, change management, cloud transformation, it-support, digitalisierung, datenmanagement, unternehmensprozesse, beratung, business process automation, managed services, kundenmanagement, vertrieb, construction, workflow-automatisierung, consulting, ki-gestützte prozesse, business intelligence, systemintegration mit sap, cloud-basierte crm-plattformen, systemintegration, vertriebs- und marketing-integration, automatisierte dokumentation, regulatorische compliance prozesse, user acceptance, computer systems design and related services, projektmanagement, schnittstellen, marketing, b2b, digitale transformation kmu, manufacturing, softwareentwicklung, it-infrastruktur, reporting, cpq-lösungen, kundenbeziehungen, schnittstellenentwicklung, prozessautomatisierung in der agrarwirtschaft, distribution, crm-systeme, customer experience, kundenbindung durch digitalisierung, prozessoptimierung, marketing automation, prozessautomatisierung, saas-lösungen, datenvisualisierung, digitalisierung von geschäftsprozessen, automatisierte angebotserstellung, service, it-strategie, branchenlösungen, it-beratung, crm mit ki, unternehmenssoftware, services, vertriebsautomatisierung, cloud-services, cpq für komplexe produkte, kundenbeziehungsmanagement, sales, enterprise software, enterprises, computer software, information technology & services, analytics, mechanical or industrial engineering, marketing & advertising, saas",'+49 711 78193730,"Outlook, Microsoft Office 365, Hubspot, WordPress.org, Facebook Custom Audiences, Facebook Login (Connect), Nginx, reCAPTCHA, Facebook Widget, Mobile Friendly, YouTube, Google Tag Manager, Linkedin Marketing Solutions, React Native, Android, Remote","","","","","","",69c2815552a8f400012db82b,7373,54151,"mpl Software GmbH is a German IT company based in Stuttgart, specializing in the integration of CRM, CPQ, and AI technologies. Founded in 1999, mpl focuses on automating sales, service, and marketing processes for mid-market businesses. The company partners with CAS Software AG, a leader in CRM systems, and serves over 300 active customers with more than 12,000 users across various industries. + +mpl offers a range of services, including end-to-end consulting and implementation, cloud transformation, and digital ecosystem development. Their solutions enhance operational efficiency through workflow analysis and automation. The company develops tailored platforms that combine CRM, CPQ, and AI, providing clients with tools for efficient product configuration and comprehensive management of customer relationships. With a commitment to user acceptance and data security, mpl ensures seamless integrations and real-time analytics for scalable operations.",1999,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e651ecff7cdd0001a91803/picture,"","","","","","","","","" +Deliberate GmbH,Deliberate,Cold,"",28,information technology & services,jan@pandaloop.de,http://www.deliberate.de,http://www.linkedin.com/company/deliberate-gmbh,https://www.facebook.com/DeliberateGmbH/,https://twitter.com/DeliberateGmbh,12 Konrad-Zuse-Strasse,Boeblingen,Baden-Wuerttemberg,Germany,71034,"12 Konrad-Zuse-Strasse, Boeblingen, Baden-Wuerttemberg, Germany, 71034","genesys, chatbot, reporting, sprachdialogsystem, acd, kundenservice, supervisor, service, customer experience, shortydings, callcenter, customer journey, professional services, ccaas, workforce engagement, blinkydings, displaydings, inbound, unified communications, telefonie, software as a service, self services, integration, voicebot, outbound, telephony, sip, aiaibot, agent, consulting, managed services, omnichannel, genesys cloud cx, digitalisierung, cloud contact center, ivr, messaging, dashboard, predictive engagement, communications, routing, unternehmenskommunikation, social media, genesys cloud, kunstliche intelligenz, contact center, anica, collaboration, webrtc, siptrunk, system, it services & it consulting, customer data management, user experience optimization, self-service automation, computer systems design and related services, microservices architecture, subscription model, voice and chatbots, disaster recovery, agent desktop integration, omnichannel communication, customer service outsourcing, multichannel customer interaction, data security, information technology and services, b2b, cloud-based customer support, sdks and developer tools, customer feedback collection, automated call routing, hybrid cloud support, customer journey management, genesys appfoundry extensions, custom contact center solutions, cloud computing, ms teams integration, contact center software, software publishing, crm integration, ai bots, aws cloud deployment, saas contact center, telecommunications, services, real-time dashboard, security and compliance, customer engagement, performance monitoring, software development, predictive analytics, customer service automation, b2c, open apis, smart ivr, real-time analytics, proactive customer engagement, api integration, workforce management, e-commerce, finance, distribution, professional training & coaching, saas, computer software, information technology & services, consumer internet, consumers, internet, computer & network security, enterprise software, enterprises, financial services",'+49 70 33548840,"Outlook, Microsoft Office 365, Cedexis Radar, Mobile Friendly, Google Tag Manager, Apache, Vimeo, WordPress.org, Adobe Media Optimizer, reCAPTCHA, AI, Remote, Genesys Cloud CX Platform","","","","","","",69c2815552a8f400012db82c,7375,54151,"We offer comprehensive IT consulting and integration services in the areas of customer service, contact center and customer experience. Deliberate's services range from strategic IT and process consulting, customer service consulting, technical analysis and planning services to project management, tendering, implementation, integration and ongoing operations. Through partnerships such as with Genesys, the world's leading provider of contact center software, Deliberate has a powerful portfolio of solutions for implementing a wide range of customer requirements.",2010,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6716c8976c99d300012adb8f/picture,"","","","","","","","","" +neteleven GmbH,neteleven,Cold,"",31,information technology & services,jan@pandaloop.de,http://www.neteleven.de,http://www.linkedin.com/company/neteleven,"","",2 Willy-Brandt-Allee,Munich,Bavaria,Germany,81829,"2 Willy-Brandt-Allee, Munich, Bavaria, Germany, 81829","innovation, digital strategy, project management, digital experience management, digital commerce, software development, sports, devops, technology, information & internet, storyblok, computer systems design and related services, microservices architecture, search & discovery, content management, akamai, emporix, customer support automation, content security solutions, api-first content platform, devops services, content workflow, content personalization engines, search & discovery optimization, omnichannel experience, information technology and services, b2b, contentstack, content management platform, shopify, cloud solutions, content integration, api-first architecture, commercetools, ecommerce solutions, cloud-based solutions, content security, content delivery network, customer service, zendesk, content personalization, crownpeak, content management system, personalization, headless cms, content scalability, coremedia, digital experience & content management, d2c, content delivery, content scalability for large volumes, customer experience platforms, microservices-based commerce, digital marketing, services, empathy, digital transformation, search technology, content publishing, agile project management, content delivery networks, content optimization, microservices, content workflow automation, customer engagement, content strategy, content management for b2b & b2c, customer support tools, content integration in multi-channel environments, b2c, customer support chatbots, contentful, e-commerce, consulting, customer experience management, content security & compliance, retail, api integration, customer journey optimization, devops automation, non-profit, consumer_products_retail, marketing, marketing & advertising, productivity, information technology & services, cloud computing, enterprise software, enterprises, computer software, consumer internet, consumers, internet, nonprofit organization management",'+49 89 588084870,"SendInBlue, Outlook, Microsoft Office 365, Hubspot, Adobe Media Optimizer, Google Tag Manager, Vimeo, Apache, Mobile Friendly, Cedexis Radar, Google Analytics, AI","","","","","","",69c2815552a8f400012db835,7375,54151,"We are specialists with many years of experience, from strategy to development and operation of digital solutions. Therefore we are aware that digital projects are a big investment but also a big challenge for any organization: Where do I start, where do I want to go and what opportunities have I gained through my decisions? +Our task is to support you with advice and assistance. With our comprehensive expertise, we want to work out the possibilities of such a project with you and lead it to success together. In the last 20 years we have been able to accompany many digital projects. During this time we have learned a lot and now we want to make this knowledge available to you; right from the start.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670b3882cc2d4b000118b2d7/picture,"","","","","","","","","" +Sikom Software GmbH,Sikom,Cold,"",34,information technology & services,jan@pandaloop.de,http://www.sikom.cx,http://www.linkedin.com/company/sikom-software-gmbh,https://facebook.com/pages/Heidelberg-Germany/Sikom-Software-GmbH/150438718306573,https://twitter.com/SikomSoftware,4 Tullastrasse,Heidelberg,Baden-Wuerttemberg,Germany,69126,"4 Tullastrasse, Heidelberg, Baden-Wuerttemberg, Germany, 69126","contact center management, onprem contact center, omnichannel, contact center solutions, customer experience, kundenservice, kundenzufriedenheit, mitarbeiterzufriedenheit, ki integration, contact center software, microsoft teams integration, task routing, multichannel, omnichannel routing, ccaas, agent assist, customer service solutions, software development, information technology and services, services, multi-channel customer engagement, customer service optimization, customer experience management, insurance, operational workforce management, customer service software, customer satisfaction enhancement, omnichannel customer communication, on-premises contact center solutions, third-party system integration, customizable contact center solutions, b2b, computer systems design and related services, cloud-based contact center, real-time customer interaction routing, customer interaction channels, insurance and healthcare market expertise, flexible system integration, telecommunications, customer journey elements, healthcare, finance, information technology & services, health care, health, wellness & fitness, hospital & health care, financial services",'+49 6221 137880,"Outlook, Hubspot, Bootstrap Framework, Mobile Friendly",190000,Other,190000,2012-09-01,"","",69c2815552a8f400012db827,7375,54151,Sikom Software GmbH - Platform independent and flexible communication solutions,1998,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670a3aba3e59700001402052/picture,"","","","","","","","","" +CASERIS GmbH,CASERIS,Cold,"",32,information technology & services,jan@pandaloop.de,http://www.caseris.de,http://www.linkedin.com/company/caseris-gmbh,https://www.facebook.com/CASERIS,"",1 Am Birkenfeld,Stolberg (Rhineland),North Rhine-Westphalia,Germany,52222,"1 Am Birkenfeld, Stolberg (Rhineland), North Rhine-Westphalia, Germany, 52222","contact center fuer salesforce, cti, unified messaging, contact center, inbound outbound software, caesar uc, contact center integration in microsoft teams, unified communication, uc integration, cti fuer salesforce, contact center software, it services & it consulting, workflow automation, customer engagement, telephony integration, integration in branchenanwendungen, iso/iec 27001 zertifizierung, data security, public cloud, crm integration, communication & collaboration, information technology & services, cloud-based contact center, microsoft teams integration, caesar plattform, on premise deployment, unified communications, data analytics, ki-unterstützung, enterprise communications, omnichannel, microsoft partner, automatisierte routing-systeme, computer systems design and related services, b2b, customer service software, analytics, real-time analytics, mobility solutions, iso 9001 zertifizierung, mobility tools, on-premise contact center, ai chatbots, multichannel live chat, multichannel communication, customer experience, provisioning software, private cloud, business communication platform, cloud integration, video-conferencing integration, customer interaction management, customizable user interface, omnichannel contact center, software development, chatbots, telecommunications, revisionssicheres recording, services, speech recognition, computer & network security, artificial intelligence",'+49 24 027654321,"Outlook, Microsoft Office 365, CloudFlare Hosting, Hubspot, Mobile Friendly, Google Tag Manager, Linkedin Widget, Linkedin Login","","","","","","",69c2815552a8f400012db82a,7375,54151,"Herzlich Willkommen bei CASERIS! Als Software-Hersteller für deutschsprachige Unified-Communication-Software ist es unser Ziel, Ihre Kommunikationsprozesse durch unsere innovativen, benutzerfreundlichen Software-Produkte zu vereinfachen. + +CAESAR – so heißt unsere Softwarelösung. Sie sorgt für mehrwertschaffende Verbindungen zwischen Infrastruktur und Geschäftsprozess. Mit Innovationsgeist, Begeisterung und Weitblick entwickeln wir unser Contact Center und unsere Unified-Communication-Lösung für eine klare, transparente Unternehmenskommunikation und optimalen Kundenservice. + +Uns vertrauen über 3.800 zufriedene Kunden, darunter Versicherungen, Banken, Sparkassen, öffentliche Einrichtungen, Behörden, Unternehmen und Dienstleister.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e13659a7bef7000160eb0c/picture,"","","","","","","","","" +SNcom GmbH,SNcom,Cold,"",29,telecommunications,jan@pandaloop.de,http://www.sncom.de,http://www.linkedin.com/company/sncom-gmbh,https://www.facebook.com/SNcom-118117220880510/,https://twitter.com/SNcom_gmbh,"",Kaarst,North Rhine-Westphalia,Germany,41564,"Kaarst, North Rhine-Westphalia, Germany, 41564","innovaphone, avaya, novomind, c4b, genesys, onlim, estos, open scape business, voxtron, open scape 4000, parloa, customer expirience, enghouse interactive, contact center, alfavox, call center, multi channel, workflow automation, speech recognition, ai-driven support, customer service, it infrastructure, cti-core, vcc connect, cloud solutions, consulting, services, ai contact center, customer management, voice & video conferencing, information technology and services, it security, automated call distribution, customer journey optimization, omnichannel communication, proactive customer engagement, saas solutions, automation & ki, managed services, itk systems, customer experience, multichannel contact center, security solutions, enterprise software, hybrid cloud contact center, custom contact center software, ai-powered chatbots, b2b, systemintegration, voice & video conferencing systems, computer systems design and related services, cloud computing, inno connect, security & compliance, software development, performance monitoring, scalability, sntials made by sncom, customer journey, konferenztechnik, customer satisfaction, telefonanlagen, cloud, security, business automation, ai customer support, voicebot, unified communications, telecommunications, process automation, innoacd, custom software, customer engagement, automation, natural language processing, voicebot ivr, voicebot operator, data security, intelligent routing, chatbot, real-time analytics, omnichannel, ai, artificial intelligence, information technology & services, enterprises, computer software, computer & network security",'+49 2382 9570300,"Outlook, Microsoft Office 365, Google Tag Manager, WordPress.org, Mobile Friendly, Apache, Avaya","","","","",2603000,"",69c2815552a8f400012db82d,7375,54151,"SNcom GmbH is a German company that specializes in customized Customer Experience (CX) solutions. With over 20 years of experience, it is recognized as the largest provider of innovative solutions in the D-A-CH region (Germany, Austria, Switzerland). The company operates from three locations in Germany, ensuring personalized service and support. SNcom has successfully completed over 800 projects, showcasing its expertise in enhancing customer interactions and communication processes. + +The company offers a range of services, including contact center management, AI and automation integration, and unified communications solutions. These services are designed to optimize multichannel experiences and improve productivity. SNcom provides full-service support from initial consultation to deployment, helping businesses create automated workflows that enhance efficiency and customer satisfaction. The company holds ISO 27001 certification, reflecting its commitment to high data security standards.",2001,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6703b53ab9b4a90001d32766/picture,"","","","","","","","","" +dtms GmbH,dtms,Cold,"",100,telecommunications,jan@pandaloop.de,http://www.dtms.de,http://www.linkedin.com/company/dtmsgmbh,"","",57 Taunusstrasse,Mainz,Rhineland-Palatinate,Germany,55118,"57 Taunusstrasse, Mainz, Rhineland-Palatinate, Germany, 55118","kuenstliche intelligenz, routing, reporting, servicerufnummern weltweit, acd, voicebot, bots, telefonmehrwertdienste, contact center loesungen, cloud contact center, workflow automation, call center software, consulting, integrated contact center platform, customer history tracking, omnichannel communication, customer service solutions, ai chatbots, voicebots, ai in customer service, it security, routing and reporting, contact center automation, digicom ai, services, digital transformation, automated customer service, ai automation, voice and digital channels, custom audio solutions, voice recognition, digital customer interaction, crm integration, customer feedback analysis, call queuing, speech synthesis, cloud-based contact center, audiocreator, ai learning algorithms, computer systems design and related services, multilingual voicebots, automated call handling, ai learning from customer interactions, automated call distribution, voice and chat channels, customer journey optimization, ai systems, digital customer service, blockchain security for customer data, data security iso/iec 27001, telecommunications, intelligent call routing, scalable contact systems, ai-powered customer service, customer data management, enterprise contact solutions, omnichannel solutions, digicom dc assistant, professional audio production, multichannel routing, voice systems, voice and digital channel integration, industry-specific contact systems, text-to-speech, multilingual support, customer support technology, contact center solutions, agent desktop solutions, routing & reporting, ai-based call prioritization, automated response systems, customer support platform, api integration, customer engagement, ivr systems, customer satisfaction metrics, data security, information technology and services, customer service, self-service portals, scalable contact center, ai-powered voice and chat, b2b, customer experience management, real-time analytics, customer experience, digicom voicebot, customized contact solutions, ai-driven customer insights, multichannel customer journey, customer interaction management, software development, service numbers, performance dashboards, computer & network security, information technology & services",'+49 61 314998699,"Postmark, Microsoft Office 365, Zendesk, AWS SDK for JavaScript, Hubspot, Mobile Friendly, Apache, Etracker, reCAPTCHA, Nginx, Google Tag Manager, AI, Render, Remote, WebOffice","",Merger / Acquisition,0,2014-04-01,"","",69c2815552a8f400012db81d,7375,54151,"dtms GmbH is a leading provider of contact center solutions and customer intelligence technologies in the German-speaking region. Based in Mainz, Germany, the company focuses on enhancing communication between businesses and their customers through innovative dialogue solutions. As part of net group Beteiligungen, dtms employs around 60 people and has experienced significant growth, with an estimated annual revenue of $33.8 million. + +The company offers a wide range of services, including cloud-based Automatic Call Distribution (ACD) and Interactive Voice Response (IVR) systems, multi-channel communication platforms, and AI-powered solutions for automated customer responses. dtms also features its own Dialog Control ACD system, which integrates with Zendesk Support, and provides service phone numbers from over 100 countries. As a Zendesk Premier Solution Provider, dtms supports companies in implementing and managing multi-channel solutions, ensuring excellent customer experiences across various industries.",1991,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e715ef72c22200012e14c9/picture,Paragon Partners (paragon.de),57c503b6a6da986a27504d8e,"","","","","","","" +verbaneum GmbH,verbaneum,Cold,"",58,outsourcing/offshoring,jan@pandaloop.de,http://www.verbaneum.de,http://www.linkedin.com/company/verbaneum-gmbh,"","","",Nuremberg,Bavaria,Germany,"","Nuremberg, Bavaria, Germany","consulting, prozessoptimierung, inbound, service, backoffice, outbound, customer care, outsourcing & offshoring consulting, process automation, customer journey, customer service, multichannel communication, customer interaction, digitale transformation, customer support, nachhaltigkeit, resource management, sustainability, digital customer service, contact center, workplace flexibility, process optimization, resource-conserving operations, customized customer solutions, b2c, business services, environmental responsibility in service, inhouse customer service, regional service, omnichannel support, customer experience, partner network, complex project handling, holistic customer support, b2b, sustainable business, customer engagement, outsourcing-beratung, customer service outsourcing, customer relationship management, operational efficiency, innovative service solutions, customer satisfaction, multichannel kundenservice, employee satisfaction, services, contact center services, regionale verantwortung, telephone call centers, corporate responsibility, long-term customer relationships, regional customer service, sustainable customer care, outsourcing/offshoring, environmental services, renewables & environment, crm, sales, enterprise software, enterprises, computer software, information technology & services, facilities services",'+49 911 47778070,"Outlook, Microsoft Office 365, WordPress.org, Mobile Friendly, Google Tag Manager, Apache, Avaya, Remote, AI","","","","","","",69c2815552a8f400012db824,7389,56142,"verbaneum GmbH is an owner-managed outsourcing provider based in Nuremberg, Germany, specializing in contact center services and customer care consulting. The company offers a variety of tailored customer care solutions, including telephone and written customer service, B2B and B2C support, and strategic advisory services. verbaneum develops custom solutions in collaboration with external partners, ensuring that each client's unique challenges are addressed. + +The company is committed to sustainability, aiming to be the most sustainable service provider in the customer care sector. Its approach includes ecological responsibility, economic sustainability through long-term partnerships, social responsibility by treating employees fairly, and regional responsibility by sourcing locally. This focus on sustainability has led to benefits such as lower employee turnover and improved project predictability. verbaneum has also been recognized with a Stevie® Award at the 2022 International Business Awards. The company primarily serves small to medium-sized enterprises with complex customer care needs.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6960a1fa512a50000167d85c/picture,"","","","","","","","","" +VIER,VIER,Cold,"",170,information technology & services,jan@pandaloop.de,http://www.vier.ai,http://www.linkedin.com/company/vier-ai,"","",23 Hamburger Allee,Hanover,Lower Saxony,Germany,30161,"23 Hamburger Allee, Hanover, Lower Saxony, Germany, 30161","chatgpt im kundenservice, customer service, business to business, artificial intelligence, contact center software, automatisierung, sprachanalyse, kuenstliche intelligenz, omnichannel acd, ki im kundenservice, customer experience, conversational ai, effizienter kundenservice, ai gateway, artificial intelligence & converstional ai, agent assist, recruiting, acd, voicebot, chatgpt voicebot, emotion analytics, mitarbeiterentwicklung, agentic ai, converstional ai, copilot, software fuer den kundendialog, selfservice, semantische analyse, software fuer human resources, chatgpt chatbot, ki, interaction analytics, ai agents, it services & it consulting, compliance, ai chatbots, ai compliance, ai solutions, ai compliance standards, iso 27001, ai tools for customer service, trusted cloud, cloud hosting in germany, multichannel contact center, ai platform management, customer insights, hybrid cloud solutions, on-premise solutions, voice recognition, ai model deployment, ai security, ai model training, speech and voice ai, ai-driven customer insights, customer interaction management, ai for multilingual customer service, customer contact, real-time speech analysis, cloud-based software, omnichannel, computer systems design and related services, data anonymization, ai for customer journey optimization, ai for contact center automation, cognitive voice gateway, ai platform, information technology and services, b2b, ai integration, customer satisfaction metrics, software development, omnichannel customer service, speech recognition, ai for gdpr compliance, ai for customer feedback analysis, api integration, ai in customer service, customer feedback tools, computer and electronic product manufacturing, customer satisfaction, data security, ai automation, customer journey mapping, customer feedback analysis, ai-powered analytics, software publishing, ai-powered customer interaction, text-to-speech, cloud infrastructure, multichannel communication, ai privacy, ai model management, natural language understanding, ai security measures, workflow automation, information technology & services, ai-powered chatbots, semantic intelligence, ai for secure data handling, customer experience enhancement, ai model switching, voice bots, ai communication solutions, data security in cloud, ai in public sector, services, ai for real-time customer insights, speech-to-text, ai for municipal services, customer service automation, consulting, ai for voice-enabled services, customer journey analysis, customer data analytics, non-profit, computer & network security, enterprise software, enterprises, computer software, internet infrastructure, internet, nonprofit organization management","","Salesforce, Outlook, ServiceNow, Microsoft Office 365, Microsoft Dynamics 365 Marketing, Atlassian Cloud, GitLab, Hubspot, Google Tag Manager, Mobile Friendly, DoubleClick Conversion, Google Dynamic Remarketing, DoubleClick, Linkedin Marketing Solutions, AI, ANGEL LMS, Azure Data Lake Storage, NLP, Tor, React, Redux, Tailwind, Socket.Io, Python, Wodify","","","","","","",69c2815552a8f400012db82f,7375,54151,"VIER is a prominent German technology company that specializes in AI-based communication solutions for customer service. Founded in 2021 and headquartered in Hannover, VIER has over 200 employees across various locations, including Aachen, Berlin, Karlsruhe, and Lucerne, Switzerland. The company is recognized as a leading provider in the DACH region, serving more than 1,000 customers with its extensive experience in the field. + +The company's core offering is the Contact Technology Platform (CTP), which integrates various communication functions and transaction processing on a secure cloud infrastructure. VIER's products include VIER engage, a cloud-based Automatic Call Distribution (ACD) software; VIER Voice of the Customer, which measures customer experiences; and VIER Cognitive Voice Gateway, which converts text-based bots to voicebots. Other offerings include VIER Copilot for AI agent assistance, VIER Smart Dialog for chat and voicebots, and VIER AI Gateway for advanced AI deployment. VIER focuses on enhancing customer interactions and operational efficiency through omnichannel solutions, AI-driven automation, and analytics.",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69ad6d61527ee700014e553c/picture,"","","","","","","","","" +jtel GmbH,jtel,Cold,"",12,telecommunications,jan@pandaloop.de,http://www.jtel.de,http://www.linkedin.com/company/jtel-gmbh,"",https://twitter.com/jtelgmbh,"",Ottobrunn,Bavaria,Germany,"","Ottobrunn, Bavaria, Germany","local number, acd platforms, carrier grade communications applications, conferencing, carrier grade communications platforms, ivr systems, workflow automation, workflow- & prozessintegration, sip integration, restful api, software publishing, ai module & automatisierung, software-deployment, crm integration, web call & video call, web chat, information technology and services, whatsapp api, chat bot, salesforce integration, unified communications, acd, multichannel plattform, customer service, multichannel modules, computer systems design and related services, b2b, voice bot, customer experience, rag bot, sap integration, ki module & automatisierung, software development, jira & confluence integration, on-premise, saas, dialer, contact center software, ivr, performance- & qualittsmanagement, telecommunications, live agent, services, information technology & services, computer software",'+49 89 46149500,"Outlook, Nginx, Mobile Friendly, WordPress.org, Google Font API, Avaya, Remote, AI","","","","","","",69c2815552a8f400012db831,7375,54151,"jtel is a software vendor and systems integrator specialised in solutions for the telecommunications industry. + +The jtel team consists of highly qualified and experienced software engineers, who in combination with a tightly knit network of OEM partners and suppliers, are capable of producing solutions for almost any imaginable customer request. + +Our specialities include ACD, data and audio conferencing, IVR, solutions for intelligent networks and their multi-client control via web portal solutions. + +jtel was founded in 1997 by Lewis Graham, who has been involved in the telecommunications business since 1993. He studied in Oxford and Edinburgh where he graduated in 1992 as a Bachelor of Information Systems Engineering. Before jtel he successfully built up the specialist IVR company „voice robots"" before selling it to an SME in the PBX business. + +jtel products, software modules and custom solutions are installed at over 200 sites in Europe and handle millions of calls every day.",1997,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e36ad77749200001fd981f/picture,"","","","","","","","","" +infinit.cx,infinit.cx,Cold,"",160,information technology & services,jan@pandaloop.de,http://www.infinit.cx,http://www.linkedin.com/company/infinit-cx-gmbh,https://facebook.com/infinIT.cx,https://twitter.com/infinITcx,66E Ganghoferstrasse,Munich,Bavaria,Germany,80339,"66E Ganghoferstrasse, Munich, Bavaria, Germany, 80339","it services & it consulting, customer experience solutions, customer engagement, customer loyalty, customer engagement plattformen, kontaktmanagement, retail, ai-agenten, kundeninteraktion, d2c, cx-events, ai-gestützte customer journey, management consulting, customer experience consulting, customer experience innovation, conversational ai, b2c, ai-basierte kundenkommunikation, e-commerce, cx-beratung, customer feedback, omnikanal customer experience, cx-tools, customer insights analyse, cx-partner, b2b, customer journey mapping, customer satisfaction, customer service, cx-management, customer service automatisierung, cloud-software, customer success, customer experience trends, trend-studien, cx-events und konferenzen, cx-management-software, conversational ai plattformen, cx-transformationen, customer data analytics, cx-strategie entwicklung, customer journey, customer insights, ai-chatbots, cx-management tools, customer service automation, customer satisfaction messung, cx-optimierung, management consulting services, omnikanal-services, customer experience schulungen, digital customer experience, customer loyalty programme, consulting, cx-partnernetzwerk, services, ai-gestützte apps, ai-tools, software development, cx-weiterbildung, ai-chatbot-integration, customer experience, systemimplementierung, cx-strategie, cx-optimierung im service, trend-studien contact center, information technology and services, cx-transformation, customer experience plattformen, education, information technology & services, consumer internet, consumers, internet","","Outlook, MailChimp SPF, Atlassian Cloud, Slack, Sprinklr, AI, Apple, Android",220000,Merger / Acquisition,0,2010-10-01,35000000,"",69c2815552a8f400012db832,7375,54161,"infinit.cx GmbH is a Munich-based company focused on Customer Experience (CX) management, boasting over 40 years of expertise in enhancing customer interactions across various channels. The company analyzes customer engagement, identifies challenges, and develops tailored CX strategies. They implement customized systems and provide ongoing support to organizations and their employees. + +Their services include comprehensive CX solutions such as situation analysis, strategy development, system implementation, and continuous support. infinit.cx also offers consulting for omnichannel customer service and Voice of the Customer (VoC) initiatives. They are affiliated with the Institut für Customer Experience Management (i-CEM) and host events like the i-CEM Customer Service Summit and the DIALOG! conference in Munich. + +infinit.cx collaborates with leading technology partners, including Genesys and Sprinklr, to deliver AI-driven applications and omnichannel services. They provide valuable resources such as whitepapers and methodologies for service design, helping organizations improve their customer experience strategies.",1982,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/696272a1435db10001e89dcf/picture,"","","","","","","","","" +For the digital future of customer service,For the digital future of customer service,Cold,"",27,information technology & services,jan@pandaloop.de,http://www.fiebig.com,http://www.linkedin.com/company/fiebig-gmbh,"","",25 Wiesenhuettenplatz,Frankfurt,Hesse,Germany,60329,"25 Wiesenhuettenplatz, Frankfurt, Hesse, Germany, 60329","consulting, anliegenerkennung, omnichannel routing, speech analytics, unified communications collaboration, kiloesungen fuer den kundenservice, system integration, managed services, digitalisierung, natural language processing, digitale transformation, process automation, data science, nlp, routing, technisches consulting, kuenstliche intelligenz, corporate networking, natural language understanding, schriftgutklassifizierung, robotics, artificial intelligence, nlu, ki mit nlu, chatbots, carrier management, omnichannel contact center, professional services, knowledge management, contact center, systemintegration, quality management, voice of the customer, self service, schulungen und training, hosting, conversational ai, cloud engineering, ki im kundenservice, cognitive services, kundenservice, ccaas, contact center as a service, automatisierung, robotic process automation, cloudplattformen fuer den kundenservice, it services & it consulting, services, technology consulting, software modules, ccaas platforms, ai assistants for contact centers, customer service integration, b2b, software development, contact center solutions, customer relationship management, omnichannel communication, customer experience, consulting services, customer journey management, customer service technology, enterprise cx solutions, customer service support, customer engagement, contact center automation, long-term support, custom software development for cx, agile project management in cx, computer systems design and related services, customer journey mapping tools, customer satisfaction, multichannel communication, cx consulting, support services, digital transformation, digital customer experience, cx transformation, ai in customer service, ai assistants, project management, market-leading platform integration, customer service analytics, information technology and services, regulatory compliant cx solutions, software and interface development, customer journey optimization, information technology & services, mechanical or industrial engineering, professional training & coaching, management consulting, crm, sales, enterprise software, enterprises, computer software, productivity","","Outlook, Slack, Apache, Mobile Friendly, reCAPTCHA, Google Font API, Avaya, Remote, Deel, AI","","","","","","",69c2815552a8f400012db826,7375,54151,"Wir unterstützen Unternehmen mit herausragenden Leistungen bei der Auswahl, Einführung und Optimierung ihrer Contact-Center-Technologien. + +Mit Leidenschaft und Expertise bieten wir: + +👉 unabhängige Beratung +👉 perfekte Projektumsetzung +👉 nahtlose Integration +👉 innovative Software-Entwicklung +👉 maßgeschneiderte Service Support Leistungen (24/7) +👉 AI & Cloud Engineering + +Gemeinsam setzen wir Ihre Vision von Kundenservice und Contact Center der Zukunft schneller um. Damit Sie Ihrem Marktumfeld voraus sein können. + +Wir sind DIN ISO 9001 / 27001 zertifiziert und verfügen über exzellente Referenzen. + +Bitte beachten Sie unsere Informationen zum Datenschutz unter https://fiebig.com/datenschutz",1976,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e6768885f02000015b9f82/picture,"","","","","","","","","" +Digital Innovation AG,Digital Innovation AG,Cold,"",21,management consulting,jan@pandaloop.de,http://www.digital-innovation.com,http://www.linkedin.com/company/digital-innovation-ag,"",https://twitter.com/tweets_di,9B Bamberger Strasse,Aschaffenburg,Bavaria,Germany,63743,"9B Bamberger Strasse, Aschaffenburg, Bavaria, Germany, 63743","consumer experience, virtual workforce, innovation workshop, digital enablement, ai, it procurement & interim management, production innovation, hospitality digitization, data analytics, digital strategy, product lifecycle management, digital transformation, voicebots, hybrid organisations, ai agents, workplace digitization, retail digitaization, it related business consulting, procurement, innovation, business consulting & services, voice agent for customer service, digital innovation ag, digital workplace, cloud services, digital strategy consulting, real-time data, automatisierte prozesse, trend analysis, regulatory ai training, software as a service, digital retail experience, machine learning, real-time trend detection, it consulting, project management, supply chain digital pass, software development, d2c, ki-trainingsplattform, digitale transformation, web design, market analysis tools, management consulting, e-commerce solutions, omnichannel solutions, devops, process automation, web development, perfect match resource allocation, technology consulting, b2b, enterprise software, retail, digital training platforms, customer journey, customer relationship management, unternehmensberatung, customer experience, digital marketing, custom ai chatbot, voice bots, omnichannel retail solutions, e-commerce, ai-powered market prediction, it procurement, digitaler produkt pass, regulatory compliance, business process optimization, customer engagement, cloud computing, services, marktanalyse ki, ai for resource management, supply chain management, automation, voice agents, it-procurement, projektmanagement, webdesign & e-commerce, supply chain optimization, trend crawler, ai solutions, künstliche intelligenz, consulting, cloud solutions, business intelligence, digital product pass, information technology and services, management consulting services, webentwicklung, education, distribution, marketing, marketing & advertising, enterprises, computer software, information technology & services, saas, artificial intelligence, productivity, consumer internet, consumers, internet, crm, sales, logistics & supply chain, analytics",'+49 6021 625070,"Cloudflare DNS, Outlook, Microsoft Office 365, Hubspot, Slack, Mobile Friendly, Google Tag Manager, DoubleClick, reCAPTCHA, Google Dynamic Remarketing, DoubleClick Conversion, Linkedin Marketing Solutions, Wix, Varnish, Remote","","","","","","",69c2815552a8f400012db82e,8742,54161,"Digital Innovation AG is a German company that specializes in digital transformation services. The company focuses on optimizing business processes through technology solutions, including supply chain management, artificial intelligence, and omnichannel retail experiences. Their motto, ""Success has 6 letters: MAKE IT HAPPEN,"" reflects their commitment to driving digital innovation for businesses. + +The company offers a range of services, such as supply chain management with tools like the Digitaler Produkt Pass for data capture and analysis. They provide artificial intelligence solutions, including the Trend Crawler for trend analysis and matching. Additionally, Digital Innovation AG leads HR restructuring and optimization efforts, aligning global standards with local needs. Their retail digitalization services enhance in-store shopping experiences through innovative customer interactions. The company also prioritizes data protection, ensuring secure handling of client data with transparent policies.",2009,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67013eacc35f940001ac0f23/picture,"","","","","","","","","" +flaixible GmbH,flaixible,Cold,"",84,information technology & services,jan@pandaloop.de,http://www.flaixible.de,http://www.linkedin.com/company/flaixible-gmbh,https://m.facebook.com/flaixibleGmbH/,"",2 Aureliusstrasse,Aachen,Nordrhein-Westfalen,Germany,52064,"2 Aureliusstrasse, Aachen, Nordrhein-Westfalen, Germany, 52064","contact center, automatisierung, digitalisierung, kundenbetreuung, agilitaet, softwareentwicklung, prozessoptimierung, it, messaging, flexibilitaet, it services & it consulting, digital solutions, reliability, business process automation, process optimization, innovation, it system optimization, consulting, customer experience, services, performance optimization, process automation tools, business consulting, computer systems design and related services, b2c, messaging software, messaging solutions, efficiency solutions, agile development, digitalization, customer journey optimization, customer satisfaction enhancement, business intelligence, business automation, software consulting, process automation, it services, workforce flexibility, custom contact center software, multi-channel communication, automation in customer service, crm integration, b2b, custom software solutions, efficiency in customer interaction, customer satisfaction, customer service, software development, ai integration, business services, customer support software, agile methodology, tailor-made customer support, information technology and services, contact center software, digital transformation, workforce management, automation, process digitalization, customer service solutions, client management, messaging focus, tailored solutions, customer engagement, cloud software, multi-channel messaging, information technology & services, management consulting, analytics",'+49 241 99767390,"Outlook, Microsoft Office 365, Apache, Mobile Friendly, Google Font API, WordPress.org, Bootstrap Framework, Data Analytics","","","","","","",69c2815552a8f400012db81e,7375,54151,"Flaixible ist ein junges, dynamisches und ambitioniertes Unternehmen. Mehr als 10 Jahre Erfahrung im Kundenservice, im Workforce-Management, in der Prozessoptimierung sowie in der Softwareentwicklung und -beratung prägen unser Profil. + +Wir sind innovativ, agil und die bedingungslose Kundenorientierung steht für uns im Mittelpunkt. Wir heben den Customer Service auf ein höheres Niveau, nehmen uns den aktuellen Herausforderungen an und verbessern kontinuierlich die Kundenzufriedenheit. +Dieser Challenge stellen wir uns: +• mit dem Einsatz spezialisierter Software, statt standardisierter Lösungen +• mit flexibler Workforce, statt starrer Schichten und fester, langfristiger Planung +• mit hochqualifizierten, motivierten Kundenberaterinnen und Kundenberatern +• mit unserer Expertise insbesondere im Messaging +• mit unserem Know-how bei der Digitalisierung und Automatisierung Ihrer Unternehmensprozesse + +Verlassen Sie sich auf unsere Expertise und überlassen Sie uns Ihre Kundenbetreuung: ganzheitlich, effizient und nachhaltig. Unsere Kompetenz, Ihre IT-Systeme und -Prozesse zu optimieren, lässt Sie und Ihre Kunden profitieren.",2018,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6702b052c799970001f049cf/picture,"","","","","","","","","" +creativITy GmbH,creativITy,Cold,"",11,information technology & services,jan@pandaloop.de,http://www.creativity-gmbh.de,http://www.linkedin.com/company/creativity-gmbh,"","",23 Industriestrasse,Mettmann,North Rhine-Westphalia,Germany,40822,"23 Industriestrasse, Mettmann, North Rhine-Westphalia, Germany, 40822","schnittstellen, crm, ecommerce, digitalisierung, erp, dms, cloudtelefonie, it services & it consulting, cloud-lösungen, custom software development, workflow automation, business process management, german software, business-kommunikation, branchenlösungen, computer systems design and related services, it consulting, erp software, branchenindividuelle softwareentwicklung, contact center, flexible cloud-services, mittelstand, agile entwicklung, multichannel-kommunikation, automatisierte dokumentenprozesse, saas solutions, data security, prozessoptimierung, b2b, cloud solutions, kundenzufriedenheit, it infrastructure, cloud-basierte unternehmenslösungen, automatisierte workflows, schnittstellenentwicklung, cloud computing, document management system, contact center software, digitale aktenverwaltung, software customization, passgenaue unternehmenssoftware, internettelefonie, datensicherheit, digital strategy, mittelstand digital solutions, sicherheitszertifizierte software, it-partner, kundenmanagement, prozessanalyse und -beratung, it-beratung, business communication, it-transformation, it-partner für mittelstand, high security standards, services, effizienzsteigerung im mittelstand, digital transformation, multichannel communication, process automation, kundenzentrierte software, automatisierung, software made in germany, individuelle software, softwareentwicklung, business software, customer engagement, crm system, cloud telephony, remote work support, informationstechnologie, dokumentenmanagement, effizienzsteigerung, software development, consulting, digitalisierungsstrategie, agile projektumsetzung, api integration, sales, enterprise software, enterprises, computer software, information technology & services, e-commerce, consumer internet, consumers, internet, management consulting, computer & network security, marketing, marketing & advertising",'+49 210 42707710,"Route 53, SendInBlue, Outlook, Microsoft Office 365, Slack, Apache, Mobile Friendly, Google Tag Manager, Remote","","","","","","",69c2815552a8f400012db821,7375,54151,"Willkommen bei creativITy - Digitalisierung made in Mettmann. + +Wir sind ein inhabergeführtes, dynamisches Unternehmen auf Wachstumskurs und bieten mittelständischen Unternehmen seit 2011 IT-Consulting, Prozessberatung und Softwareentwicklung. + +Als Digitalisierungsexperten hinterfragen und optimieren wir als Sparrings-Partner an der Seite unserer Kunden die laufenden Unternehmensstrukturen und -prozesse. + +Die Entwicklung von Schnittstellen zur Automatisierung von Vorgängen gehört dabei ebenso zu unserem Kerngeschäft wie die Digitalisierung von Arbeitsabläufen mithilfe von Dokumenten-Management- und Warenwirtschafts-Systemen sowie Kommunikationslösungen aus der Cloud.",2011,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66dffa2fa738db0001e19ec9/picture,"","","","","","","","","" +Empolis,Empolis,Cold,"",180,information technology & services,jan@pandaloop.de,http://www.empolis.com,http://www.linkedin.com/company/empolis,https://facebook.com/EmpolisSoftware/,https://twitter.com/empolissoftware,10 Europaallee,Kaiserslautern,Rheinland-Pfalz,Germany,67657,"10 Europaallee, Kaiserslautern, Rheinland-Pfalz, Germany, 67657","information management, content management, kuenstliche intelligenz, professional services, customerservice, knowledge management, artificial intelligence, service lifecycle management, it services & it consulting, ai-gestützte prozesssteuerung, knowledge hub, ai plattform, content automation, enterprise ai, ki-verfahren, industrie 4.0, knowledge as a service, ki für qualitätsmanagement, wissensmanagement in der fertigung, field service, computer systems design and related services, prozessdigitalisierung, entscheidungshilfe, wissensdigitalisierung, digitalisierung der prozesse, knowledge graphs, knowledge graphen in produktion, industrial knowledge, decision support, mitarbeiterschulung, wissensdatenanalyse, generative ai, data analytics, produktivitätssteigerung, process automation, digitales wissensmanagement für maschinenbau, produktdatenmanagement, b2b, prozessoptimierung, fehlerreduktion, customer engagement, ai-gestützte wartungsplanung, ki-gestützte entscheidungsfindung, kontextabhängige informationsbereitstellung, produktinformationen, kontextbasierte informationsbereitstellung, manufacturing, wissensvernetzung, knowledge graphs für supply chain, transportation & logistics, ai für serviceoptimierung, kundenservice & after sales, services, saas software, self-service knowledge portal, ki-basierte fehlerdiagnose, vertrauenswürdige ki, wissensbasierte entscheidungsfindung, predictive maintenance, user experience, distribution, knowledge graph technologie, automatisierte wissensgenerierung in der produktion, ai in der instandhaltung, wissensdatenbank, unternehmenswissen monetarisieren, ai-basiertes wissensmanagement, consulting, intelligente suche, ki-gestützte fehleranalyse, ai-gestützte datenanalyse, knowledge management plattform, self-service portal, software development, offline knowledge zugriff, digital transformation, qualitätsmanagement, content management system, mobile knowledge access, ai-basiertes wissensmanagement industrie, knowledge sharing, automatisierte wissensgenerierung, genai, ai-gestützte suchverfahren, knowledge graphen, entscheidungsbäume, content optimization, automatisierte fehlerdiagnose, transportation_logistics, it management, information technology & services, professional training & coaching, mechanical or industrial engineering, ux",'+49 631 680370,"Amazon SES, Outlook, MailChimp SPF, Microsoft Office 365, Route 53, Amazon AWS, LearnDash, React Redux, Hubspot, Slack, Active Campaign, Salesforce, Mobile Friendly, Google Tag Manager, YouTube, WordPress.org, Nginx, AI, Remote, Atlassian Cloud, Azure Linux Virtual Machines, Cisco VPN, Datadog Infrastructure Monitoring, Juniper Networks SRX-Series Gateways, Microsoft 365, Microsoft Active Directory Federation Services, Microsoft Windows Server 2012","",Venture (Round not Specified),0,2016-07-01,20000000,"",69c2815552a8f400012db825,3571,54151,"Empolis is a software company based in Kaiserslautern, Germany, specializing in intelligent information management and industrial AI solutions. Founded in 1986, Empolis provides cloud-based and AI-assisted software products that help organizations analyze and process business information effectively. The company supports around 700,000 professional users across approximately 500 installations globally, impacting about 40 million end customers. + +Empolis offers a range of solutions, including intelligent decision support, knowledge management for various sectors, and data analysis capabilities. One of its key products is the Empolis Buddy, which combines generative AI with established AI methods to provide reliable answers from company-specific knowledge, enhancing employee productivity. The company is also associated with the German Research Center for Artificial Intelligence and participates in various technology initiatives. Recently, Empolis was acquired by proALPHA Group, expanding its reach in the digital solutions market.",2012,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69a4b2681f72d00001db1d24/picture,"","","","","","","","","" +hsag ON,hsag ON,Cold,"",20,management consulting,jan@pandaloop.de,http://www.hsagon.de,http://www.linkedin.com/company/hsagon,"","","",Bremen,Bremen,Germany,"","Bremen, Bremen, Germany","marketing, customer service operations, business intelligence, digital transformation services, crm und customer experience consulting, business consulting & services, ki-basierte prozesse, digital service innovation, customer interaction enhancement, customer success, customer journey, digital transformation, b2b, chatbots, operational customer support, customer data utilization, business consulting, customer care, service excellence, customer service, crm, prozessdigitalisierung, customer loyalty, customer experience management, process optimization, human-centered design, consulting, multichannel kundenservice, kundenbindung, digitale lösungen, customer experience transformation, customer engagement, customer support, ai tools, automation technologies, data-driven customer strategies, customer experience, customer experience consulting, customer experience metrics, customer retention, digital platforms, customer data, data analytics, customer-centric culture, services, management consulting services, user experience, omnichannel support, automatisierung, customer relationship management, customer journey optimization, customer satisfaction, digitale transformation, cx-beratung, analytics, information technology & services, management consulting, sales, enterprise software, enterprises, computer software, ux",'+49 62 21893780,"WordPress.org, Shutterstock, Mobile Friendly, Apache, Bootstrap Framework, Google Tag Manager, Google Analytics, Remote","","","","","","",69c2815552a8f400012db820,8742,54161,"hsagON - Ihr Partner für kundenorientierte Prozesse, smarte Beratung und zuverlässige Umsetzung. + +Wir unterstützen Unternehmen in zwei zentralen Bereichen: +• Customer Experience Consulting +• Customer Service Operations + +Ob strategische Kundenbindungsmaßnahmen oder operative Serviceprozesse – wir bringen Expertise, Effizienz und Flexibilität zusammen. + +Von verschiedenen Standorten aus – wie Bremen und München – agieren wir bundesweit und branchenübergreifend. + +Als Tochtergesellschaft der hsag Heidelberger Services AG greifen wir auf das Know-how von rund 250 Mitarbeitenden zurück – und stehen unseren Kunden bei Bedarf auch kurzfristig zur Seite. + +Impressum (https://hsag.info/impressum/) + +hsag ON AG +Wilhelmsfelder Straße 13b +D-69118 Heidelberg +T: +49 (0) 6221 / 89378-0 +F: +49 (0) 6221 / 89378-70 +E: info@hsag.info + +Vertretungsberechtigter Vorstand: Stefan Renkert, Dr. Carl Heckmann +Registergericht: Amtsgericht Mannheim +Registernummer: HRB 709410 +Umsatzsteuer-Identifikationsnummer (USt.Id.Nr.): DE 282151060 gemäß § 27 a",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/677ae83babc33f00015013d9/picture,hsag Heidelberger Services AG (hsag.info),5569dbd173696425c4e6a500,"","","","","","","" +CCT Solutions,CCT Solutions,Cold,"",68,information technology & services,jan@pandaloop.de,http://www.cct-solutions.com,http://www.linkedin.com/company/cctsolutions,https://www.facebook.com/cctdeutschland/,https://twitter.com/CCTSolutions,8 Burgfriedenstrasse,Frankfurt,Hesse,Germany,60489,"8 Burgfriedenstrasse, Frankfurt, Hesse, Germany, 60489","omnichannel, social media integration for customer service, workforce engagememt, unified communications, contact center, email management for customer service, multiexperience, it services & it consulting, multichannel outbound communication, support for video chat, digital customer engagement, video and chat support, certified experts, contact center as a service (ccaas), support for ai and automation platforms, customer data security, support for social media and messaging channels, automated customer journey management, integrated communication platforms, iso 9001:2015 certified, enterprise communication solutions, crm integration, support for social media messaging, support for multi-language customer interactions, support for social media messaging platforms, support for integrated voice, chat, and video, telecommunications, customizable workflows, agent performance monitoring, cloud deployment, integration with third-party crm systems, support and consulting services, ai-driven customer insights, computer systems design and related services, cloud contact center, agent desktop, unified communications as a service (ucaas), automation and ai, integrated analytics dashboards, workforce management (wfm), support for microsoft teams integration, b2b, automation, support for large-scale contact center operations, support for video and co-browsing, cloud-based contact center, technology partnerships, support for real-time analytics dashboards, agent productivity, customizable agent desktop, scalable contact centers, support for large enterprises, enterprise-grade security, customer engagement, integrated reporting and analytics, software development, real-time analytics, support for ai and conversational bots, workforce optimization (wfo), support for microsoft teams, iso 27001 certified, enterprise communication, customer journey, omnichannel communication, customer satisfaction, seamless system integration, ai automation, support for conversational ai, global support services, support for ai-supported bots, support for whatsapp and sms, cloud computing, customer experience (cx), support for avaya systems, integrated agent desktop, multichannel communication, contact center solutions, support for ai-supported dialogue systems, support for omnichannel routing and automation, support for large-scale deployments, on-premises contact center, information technology, support for multichannel outbound campaigns, proactive support, itsm integration, custom software development, customer journey analytics, integrated voice and video, support for social media channels, customer service & support, ai-powered chatbots, ai-powered customer support automation, customer relationship management, support for whatsapp, sms, and chat, support for enterprise-grade security and compliance, operational efficiency, ai-supported dialogue systems, customer journey management, customer experience, real-time reporting, on-premises solutions, support for hybrid cloud environments, multi-experience customer engagement, conversational ai, modular architecture, support for customer journey analytics, services, digital transformation, security and compliance, crm / erp / itsm integration, support for hybrid cloud and on-premises deployments, multilingual support capabilities, support for agent performance management, consulting, multi-channel contact routing, support for omnichannel routing, support for avaya and cisco systems, unified communication, omnichannel solutions, workforce management, voice and chat bots, agent desktop automation, crm integrations, email management, outbound contact management, social media integrations, video collaboration, customer engagement automation, reporting solutions, intelligent call routing, co-browsing support, data security management, iso 9001 certification, iso 27001 compliance, integrated solutions, proactive customer service, ai-driven workflows, automation and optimization, customer journey mapping, flexible licensing models, partner ecosystem management, mobile engagement solutions, scalable architectures, flexible integration options, agent performance analytics, customer retention strategies, service level agreements (slas), 24/7 support services, technical expertise, project management services, tailored support solutions, channel optimization, customer preferences management, rapid deployment solutions, feedback loops for improvement, cct solutions, multi-experience management, operational excellence, agile methodologies, real-time dashboard customization, information technology & services, enterprise software, enterprises, computer software, crm, sales",'+49 69 71914969,"Outlook, Leadfeeder, Hubspot, Slack, Google Tag Manager, Twitter Advertising, DoubleClick, Nginx, DoubleClick Conversion, Mobile Friendly, Google Analytics, Google Dynamic Remarketing, Bootstrap Framework, Avaya, Vonage, AI","","","","",20868000,"",69c2815552a8f400012db822,7375,54151,"CCT Solutions is a technology company founded in 1999, based in Frankfurt, Germany, with additional locations in the U.S. and Switzerland. The company specializes in integrated omni-channel and multi-experience contact center solutions aimed at enhancing customer engagement and driving revenue for mid-sized and large organizations. CCT Solutions employs over 50 people, including industry veterans and emerging talent, and generates approximately $65.3 million in revenue. + +CCT offers end-to-end consulting, integration, and management services for contact centers, focusing on omni-channel unification across various communication methods such as voice, web, email, chat, and video. Their flagship products include CCT ContactPro®, an omni-channel desktop solution, and CCT MX Cloud, a scalable cloud-based contact center platform featuring AI automation. The company emphasizes seamless integration with major platforms and provides customizable solutions that enhance operational efficiency and customer experience.",1991,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/691111727784dd00016a5c07/picture,"","","","","","","","","" +babelforce,babelforce,Cold,"",39,telecommunications,jan@pandaloop.de,http://www.babelforce.com,http://www.linkedin.com/company/babelforce,https://facebook.com/pages/Babelforce/156816664510113,https://twitter.com/babelforce,68 Friedrichstrasse,Berlin,Berlin,Germany,10117,"68 Friedrichstrasse, Berlin, Berlin, Germany, 10117","call recording amp pci compliance, outbound amp inbound calls, outbound inbound calls, acd, nocode automation, api integration, webtelephony integration, helpdesk, queueing scheduling, cloud communications, call recording pci compliance, skills based routing, multicarrier telecoms infrastructure, queueing amp scheduling, 2way sms dynamic ivr, kpi amp bi integrations, kpi bi integrations, premium voip call quality, crm, call routing, contact center integration, 2way sms amp dynamic ivr, customer service applications, integration iaas, telecommunications, integrated communication channels, scalable ccaas, voicebot ai, customer engagement, call analytics, ai speech understanding, multichannel contact center, telephony automation, agent productivity, intent understanding, customer experience, b2b, multi-carrier telephony, call transcription, customer retention, zendesk integration, workflow builder, information technology and services, computer systems design and related services, customer journey automation, call routing automation, dynamic call routing, virtual queuing, omnichannel support, real-time ticketing, enterprise telephony, contact center platform, agent assist tools, software development, ai-powered voice, speech recognition, services, no-code contact center, composable contact center, automated customer support, customer satisfaction enhancement, no-code platform, multi-language voicebot, ivr automation, self-service automation, scheduled callbacks, outbound dialer, automated call handling, context-aware routing, sales, enterprise software, enterprises, computer software, information technology & services, artificial intelligence",'+49 30 920373300,"Route 53, Mailchimp Mandrill, Gmail, Google Apps, MailChimp SPF, Microsoft Office 365, Zendesk, VueJS, React, Slack, Salesforce, Hubspot, WordPress.org, Facebook Widget, Linkedin Marketing Solutions, Nginx, Google Dynamic Remarketing, DoubleClick, DoubleClick Conversion, Google Analytics, Google Tag Manager, Facebook Custom Audiences, Google Font API, Mobile Friendly, Vimeo, Facebook Login (Connect)",4400000,Series A,4400000,2022-12-01,181000,"",69c2815552a8f400012db828,7375,54151,"babelforce is a composable voice platform and cloud communications solution founded in 2013, based in Berlin. The company focuses on enhancing customer experiences for contact centers and customer service organizations through no-code integration and automation. With a team distributed across Europe, babelforce aims to make high-quality customer experiences scalable and accessible without the need for extensive technical resources. + +The platform offers a range of capabilities, including workflow automation, omnichannel engagement, and conversational AI with VoiceBots in over 70 languages. It allows organizations to automate routine tasks, create unified customer journeys, and implement self-service options. babelforce also provides enterprise-grade Contact Center as a Service (CCaaS) that integrates seamlessly with existing solutions like Zendesk. The modular design of the platform enables customer experience professionals to build custom solutions easily, enhancing efficiency and reducing implementation time.",2013,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69a40f8aa1112400014f37cc/picture,"","","","","","","","","" +MULTICONNECT GmbH,MULTICONNECT,Cold,"",13,telecommunications,jan@pandaloop.de,http://www.multiconnect.de,http://www.linkedin.com/company/multiconnect-de,https://facebook.com/multiconnect-1728457020737189,"",2 Platzl,Munich,Bavaria,Germany,80331,"2 Platzl, Munich, Bavaria, Germany, 80331","acd, contact center, ivr, hotline, call center, sms, customer service, pbx, carrier, vas, interface, service numbers, billing, analytics, mvne, mvno, voting, call tracking, mass response technik, voip, customer engagement, information technology & services, ivr-systeme, telefonie-integration, kommunikationsplattformen, telekommunikationsmanagement, telecommunications, ki-basierte lösungen, automatisierte rufnummernportierung, mifid ii compliance, redundante systemarchitektur, customer experience, sip-trunk, data security, telefonbetrugsschutz, business services, financial services, unified communications, agentenmonitoring, business telephony, mifid ii call recording, automatische anrufzusammenfassung, internationaler telekommunikationsdienst, voip-lösungen, datenschutzkonforme aufzeichnung, telekommunikations-cloud-lösungen, telekommunikationsinfrastruktur, virtuelle rufnummern, software development, services, echtzeit-reporting, crm-integration, internationale gewinnspiele, telekommunikationsnetz, telefonanlagen, multichannel-kommunikation, rechtssichere anrufaufzeichnung, cloud-kommunikation, call center software, telekommunikationsservices, telefonie-software, ki-basierte anrufsteuerung, e-commerce, automatisierte anrufverteilung, sla-management, b2b, kundenservice-lösungen, cloud-telefonie, call center & customer support, 3cx telefonanlage, consulting, ki-bots, call routing, finance, distribution, messaging, computer & network security, consumer internet, consumers, internet",'+49 89 44288000,"ElasticEmail, Outlook, Microsoft Office 365, Ubuntu, Wistia, Apache, Mobile Friendly, WordPress.org, Google Tag Manager, DoubleClick, AI","","","","","","",69c2815552a8f400012db830,4812,517,"As a network operator and service provider, MULTICONNECT improves the call journey with contact center software (iMos), telephone systems (3CX) and call numbers. + +Effective customer relations management is impossible without service numbers. The advantages of modern voice portals are obvious: +- As required. Numbers for specific target groups effectively channel customer communications. +- Economical. A range of refinancing options makes the service number even more attractive. +- Efficient. The use of voice portals reduces costs and makes customer communications more efficient. + +multiConnect offers not only various service numbers (including international) but also very detailed routing and evaluation management and information and portal services. multiConnect consultants will develop a customised service strategy with a scope, price and service perfectly matched to the requirements of the service provider and its customers. And it will have the right service numbers and applications. The services will be implemented in the intercarrier business with billing and collections for the customer. Service numbers are evaluated and controlled in real time over the internet accesses. Intelligent routing, interactive voice response (IVR) and automatic call distribution (ACD) ensure ideal customer relations management.",1999,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6712141b053bbf00016228c7/picture,"","","","","","","","","" +Exelentic,Exelentic,Cold,"",17,information technology & services,jan@pandaloop.de,http://www.exelentic.com,http://www.linkedin.com/company/exelentic,"","",61 Graf-Adolf-Strasse,Duesseldorf,North Rhine-Westphalia,Germany,40210,"61 Graf-Adolf-Strasse, Duesseldorf, North Rhine-Westphalia, Germany, 40210","ocr, artificial intelligence, beratung, data analytics, conversational ai, robotic process automation, consulting, uipath, automation, abbyy, power automate, automation anywhere, sap, process mining, another monday, druidai, automation hero, kuenstliche intelligenz, robotics, kosteneinsparung, prozess automatisierung, hyper automation, digitalisierung, automatisierung, rpa, test automatisierung, data security, process automation, ai training programs, process mining tools, process automation in regulated industries, automation strategy consulting, automation maintenance, automation support services, software development, ai and compliance, business process automation, automation training, software engineering, process optimization, automation implementation, hyperautomation technologies, ai compliance, ai-powered process automation, rpa development, ai + chatbot, automation projects, automation strategy, information technology & services, automation support, process documentation, b2b, ocr technology, ocr solutions for business, process mining software, hyperautomation, automation consulting, process improvement automation, regulatory technology in automation, automation quality management, operational efficiency, ai training, regulation-adherent automation, process analysis, automation solutions, ai technologies, process analysis tools, digital transformation, automation tools, services, process optimization strategies, quality assurance, automation platform, process documentation services, ai and rpa integration, regulatory compliance, rpa lifecycle management, computer systems design and related services, ai, it-compliance, education, mechanical or industrial engineering, computer & network security",'+49 89 958990281,"Outlook, Microsoft Office 365, Google Cloud Hosting, Slack, Varnish, Mobile Friendly, YouTube, Wix, Automation Anywhere, Remote, AI","","","","","","",69c2815552a8f400012db834,7375,54151,"Wir sparen Ihnen täglich wertvolle Arbeitszeit ein! +If you hate it, Automate it! +AI-Agents, und Intelligente Automatisierungen. +Auch Ihre Mitarbeiter schulen wir, AI & Automation zielgerichtet einzusetzen und zu bedienen. +Von der Prozessauswahl über Test und Entwicklung bis hin zur revisionssicheren Dokumentation sind wir ihr Partner, vor Ort und Remote.",2018,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670bb69b336c900001275d48/picture,"","","","","","","","","" +DSP IT Service GmbH,DSP IT Service,Cold,"",22,information technology & services,jan@pandaloop.de,http://www.dsp-eu.de,http://www.linkedin.com/company/dspitservicegmbh,"","",28B Schaberweg,Bad Homburg,Hesse,Germany,61348,"28B Schaberweg, Bad Homburg, Hesse, Germany, 61348","automatisierung, service management, best practices, service desk, informationstechnologie, iam, matrix42, software loesungen, schulungen, it security, it consulting, projektmanagement, managed services, itil, standardisierung, digitalisierung, iso 200001, desktop support, iso 27001, fortinet, beratung, it services & it consulting, security management, it governance, asset management, siem & soc, it asset lifecycle, management consulting, project management, automation, iso 20000-1, ticket management, b2b, iso certification, identity & access management, organizational consulting, computer systems design and related services, it service standardization, darknet security check, certification, it service management, client management, digital transformation, security operations center, cybersecurity, it compliance, process optimization, dora compliance, it infrastructure, consulting, intrusion detection, it reifegrad-analyse, monitoring, service catalog, cyber security radar, security system design, it lifecycle management, license management, information technology and services, interim management, process automation, endpoint security, services, computer & network security, information technology & services, productivity",'+49 6172 679460,"Google Tag Manager, reCAPTCHA, Apache, Google Analytics, WordPress.org, Mobile Friendly, Micro, Remote","","","","","","",69c2815552a8f400012db833,7379,54151,"Seit über 20 Jahren unterstützen wir Unternehmen dabei, IT-Infrastrukturen sicher, effizient und zukunftsfähig zu gestalten. Unser Fokus liegt auf Cybersecurity, während wir gleichzeitig digitale Transformation, Prozessoptimierung und Compliance nahtlos integrieren. + +Unsere Leistungen im Überblick: + +- Cybersecurity & IT-Security: Schutz vor Cyberangriffen, Schwachstellenanalysen, Security Audits und präventive Maßnahmen + +- Compliance & Informationssicherheit: Umsetzung von NIS2, ISO 27001, DORA und weiteren regulatorischen Anforderungen + +- Managed Services: Entlastung Ihrer IT-Teams, Betrieb kritischer Systeme, schnelle Umsetzung von Projekten und Zertifizierungen + +- Enterprise Service Management & Digitalisierung: Optimierung von Geschäftsprozessen mit Matrix42 und modernen IT-Lösungen + +Mit über 500 erfolgreich realisierten Projekten und langjähriger Partnerschaft mit Matrix42, Fortinet und weiteren namhaften Herstellen verbinden wir technische Expertise, organisatorische Sicherheit und praxisnahe Beratung – klar, verständlich und auditfähig. + +Warum wir? +- Mehr als 20 Jahre Erfahrung +- Fokus auf Cybersecurity und Compliance +- Ganzheitliche IT-Lösungen für den Mittelstand","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6873cbf055876000016e1b78/picture,"","","","","","","","","" +Samhammer AG,Samhammer AG,Cold,"",180,information technology & services,jan@pandaloop.de,http://www.samhammer.de,http://www.linkedin.com/company/samhammer,https://facebook.com/samhammerag,https://twitter.com/samhammer_ag,3 Zur Kesselschmiede,Weiden,Bavaria,Germany,92637,"3 Zur Kesselschmiede, Weiden, Bavaria, Germany, 92637","wissensmanagement, paymentservices, filialservice, kundenservice, chatbots, customer service experience, digitalisierung, it service, rolloutmanagement, service app, kuenstliche intellegenz, service excellence, transformation, sprachbots, terminal services, digitaler helpdesk, customer service, servicewissen, automatisierung, kundenzufriedenheit, selfservices, wissenslogistik, consulting, terminalservice, service, it services & it consulting, support lifecycle management, knowledge framework, support automation tools, b2b, ki-fähigkeiten, ai-gestützte support-optimierung, lifecycle services, service-exzellenz, support services, multilinguale kundenkommunikation, self-service ki-lösungen, ki-gestützte support-tools, iot lifecycle services, ai-assisted service center, ki-training, ki im helpdesk, human-in-the-loop ki, omnichannel support, software development, customer engagement, omnichannel kundenservice, ai-powered service assistants, ki-basierte wissenslogistik, services, ki im kundenservice, dialogbots, multilingual support ki, customer service outsourcing, ki-modelle, risk management, predictive maintenance, automatisierte supportprozesse, metis plattform, predictive maintenance iot, information technology and services, computer systems design and related services, knowledge graphs, knowledge management, corporate small language model, customer support automation, customer relationship management, digital customer service, wissensframework, distribution, consumer products & retail, transportation & logistics, energy & utilities, information technology & services, crm, sales, enterprise software, enterprises, computer software",'+49 96 1389390,"Outlook, Microsoft Office 365, Atlassian Cloud, Hubspot, TYPO3, Apache, Mobile Friendly, Remote, AI, Data Analytics, Microsoft Teams, ChatGPT, Google AdWords Conversion, Microsoft Excel, Microsoft PowerPoint, Microsoft Teams Rooms, Mode, Azure Data Lake Storage, ANGEL LMS","","","","",16000000,"",69c2815552a8f400012db829,7375,54151,"Samhammer AG is a German technology and service company based in Weiden, specializing in AI-assisted service excellence and customer service optimization. Founded in 1988, the company has grown from a spare parts catalog provider to a leader in service solutions, employing around 560 people, including 240 field technicians. Samhammer focuses on enhancing efficiency and customer experience through AI technologies combined with human expertise. + +The company offers a wide range of managed services throughout the device lifecycle. This includes AI-powered service centers, lifecycle management, and knowledge logistics. Their platforms, such as METIS, support operations with features like chatbots and skill-based routing. Samhammer serves various industries, including retail, automotive, healthcare, and IT, and maintains long-term relationships with leading mid-sized and corporate clients. Their commitment to service excellence is evident in their 24/7 multilingual service centers and tailored solutions for high-value networked devices.",1988,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/681eda060a25d200010f5356/picture,"","","","","","","","","" +interface medien GmbH,interface medien,Cold,"",27,marketing & advertising,jan@pandaloop.de,http://www.interface-medien.de,http://www.linkedin.com/company/interface-medien-gmbh,https://facebook.com/interfacemedien,https://twitter.com/interfacemedien,119 Scheibenstrasse,Muenster,North Rhine-Westphalia,Germany,48153,"119 Scheibenstrasse, Muenster, North Rhine-Westphalia, Germany, 48153","sem, marketing, google ads, drupal, couponing, ibase, gutscheinportale, shops, content marketing, emailmarketing, seo, ibase framework, consulting, social media marketing, csr, shopware, affiliate marketing, b2b, blogs, crm, ecommerce, bing ads, onlineshops, strategies, stats, public relations, wordpress, typo3, web 20, mobile marketing, kuenstliche intelligenz, partnernetzwerke, advertising services, technologieberatung münster, automatisierungstools, digitale transformation, data analytics, digitale strategie, prozessoptimierung, e-commerce-lösungen, information technology and services, digitalisierung, erfolgskonzepte mit ki, nachhaltige digitalisierung, marketingberatung, strategische beratung, künstliche intelligenz, digitales marketing, kundenpotenzial, digital marketing, kundenorientierung, online-marketing, marketing software beratung, computer systems design and related services, softwareentwicklung, webdesign, maßgeschneiderte lösungen, performance marketing, ki-beratung, individualsoftware, technologieberatung, webentwicklung, innovation, automatisierung, cloud-software, kundenprojekte, datenanalyse, kundenbindung, nachhaltigkeit, teamarbeit, erfolg durch ki, leadgenerierung, kundenpotenzial entfalten, digital transformation, services, ai-basierte lösungen, customer engagement, zertifizierter google partner, e-commerce, digitale zukunftsgestaltung, prozessautomatisierung im unternehmen, maßgeschneiderte software, it-infrastruktur, it-services, individuelle marketingstrategien, softwarelösungen, software development, prozessautomatisierung, online-erfolg, projektmanagement, individuelle softwarelösungen, datenschutz, innovative softwareentwicklung, crm-integration, marketing & advertising, information technology & services, search marketing, consumer internet, consumers, internet, blogging, online media, media, sales, enterprise software, enterprises, computer software, web design",'+49 251 919590,"Cloudflare DNS, Microsoft Office 365, CloudFlare Hosting, UptimeRobot, Atlassian Cloud, SendInBlue, Google Tag Manager, Mobile Friendly, Remote, AI","","","","",213000,"",69c281f11e946c0001efd386,7375,54151,"interface medien ist ein in der Digitalmetropole Münster hervorragend vernetztes IT-, Beratungs- und Marketingunternehmen mit über 20jähriger Erfahrung. Unser Sitz ist das Kreativzentrum „Skaters Palace"". Mehr als dreißig Mitarbeiter arbeiten mit viel Liebe zum Detail an Projekten aus vielfältigen Branchen. Unsere Kunden dürfen von uns Ideen zur Lösung komplexer Fragestellungen in anspruchsvollen, technischen Anwendungsbereichen erwarten. + +Bombastische Beratung, sensationelle Software und magisches Marketing für Ihr Unternehmen. Unsere Kernleistungen im Zusammenspiel oder als Einzelkämpfer. Wir sind Ihre sichere Bank. Setzen Sie sich und genießen Sie die Aussicht!",1999,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670ded19139ddb0001b9dfcd/picture,"","","","","","","","","" +Creakom,Creakom,Cold,"",25,marketing & advertising,jan@pandaloop.de,http://www.creakom.com,http://www.linkedin.com/company/creakom,https://www.facebook.com/creakom,https://twitter.com/creakom,23 Oskar-Schlemmer-Strasse,Munich,Bavaria,Germany,80807,"23 Oskar-Schlemmer-Strasse, Munich, Bavaria, Germany, 80807","design, sem, business intelligence, marketing automation, videoproduktion, markenfuehrung, social media, analytics, sales management, microsoft power bi, data visualisation, microsoft dynamics 365, event, webcast, webinar, livestreaming, livekommunikation, kommunikation, personalvermittlung, customer data platform, recruiting, marketing services, data analytics, multichannel communication, customer journey mapping, social media marketing, ai-driven insights, event management, cgi content, project management, hybrid event solutions, data governance, marketing, dynamics 365 marketing, conversion optimization, dynamics 365 sales, cloud data management, storytelling in media, services, streaming solutions, real-time data, data integration, event streaming, predictive analytics, emotion in content, audience engagement, data-driven marketing, information technology and services, email marketing, customer profiling, customer engagement tools, consulting, dashboard development, kpi reporting, event planning, management consulting services, video production, interactive content, virtual and hybrid events, cgi video content, content marketing, motion graphics, b2b, event execution, omnichannel marketing, brand activation, content storytelling, social media content, lead generation, virtual events, big data analysis, customer segmentation, media campaigns, integrated marketing solutions, virtual event platforms, motion design, data enrichment, marketing and advertising, data security, power bi, virtual event management, content distribution, ai-based communication, content creation, media production, sales, media strategy, data cleansing, market research, hybrid event technology, hybrid events, dynamics 365 customer insights, data visualization, media content strategy, emotion-driven content, brand storytelling, information technology & services, marketing & advertising, saas, computer software, enterprise software, enterprises, consumer internet, consumers, internet, communications, events services, productivity, computer & network security",'+49 89 41417030,"Outlook, Microsoft Office 365, Mobile Friendly, WordPress.org, reCAPTCHA, Apache, Vimeo, Databricks, Vincere, AI","","","","",107000,"",69c281f11e946c0001efd387,7375,54161,"Creakom is a Munich-based company with over 30 years of experience in communication, marketing, and sales solutions, enhanced by AI. Founded in 1989, Creakom GmbH für kreative Kommunikation & Business Intelligence focuses on outsourcing marketing and communication services. The company also includes Creakom Business Solutions GmbH, established in 2021, which operates in the IT and computer services sector. + +Creakom offers a range of digital communication solutions, including digital customer management, analytical CRM, and marketing automation powered by AI. Their services encompass data analysis, campaign development, brand-building, trade fair appearances, and live or virtual events. Creakom aims to build long-term partnerships with clients, helping them communicate effectively and enhance their brand image. Notable clients include Microsoft, Porsche Design, and Trekstor.",1989,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e9201b8b7e89000144d52f/picture,"","","","","","","","","" +roosi GmbH,roosi,Cold,"",54,information technology & services,jan@pandaloop.de,http://www.roo.si,http://www.linkedin.com/company/roosi,"","",69 Muenchener Strasse,Rosenheim,Bavaria,Germany,83022,"69 Muenchener Strasse, Rosenheim, Bavaria, Germany, 83022","data management, information management, data strategy, datenstrategie, data governance, ist, data analytics, predictive analytics, business intelligence, advanced analytics, architecture management, data intelligence, internet of things, artificial intelligence, smart city, senorik, iot, smart community, kuenstliche intelligenz, it services & it consulting, data architecture, data operations, b2b, consulting, data infrastructure, power bi integration, purview data governance, data integration, data lifecycle management, data compliance, data projects, data architecture design, data silos aufbrechen, iot solutions, data transformation, fluencexl, niotix, data lakes, data quality, management consulting, consulting services, bi & cpm, services, data security, data optimization, smart data services, ki-kompass, fokus auf data governance und data architecture, data modeling, information technology and services, data platforms, data intelligence consulting, d-quantum, data strategy & governance, data warehousing, data automation, management consulting services, data lineage, data analytics and data management, internet of things (iot), aios operating system, it management, information technology & services, enterprise software, enterprises, computer software, analytics, computer & network security",'+49 162 2035800,"Outlook, Hubspot, YouTube, Linkedin Marketing Solutions, WordPress.org, Google Analytics, Mobile Friendly, Google Tag Manager","","","","","","",69c281f11e946c0001efd389,7375,54161,"roosi GmbH is a Data Intelligence consultancy based in Rosenheim, Bavaria, Germany. Founded in 2020, the company employs around 47-48 people and operates as a subsidiary of the AKDB Group. roosi specializes in helping both public and private sector organizations manage, structure, and utilize their data effectively. + +The company focuses on developing data strategies, managing data, and providing business intelligence solutions. Their services include corporate performance management, data warehousing, and implementing Internet of Things (IoT) solutions. roosi also leverages advanced analytics and artificial intelligence to provide deeper insights and automation. A key offering is the roosi AIOS platform, which integrates enterprise AI, automation, and data management features to enhance workflow efficiency and data security. + +roosi positions itself as a trusted partner for Data Intelligence in the German-speaking region, emphasizing clear communication and a partnership approach with clients.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66ff08073516f20001b9e26d/picture,"","","","","","","","","" +contrimo GmbH,contrimo,Cold,"",33,information technology & services,jan@pandaloop.de,http://www.contrimo.com,http://www.linkedin.com/company/contrimo-gmbh,https://www.facebook.com/contrimo,https://twitter.com/SAP_specialists,25 Konrad-Zuse-Ring,Mannheim,Baden-Wuerttemberg,Germany,68163,"25 Konrad-Zuse-Ring, Mannheim, Baden-Wuerttemberg, Germany, 68163","mobility, sap consulting software development crmc4c, sap consulting amp software development crmcecc4c, sap consulting software development sap c4hana suite, sap crm, agile project management, project management, tem event management, ewm, sap consulting software development crmcecc4c, sap consulting amp software development sap c4hana suite, it services & it consulting, sap development, sap process support, sap process consulting, b2b, sap customer journey, sap process automation, sap btp, sap add-on software, reactjs, sap landscape optimization, consulting, node.js, bol programming, api integration, css3, sap innovation projects, web client ui framework, sap process management, sap customer experience, c#, sap co-development, typescript, sap software development, b2c, html5, odata, management consulting, c++, sap project review, sap fiori, angular, sap co-innovation, sap project management, services, sap application studio, computer software, sap system review, sap process design, python, abap/4, sap implementation, computer systems design and related services, information technology and services, sap partner, sap customization, microsoft sql, sap process enrichment, sap process optimization, sap consulting, php, sap add-on solutions, mobility integration, sapui5, sap support, java, sap cloud integration, sap activate, absl, sap coaching, sap landscape transformation, crm 7.0, javascript, abap oo, custom sap solutions, finance, productivity, information technology & services, financial services",'+49 621 4518010,"Outlook, Microsoft Office 365, Mobile Friendly, Apache, WordPress.org, Shutterstock, Google Analytics, Remote, AI, Python, SAP, CPI","",Merger / Acquisition,0,2022-12-01,6089000,"",69c281f11e946c0001efd38a,7375,54151,"contrimo Consulting offers advice and implementation support in the SAP world. + +We will take responsibility for the realisation of your SAP project, +starting with a complete review of existing systems and concept, +on to implementation and customisation and finally through coaching and support. + +Take advantage of our competence in the following areas: + +CRM +ERP +BI +EWM +Project Management +Outsourcing + +For further information please visit: www.contrimo.com + +COMPANY INFORMATION: http://www.contrimo.com/impressum-2",2010,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e74e2d8dc42a0001ce176f/picture,"","","","","","","","","" +SYZYGY,SYZYGY,Cold,"",150,marketing & advertising,jan@pandaloop.de,http://www.syzygy.de,http://www.linkedin.com/company/syzygy-deutschland,"","","",Frankfurt,Hesse,Germany,"","Frankfurt, Hesse, Germany","brandidentitymanagement, analytics, influencer marketing, campaigns, media, business innovation, newslettering, customer insights, conversion, content, pattern libraries, performance, storytelling, digitale transformation, experience, strategie, prototyping, plattform, ecommerce, creative production, insights, crm, aktivierung, advertising services, ux/ui design, digital strategy, content management, customer data platforms, experience metrics, retail, customer journey, information technology and services, experience design, b2c, consulting, campaign management, technology integration, user experience, customer ecosystem, digital ecosystem development, content creation, customer loyalty programs, marketing and advertising, agile delivery, customer experience, digital product development, experience orchestration, data-driven decisions, services, performance marketing, experience monitoring, customer journey mapping, customer feedback loops, technology consulting, performance optimization, e-commerce, business impact, data analytics, d2c, digital experience, platform architecture, cloud solutions, end-to-end services, customer engagement, b2b, digital experiences, human-centric design, digital transformation, agile methodology, a/b testing, omnichannel marketing, content strategy, management consulting services, digital experience consulting, human-centric-thinking, content personalization, digital media, consumer products & retail, information technology & services, consumer internet, consumers, internet, sales, enterprise software, enterprises, computer software, marketing & advertising, marketing, ux, management consulting, cloud computing",'+49 69 710414100,"Amazon CloudFront, MailJet, Outlook, Microsoft Office 365, Amazon AWS, GitLab, Sophos, Amazon SES, Apache, Linkedin Marketing Solutions, Google Analytics, WordPress.org, Google Font API, Mobile Friendly, Google Maps, Vimeo, Google Tag Manager, Remote","","","","",72000000,"",69c281f11e946c0001efd38f,7375,54161,"SYZYGY is a prominent consulting and implementation partner for digital experiences in Germany, with over 28 years of experience. The company focuses on creating positive digital experiences that enhance customer relationships and drive business success for brands and enterprises. + +The company operates across four key service areas: strategy development, marketing solutions, creating relevant experiences throughout the customer journey, and delivering measurable results. SYZYGY emphasizes human-centric thinking and a deep understanding of brands, products, and technologies to develop effective strategies and initiatives. + +In addition to its consulting services, SYZYGY publishes research on digital trends, including insights on artificial intelligence and future marketing strategies. The company is publicly traded, providing investor information and stock price tracking through its investor relations portal.",1995,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6820de509d821c000112a13e/picture,SYZYGY AG (syzygy-group.net),57c48a1ba6da98165bbaf44e,"","","","","","","" +sector27 GmbH,sector27,Cold,"",75,information technology & services,jan@pandaloop.de,http://www.sector27.de,http://www.linkedin.com/company/sector27-gmbh,"","",34 Storchsbaumstrasse,Dorsten,North Rhine-Westphalia,Germany,46282,"34 Storchsbaumstrasse, Dorsten, North Rhine-Westphalia, Germany, 46282","mobile security, webdesign, mobile workplace, mobile filesharing, hosting, enterprise mobility solutions, cloud, apps, itinfrastructure, managed service, websites, server, it services & it consulting, data center, consulting, endpoint security, hybrid cloud, services, asset management, bsi it-grundschutz, wireless solutions, mobile device management, computer systems design and related services, mobile solutions, it-security, uem solutions, backup & recovery, softwareentwicklung, 5g business solutions, microsoft 365, compliance, cloud solutions, managed services, b2b, data center infrastructure, software development, it-consulting, nis 2 compliance, it-infrastruktur, hybrid arbeitsplätze, cybersecurity, information technology and services, fleet management, softwareentwicklung mobile apps, network security, business continuity, iot connectivity, internet, information technology & services, web design, internet service providers, cloud computing, enterprise software, enterprises, computer software",'+49 236 2921230,"Outlook, Microsoft Office 365, Mobile Friendly, Apache, TYPO3, Google Tag Manager, Jamf","","","","","","",69c281f11e946c0001efd394,7371,54151,"sector27 GmbH is a German IT system house established in 1998, based in Dorsten, North Rhine-Westphalia. The company specializes in secure IT infrastructure, cybersecurity, communication solutions, and custom software development. With approximately 73 employees, sector27 operates nationwide in Germany and has additional branches in Leipzig. + +As a managed service provider, sector27 offers a range of IT services, including data center planning, virtualization, hosting, and backup solutions. The company focuses on cybersecurity, providing IT security solutions and mobile security. It also delivers modern workplace solutions, such as Microsoft 365 and mobile device management. Through its subsidiary, solcentrix, sector27 offers Device-as-a-Service, ensuring global mobile workplace support. The company partners with industry leaders like IBM, Veeam, and Ericsson to enhance its service offerings, particularly in mobile network solutions for emergency services. Sector27 targets critical infrastructures, e-government, and businesses requiring secure IT solutions.",1998,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68bfe172b1ea12000152ac8d/picture,"","","","","","","","","" +Noxum GmbH,Noxum,Cold,"",57,information technology & services,jan@pandaloop.de,http://www.noxum.com,http://www.linkedin.com/company/noxum-gmbh,https://www.facebook.com/Noxum,https://twitter.com/noxum,5 Beethovenstrasse,Wuerzburg,Bavaria,Germany,97080,"5 Beethovenstrasse, Wuerzburg, Bavaria, Germany, 97080","consulting, bmecat, mobile solutions, content management, product information management, web development, cloud computing, industry 40, ki, information management, gpt, ai, it services & it consulting, ai development, content management and publishing, xml editor, secure content management, cloud consulting, content publishing, user experience, technical documentation, b2b, e-commerce, microsoft azure, multi-tenant cloud solutions, digital content management, enterprise content management, customer-specific solutions, data management, content creation, e-commerce integration, smart documentation, pim, product data synchronization, content workflow automation, spare parts portal, headless cms, interactive catalogs, novadb, multi-channel distribution, computer systems design and related services, knowledge database, information technology and services, content delivery portal, ai-powered content management, content integration, media assets management, content synchronization, web portals, iirds implementation, content security, services, content delivery, ai consulting, retail, content translation, automation, spare parts management, noxum publishing studio, xml editing system, cms, secure infoportal, knowledge database 2.0, content management system, content lifecycle management, variant management, media-neutral information processes, future-proof technical communication, responsive content management, digital transformation, cloud solutions, metadata management, manufacturing, data integration, content automation, hotspot detection in spare parts, content management apis, variant management for complex products, integrated product data solutions, media asset management, education, distribution, information technology & services, enterprise software, enterprises, computer software, it management, ux, consumer internet, consumers, internet, mechanical or industrial engineering",'+49 931 465880,"MailJet, Sendgrid, Outlook, Microsoft Azure Hosting, Slack, Mobile Friendly, Remote, AI","","","","",260000,"",69c281f11e946c0001efd396,7375,54151,"Innovation Since 1996: The Story of Noxum GmbH + +For over 25 years, Noxum GmbH has been a reliable provider of information management solutions and a trusted partner for sustainable business success. Our diverse product portfolio includes modern developments such as the web-based headless CMS and PIM system NovaDB, as well as XML editorial systems like the Noxum Publishing Studio, designed specifically for creating complex technical documentation. + +Our primary goal is to support companies in achieving their business objectives and optimizing operational processes. We focus on approaches that meet the current needs of our customers while also opening up future-oriented opportunities. + +Our esteemed customers include AUDI AG, JURA Elektroapparate AG, NürnbergMesse GmbH, KUKA AG, Dr. Ing. h.c. F. Porsche AG, STIFTUNG WARENTEST, and ZF Friedrichshafen AG, who rely on our expertise to sustainably enhance their information and communication processes.",1996,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/686b1fa35d1bb400011f049d/picture,"","","","","","","","","" +Flowbit AI,Flowbit AI,Cold,"",11,information technology & services,jan@pandaloop.de,http://www.flowbitai.com,http://www.linkedin.com/company/flowbit-ai,"","","",Heilbronn,Baden-Wuerttemberg,Germany,74072,"Heilbronn, Baden-Wuerttemberg, Germany, 74072","software development, system deployment in weeks, digital transformation, workflow automation, ai automation, enterprise ai, automation deployment, ai for procurement, ai automation for smes, business process automation, management consulting, predictive analytics, ai compliance monitoring, data security, ai for trade regulation, ai for logistics, ai for finance, consulting, business intelligence, ai solutions, fixed-cost pricing, computer systems design and related services, b2b, machine learning, ai for sales lead generation, crm, manufacturing, enterprise system integration, roi-driven solutions, ai analysis and inference, business efficiency, cost optimization, automation, sap, ai transformation, cost savings, business services, system integration tools, data analysis, crm automation, finance, ai agents, logistics, ai analysis, process optimization, sap integration, ai cost reduction, roi-driven ai solutions, german mittelstand, services, ai for manufacturing, system integration, saas, transportation & logistics, information technology & services, enterprise software, enterprises, computer software, computer & network security, analytics, artificial intelligence, sales, mechanical or industrial engineering, data analytics, financial services","","Outlook, Amazon AWS, Mobile Friendly","","","","","","",69c281f11e946c0001efd39b,3571,54151,"Flowbit AI is a technology company that specializes in AI-driven automation solutions aimed at optimizing business processes for enterprise clients, particularly in the manufacturing and robotics sectors. Their main focus is on automating data workflows related to purchase orders, delivery notes, contracts, and syncing partner data with systems like ERP and CRM. This automation helps reduce manual data entry, speeds up operations, and minimizes errors, leading to significant cost savings and efficiency improvements. + +The company offers fixed-cost, ROI-driven AI solutions with transparent pricing, avoiding hourly rates or hidden fees. Their tools are designed to handle repetitive tasks such as document data extraction, lead discovery, compliance reporting, and supplier interactions. Flowbit AI also promotes quick wins through ""Value Starters,"" which assist businesses in identifying and implementing straightforward automation enhancements. Their solutions integrate seamlessly with existing enterprise software ecosystems, streamlining complex business processes and improving workflow efficiency.",2025,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69a9694eaf0c7200017e36f1/picture,"","","","","","","","","" +MSP AG,MSP AG,Cold,"",44,information technology & services,jan@pandaloop.de,http://www.mspag.com,http://www.linkedin.com/company/msp-ag,https://www.facebook.com/mspag.de,"",17 Virchowstrasse,Hamburg,Hamburg,Germany,22767,"17 Virchowstrasse, Hamburg, Hamburg, Germany, 22767","itservices support, software development distribution, product information management, digital asset management, process consulting, multichannel management, itservices amp support, marketing automation, software development amp distribution, it services & it consulting, content localization, content collaboration, proofhq integration, pim, content management, download portal, digital transformation, media neutral xml, retail module, workflow optimization, omnichannel management, services, content hub, information technology and services, dam, media portal, it infrastructure, content synchronization, in-memory graph database, retail, content management system, campaign management, content creation, media management, workflow automation, process optimization, media asset management, project management, b2b, workfront connector, process automation, asset management, customer engagement, computer systems design and related services, it services, cloud solutions, content production, work management, wholesale trade, marketing software, system integration, software development, content distribution, content automation, api integration, semantic relations, digital marketing, enterprise software, consulting, it consulting, campaign automation, e-commerce, distribution, consumer_products_retail, marketing & advertising, saas, computer software, information technology & services, enterprises, productivity, cloud computing, management consulting, consumer internet, consumers, internet",'+49 40 319916190,"Outlook, Slack, Hubspot, Nginx, Google Tag Manager, YouTube, Mobile Friendly, Copilot, Zopim, Barracuda MSP","","","","","","",69c281f11e946c0001efd38b,7375,54151,"Die MSP AG ist ein Hamburger IT- und Softwareunternehmen mit Expertise in den Bereichen Entwicklung, Systemintegration, Prozessberatung und IT-Service. Zu unseren Kunden zählen einige von Deutschlands größten Einzelhändlern aus den Bereichen Lebensmittel, Mode, Design, Versicherungen, Bau-, Heimwerker- und Haushaltsbedarf sowie verschiedene Unternehmen aus dem Dienstleistungssektor. + +Unsere Geschäftsbereiche für effiziente und stabile Arbeitsprozesse: + +MSP Marketing Efficiency: Steigern Sie Ihre Produktivität und erreichen Sie optimale Ergebnisse für Ihr Marketing. Wir begleiten Sie auf dem Weg dorthin. Effiziente Prozesse und Workflows machen die tägliche Arbeit einfacher und schaffen Raum für Kreativität. Möglich ist dies über das Universal Content Management von censhare. Damit haben Sie Ihre Daten und Inhalte im Griff, reduzieren den Verwaltungs- und Abstimmungsaufwand und können alle Kommunikationskanäle über ein System bedienen. + +MSP IT-Service: Leistungsfähige und effiziente IT-Prozesse sind die Basis für fast jedes Geschäftsfeld und Unternehmen. Damit alles rund läuft und Sie sich auf Ihre Kernaufgaben konzentrieren können, kümmern wir uns bei Bedarf um Ihre komplette IT-Infrastruktur. Dazu gehören neben umfassenden Beratungs-, Planungs- und Implementierungsleistungen auch IT-Einkauf, Administration, Wartung, Monitoring, Support und Dokumentation. Wir sind in ganz Deutschland und auch über die Landesgrenzen hinaus für Sie im Einsatz. + +Unsere aktuellen Stellenausschreibungen finden Sie hier: +https://www.mspag.com/de/unternehmen/karriere + +Foto: Martina van Kann: https://www.martina-van-kann.de",2004,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670f42f2b09994000109682d/picture,"","","","","","","","","" +netpoint.,netpoint,Cold,"",97,information technology & services,jan@pandaloop.de,http://www.netpoint.de,http://www.linkedin.com/company/netpoint-gmbh,"","",18 Madrider Strasse,Moenchengladbach,North Rhine-Westphalia,Germany,41069,"18 Madrider Strasse, Moenchengladbach, North Rhine-Westphalia, Germany, 41069","integration, development, consulting, support, operations, it services & it consulting, ai-supported wlan, security, it consulting, cloud governance, resource management, services, cloud management, zero trust networking, workplace management, security & auditing, managed service, collaboration management, data security, it services, on-site support, endpoint management, asset management, it support, information technology and services, it strategy & advisory, sd-wan implementation, computer systems design and related services, b2b, infrastructure management, endpoint security, policy & compliance management, sap carve-out, migration services, information technology & services, management consulting, cloud computing, enterprise software, enterprises, computer software, computer & network security",'+49 21 61495240,"Outlook, Microsoft Office 365, Nginx, Cedexis Radar, Google Tag Manager, Typekit, Vimeo, Adobe Media Optimizer, WordPress.org, Mobile Friendly, Remote, Ansible, ServiceNow, Microsoft Intune Enterprise Application Management, Microsoft Azure Monitor, Microsoft 365, Microsoft Defender for Cloud, Microsoft Teams, Microsoft 365 Apps & Services, Azure Virtual Desktop, Microsoft PowerShell","","","","",7629000,"",69c281f11e946c0001efd390,7379,54151,"Netpoint GmbH is a German IT service company based in Mönchengladbach, North Rhine-Westphalia, with an additional office in the USA. Founded in 1993, the company specializes in customized IT services for medium-sized and global corporations, focusing on innovative technology solutions that provide a competitive advantage. + +The company offers a wide range of IT services, including cloud services and server/cloud security, IT strategy consulting, and collaboration tools. Netpoint forms flexible project teams tailored to client needs, ensuring reliable support across various technologies. They maintain Competence Centers to keep their specialists up-to-date with rapid technological advancements, enhancing the value delivered to customers. + +With a workforce of approximately 89 employees and an estimated revenue of around $6.3 million, Netpoint is positioned as a mid-sized IT service provider dedicated to innovation and customer partnership. Their customer-centric approach allows them to scale solutions effectively for diverse organizations.",1993,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68c13a8ee81b2e000166fe2e/picture,"","","","","","","","","" +O'Donovan Consulting AG,O'Donovan Consulting AG,Cold,"",14,management consulting,jan@pandaloop.de,http://www.odonovan.de,http://www.linkedin.com/company/o'donovan-consulting-ag,"","",59 Kaiser-Friedrich-Promenade,Bad Homburg,Hesse,Germany,61348,"59 Kaiser-Friedrich-Promenade, Bad Homburg, Hesse, Germany, 61348","crm, consulting, digitaler kundenservice, customer experience, omni channel management, zukunft der it ausrichtung, kundenzufriedenheit, agiles projektmanagement, cem, digitalisierung, self service, customer care audit, digitale transformation, kundenzentrierung, customer journey, contact center excellence, customer service, projektmanagement, chatbots, business consulting & services, kundenanalyse, organisationsentwicklung, process optimization, training & coaching, customer service automation, management consulting, services, customer service transformation, leadership development, customer journey mapping, b2c, kundenorientierung, kundenfeedback, organizational development, customer data analytics, business transformation, customer feedback, management consulting services, kulturwandel, kpis, customer experience consulting, agile methoden, organisationsberatung, kundenfokus, prozessoptimierung, customer service strategy, change management, customer service improvement, customer insights, kundenbindung, customer loyalty, customer service strategy development, customer experience design, customer centricity, b2b, customer service optimization, customer satisfaction, customer service culture, kundenerlebnis, digital transformation, customer service kpis, customer service digitalization, performance management, kundenservice, customer service digital transformation, customer service excellence, customer engagement, customer data, customer feedback management, customer service innovation, innovationsmanagement, finance, non-profit, sales, enterprise software, enterprises, computer software, information technology & services, financial services, nonprofit organization management",'+49 61 72689770,"Outlook, Microsoft Office 365, Hubspot, Vimeo, Nginx, Hotjar, Mobile Friendly, WordPress.org, Google Tag Manager, Linkedin Marketing Solutions, Remote","","","","","","",69c281f11e946c0001efd398,8742,54161,"The service enhancements we develop for you will not only have an impact on your organization but more importantly, will be very apparent to your customers. Service excellence begins and ends with your customers' perceptions and for this reason, we focus our efforts on creating value in the following three areas: + +Innovation +Consistently and effectively meeting customer expectations while constantly striving to exceed them - that is our interpretation of innovative management to achieve service enhancements and results + +Business processes +Optimizing the operational and economic efficiency of business processes - with special emphasis on key customer service innovations. + +IT-Management +To enhance the role of IT as a business partner who offers key support to core processes and therefore, positioning IT as a major service enabler.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66dc31739e28ab0001dccf83/picture,"","","","","","","","","" +INNEX GmbH,INNEX,Cold,"",48,information technology & services,jan@pandaloop.de,http://www.innex.net,http://www.linkedin.com/company/innex-gmbh,https://www.facebook.com/innexdach,"",2-8 Leopoldstrasse,Herford,Nordrhein-Westfalen,Germany,32051,"2-8 Leopoldstrasse, Herford, Nordrhein-Westfalen, Germany, 32051","it services & it consulting, digital transformation, project management, it consulting, digitalisierung, ifs cloud lösungen, it betrieb, evergreen software updates, data security, sp_data integration, business process optimization, consulting, erp-implementierung, automatisierte prozesssteuerung, information technology and services, systemintegration, data management, change management erp, it-development, computer systems design and related services, cloud computing, b2b, it monitoring, manufacturing, enterprise software, softwareentwicklung, it-infrastruktur, ki lösungen, it support, distribution, cloud & it strategie, iot integration, maschinelles lernen, nxtools entwicklung, transportation & logistics, it projektmanagement, it infrastruktur design, boomi plattform, branchenfokus maschinenbau, hybrid cloud lösungen, software development, kundenspezifische software, datafox sicherheitslösungen, it-beratung, custom software, services, erp-beratung, system integration, it infrastructure, transportation_&_logistics, information technology & services, productivity, management consulting, computer & network security, enterprises, computer software, mechanical or industrial engineering",'+49 5221 1045801,"Outlook, Microsoft Office 365, Google Tag Manager, Woo Commerce, Google AdWords Conversion, DoubleClick, WordPress.org, Mobile Friendly, Vimeo, Google Dynamic Remarketing, DoubleClick Conversion, Nginx","","","","","","",69c281f11e946c0001efd388,7375,54151,"INNEX GmbH is a German IT services company based in Herford, Nordrhein-Westfalen. The company specializes in custom software development, application development, and maintenance services, with a strong emphasis on Enterprise Resource Planning (ERP) and Enterprise Service Management solutions. As a Gold Partner of IFS Deutschland GmbH & Co. KG, INNEX focuses on delivering innovative IT solutions that help businesses transition to a digital future. + +The company offers a variety of services centered around IFS ecosystems, including redeployment of IFS Cloud, upgrade projects, application development, and managed services. INNEX also provides digital project planning, in-house digital consulting, and recruitment services. With a team of approximately 36 professionals, INNEX fosters a collaborative work environment and emphasizes long-term partnerships to create practical, industry-agnostic solutions. Key products include IFS Cloud, SP_Data Payroll Solution, Boomi integration platform, and Datafox Hardware Solutions.",2015,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68844a05174670000116d1f6/picture,"","","","","","","","","" +Infinigate MSP,Infinigate MSP,Cold,"",21,"",jan@pandaloop.de,http://www.infinigate.de,"","","",2 Mailaender Strasse,Hanover,Lower Saxony,Germany,30539,"2 Mailaender Strasse, Hanover, Lower Saxony, Germany, 30539","it-security solutions, distribution, marketing services, ot security, technical support, privileged access management (pam), threat intelligence, security policy orchestration, security consulting, web security, security operations center, b2b, e-invoicing, risk & compliance management, it infrastructure, cloud security, endpoint security, pre-sales support, penetration testing, channel services, information technology and services, vulnerability management, distributor, webshop, computer systems design and related services, firewall, security trainings, data security, web application firewall (waf), e-commerce, partner portal, data & application security, remote management & monitoring (rmm), threat detection, unified communications security, api security, network security, awareness services, channel partner, technical trainings, services, vulnerability assessment, security automation (soar), security solutions, msp portal, data loss prevention (dlp), incident response (mtr), risk & compliance, backup & recovery, post-sales support, consulting, cloud computing, it-infrastructure, security operations, data encryption, security operations (soar), identity management, cloud infrastructure, managed services, distribution services, it-security, cloud services, event support, partner support, risk management, cloud access security broker (casb), ddos protection, cybersecurity, project support, identity & access management, sales support, security automation, finance, marketing & advertising, information technology & services, computer & network security, consumer internet, consumers, internet, enterprise software, enterprises, computer software, privacy, internet infrastructure, financial services",'+49 89 890480,"MailJet, Outlook, Microsoft Office 365, Autotask","","","","",7000000,"",69c281f11e946c0001efd38d,7375,42343,"Gemeinsam erfolgreich! + +Entstanden aus einem Systemhaus im Jahr 2007 stellt Infinigate MSP seinen Partnern ein fokussiertes Lösungs-Portfolio und tiefes Know-how in den Bereichen Managed Services, IT Security, Cloud Infrastructure, Unified Communications und Systemhaus Software bereit. Mit innovativen Managed-Services-Konzepten sowie verzahnten Prozessen und Technologien verhilft der Value Added Distributor seinen Partnern zu zufriedenen Kunden und mehr monatlichen Roherträgen. Neben einem erreichbaren, kompetenten technischen Support begleitet Infinigate MSP seine Partner mit einem Team aus praxiserfahrenen Consultants in allen Phasen des Vertriebsprozesses und bei Implementierungen. Infinigate MSP ist seit Oktober 2021 ein Geschäftsbereich der Infinigate Deutschland, der aus dem Zusammenschluss mit der acmeo GmbH entstanden ist. Über 1.800 aktive Systemhauspartner vertrauen der Expertise und gelangen durch die Infinigate MSP MEHRwerte auf das nächste Managed Services Level: + +- MEHR Service von Beginn an (Business-Modell, Vertragsvorlagen, Kalkulatoren) +- MEHR technischer Support (Consulting, Scripting, 24/7-Hotline*) +- MEHR Praxiswissen (Tech-Blog, Infothek, Seminare & Workshops für Vertrieb, Technik und Führungskräfte) + +*Erfordert separate Vereinbarung. + +About Infinigate MSP + +Having emerged from a Managed Services Provider in 2007, Infinigate MSP provides its partners with a focused solution portfolio and in-depth know-how in managed services, IT security, cloud infrastructure, unified communication and software for IT resellers themselves. With managed services concepts, technical support and interlocking processes and technologies, the value-added distributor supports its 1,800 partners in satisfying their customers and increasing their monthly gross profits.",2007,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6531b22949c96d00012c7914/picture,Infinigate Deutschland,5b860083f874f73e83729053,"","","","","","","" +TSO-DATA,TSO-DATA,Cold,"",120,information technology & services,jan@pandaloop.de,http://www.tso.de,http://www.linkedin.com/company/tso-de,https://www.facebook.com/TSODATA,https://twitter.com/tsodata,10 Preussenweg,Osnabrueck,Lower Saxony,Germany,49076,"10 Preussenweg, Osnabrueck, Lower Saxony, Germany, 49076","nav branchenloesungen, katargo nav branchenloesung versandhandel, targit business intelligence, microsoft sharepoint, katargo nav branchenloesung gross und versandhandel, service und support, microsoft dynamics 365, cloudloesungen, hybridloesungen, schulungen, erp, microsoft dynamics nav, itinfrastruktur, crm, dms, roasting 365, microsoft dynamics crm, ls central, bi, gdpr toolbox, warehouse logistics, cloud solutions, ls central add-ons, web marketplace connection, webshop integration, power bi, business intelligence, erp software, it project methodology, event management, m-files, hardware and network, pos hardware, microsoft partner, e-commerce, consulting, fully automatic document processing, it support, artificial intelligence, power dashboards, staff unite recruiting module, targit decision suite, data analytics, it solutions, sharepoint integration, data privacy - gdpr, it security solutions, edi, computer systems design and related services, b2b, warehouse management, time and personnel management, logistics management, business software, webshop marketplace integration, retail, mobile working, visit management in crm, information technology and services, document management, it consulting, it security, data exchange, industry solutions, custom software development, services, it infrastructure, modern workplace, powerstart, dms connector for business central, business central, business consulting, wholesale trade, finance, distribution, sales, enterprise software, enterprises, computer software, information technology & services, cloud computing, analytics, events services, point of sale, payments, financial services, consumer internet, consumers, internet, management consulting, computer & network security",'+49 541 13950,"Outlook, MailChimp SPF, reCAPTCHA, Google Dynamic Remarketing, Typekit, Vimeo, Adobe Media Optimizer, TYPO3, Google AdWords Conversion, WordPress.org, Etracker, Cedexis Radar, Google Remarketing, Google Tag Manager, DoubleClick, DoubleClick Conversion, Apache, Mobile Friendly, Google AdSense, , , AMP, Microsoft 365, Microsoft Active Directory Federation Services, Microsoft Azure Monitor, Microsoft Defender for Cloud, Microsoft Entra ID, Microsoft Exchange Server 2003, Microsoft Hyper-V Server, Microsoft Intune Enterprise Application Management, Microsoft SQL Server Reporting Services, Microsoft Windows Server 2012, WatchGuard, Visual Studio Code, GitHub, Copilot, ChatGPT, PowerBI Tiles, GitHub Copilot, Azure App Service, Argo, Microsoft Fabric, SQL","","","","","","",69c281f11e946c0001efd38e,7375,54151,"TSO-DATA is a German IT system integrator and Microsoft partner, established in 1991. The company specializes in enterprise software solutions, including ERP, CRM, business intelligence, document management, and cloud services. With headquarters in Osnabrück and additional offices in Nuremberg, Berlin, Bremen, and Hamburg, TSO-DATA employs over 200 people and has been a Microsoft partner for nearly 20 years. + +The company offers a range of services, such as consulting and implementation for Microsoft Dynamics 365 Business Central, CRM deployment, analytics solutions, and cloud infrastructure support. TSO-DATA also develops industry-specific solutions like KatarGo for mail order and e-commerce businesses, and LS Central for retail operations. Their expertise spans various retail segments, including electronics, fashion, and grocery stores, primarily serving clients in Germany and Austria. TSO-DATA collaborates with leading technology providers to enhance their offerings and maintain a strong focus on customer support.",1991,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/687c81415cba71000158d859/picture,"","","","","","","","","" +Lemundo GmbH,Lemundo,Cold,"",36,information technology & services,jan@pandaloop.de,http://www.lemundo.de,http://www.linkedin.com/company/lemundo,https://de-de.facebook.com/lemundogmbh,"",28 Lerchenstrasse,Hamburg,Hamburg,Germany,22767,"28 Lerchenstrasse, Hamburg, Hamburg, Germany, 22767","online marketing strategie, shopware, online shop development magento, ecommerce strategy, online marketing, suchmaschinenwerbung, digital transformation, sea, bing ads, consulting, online marketing strategy, instagram ads, performance marketing, facebook ads, ecommerce, google ads, webentwicklung, google adwords, technology, information & internet, b2c, data & analytics, data-driven marketing, e-commerce, services, erp & pim integration, customer journey optimization, b2b, complex product configurators, computer systems design and related services, manufacturing, personalization, content management, information technology, content supply chain optimization, omni-channel marketing, automation, d2c, content & commerce, shop system demos, e-commerce beratung, multi-channel marketing, automated content production, shop system auswahl, it-beratung & it strategie, ai content creation, ai in customer service, content asset management system, configurable product solutions, ai tools, content configuration, it consulting, platform selection, search engine optimization, marketing automation, ai / machine learning in e-commerce, complex products, shop development, content & data automation, shop system selection, content & commerce integration, ai & machine learning, customer experience, ai-driven personalization, e-commerce strategy, marketplace solutions, software development, video marketing, multi-channel customer experience, ki / ai beratung, marketplace integration, pim system, automatisierung, full funnel marketing, headless commerce, digital experience (dx) space, content asset management, content supply chain, b2b e-commerce, b2b & d2c solutions, data strategy, customer journey mapping, erp integration, retail, omni-channel strategy, platform integration, d2c e-commerce, digital marketing, healthtech, shop integration, social media marketing, d2c commerce, b2b commerce, ai & data-driven workflows, content personalization, customer journey, content optimization, full-funnel marketing, digital experience platform, customer insights, content & asset optimization, content localization & internationalization, financial services, customer engagement, content automation, customer data platform, seo & sem, finance, distribution, consumer_products_retail, transportation_logistics, marketing & advertising, consumer internet, consumers, internet, information technology & services, marketing, mechanical or industrial engineering, management consulting, seo, search marketing, saas, computer software, enterprise software, enterprises",'+49 40 22868300,"Gmail, Google Apps, Microsoft Office 365, React Redux, GitLab, Hubspot, YouTube, Google Tag Manager, Apache, Mobile Friendly, WordPress.org, Google, Magento","","","","","","",69c281f11e946c0001efd384,7375,54151,"Lemundo GmbH is a full-service digital agency and E-Commerce consultancy founded in 2009, with offices in Hamburg and Stuttgart. The company specializes in sustainable growth for brands and manufacturers through B2B and D2C solutions in digital marketing and E-Commerce. Lemundo emphasizes holistic, data-driven strategies that integrate technology, online marketing, and entrepreneurial thinking to achieve measurable ROI and long-term growth. + +The agency offers a range of services across three core areas: digital marketing, consulting, and E-Commerce. Their digital marketing services focus on creating data-based marketing concepts that enhance brand storytelling across various channels. In consulting, they provide strategic guidance for digital transformation, including customer journey mapping and ROI-focused strategies. For E-Commerce, Lemundo develops personalized platforms using technologies like Shopify and Magento to improve user engagement and operational efficiency. The team is committed to continuous learning and innovation, fostering a collaborative environment that prioritizes agility and sustainability.",2009,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/686d8569cb28c40001971e31/picture,"","","","","","","","","" +Medienwerft Agentur für digitale Medien und Kommunikation GmbH,Medienwerft Agentur für digitale Medien und Kommunikation,Cold,"",68,information technology & services,jan@pandaloop.de,http://www.medienwerft.de,http://www.linkedin.com/company/medienwerft-gmbh,https://facebook.com/medienwerft,https://twitter.com/medienwerft,130 Wendenstrasse,Hamburg,Hamburg,Germany,20537,"130 Wendenstrasse, Hamburg, Hamburg, Germany, 20537","sap commerce, social media, lean commerce, ui design, headless commerce, kuenstliche intelligenz, uxui design, ux design, brands, emporix, ecommerce, ux transformation, online marketing, visual design, commercetools, eporix, marketing automation, mach, software development, ai agents & prozessoptimierung, tco reduction, computer systems design and related services, sap spartacus, e-commerce it, digital transformation, ai in e-commerce, consulting, sap composable storefront, e-mail marketing, lcs middleware, replatforming, cloud migration, information technology and services, sap cx, mach architecture, composable commerce, generative ki, api-first, email marketing, digital marketing, customer engagement, product information management, ux/ui design, services, seo, product search & discovery, customer journey, customer experience, search engine optimization, sap commerce cloud, b2c, alokai, cloud infrastructure, customer experience design, performance optimization, b2b, d2c, microservices, e-commerce, content marketing, system integration, vue storefront, social media marketing, searchandizing, decoupled storefronts, data analytics, retail, manufacturing, distribution, consumer_products_retail, consumer internet, consumers, internet, information technology & services, marketing & advertising, saas, computer software, enterprise software, enterprises, search marketing, marketing, internet infrastructure, mechanical or industrial engineering",'+49 40 3177990,"Outlook, Microsoft Office 365, Atlassian Confluence, Zendesk, Jira, Hubspot, DoubleClick Conversion, Linkedin Marketing Solutions, reCAPTCHA, Mobile Friendly, Bing Ads, Hotjar, Facebook Widget, Facebook Custom Audiences, DoubleClick, Apache, WordPress.org, Google Tag Manager, Google Dynamic Remarketing, Google Font API, YouTube, Facebook Login (Connect), AI, React, SAP Spartacus, Angular, TypeScript, SAP ERP, SAP","",Merger / Acquisition,0,2016-09-01,"","",69c281f11e946c0001efd385,7375,54151,"Medienwerft Agentur für digitale Medien und Kommunikation GmbH is a full-service digital agency based in Germany, specializing in Customer Experience (CX) and E-Commerce IT. Founded in 1996, it is part of the international FIS Group and employs over 850 professionals. The agency is recognized for its comprehensive services that include consulting, creation, technology, and online marketing, with a strong focus on innovative IT solutions and deep SAP ERP integration. + +As an SAP Commerce Gold Partner, Medienwerft delivers end-to-end processes for B2B and B2C clients across various sectors, including retail and brand manufacturing. The agency has successfully implemented over 250 e-commerce projects using technologies such as SAP Commerce Cloud, Emporix, and commercetools. Its offerings encompass CX design, headless e-commerce solutions, online marketing strategies, and AI-optimized processes, all while ensuring GDPR compliance and flexible IT sourcing for scaling projects. Prominent clients include Volkswagen Zubehör, mobilcom-debitel, and Ernsting’s family.",1996,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69576459f6f4290001877908/picture,"","","","","","","","","" +dasilium GmbH,dasilium,Cold,"",14,information technology & services,jan@pandaloop.de,http://www.dasilium.de,http://www.linkedin.com/company/dasilium,"","",Kurfuerstenstrasse,Ludwigsburg,Baden-Wuerttemberg,Germany,71636,"Kurfuerstenstrasse, Ludwigsburg, Baden-Wuerttemberg, Germany, 71636","it consulting, automotive, sales, cloud transformation, software development, agile methodologies, manufacturing, change management, agile coaching, aftersales, test management, digital transformation, it architecture, internet of things, project management, it services & it consulting, it-projektmanagement, echtzeit-datenverarbeitung, cloud-migration, branchenfokus automotive, it-partnernetzwerk, management consulting services, it-roadmap, management consulting, software engineering, innovative technologien, maßgeschneiderte it-konzepte, branchenfokus manufacturing, information technology and services, sicherheitskonzepte, cybersecurity, hybrid projektmanagement, it-consulting, computer software, data analytics, microservices, cloud computing, b2b, it-qualitätsmanagement, it-infrastruktur, ki-integration, it-solutions, it-optimierung, it consulting and support, datenarchitektur, it-transformation, api-management, it-implementierung, agile methoden, risk management, legacy-systeme, skalierbare it-landschaft, process optimization, cloud solutions, it-governance, it-architektur, automatisierung, devops, it-sicherheit, user experience, it-strategie, digitale transformation, it-compliance, it-beratung, it-kooperationen, enterprise architecture, projektorganisationsberatung, datenanalyse, nachhaltige it-lösungen, information technology & services, mechanical or industrial engineering, information architecture, productivity, enterprise software, enterprises, ux",'+49 71 411469879,"Outlook, Microsoft Office 365, Mobile Friendly, Vimeo, Google Tag Manager, Nginx, WordPress.org","","","","","","",69c281f11e946c0001efd38c,7373,54161,"In der heutigen digitalen Welt ist es entscheidend, dass IT-Projekte nicht nur erfolgreich abgeschlossen, sondern auch auf höchstem Niveau ausgeführt werden. Bei dasilium bieten wir spezialisierte IT-Beratung an, um Ihre Projekte in allen Aspekten zu optimieren und zukunftssicher zu gestalten. + +Unser Ansatz umfasst eine umfassende Untersuchung und Optimierung Ihrer Projekte in den folgenden Bereichen: + +🔹 Organisation: Strukturieren und stärken Sie Ihr Team und Ihre Prozesse für maximale Effizienz. + +🔹 Vorgehensmodell: Implementieren Sie bewährte Methoden und agile Praktiken, um die Projektabwicklung zu beschleunigen und die Qualität zu steigern. + +🔹 Kundenorientierung: Stellen Sie sicher, dass Ihre IT-Lösungen die Bedürfnisse und Erwartungen Ihrer Kunden übertreffen. + +🔹 IT-Architektur: Gestalten und optimieren Sie Ihre IT-Architektur für Skalierbarkeit, Sicherheit und Leistung. + +🔹 Technologie-Stack: Nutzen Sie die neuesten Technologien und Tools, um Innovationen voranzutreiben und Wettbewerbsvorteile zu erzielen. + +Unser Ziel ist es, Ihre IT-Projekte auf ein neues Niveau zu heben und nachhaltigen Erfolg zu gewährleisten. Lassen Sie uns gemeinsam Ihre IT-Landschaft transformieren und Ihr Unternehmen in die digitale Zukunft führen. + + +Datenschutzerklärung: https://dasilium.de/datenschutz/ +Impressum: https://dasilium.de/impressum/",2023,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/690581b6ed05ab000107b517/picture,"","","","","","","","","" +brox IT-Solutions,brox IT-Solutions,Cold,"",16,information technology & services,jan@pandaloop.de,http://www.brox.de,http://www.linkedin.com/company/brox-it,"","",9 An der Breiten Wiese,Hanover,Lower Saxony,Germany,30625,"9 An der Breiten Wiese, Hanover, Lower Saxony, Germany, 30625","information management, enterprise search, it architecture, information logistics, itservices, semantic enterprise, it infrastructure, enterprise software, software, information excellence, it services & it consulting, it consulting, graph databases, datenanalyse, data quality, it sourcing, it governance, it contracting, it prozessmanagement, it projektmanagement, stakeholder management, consulting, software development, business intelligence auf graphenbasis, project management, business intelligence, it outsourcing, it compliance, services, semantic web, data governance, datenmanagement, it performance optimization, it transition management, devops prozesse, ki-gestütztes datenmanagement, taxonomies and ontologies, taxonomien anpassen, graph datenbanken, ai & data management, agile projektsteuerung, it transformation, graphbasierte entscheidungsfindung, agile methodology, data analysis, devops, graph plattformen, process optimization, data integration, management consulting services, it service management, management consulting, data structuring, information technology and services, it compliance standards, ontologien erstellen, datenintegration in unternehmen, datenmodellierung mit ontologien, data security, interdisciplinary teams, datenvisualisierung, cloud migration, it security, data analytics, semantic web standards, cloud & it operations, knowledge graphs, b2b, datenmodellierung, data governance standards, it service automation, automatisierte datenanalyse, data visualization, ontologien und taxonomien, datenintegration, it risk management, digital collaboration, business intelligence mit graphen, it lifecycle management, it strategy, finance, manufacturing, distribution, it management, information technology & services, enterprises, computer software, information architecture, productivity, analytics, outsourcing/offshoring, computer & network security, financial services, mechanical or industrial engineering",'+49 511 3365280,"Google Tag Manager, WordPress.org, Mobile Friendly, Google Font API, Shutterstock, Nginx, Remote","",Other,0,2015-09-01,"","",69c281f11e946c0001efd391,7375,54161,"brox IT-Solutions GmbH is an IT consultancy that offers its costumers pioneering solutions for their digital future. As a premium business and technology partner we provide highly diverse and qualified IT-consulting services for multinational corporations and medium-sized companies in the areas of IT Sourcing Management, Information Management, IT-Architecture & Infrastructure and IT Lifecycle Management. + +With more than 25 years of experience our team offers you the expertise you need to succeed in the digital transformation. + +We know how to succeed.",1998,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66fb7d9fa842320001bd0b10/picture,"","","","","","","","","" +MAXWORX GmbH,MAXWORX,Cold,"",26,information technology & services,jan@pandaloop.de,http://www.maxworx.com,http://www.linkedin.com/company/maxworx-gmbh,https://www.facebook.com/maxworxgmbh/,"",8 Brueckenstrasse,Bad Soden-Salmuenster,Hesse,Germany,63628,"8 Brueckenstrasse, Bad Soden-Salmuenster, Hesse, Germany, 63628","machine learning, tax37, office 365, dynamics 365, intune, it outsourcing, microsoft security, microsoft 365, digitalisierung, softwareloesungen, microsoft azure, device management, mobile device management, schadensmanagement, beratung, cloudloesungen, it support, appentwicklung, it managed services, itsm, it security, it services & it consulting, it-beratung, it-performance monitoring, it-architektur, it-change management schulungen, information technology & services, it-compliance beratung, it-security, microsoft 365 adoption, azure, it-risikoanalyse, it-asset management, it consulting, it-sicherheitszertifizierung, it-services, it-optimierung, managed services, on-premises solutions, cloud computing, it-infrastruktur, cloud security, data security, compliance, it-implementierung, cybersecurity, automatisierung, security, it-automatisierung, on-premises, it-support, it-integration, it-notfallmanagement, microsoft power platform integration, it-entlastung, hybrid-it, it-training, it-sicherheitsarchitektur, it-transformation, azure cloud migration, it-prozesse, erp-lösungen, it-dienstleister, it-strategie, services, software development, hybrid cloud, it-consulting, computer systems design and related services, it-modernisierung, crm-lösungen, it-entwicklung, it-prozessoptimierung, change management, microsoft 365 & azure, it-services management, sicherheitslösungen, digital workplace, workplace automation, it-backup & recovery, it-sicherheitskonzepte, it-management, b2b, cloud-services, it-automatisierte prozesse, it-sicherheit, consulting, it-workplace modernisierung, compliance & security, education, artificial intelligence, outsourcing/offshoring, computer & network security, management consulting, enterprise software, enterprises, computer software",'+49 605 61833995,"Outlook, Microsoft Office 365, Google Cloud Hosting, Microsoft Azure, Slack, Google Tag Manager, Facebook Custom Audiences, Facebook Login (Connect), Varnish, Multilingual, Wix, Vimeo, WordPress.org, Nginx, Mobile Friendly, Facebook Widget","","","","","","",69c281f11e946c0001efd393,7375,54151,"𝖭𝗎𝗋 𝖨𝖳, 𝖽𝗂𝖾 𝗐𝗂𝗋𝗄𝗅𝗂𝖼𝗁 𝗂𝗆 𝖴𝗇𝗍𝖾𝗋𝗇𝖾𝗁𝗆𝖾𝗇 𝖺𝗇𝗄𝗈𝗆𝗆𝗍, 𝗌𝖾𝗍𝗓𝗍 𝖤𝗇𝖾𝗋𝗀𝗂𝖾 𝖿𝗋𝖾𝗂 𝖿ü𝗋 𝖽𝖺𝗌 𝗞𝗲𝗿𝗻𝗴𝗲𝘀𝗰𝗵ä𝗳𝘁. 𝖶𝗂𝗋 𝗏𝗈𝗇 𝖬𝖺𝗑𝗐𝗈𝗋𝗑 𝖻𝖾𝗀𝗅𝖾𝗂𝗍𝖾𝗇 𝗎𝗇𝗌𝖾𝗋𝖾 𝖪𝗎𝗇𝖽𝖾𝗇 𝖽𝖺𝗋𝗎𝗆 𝖻𝖾𝗂 𝖽𝖾𝗋 𝖤𝗂𝗇𝖿ü𝗁𝗋𝗎𝗇𝗀 𝗆𝗈𝖽𝖾𝗋𝗇𝖾𝗋 𝖬𝗂𝖼𝗋𝗈𝗌𝗈𝖿𝗍-𝖳𝖾𝖼𝗁𝗇𝗈𝗅𝗈𝗀𝗂𝖾 – 𝗎𝗇𝖽 𝗐𝖾𝗂𝗍 𝖽𝖺𝗋ü𝖻𝖾𝗋 𝗁𝗂𝗇𝖺𝗎𝗌. 𝖣𝖺𝖿ü𝗋 𝗌𝖾𝗍𝗓𝖾𝗇 𝗐𝗂𝗋 𝖺𝗎𝖿 𝗏𝗂𝖾𝗋 𝖲𝖼𝗁𝗐𝖾𝗋𝗉𝗎𝗇𝗄𝗍𝖾: +   +• 𝖶𝗂𝗋 𝖾𝗇𝗍𝗅𝖺𝗌𝗍𝖾𝗇 𝗎𝗇𝗌𝖾𝗋𝖾 𝖪𝗎𝗇𝖽𝖾𝗇 𝖽𝗎𝗋𝖼𝗁 𝗉𝖺𝗌𝗌𝖾𝗇𝖽𝖾 𝗠𝗮𝗻𝗮𝗴𝗲𝗱 𝗦𝗲𝗿𝘃𝗶𝗰𝗲𝘀 𝗎𝗇𝖽 unterstützen immer häufiger 𝖽𝗂𝖾 𝗀𝖾𝗌𝖺𝗆𝗍𝖾 𝖨𝖳. +• 𝖶𝗂𝗋 𝗌𝖾𝗍𝗓𝖾𝗇 𝖺𝗎𝖿 𝖽𝗂𝖾 𝗎𝗆𝖿𝖺𝗌𝗌𝖾𝗇𝖽𝖾, 𝖿𝗅𝖾𝗑𝗂𝖻𝗅𝖾 𝗎𝗇𝖽 𝗌𝗂𝖼𝗁𝖾𝗋𝖾 𝖫ö𝗌𝗎𝗇𝗀𝗌𝗐𝖾𝗅𝗍 𝗏𝗈𝗇 𝖬𝗂𝖼𝗋𝗈𝗌𝗈𝖿𝗍 𝗆𝗂𝗍 𝗠𝗶𝗰𝗿𝗼𝘀𝗼𝗳𝘁 𝟯𝟲𝟱 & 𝗔𝘇𝘂𝗿𝗲 +• 𝖶𝗂𝗋 𝗌𝗂𝗇𝖽 𝗌𝗍𝖺𝗋𝗄𝖾 𝖯𝖺𝗋𝗍𝗇𝖾𝗋 𝖻𝖾𝗂 𝗖𝗼𝗺𝗽𝗹𝗶𝗮𝗻𝗰𝗲 & 𝗦𝗲𝗰𝘂𝗿𝗶𝘁𝘆 𝖾𝗀𝖺𝗅, 𝗈𝖻 𝗎𝗇𝗌𝖾𝗋𝖾 𝖪𝗎𝗇𝖽𝖾𝗇 𝖡𝖾𝗋𝖺𝗍𝗎𝗇𝗀, 𝗇𝖾𝗎𝖾 𝖫ö𝗌𝗎𝗇𝗀𝖾𝗇 𝗈𝖽𝖾𝗋 𝖧𝗂𝗅𝖿𝖾 𝗇𝖺𝖼𝗁 𝖢𝗒𝖻𝖾𝗋-𝖠𝗍𝗍𝖺𝖼𝗄𝖾𝗇 𝖻𝗋𝖺𝗎𝖼𝗁𝖾𝗇. +• 𝖶𝗂𝗋 𝗁𝖾𝗅𝖿𝖾𝗇 𝖪𝗎𝗇𝖽𝖾𝗇, 𝖽𝖺𝗌 𝗀𝖺𝗇𝗓𝖾 𝖯𝗈𝗍𝖾𝗇𝗓𝗂𝖺𝗅 𝗆𝗈𝖽𝖾𝗋𝗇𝖾𝗋 𝖫ö𝗌𝗎𝗇𝗀𝖾𝗇 𝗓𝗎 𝗇𝗎𝗍𝗓𝖾𝗇 – 𝗆𝗂𝗍 𝗖𝗵𝗮𝗻𝗴𝗲 𝗠𝗮𝗻𝗮𝗴𝗲𝗺𝗲𝗻𝘁 & 𝗧𝗿𝗮𝗶𝗻𝗶𝗻𝗴 𝗎𝗇𝖽 𝖺𝖻𝗀𝖾𝗌𝗍𝗂𝗆𝗆𝗍𝖾𝗋 𝖪𝗈𝗆𝗆𝗎𝗇𝗂𝗄𝖺𝗍𝗂𝗈𝗇 + +𝖴𝗇𝗌𝖾𝗋 𝖹𝗂𝖾𝗅 𝗂𝗌𝗍 𝖾𝗌, 𝖽𝗂𝖾 𝗣𝗿𝗼𝘇𝗲𝘀𝘀𝗲 𝘇𝘂 𝘃𝗲𝗿𝗯𝗲𝘀𝘀𝗲𝗿𝗻 𝗎𝗇𝖽 𝗓𝗎 𝖽𝗒𝗇𝖺𝗆𝗂𝗌𝗂𝖾𝗋𝖾𝗇 – 𝖽𝖺𝗆𝗂𝗍 𝗎𝗇𝗌𝖾𝗋𝖾 𝖪𝗎𝗇𝖽𝖾𝗇 𝘃𝗼𝗿𝗮𝘂𝘀𝘀𝗰𝗵𝗮𝘂𝗲𝗻𝗱 𝗮𝗴𝗶𝗲𝗿𝗲𝗻, 𝘀𝗸𝗮𝗹𝗶𝗲𝗿𝗲𝗻 𝘂𝗻𝗱 𝗻𝗮𝗰𝗵𝗵𝗮𝗹𝘁𝗶𝗴 𝗲𝗿𝗳𝗼𝗹𝗴𝗿𝗲𝗶𝗰𝗵 𝗌𝖾𝗂𝗇 𝗄ö𝗇𝗇𝖾𝗇! + +𝖬𝖠𝖷𝖶𝖮𝖱𝖷 𝖦𝗆𝖻𝖧 +𝖦𝖾𝗌𝖼𝗁ä𝖿𝗍𝗌𝖿ü𝗁𝗋𝖾𝗋: 𝖧𝗈𝗅𝗀𝖾𝗋 𝖦ö𝖻𝖾𝗅, 𝖱𝖺𝗅𝗉𝗁 𝖦ö𝖻𝖾𝗅 +𝖡𝗋ü𝖼𝗄𝖾𝗇𝗌𝗍𝗋𝖺ß𝖾 𝟪-𝟣𝟢 +𝟨𝟥𝟨𝟤𝟪 𝖡𝖺𝖽 𝖲𝗈𝖽𝖾𝗇-𝖲𝖺𝗅𝗆ü𝗇𝗌𝗍𝖾𝗋 +𝖣𝖾𝗎𝗍𝗌𝖼𝗁𝗅𝖺𝗇𝖽 +𝖤-𝖬𝖺𝗂𝗅-𝖠𝖽𝗋𝖾𝗌𝗌𝖾: sales@𝗆𝖺𝗑𝗐𝗈𝗋𝗑.𝖼𝗈𝗆 +𝖳𝖾𝗅𝖾𝖿𝗈𝗇𝗇𝗎𝗆𝗆𝖾𝗋: +𝟦𝟫 𝟨𝟢𝟧𝟨 𝟣𝟪𝟥𝟥𝟫-𝟫𝟧 +𝗁𝗍𝗍𝗉𝗌://𝗆𝖺𝗑𝗐𝗈𝗋𝗑.𝖼𝗈𝗆/",1999,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670c3744555d020001712453/picture,"","","","","","","","","" +blackpoint GmbH,blackpoint,Cold,"",13,information technology & services,jan@pandaloop.de,http://www.blackpoint.de,http://www.linkedin.com/company/blackpoint-gmbh,https://facebook.com/blackpoint-gmbh-354981807877381,"",106B Friedberger Strasse,Bad Vilbel,Hesse,Germany,61118,"106B Friedberger Strasse, Bad Vilbel, Hesse, Germany, 61118","it services, rpa, crm, customer experience, hosting, cpq, nameservers, it security, ai, genai, domains, virtualization, iaas, process mining, it infratsructure, it services & it consulting, retail, cybersicherheitslösungen, nis2-richtlinie, it-security, cloud services, headless ecommerce, managed services, webdesign, virtualisierung/hypervisor, remote access point (rap), cloud-management, backup (veeam), information technology & services, consulting, cybersecurity, sophos hosting, iso 27001:2022, computer systems design and related services, cloud computing, e-commerce, b2b, datenaustausch, it-infrastruktur, webshops mit shopware, it support, webentwicklung, physischer server, individualentwicklungen, security awareness training, e-mail verschlüsselung, web development, nextcloud hosting, veeam cloud-connect, remote support, soc as a service, hornet security, cloud-connect, multi-faktor-authentifizierung, support, e-mail archivierung, shopware integration, wifi im homeoffice, security audits, cloud-telefonie, netzwerkinfrastruktur, it-services, d2c, it-beratung, services, support-formen, domains und zertifikate, saas, sales, enterprise software, enterprises, computer software, computer & network security, web design, consumer internet, consumers, internet",'+49 6101 657880,"Outlook, Microsoft Office 365, Apache, Mobile Friendly, Remote, Microsoft Application Insights, Infor Birst, WatchGuard, Veeam, Tor, Hornetsecurity Spam and Malware Protection","","","","","","",69c281f11e946c0001efd395,7375,54151,Ein Trusted Advisor ist mehr als ein Dienstleister – er ist Ihr verlässlicher Sparringspartner in allen IT-Fragen. Mit einem ganzheitlichen Leistungsportfolio von Hosting über IT-Sicherheit bis hin zur individuellen Webentwicklung begleiten wir Sie strategisch und vorausschauend. Sie suchen nach einem Trusted Advisor für Ihre IT-Projekte? blackpoint ist der perfekte Partner für Sie und steht Ihnen bei Ihrer Digitalisierung zur Seite.,1996,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/686ec4113a2f6f000120685c/picture,"","","","","","","","","" +AVATAREC Business Solutions GmbH,AVATAREC Business Solutions,Cold,"",11,information technology & services,jan@pandaloop.de,http://www.avatarec.de,http://www.linkedin.com/company/avatarec-business-solutions-gmbh,"","","",Hamm,North Rhine-Westphalia,Germany,"","Hamm, North Rhine-Westphalia, Germany","fujitsu, actidata, watchguard itsecurity, no spamproxy, starface voip, it services & it consulting, information technology & services",'+49 238 5462920,"Microsoft Office 365, Mobile Friendly, Nginx, Remote","","","","","","",69c281f11e946c0001efd39a,"","","Wir sind das Full-Service ITK-Systemhaus AVATAREC Business Solutions GmbH mit Sitz in Hamm-Rhynern. +Unsere Kernkompetenz ist die Beratung von kleinen und mittelständischen Unternehmen in den Bereichen Optimierung und Sicherheit in der IT und Telekommunikation. + +Von der Planung über die Durchführung bis hin zur technischen Unterstützung und Lieferung von Komponenten sind wir für unsere Kunden da. + +Gerne helfen wir auch Nichtkunden bei akuten IT-Problemen oder beraten interessierte Unternehmen zu unseren Lösungen. + +Ziele der IT und Telefonie Lösungen sind: +🎯 Sicherheit +🎯 Verfügbarkeit +🎯 Unterstützung der Geschäftsprozesse + +Gegründet wurde das Unternehmen 2007 von Dipl.-Kfm. Kai Schiereck und Dipl. Ing. Michael Kruse. +Das AVATAREC Team umfasst 20 qualifizierte Mitarbeiter.",2007,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6742c16b8d313d0001a2e17d/picture,"","","","","","","","","" +Zwei Löwen mediawerk GmbH,Zwei Löwen mediawerk,Cold,"",64,telecommunications,jan@pandaloop.de,http://www.zweiloewen.com,http://www.linkedin.com/company/zwei-l%c3%b6wen-mediawerk-gmbh,https://www.facebook.com/zweiloewen/,"",46 Hafenweg,Muenster,North Rhine-Westphalia,Germany,48155,"46 Hafenweg, Muenster, North Rhine-Westphalia, Germany, 48155","",'+49 251 981150,"Slack, reCAPTCHA, Google Analytics, Google Tag Manager, WordPress.org, Facebook Login (Connect), Visual Website Optimizer, Facebook Custom Audiences, YouTube, Apache, Facebook Widget, Linkedin Marketing Solutions, Mobile Friendly, Hotjar, Remote, Deel, Avaya, Android, React Native, Google Ads, Facebook, Facebook Pixel, SAP, ANGEL LMS","","","","","","",69c281f11e946c0001efd383,"","","As Europe's leading allround service provider for Telecommunications and Customer Relationship Management we strongly inspire our customers by offering them high-end technologies and excellent services by our experienced as well as high qualified employees. Our customers and their individual needs and challenges are the focus of our actions. + +Hafenweg 46 - 48, Münster, North Rhine-Westphalia, Germany","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/687dd7321834510001258a6b/picture,"","","","","","","","","" +Cedura GmbH,Cedura,Cold,"",20,management consulting,jan@pandaloop.de,http://www.cedura.de,http://www.linkedin.com/company/cedura-gmbh,https://www.facebook.com/CeduraGmbH,"",13 Lyrenstrasse,Bochum,North Rhine-Westphalia,Germany,44866,"13 Lyrenstrasse, Bochum, North Rhine-Westphalia, Germany, 44866","marktstudien, marktanalysen, market intelligence, softwareentwicklung, business consulting & services, process optimization, data analytics, b2b marktanalyse, custom software development, datenvisualisierung, cloud solutions, cloud-based software, marktmonitoring, marktsegmentierung, branchenspezifische analysen, markttransparenz, b2b, competitive intelligence, medizintechnik vergleich, markttrends frühwarnsystem, consulting, social media monitoring, manufacturing, management consulting services, wettbewerbsvorteil, market research, market intelligence software, business intelligence, automated data collection, distribution, preismonitoring, markttrends, wettbewerbsanalyse, datenanalyse, kundenpotenzialanalyse, kundenanalyse, marktsegmentierung automatisierung, maßgeschneiderte lösungen, services, kundenindividuelle software, market analysis, datenintegration, digital transformation, marktpotenzial, data integration tools, branchenanalyse, entscheidungsgrundlagen, marktprognosen, produktvergleich software, branchenübergreifend, data security, software development, marktanalyse, datenverknüpfung, branchenübergreifende software, construction, project management, risikoerkennung, automatisierte datenerhebung, healthcare, management consulting, information technology & services, cloud computing, enterprise software, enterprises, computer software, consumer internet, consumers, internet, mechanical or industrial engineering, analytics, computer & network security, productivity, health care, health, wellness & fitness, hospital & health care",'+49 2327 903210,"Outlook, Active Campaign, WordPress.org, Mobile Friendly, Google Analytics, Google Tag Manager, Apache, Vimeo, Remote, Render","","","","",2500000,"",69c281f11e946c0001efd392,7375,54161,Die Cedura GmbH ist Pionier und einer der deutschen Marktführer für Software und Beratung im Bereich Market Intelligence. In Bochum im Ruhrgebiet schlägt unser Herz und von hier aus beraten wir seit 2005 Unternehmen in ganz Europa.,2005,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f12627568b4e000165f41b/picture,"","","","","","","","","" +lab25,lab25,Cold,"",32,management consulting,jan@pandaloop.de,http://www.lab25.de,http://www.linkedin.com/company/lab25-gmbh,"","",207 Wienburgstrasse,Muenster,North Rhine-Westphalia,Germany,48159,"207 Wienburgstrasse, Muenster, North Rhine-Westphalia, Germany, 48159","portfolio ideation, digital product development, concept design validation, digital product strategy, value space framing, business model incubation, corporate intrapreneurship, ai design sprint, concept validation, growth enablement, ecosystem design, market entry produkt, strategic foresight, business development, innovation culture design, venture building, cooperations, ecosystem strategy, partnerships cooperations, corporate venture building, innovation coaching, ai strategy, innovation strategy, technology consulting, portfolio management support, innovation unit building, human centered ai, business consulting & services, regenerative business models, kulturwandel, web3 plattformen, innovation culture, customer centricity, human-centered ai, digital strategy, ai ethics, digital customer experience, b2b, digitalisierung & automatisierung, innovation framework, blockchain monetization, d2c, sustainable growth, nachhaltigkeit, management consulting, transformation, intrapreneurship, künstliche intelligenz, services, innovationsmanagement, digital transformation, information technology & services, change & enablement, organisationsentwicklung, organizational change, geschäftsmodelle, consulting, strategieberatung, content creator platforms, business services, government, ai, management consulting services, mvp development, marketing, marketing & advertising",'+49 251 5906550,"Cloudflare DNS, Amazon SES, Gmail, Google Apps, Microsoft Office 365, Webflow, Hubspot, reCAPTCHA, Mobile Friendly, Google Tag Manager, Hotjar, Claude, Fastapi, Docker","","","","","","",69c281f11e946c0001efd397,8742,54161,"lab25 GmbH is a corporate venture builder and startup studio based in Münster, Germany, founded in 2016. The company specializes in supporting businesses through digital transformation by leveraging AI, data, automation, and user-centered digital innovations. It partners with innovative corporations and mid-sized companies to guide them from strategic decision-making to project realization, focusing on sustainable growth and organizational transformation. + +The company offers a range of services that include digital transformation, development of new services and business models, sustainability initiatives, and strategic consulting. lab25 accompanies businesses through every phase of change, ensuring tailored solutions that align with future needs. With a team of 11-50 employees, lab25 is committed to delivering results-oriented and customized services that foster innovation and investment management.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e40ef3dcee6200012747e1/picture,"","","","","","","","","" +eccelerate,eccelerate,Cold,"",39,management consulting,jan@pandaloop.de,http://www.eccelerate.com,http://www.linkedin.com/company/eccelerate,https://facebook.com/eccelerategrowth,https://twitter.com/eccelerate_de,23A Schillerstrasse,Munich,Bavaria,Germany,80336,"23A Schillerstrasse, Munich, Bavaria, Germany, 80336","ecommerce, strategic ecommerce consulting, shop platform optimization, implementation, performance marketing improvement, commercial due diligence, crm strategies, internationalization, customer experience benchmarking, etransformation, growth hacking, digital growth, value creation, digital due diligence, deal advisory, business consulting & services, b2b, retail, software development, consulting, change management, data & business model alignment, data governance & compliance, digital transformation, digital marketing, modular software introduction, cloud solutions, information technology & services, cloud platforms, data & analytics audits, management consulting, software migration, tech & cloud infrastructure evaluation, ki einsatz, customer journey personalization, data management, ai & data insights, performance measurement, legacy system migration, digital platform optimization, software engineering, data & analytics due diligence, cloud computing, data lake & data mesh, cloud infrastructure, it infrastructure, data analytics, multichannel strategy, data strategy, operational optimization, system integration, data security & privacy, automation & ai solutions, e-commerce, business model innovation, customer experience enhancement, transformation, user experience design, data & ai transformation, data-driven workflows, data & ai technologies, modern software solutions, technology consulting, business transformation, business intelligence, services, digital experience, management consulting services, sustainable growth, it & tech audits, digital strategy, data security, cloud strategy, data-driven decision making, consumer internet, consumers, internet, marketing & advertising, enterprise software, enterprises, computer software, internet infrastructure, analytics, marketing, computer & network security",'+49 89 38869650,"Microsoft Office 365, Remote","","","","","","",69c281f11e946c0001efd399,8742,54161,"eccelerate GmbH is a digital consulting firm based in Munich, Germany, founded in 2012. The company specializes in e-commerce and digital transformation services, primarily serving businesses in the DACH region and beyond. In January 2022, eccelerate was acquired by Mindcurv. With a team of approximately 26-39 employees, the firm reported a revenue of $14.6 million in 2025. + +The company offers a wide range of services, including e-commerce strategy, agile implementation management, digital transformation, and online marketing efficiency. They focus on helping family-owned businesses, startups, and large corporations achieve digital growth through their expertise in strategy, implementation, and optimization. Key service areas include KPI management, customer experience benchmarking, and data-driven e-commerce solutions. Eccelerate emphasizes a collaborative approach, leveraging diverse team competencies to meet the unique needs of their clients.",2012,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66c1883fa1f9b60001040c81/picture,"","","","","","","","","" diff --git a/leadfinder/data/apollo-sogedesla.csv b/leadfinder/data/apollo-sogedesla.csv new file mode 100644 index 0000000..73ec481 --- /dev/null +++ b/leadfinder/data/apollo-sogedesla.csv @@ -0,0 +1,759 @@ +Company Name,Company Name for Emails,Account Stage,Lists,# Employees,Industry,Account Owner,Website,Company Linkedin Url,Facebook Url,Twitter Url,Company Street,Company City,Company State,Company Country,Company Postal Code,Company Address,Keywords,Company Phone,Technologies,Total Funding,Latest Funding,Latest Funding Amount,Last Raised At,Annual Revenue,Number of Retail Locations,Apollo Account Id,SIC Codes,NAICS Codes,Short Description,Founded Year,Logo Url,Subsidiary of,Subsidiary of (Organization ID),Primary Intent Topic,Primary Intent Score,Secondary Intent Topic,Secondary Intent Score,Prerequisite: Determine Research Guidelines,Prerequisite: Research Target Company,Qualify Account +Tyre Manufacturer,Tyre Manufacturer,Cold,"",180,electrical/electronic manufacturing,jan@pandaloop.de,"",http://www.linkedin.com/company/continental-tyres,"",https://twitter.com/continental_ir,11 Breite Strasse,Rostock,Mecklenburg-Vorpommern,Germany,18055,"11 Breite Strasse, Rostock, Mecklenburg-Vorpommern, Germany, 18055","appliances, electrical, & electronics manufacturing, electrical/electronic manufacturing, mechanical or industrial engineering","","CSC Corporate Domains, Outlook, Microsoft Office 365, Amazon AWS, Amazon CloudFront, Amazon Elastic Load Balancer, Atlassian Cloud, Linkedin Marketing Solutions, Google Tag Manager, Cedexis Radar, Google Font API, Piwik, Apache, Vimeo, Kenexa, Adobe Media Optimizer, SmartRecruiters, Bootstrap Framework, MouseFlow, Mobile Friendly, Google Analytics, Multilingual, AI","","","","",41361000000,"",69c27f6bf296df00018a5b1f,"","","Continental AG, commonly known as Continental or Conti, is a leading German multinational automotive parts manufacturer based in Hanover, Germany. Founded in 1871, the company has grown to become the world's third-largest automotive supplier and fourth-largest tire manufacturer, employing around 200,000 people globally. + +Continental specializes in a wide range of products, including tires for bicycles, cars, and other vehicles, as well as automotive components and systems. Their tire offerings feature innovations such as pneumatic designs and grooved treads, enhancing safety and performance. The company also produces brake systems, chassis components, powertrains, and various vehicle electronics. Continental is committed to making mobility safer, more sustainable, and convenient. + +With a strong presence in Europe and North America, Continental serves the global automotive and transportation industries, supplying major original equipment manufacturers (OEMs) and ranking among the top global car parts sellers.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/63edac0a998f12000100b12d/picture,"","","","","","","","","" +Quality Automation GmbH,Quality Automation,Cold,"",53,machinery,jan@pandaloop.de,http://www.quality-automation.de,http://www.linkedin.com/company/quality-automation-gmbh,"","",156 Konrad-Adenauer-Strasse,Stolberg (Rhineland),North Rhine-Westphalia,Germany,52223,"156 Konrad-Adenauer-Strasse, Stolberg (Rhineland), North Rhine-Westphalia, Germany, 52223","produktdatenerfassungssysteme, servoantriebe, ki, prozesstechnik, sicherheitssysteme, identifikationssysteme, projektmanagment, prozessvisualisierung, roboter, profibusdiagnose, schulung, bussysteme, erpsystem, datenbanken, entwicklung, visionsysteme, automation machinery manufacturing, webbasierte anwendungen, retrofit, inventory management, cybersecurity, applikationsentwicklung, automatisierung, datenbasierte entscheidungsfindung, it-security, vernetzte produktion, datenverwaltung, risk assessment, software development, deep learning, bildverarbeitung, schnittstellenentwicklung, electrical engineering, maschinenmonitoring, iot, automatisierte inspektion, projektbegleitung, robotics, mechatronik, modulares erp, smart factory, prozessoptimierung, services, schulungen, industriesoftware, sensorintegration, automation, produktionsdatenmanagement, maschinenanbindung, systemintegration, cloud-integration, schaltschrankbau, ki-software, predictive maintenance, b2b, information technology & services, industrie 4.0, data management, construction, risikobeurteilung, traceability, erp-system, softwareentwicklung, manufacturing, feldbusprotokolle, industrial machinery manufacturing, datenanalyse, consulting, datenvisualisierung, process optimization, project management, automatisierte steuerung, sicherheitsanalysen, cloud solutions, artificial intelligence, mechanical or industrial engineering, productivity, cloud computing, enterprise software, enterprises, computer software",'+49 24 02865888,"Outlook, Microsoft Office 365, Remote","","","","","","",69c27f6bf296df00018a5b20,3571,33324,"Quality Automation GmbH, based in Stolberg near Aachen, Germany, is a leading provider of production and manufacturing automation. Established in 2000, the company has 25 years of experience in developing and implementing innovative automation solutions that improve production efficiency and safety. + +The company offers a wide range of services, including automation solutions, system integration, digitalization, and project support. Quality Automation GmbH is recognized as a Siemens Solution Partner for Factory Automation and Drives & Motion, and collaborates with brands like Bosch Rexroth. Their expertise covers various technological capabilities, from simple programming to advanced image processing systems. + +Quality Automation GmbH serves diverse industries, including medical, consumer, and automotive sectors. They are committed to high quality standards and innovation, with notable projects such as modernizing full-pallet warehouses for bofrost*, enhancing storage solutions for millions of customers across Germany.",2000,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670c31002d22bc000160b91f/picture,"","","","","","","","","" +ibk IngenieurConsult GmbH,ibk IngenieurConsult,Cold,"",20,machinery,jan@pandaloop.de,http://www.ibk-ingenieurconsult.de,http://www.linkedin.com/company/ibk-ingenieurconsult-gmbh,"","",17 Kornstrasse,Hanover,Lower Saxony,Germany,30167,"17 Kornstrasse, Hanover, Lower Saxony, Germany, 30167","cedokumentation, handhabungstechnik, engineering, manufacturing systems, steuerungstechnik, additive fertigung, luft und raumfahrt, cad, mittelstand, cobots, 3ddruck, montagetechnik, robotik, aviation, 3dprinting, plant construction, fertigungsplanung, automotive, automatisierung, anlagenplanung, cadkonstruktion, anlagenbau, assembly technology, prozessplanung, schweisstechnik, logistik, bodyinwhite, robotics, manufacturing technology, anlagenoptimierung, automation machinery manufacturing, sps-programmierung, fertigungstechnik, logistikautomatisierung, automatisierte montage, automobilindustrie, flugzeugbau, automatisierte prüfsysteme, planung, consulting, services, automatisierungslösungen, iso 9001:2015, prozesskette, industrieservice, cobot applikationen, industrieautomation, distribution, industrie 4.0, b2b, kollaborative robotik, industrial machinery manufacturing, logistikplanung, robotersimulation, manufacturing, 3d-simulation, prozessoptimierung, elektrik, industrial automation, simulation, sondermaschinenbau, cobot shop, sicherheitslösungen, inbetriebnahme, virtuelle realität, fertigung, 3d-druck, ki-kamerasysteme, roboterprogrammierung, augmented reality anwendungen, qualitätsmanagement, digitale planung, sensorintegration, schaltschrankbau, laseranlagen, lasertechnik, konstruktion, cad-konstruktion, virtuelle inbetriebnahme, enterprise software, enterprises, computer software, information technology & services, mechanical or industrial engineering",'+49 51 11216940,"MailJet, AI","","","","","","",69c27f6bf296df00018a5b28,3531,33324,"ibk IngenieurConsult GmbH is a family-run engineering firm based in Hannover, Germany, with over 47 years of experience in industrial automation, fixture, and plant construction. The company employs around 220 people and operates additional locations in Wolfsburg. It partners with ibk IndustrieService to provide a complete process chain from design to commissioning, focusing on innovative and reliable solutions for both large corporations and medium-sized enterprises. + +The firm offers a wide range of engineering services, including planning, simulation, construction, control technology, manufacturing, assembly, and commissioning. Its expertise spans mechanical engineering, production, design, and CAD, catering primarily to the automotive, aerospace, and special machine construction sectors. ibk IngenieurConsult is dedicated to delivering tailored solutions and complete systems that enhance manufacturing processes.",1976,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e59f63b9b5b20001ce03f6/picture,"","","","","","","","","" +Smart Systems Hub,Smart Systems Hub,Cold,"",28,machinery,jan@pandaloop.de,http://www.smart-systems-hub.de,http://www.linkedin.com/company/smartsystemshub,"","","",Dresden,Saxony,Germany,"","Dresden, Saxony, Germany","iot, connectivity, predictive maintenance, industrie 40, digitalisierung, mvp, coinnovation, software, hardware, 5g, smart systems, robotics, tech recruitment, prototyping, automation machinery manufacturing, digital transformation, experimentierfeld, open source components, asset administration shell, event formats, ai in industry, co-innovation, digital twins, event management, data ecosystems, digital ecosystems, data security, application development, manufacturing-x, innovation processes, hackathons, consulting, partnership network, technology transfer, cybersecurity, information technology, ai technologies, digital twin registry, souvereign data space, industry 4.0, networking, computer systems design and related services, cloud computing, b2b, machine learning, research partnerships, manufacturing, digital twin, supply chain management, industrial automation, decentralized data exchange, automation, distribution, co2 footprint tracking, engineering, startups, workshops, data sovereignty, real-time monitoring, cloud architecture, circular economy in industry, manufacturing-x experimentierfeld, automation solutions, testbed, innovation hub, popup testbed, regional development, regional innovation, research collaboration, innovation center, ai, testbed infrastructure, smart manufacturing, industrial iot, services, collaborative innovation, hackathon, system integration, smart factory, information technology & services, mechanical or industrial engineering, events services, computer & network security, app development, apps, software development, enterprise software, enterprises, computer software, artificial intelligence, logistics & supply chain",'+49 35 148188897,"SendInBlue, Outlook, WordPress.org, Bootstrap Framework, Nginx, Hubspot, Mobile Friendly, Google Tag Manager, YouTube, IoT, Remote","","","","","","",69c27f6bf296df00018a5b2a,3531,54151,"Smart Systems Hub GmbH, based in Dresden, Germany, is a leading innovation center for industrial automation in Europe. It specializes in developing easy-to-integrate IoT system solutions and supports innovation processes by connecting over 700 partners from various sectors, including industry, startups, and research. As a Digital Innovation Hub designated by Germany's Federal Ministry of Economics and Climate Protection, it promotes digitalization through expertise exchange and collaborative programs. + +The hub focuses on co-innovation projects tailored to customer needs, offering workshops, hackathons, and incubators for idea generation and prototyping. Its core technologies include IoT platforms, predictive maintenance, smart city solutions, and robotics. Smart Systems Hub also provides experimental environments for testing applications and fosters ecosystem building by networking startups, SMEs, and corporates for pilot projects. Target industries include life sciences, logistics, machinery, production, and technology.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67149784885f9b00012f1b2c/picture,"","","","","","","","","" +KleRo GmbH Roboterautomation,KleRo GmbH Roboterautomation,Cold,"",13,machinery,jan@pandaloop.de,http://www.klero.de,http://www.linkedin.com/company/klero-gmbh-roboterautomation,"","",152 Siegfriedstrasse,Berlin,Berlin,Germany,10365,"152 Siegfriedstrasse, Berlin, Berlin, Germany, 10365","mobile und stationaere robotik, gesundheitswesen, roboter, steuerungstechnik, desinfektion, forschung, 3ddruck, schlauchpakete, automation, automation machinery manufacturing, iso 9001, 3d-druck metall mit pulverbettverfahren, kollaborative robotik, education, hmi-visualisierung, robotikprogrammierung, prozessautomatisierung, elektroplanung, visualisierungssysteme, sicherheits- und instandhaltungstools, iso 9001 zertifikat, autonome mobile roboter, automatisierungstechnik, kollaborative roboter, additive fertigung für kleinserien, roboterautomation, industrierobotik, roboterintegration, electrical engineering, fertigungsautomation, layoutsimulation, forschung und entwicklung, layoutoptimierung, kundenspezifische lösungen, programmierung, industrial machinery manufacturing, sps-programmierung, mechanical engineering, b2b, prozesssimulation mit robotstudio, forschungsprojekte, mobile robotik, schlauchkonfektionierung, qualifizierte mitarbeit, inbetriebnahme, sicherheitsprüfungen, sicherheitssteuerung, wartung, industrielle robotik, wartung und service, prototypen, hygienische desinfektionsroboter, sicherheitsmanagement, robotik, cad-konstruktion, kunststoff, cad-design, serviceleistungen, fertigung, 3d-druck, system integration, robotics, additive fertigung, 3d-druck kunststoff mit dlp-verfahren, schulungsangebote, kunststoff-3d-druck, service, metall, akademische partnerschaften, schulungen für robotersysteme, manufacturing, robotiksysteme, healthcare, industrial automation, schulungen, forschung in robotik und automation, innovationsprojekte, metall-3d-druck, services, digital transformation, automatisierungslösungen, automatisierung, netzwerkpartner, simulationstools, consulting, sicherheitssteuerungen, mechanical or industrial engineering, information technology & services, health care, health, wellness & fitness, hospital & health care",'+49 30 40396293,"Outlook, Microsoft Office 365, Mobile Friendly, Nginx, YouTube, Render","","","","","","",69c27f6bf296df00018a5b18,3589,33324,"We, the Berlin KleRo GmbH Roboterautomation company, are specialized in the automation and optimization of recurring processes through the use of mobile or stationary robotics. +There we offer all sub-steps from the conception, through the construction, the robot simulation and programming up to the integration at the customer. This also includes instruction or training for customers - in our training rooms or at the customer's facility. These services are available as a bundle or as separate individual services. In addition we manufacture small series and prototypes with 3D printing in metal or plastic.",2005,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/674b84bfba488e000132f563/picture,"","","","","","","","","" +MABRI.VISION GmbH,MABRI.VISION,Cold,"",27,machinery,jan@pandaloop.de,http://www.mabri.vision,http://www.linkedin.com/company/mabri-vision,"","",8 Philipsstrasse,Aachen,Nordrhein-Westfalen,Germany,52068,"8 Philipsstrasse, Aachen, Nordrhein-Westfalen, Germany, 52068","machinery manufacturing, packaging, optical measurement, data processing, custom machinery, automated inspection, image processing, medical devices, layer thickness measurement, electronics, embedded systems, food & beverage, automotive, quality control, deep learning, b2b, sensor integration, manufacturing, ai vision, automation, 3d inspection, gantry systems, optical coherence tomography oct, microfluidic chip inspection, defect detection, automation solutions, packaging and logistics, commercial and service industry machinery manufacturing, industrial equipment, machine vision, services, high-speed inspection, system integration, healthcare, distribution, shipping, logistics & supply chain, hospital & health care, computer hardware, hardware, embedded hardware & software, consumer goods, consumers, artificial intelligence, information technology & services, mechanical or industrial engineering, commercial & service industry machinery manufacturing, health care, health, wellness & fitness",'+49 241 56527930,"Outlook, Microsoft Office 365, Hubspot, Mobile Friendly, Google Font API, WordPress.org, Apache, AI","","","","","","",69c27f6bf296df00018a5b29,3829,33331,"Wir, die MABRI.VISION GmbH, entwickeln und fertigen die nächste Generation innovativer Sensoren und Prüfanlagen für die Produktion. Unsere Kunden und Partner sind renommierte Unternehmen aus den Branchen Verpackungstechnik, Kraftfahrzeugbau, Metallverarbeitung und Medizintechnik. + +Stärken Sie unser Konstruktionsteam und seien Sie durch Ihre Kreativität und Ihr Fachwissen maßgeblich an unserem Erfolg beteiligt.",2015,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/672ee0eba62a7b00016a50c9/picture,"","","","","","","","","" +business factors Deutschland GmbH,business factors Deutschland,Cold,"",34,events services,jan@pandaloop.de,http://www.businessfactors.de,http://www.linkedin.com/company/business-factors-deutschland-gmbh,https://facebook.com/businessfactors,https://twitter.com/BFactors,10 Luetzowufer,Berlin,Berlin,Germany,10785,"10 Luetzowufer, Berlin, Berlin, Germany, 10785","einzelgespraeche, vortraege, service, individuelles programm, wirtschaftskongresse, workshops, netzwerken fuer fuehrungskraefte, impulse, netzwerken, initiierung von b2bmeetings, strategien, strategietage",'+49 30 76765520,"Google AdSense, Multilingual, Adobe Media Optimizer, Apache, WordPress.org, Google Tag Manager, Cedexis Radar, DoubleClick, Google Maps, Google AdWords Conversion, Google Maps (Non Paid Users), YouTube, Vimeo, Woo Commerce, Mobile Friendly, Remote","","","","","","",69c27f6bf296df00018a5b22,"","","business factors Deutschland GmbH is a strategic networking and knowledge exchange platform based in Berlin, Germany. The company specializes in producing and implementing economic congresses, serving as a cross-industry contact platform that facilitates business connections among executives and entrepreneurs. + +The company organizes its flagship events, known as StrategieTage (Strategy Days), which include lectures, presentations, masterclasses, and one-on-one meetings. These events aim to foster innovation, creativity, and collaboration while providing practical solutions to business challenges. Participants benefit from tailored agendas that address their specific needs, enabling them to establish valuable new business contacts and gain continuing education and inspiration. + +With a dedicated team of approximately 36 staff members, business factors Deutschland GmbH is committed to unlocking potential through diverse events and fostering a collaborative environment for its participants.",2008,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68831b1b7a777100016ad62f/picture,"","","","","","","","","" +Aivy,Aivy,Cold,"",16,information technology & services,jan@pandaloop.de,http://www.aivy.app,http://www.linkedin.com/company/aivyapp,https://facebook.com/aivyapp,https://twitter.com/aivyapp,44 Donaustrasse,Berlin,Berlin,Germany,12043,"44 Donaustrasse, Berlin, Berlin, Germany, 12043","onlineassessments, preassessments, persoenlichkeitstest, gamebased assessments, interessenstest, selfassessments, potenzialanalysen, eignungsdiagnostik, it services & it consulting, b2b, potenzialanalyse, consulting, assessment center, talent management, wissenschaftliche testverfahren, talent assessment, objektive personalauswahl, dsgvo-konform, diversity durch objektive tests, automatisierte personalauswahl, innovative hr diagnostik, validität, verhaltensbasierte diagnostik, assessment tools für hr, online assessment, iso 27001, emotionserkennung, human resources software, online-assessments, kognitive tests, candidate experience, potenzialanalyse digital, gamification, recruiting software, hr innovation, hr tech, candidate experience optimierung, datensicherheit, kognitive fähigkeiten messen, diversity in hr, automatisierte auswertung, game-based assessments, passungsprofil, automatisierte talentanalyse, it security, norm din-33430, diagnostik-software, services, chancengleichheit fördern, digitale personalauswahl, passung im recruiting, objektive entscheidungsgrundlage, verhaltensanalyse, emotionale intelligenz tests, wissenschaftlich validierte tests, management consulting services, hr software, digitale talentdiagnostik, personalauswahl-software, personaleignung, künstliche intelligenz in hr, information technology & services, computer & network security",'+49 381 4503150,"Cloudflare DNS, Route 53, Amazon SES, Gmail, Google Apps, AWS SDK for JavaScript, Leadfeeder, DigitalOcean, Webflow, Hubspot, Mobile Friendly, Facebook Custom Audiences, Bing Ads, Google Tag Manager, Facebook Widget, DoubleClick, Facebook Login (Connect), Google Play, Google Dynamic Remarketing, Linkedin Marketing Solutions, reCAPTCHA, Wistia, DoubleClick Conversion, Docker, Android, IoT, React Native, Xamarin, Linux OS, Node.js, Remote, AI",1880000,Seed,1100000,2022-08-01,"","",69c27f6bf296df00018a5b25,8734,54161,"Aivy is an AI-powered HR technology company that specializes in game-based assessments and recruiting tools. Founded as a spin-off from Freie Universität Berlin, Aivy aims to enable fair and objective talent evaluation while streamlining hiring processes. The company focuses on reducing unconscious bias in recruitment by highlighting individual strengths and potential rather than demographics. + +Aivy's core offering is a mobile software solution that features game-based assessments rooted in psychological diagnostics. This platform provides objective candidate scoring and evaluations of skills, experience, and cultural fit. Key features include AI-powered candidate sourcing, customizable interview scripts, and centralized recruitment management. Aivy integrates with third-party ATS systems and offers various tools for process automation, communication management, and reporting. The company has received recognition for its innovative approach, including awards and a spot among Germany's top startups. Aivy serves businesses across various industries, with notable clients like Fresenius SE.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68991fdb372425000135b98e/picture,"","","","","","","","","" +Technologiestiftung Berlin,Technologiestiftung Berlin,Cold,"",67,nonprofit organization management,jan@pandaloop.de,http://www.technologiestiftung-berlin.de,http://www.linkedin.com/company/technologiestiftung,https://www.facebook.com/Technologiestiftung,https://twitter.com/TSBBerlin,61 Grunewaldstrasse,Berlin,Berlin,Germany,10825,"61 Grunewaldstrasse, Berlin, Berlin, Germany, 10825","open data, internet of things, vernetzte energie, research, partizipation, daten, prototyping, resiliente stadt, hacking, kuenstliche intelligenz, offene daten, coding, non profit, digitalisierung, digitale bildung, visualisierung, digitale souveraenitaet, smart city, innovation, digitale kultur, gemeinwohl, non-profit organizations, ki-ethik, smart buildings, blockchain, krisensichere hardware, datenplattformen, information technology & services, digitale infrastruktur berlin, datenanalyse, kommunale daten, education, kultur digital, stadtentwicklung, stadt berlin, data security, verwaltungsdigitalisierung, public administration, b2b, künstliche intelligenz, open source verwaltung, open source, urban data plattformen, open data in kultur, open source software, sensoren, innovationsstrategie, cybersecurity, government, bürgerbeteiligung, cloud computing, machine learning, technologieberatung, citylab berlin, iot, lorawan, kiezblock, data-driven policy, research and development in the physical, engineering, and life sciences, data analytics, digitale verwaltung, data sharing, digitale partizipation, non-profit, services, smart mobility berlin, data science, ai, nachhaltigkeit, iot field kitchen, data governance berlin, big data, digitale infrastruktur, consulting, energieeffizienz, technologieförderung, urban data, reallabore, digitale transformation, energy_utilities, nonprofit organization management, computer & network security, computer software, enterprise software, enterprises, artificial intelligence",'+49 30 20969990,"Outlook, Microsoft Office 365, Mobile Friendly, Apache, Piwik, Docker, IoT, Remote, Git, GitHub Actions, Kubernetes, n8n, Node-RED, AWS Analytics, OpenStack, Keycloak, PostgreSQL, AWS Trusted Advisor, TypeScript, React, Node.js, Supabase, PyTorch, TensorFlow","","","","",804000,"",69c27f6bf296df00018a5b26,7389,54171,"Technologiestiftung Berlin is a non-profit foundation based in Berlin, Germany. It focuses on promoting science, research, and education in innovative natural and engineering technologies. The foundation aims to drive Berlin's digital transformation in administration, education, culture, and the economy through community-oriented and participatory approaches. + +Established with an endowment of approximately 32.6 million EUR, Technologiestiftung Berlin works to position the Berlin-Brandenburg region as a leading hub for digitalization. It conducts regional analyses, identifies cooperation opportunities between public research institutions and industry, and develops project proposals. The foundation fosters dialogue among science, economy, and politics, collaborating closely with universities and research institutions to create open-data and open-code digital solutions. + +Key activities include developing digital tools and solutions, producing studies on Berlin's innovation landscape, and supporting public procurement modernization. Notable projects include the Berlin Innovation platform, which showcases innovative products and services, and a culture data platform that enhances accessibility for cultural institutions. The foundation emphasizes early identification of tech trends and supports the integration of digitalization themes into economic and technology promotion.",1994,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f833e9cbf6f9000182d805/picture,"","","","","","","","","" +PSI Software – Grid & Energy Management,PSI Software – Grid & Energy Management,Cold,"",58,information technology & services,jan@pandaloop.de,"",http://www.linkedin.com/company/psi-software-grid-and-energy-management,"","","",Berlin,Berlin,Germany,"","Berlin, Berlin, Germany","netzsteuerung, netzueberwachung, netzoptimierung, erneuerbare energien, netzplanung, energiehandel, energievertrieb, risikound portfoliomanagement, planung und optimierung, energiebeschaffung, smart grid, niederspannungsnetz, mittelspannungsnetz, verteilnetze, versorgungssicherheit, gasmanagement, pipelinemanagement, greengas, wasserstoff, gasnetzsimulation und planung, software development, clean energy & technology, environmental services, renewables & environment, information technology & services",'+49 51 16101890,"Microsoft Office 365, Angular JS v1, Amazon SES, Nginx, YouTube, Mobile Friendly, Google Tag Manager, Vimeo, Cedexis Radar, Adobe Media Optimizer, TYPO3","","","","","","",69c27f6bf296df00018a5b2c,"","","PSI Software – Grid & Energy Management is a specialized unit of PSI Software SE, focused on optimizing energy grids and trading across various sectors, including electricity, gas, heat, oil, and water. With a team of over 900 energy experts, the unit addresses the challenges of converging energy sectors and regulatory dependencies. PSI Software has a strong presence, with over 2,300 employees across multiple locations in Europe, Asia, and North America. + +The company offers a wide range of software solutions designed for energy sector optimization. Their products include network control systems for real-time monitoring and optimization, energy trading and sales software, and smart grid solutions that support digitalization and automation. PSI also provides software for gas grids and pipelines, along with cross-sector innovations that enhance energy transport, storage, and trading. Their focus on AI-driven, cloud-capable systems aims to promote sustainability and efficiency in energy supply.",1969,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/697e6bcc56c0b5000104cd19/picture,"","","","","","","","","" +Merck Chemicals (Pty) Ltd,Merck Chemicals,Cold,"",63,chemicals,jan@pandaloop.de,http://www.merck.de,http://www.linkedin.com/company/merck-chemicals-pty-ltd,http://www.facebook.com/emdgroup,http://www.twitter.com/home?status=Lesetipp:+http://www.merck.de/de/index.html+via+@merck_de,250 Frankfurter Strasse,Darmstadt,Hessen,Germany,64293,"250 Frankfurter Strasse, Darmstadt, Hessen, Germany, 64293","biotechnology, life sciences, chemical manufacturing, chemicals",'+49 6151 720,"Akamai, Outlook, Microsoft Office 365","","","","","","",69c27f6bf296df00018a5b1e,"","","Merck is a science and technology company based in Darmstadt, Germany, with a history spanning over 350 years. It operates in three main business segments: healthcare, life science, and electronics, employing around 62,000 people across 65 countries. + +In the healthcare sector, Merck focuses on developing therapies and vaccines to improve and prolong lives, addressing unmet medical needs. The life science division, through MilliporeSigma, offers a wide range of tools, services, and expertise for researchers, supplying reagents, test kits, and laboratory equipment for various industries. In electronics, Merck provides material-related solutions to support innovation in the digital sector. + +Merck reported worldwide sales of $65.0 billion for the full year 2025, showcasing strong performance in oncology and animal health. The company is committed to core values such as patient focus, respect for people, ethics, integrity, and scientific excellence.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/63edac0a998f12000100b12d/picture,"","","","","","","","","" +Elektronik,Elektronik,Cold,"",160,information services,jan@pandaloop.de,http://www.elektroniknet.de,http://www.linkedin.com/company/elektronik,"",https://twitter.com/ElektronikTweet,Richard-Reitzner-Allee,Haar,Bavaria,Germany,85540,"Richard-Reitzner-Allee, Haar, Bavaria, Germany, 85540","industry podcasts, energy management, market analysis reports, embedded ki, market overviews, industry summits, automotive electronics, industry networking events, power management, web seminars, industry collaborations, industry matchmaking, cybersecurity, professional networking, defense electronics, distribution, microled technology, event management, industry innovation, industry insights, automotive connectors, testing equipment, industry newsletters, product awards, industry news, biohybrid materials, webinars, quantum sensing, information, automation, biotechnology, technology updates, market data analysis, distribution channels, technology events, cybersecurity in industry, product suggestions, optoelectronics, automotive chip development, bio-based materials, conferences and summits, supply chain resilience, electronics manufacturing, infrastructure, predictive maintenance, market intelligence, passive components, advanced packaging for ai chips, defense technology, automation technology, v2g energy systems, technology conferences, services, cloud computing, industry matchmaking platform, industry conferences, event organization, industry awards, embedded world conference, product of the year, media and publishing, manufacturing processes, testing, industry publications, automotive, industry trends, industry networking, b2b, media and events, power electronics, whitepapers, embedded development, product launches, semiconductors, advanced packaging, industry collaboration, 5g/6g communication networks, medical device regulation, industry promotion, market analysis, microled displays, product recommendations, intermodal mobility, iot, medical technology, communication technology, model-based systems engineering, sensor technology, market research, fiber optic technology, it security, industry surveys, risc-v processors, digital signatures for updates, market data, industry reports, product of the year 2026, technology trends, industry glossaries, matchmaking services, embedded systems, electronics industry, power modules, market reports, robotics, defense systems, edge ai applications, industrial automation, consulting, open ai applications, medical devices, healthcare, education, manufacturing, oil & energy, events services, enterprise software, enterprises, computer software, information technology & services, hardware, computer & network security, embedded hardware & software, mechanical or industrial engineering, hospital & health care, health care, health, wellness & fitness","","Outlook, Microsoft Office 365, DoubleClick, Google Font API, Flashtalking, Google AdSense, Linkedin Marketing Solutions, Apache, DoubleClick Floodlight, Google Maps, Mobile Friendly, MouseFlow, DoubleClick Conversion, Google Maps (Non Paid Users), Google Tag Manager, IoT, Remote, Micro, .NET, ARCore, Hex, Qualcomm Snapdragon, Ektron, KARTE, Mint, Olo, poly, Claude, Groove, PRO.FILE, BASE, Mode, Tor","","","","","","",69c27f6bf296df00018a5b23,3661,51,"Elektroniknet is a prominent German online portal and web service that provides extensive information, news, and resources for professionals in the electronics industry, particularly design engineers. The platform focuses on trends, products, artificial intelligence, and information technology, delivering 24/7 coverage of key developments through news articles, technical content, and industry insights. + +As the only IVW-audited professional website for online information aimed at design engineers, Elektroniknet has established a strong presence in the electronics sector. It offers core services that include reporting on industry trends and technologies, publishing technical articles, and providing business networking features like Matchmaker+ profiles for suppliers. The platform supports the electronics production ecosystem in the DACH region and engages with industry groups, facilitating proactive strategies for stakeholders in areas such as component obsolescence.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66d6cb7e3bdda5000164ea6f/picture,"","","","","","","","","" +EMBRACE,EMBRACE,Cold,"",64,marketing & advertising,jan@pandaloop.de,http://www.embrace.family,http://www.linkedin.com/company/embracefamily,"","","",Guetersloh,North Rhine-Westphalia,Germany,"","Guetersloh, North Rhine-Westphalia, Germany","ausbildungde meinpraktikumde traineede meineunide, employer branding, personalmarketing, recruiting, hr analytics, hr tech, retention, advertising services, recruiting solutions, hr tech startups, hr networks, hr strategy consulting, hr innovation labs, hr data & analytics, services, hr digital solutions, hr content creation, hr content, hr webinars, talent management, hr trend reports, hr innovation events, hr leadership development, hr-tech, workplace innovation, hr community, hr data analytics tools, hr tech investments, hr community networking events, hr employer branding campaigns, content marketing, hr digital platforms, hr talent acquisition strategies, hr future skills, hr community engagement, human resources, hr tech startups investment, hr plattformen, hr digital strategy workshops, hr insights, employer branding awards, hr tech innovation labs, hr innovation awards, hr active sourcing tools, hr strategy, b2b, hr networking, hr content marketing, hr transformation, hr future, talent acquisition, digital hr solutions, hr whitepapers, data-driven hr, hr digital transformation strategies, hr netzwerke, hr community platform, active sourcing, hr campaigns, hr best practices, hr trends, hr-innovation, hr tech investor relations, hr innovation, hr digital transformation, hr events, event management, employer branding campaigns, hr data analytics, hr digitalization, hr tech ecosystem development, hr technology, hr software, hr community building, hr podcasts, hr leadership, community building, hr awards, hr consulting, consulting, hr conferences, hr platforms, hr trend reports 2025, hr development, hr innovation projects, hr digital tools, hr future of work, hr digital event series, management consulting services, hr tech ecosystem, hr innovation case studies, hr future trends, hr talent strategies, education, marketing & advertising, events services, management consulting","","Outlook, Microsoft Office 365, Hubspot, Facebook Custom Audiences, Vimeo, Linkedin Marketing Solutions, Mobile Friendly, Facebook Widget, Facebook Login (Connect), Amadesa, Nginx, Twitter Advertising, Google Tag Manager, WordPress.org, Office365, Microsoft PowerPoint","","","","","","",69c27f6bf296df00018a5b16,8742,54161,"Embrace is a user-focused observability platform that specializes in Real User Monitoring (RUM) for mobile and web applications. Founded in 2016 and based in Culver City, California, Embrace helps engineering, SRE, DevOps, and product teams monitor and optimize digital experiences. The platform connects technical performance metrics to real business impact and user experiences, enabling teams to quickly resolve issues like crashes and performance bottlenecks. + +Embrace offers a comprehensive suite of observability tools, including user session insights, performance monitoring, intelligent alerting, and custom dashboards. These features provide detailed timelines of user interactions and help teams correlate technical details with business KPIs. Embrace integrates with backend observability tools and supports OpenTelemetry standards, making it a valuable resource for companies in various sectors, including retail, media, and education. Notable clients include The New York Times, Marriott, and Home Depot.",2010,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6715acc4a41756000101dfa8/picture,"","","","","","","","","" +Willich Elektrotechnik GmbH,Willich Elektrotechnik,Cold,"",19,electrical/electronic manufacturing,jan@pandaloop.de,http://www.willich.de,http://www.linkedin.com/company/willich-elektrotechnik-gmbh,"","",15 Kerschensteinerstrasse,Bebra,Hesse,Germany,36179,"15 Kerschensteinerstrasse, Bebra, Hesse, Germany, 36179","appliances, electrical, & electronics manufacturing, kabelbäume, roboterprogrammierung, wasser- und abwassertechnik, all other electrical equipment and component manufacturing, smart home, gebudesystemtechnik, electrical equipment manufacturing, ur + erweiterungen, roboterintegration, sensorik, building equipment contractors, autonome mobile roboter, service, e-mobility infrastruktur, wartung, manufacturing, b2b, fertigungstechnik, prüftechnik, cobots, it-netzwerke, intralogistik-optimierung, industrieroboter, gebäudesystemtechnik, programmierung, automatisierungslösungen, smart building automation, energieeffizienz, netzwerktechnik, industrial automation, umwelttechnik, environmental and water resources engineering, sicherheitssysteme, schulungswagen ur+, desinfektionsroboter, automatisierungstechnik, sps-programmierung, services, kollaborative roboter, consulting, test- und messtechnik, industrie 4.0, photovoltaik & speicher, sicherheitssteuerungen, elektroinstallation, prototypenentwicklung, elektromobilität, fahrerlose transportsysteme, applikationsberichte, schaltschrankbau, education, distribution, energy_utilities, construction_real_estate, electrical/electronic manufacturing, mechanical or industrial engineering, internet of things, consumers, construction",'+49 6622 92770,"Outlook, Microsoft Office 365, Typekit, Apache, Vimeo, Adobe Media Optimizer, Cedexis Radar, Mobile Friendly, Remote","","","","","","",69c27f6bf296df00018a5b1b,3661,33599,"Willich Elektrotechnik in Bebra: was 1985 als Einzelfirma und Spezialist für Elektrotechnik begann, ist heute ein international agierendes, regional vernetztes Unternehmen mit fast 100 Mitarbeitern und professionellen Kooperationspartnern. + +Auf einer Gesamtfläche von 7000 Quadratmetern leben wir unsere Leidenschaft: Elektrotechnik – zuverlässig, serviceorientiert, pünktlich. + +Zahlreiche weitere Geschäftsfelder runden das Leistungsspektrum ab: Innovativ wie umfassend ist die Gebäudesystemtechnik mit Leistungen von Beleuchtung bis Energie-Optimierung, Alarmanlagen bis Telefonanlagen, Gebäudeautomation bis Kommunikation und intelligente Haustechnik – mit entsprechender Installation, Wartung und Service. + +Automatisierung ist ein weiteres Kerngeschäftsfeld: Profis entwickeln, planen, bauen, programmieren und optimieren Schaltschränke, Steuereinheiten und Roboter-Anwendungen im Komplett-Programm. + +Von Profis für Profis ist der Bereich Fertigungstechnik aufgestellt: Willich entwickelt und produziert Kabelbäume, Elektro-, Pneumatik- und Prüf-Geräte nach individuellen Vorgaben und Anforderungen. + +Erfahrene Umwelttechniker errichten Abwasser- und Frischwasser-Anlagen inklusive Messtechnik, PLS- und SPS-Systeme und arbeiten im Bereich Umwelttechnik mit erfahrenen Kooperationspartnern von Beratung bis Instandhaltung. + +Das Portfolio wird anschließend noch durch IT-Technik und EDV Lösungen komplementiert. Wichtiges Thema hierbei ist die IT Sicherheit bei der Vernetzung von Anlagen, Office und Internet. + +Auch im Bereich Ausbildung ist Willich gefragt. Mehr als 60 Lehrlinge werden im Ausbildungsverbund jährlich unter meisterlicher Anleitung zum Facharbeiterabschluss gebracht. Innovationen und Know How, Zukunftsorientierung und Leistungsbereitschaft, Kundenorientierung und Bestleistungen. + +Elektrotechnik aus Leidenschaft: Willich Elektrotechnik.",1985,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66ffbb7d565359000176893d/picture,"","","","","","","","","" +Var Group GmbH,Var Group,Cold,"",61,information technology & services,jan@pandaloop.de,"",http://www.linkedin.com/company/var-group-gmbh,"","",Mies-van-der-Rohe-Strasse,Munich,Bavaria,Germany,80807,"Mies-van-der-Rohe-Strasse, Munich, Bavaria, Germany, 80807","it services & it consulting, information technology & services","","Cloudflare DNS, Outlook, CloudFlare Hosting, Google Tag Manager, Mobile Friendly","","","","","","",69c27f6bf296df00018a5b21,"","","Var Group GmbH is the German subsidiary of Var Group, an international system integrator and IT services company based in Italy. Founded in 1973, Var Group specializes in digital transformation for manufacturing and various other industries. With a turnover of approximately 480 million euros in 2021, the company employs over 2,700 people across 23 Italian offices and 8 international locations, including Germany, France, Spain, Romania, Switzerland, Austria, and China. + +The company offers a wide range of IT services, consulting, and custom software solutions. Its key areas include digital transformation, industrial IoT, cybersecurity, cloud orchestration, AI adoption, and big data analytics. Var Group serves various sectors such as manufacturing, food and beverage, automotive, and retail. The company collaborates with startups, universities, and vendors to create innovative solutions, positioning itself as a leader in supporting global digital evolution.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/696287a7ee36db00015d90ac/picture,"","","","","","","","","" +Deepshore GmbH,Deepshore,Cold,"",22,information technology & services,jan@pandaloop.de,http://www.deepshore.de,http://www.linkedin.com/company/deepshore-gmbh,"","",9 Van-der-Smissen-Strasse,Hamburg,Hamburg,Germany,22767,"9 Van-der-Smissen-Strasse, Hamburg, Hamburg, Germany, 22767","multicloud, kubernetes, nosql, cloud native technology, hyperlake data solutions, compliance, cloud technology, data integration, data analytics, blockchain, big data, artificial intelligence, it services & it consulting, container orchestration, hybrid cloud, big data analytics, compliance storage, data protection, edge computing, verteilte cloud-systeme, open-source-technologien, data governance, dateninfrastruktur, datenschutzkonformität, open source software, it-infrastruktur, cloud compliance, blockchain technology, dezentrale datenbanken, cybersecurity, ki-gestützte ressourcenplanung, forschungsförderung, blockchain-technologie, legal technology, reinforcement learning, data sovereign storage, ki-gestützte automatisierung, langzeitarchivierung, services, blockchain archivierung, datenschutz und compliance, langzeitarchivierung mit blockchain, datenverifikation, research and development, forschungskooperationen, datenverarbeitung, cloud-native architektur, financial technology, software development, blockchain-datenverifikation, datenintegrität in virtuellen infrastrukturen, data management systeme, information technology and services, ki für kritische infrastrukturen, data logistik, open source, data sovereignty, energy technology, consulting, verteilte systeme, revisionssichere speicherung, blockchain für compliance, sicherheitskonzepte, ki-modelle, compliance lösungen, dezentrale datenlogistik, openshift, automatisierte compliance-überwachung, sicherheitsstandards, microservices, autonomes it-management, verteilte datenbanken, datenintegrität, b2b, multi-cloud blockchain lösungen, data integrity, sap-archivierung, automatisierung durch ki, it-sicherheit, compliance management, automatisierte datenprozesse, ki in der energiewende, dezentrale cloud-systeme, datenmanagement, dezentrale datenhaltung, data privacy, multi-cloud-systeme, etl-prozesse, data security, datenlogistik, normung und standards, ki-anwendungen, ki-forschung, technologieentwicklung, datenarchivierung, ki entwicklung, ki-basierte etl-prozesse, cloud infrastruktur, multi-cloud-architekturen, ml pipelines, open data platforms, revisionssichere archivierung, cloud archive, blockchain validation, data verifikation, data verschlüsselung, open-source blockchain standards, containerisierung, datenverschlüsselung, vertrauenswürdige transaktionen, forschungsprojekte, digital transformation, dezentrale speicherung, cloud services, cloud computing, verteilte cloud-archive, computer systems design and related services, revisionssichere cloud-systeme, smart contracts, microservices deployment, finance, education, legal, non-profit, distribution, energy & utilities, enterprise software, enterprises, computer software, information technology & services, research & development, finance technology, financial services, computer & network security, nonprofit organization management",'+49 40 46664296,"Microsoft Office 365, Data Analytics","","","","","","",69c27f6bf296df00018a5b24,7375,54151,"Deepshore is a dynamic center of innovation and expertise, dedicated to crafting effective and adaptable solutions for the evolving landscapes of networks and technology. Our proficiency spans from designing sophisticated infrastructures to AI-driven service tools, with a particular focus on data-secure multi-cloud environments. Our goal is not just to innovate but to provide practical and meaningful advancements in the technological ecosystem.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670a93aa6629b00001bbdbd1/picture,"","","","","","","","","" +Campus Schwarzwald,Campus Schwarzwald,Cold,"",16,research,jan@pandaloop.de,http://www.campus-schwarzwald.de,http://www.linkedin.com/company/campusschwarzwald,"","",Herzog-Eberhard-Strasse,Freudenstadt,Baden-Wuerttemberg,Germany,72250,"Herzog-Eberhard-Strasse, Freudenstadt, Baden-Wuerttemberg, Germany, 72250","management, masterstudium, universitaeres masterstudienangebot, fertigung, startup, produktion, universitaet stuttgart, maschinenbau, sondermaschinenbau, digitalisierung, forschung, berufsbegleitende weiterbildung, fuehrung, lehre, coworking space, makerspace, nachhaltigkeit, research services, forschung und innovation, open space, co2-footprint-berechnung, manufacturing, smart factory, wasserstoff, labor und maker space, weiterbildung, digital twin, 5g in der produktion, services, hochschulkooperationen, energieeffizienz, data analytics, research and development in the physical, engineering, and life sciences, labor, virtuelle inbetriebnahme, energie und umwelttechnik, strategieentwicklung, forschung und entwicklung, technologietransfer, forschungszentrum schwarzwald, industrial automation, industrie 4.0, digitale transformation, co2-reduktion, technology consulting, wasserstofftechnologie, forschungs- und entwicklungsprojekte, cybersecurity, b2b, higher education, verbundforschung, kooperationen, forschungsprojekte, innovation, consulting, massentaugliche brennstoffzellen, hochschulbildung, technologietransferplattform, iot, start-ups, education, energy_utilities, mechanical or industrial engineering, management consulting, education management, startups",'+49 744 18684900,"Outlook, WordPress.org, Apache, Mobile Friendly, Google Tag Manager, Android","","","","","","",69c27f6bf296df00018a5b17,8731,54171,"Campus Schwarzwald, officially known as Centrum für Digitalisierung, Führung und Nachhaltigkeit Schwarzwald gGmbH, is a non-profit institution established in 2016. Located in Freudenstadt, Germany, it focuses on research, consulting, networking, and technology transfer aimed at enhancing industrial digitization for small and medium-sized enterprises (SMEs) in the Northern Black Forest region. The organization operates independently of public funding, relying on contributions from industry partners and third-party projects. + +Campus Schwarzwald offers a range of services across eight competency fields. These include research and development projects, consulting for digitalization and innovation management, and professional event spaces for workshops and networking. The organization also emphasizes education and recruiting, providing programs that integrate industrial practice with academic learning. Key partnerships with universities and industry leaders facilitate collaboration on projects like Trustpoint, a tool for managing digital certificates in industrial networks. Through these efforts, Campus Schwarzwald strengthens the region's position as a center for research and economic development.",2016,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f7a4f052a3e70001c40452/picture,"","","","","","","","","" +OSPHIM,OSPHIM,Cold,"",11,information technology & services,jan@pandaloop.de,http://www.osphim.com,http://www.linkedin.com/company/osphim,"","","",Aachen,North Rhine-Westphalia,Germany,"","Aachen, North Rhine-Westphalia, Germany","plastics manufacturing & transfer learning, software, plastics manufacturing, transfer learning, hardware, ai, software development, industrial machinery manufacturing, process deviation early warning, settings optimization, anomaly detection, secure cloud infrastructure, ai in circular economy, data acquisition, predictive maintenance, data security, user-friendly interface, manufacturing, b2b, ai-powered anomaly detection, process disturbance tracking, data visualization tools, scalability, smart manufacturing solutions, industrial automation, cloud computing, machine learning, injection molding, customizable dashboards, process disturbance alerts, recycling plastics data insights, process monitoring, process control, heterogeneous machine support, process optimization, dashboards, cloud infrastructure, services, ai model training suite, guided experiments, experimentation, integration with mes/erp, real-time data visualization, process comparison, predictive analytics, no-code ai application, no-code ai, consulting, data-driven decision making, industrial iot, asset management, manufacturing software, ai models, information technology & services, chemicals, computer & network security, mechanical or industrial engineering, enterprise software, enterprises, computer software, artificial intelligence, internet infrastructure, internet","","Outlook, Microsoft Office 365, Hubspot, Slack, Mobile Friendly, Nginx, YouTube, WordPress.org, Google Font API","","","","","","",69c27f6bf296df00018a5b19,3571,33324,"OSPHIM GmbH is a German AI startup founded in January 2024, based in Aachen. The company specializes in advancing plastics processing technologies, particularly in injection molding, by utilizing data-driven AI methods. With a team of 1-10 employees and over 30 years of combined expertise in plastics processing, software development, and business strategy, OSPHIM aims to enhance efficiency, precision, and sustainability in manufacturing. + +The company offers a plug-and-play platform that includes the OSPHIM-BOX for direct machine data collection and the OSPHIM-WEB platform for optimization. Their solutions leverage AI algorithms to analyze data, significantly reducing setup times and reject rates. Key features include data visualization, AI model training, process monitoring, and full integration capabilities. OSPHIM also provides personalized advice, ongoing support, and intelligent process optimization to help clients improve production quality and efficiency. The company has been recognized for its innovative approach, winning first place in the 2024 HIGH-TECH.NRW accelerator pitch competition.",2024,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67149da8ea008d0001a911df/picture,"","","","","","","","","" +FEL HR,FEL HR,Cold,"",14,human resources,jan@pandaloop.de,http://www.fel.de,http://www.linkedin.com/company/fel-gmbh,https://www.facebook.com/FELGmbH/,https://twitter.com/jobsFEL,5 Im Brauereiviertel,Kiel,Schleswig-Holstein,Germany,24118,"5 Im Brauereiviertel, Kiel, Schleswig-Holstein, Germany, 24118","seo recruitment, multiposting, behoerden, stellenanzeigen, smart city recruitment, activesourcing, recruitment, verwaltung, rpo, bpo, interim management, raas, executive search, rpo recruitment process outsourcing, oeffentliche auftraggeber, agile recruitment, rent a recruiter, recruitment as a service, headhunting, business process outsourcing, human resources services, hr technology, hr analytics software, recruitment campaigns, multi-channel job advertising, cost optimization in hr, application management system, online application portal, data-driven hr, candidate pool management, consulting, information technology and services, services, talent pool development, social media targeting for recruitment, recruitment analytics, hr data security tools, recruitment process outsourcing, recruitment automation tools, data protection, online job boards, candidate management, employer branding, business services, recruitment strategy optimization, hr consulting, b2b, social media recruiting, candidate experience, digital hr solutions, social media targeting, hr data privacy, employment placement agencies and executive search services, active sourcing, online application system, it technologies in hr, big data in recruitment, application management, talent acquisition, candidate sourcing tools, recruitment campaign management, it-driven hr solutions, automated job posting, candidate relationship management, candidate data privacy, candidate pool analytics, viral marketing in hr, gdpr compliance, candidate engagement, seo for job ads, candidate engagement tools, social recruiting, cost-effective hiring, hr data security, recruitment efficiency, candidate experience optimization, big data software, gdpr in recruitment, digital recruitment trends, workforce planning, digital hr innovation, recruitment consulting, application handling, cost reduction in recruitment, it in hr, digital recruitment, hr marketing, human resources and staffing, candidate sourcing, hr digital transformation, non-profit, staffing & recruiting, information technology & services, management consulting, nonprofit organization management",'+49 431 647750,"Outlook, Microsoft Office 365, Mobile Friendly, Bootstrap Framework, Nginx","","","","",5855000,"",69c27f6bf296df00018a5b1a,7361,56131,"What makes us special? + +Experience +Since 1995 we are succesfully hunting for better candidates from small to midsize companys, from international players up to organisations of the public sectors. + +Reliability +We stand for serious and reliable partnerships. +Side by side with our customers, being engaged in various business and social networks, we care for decades lasting relationships. + +Know-How +The optimal mix of traditionell and new methodes of recruitment like Active Sourcing and Executive Search in combination with Intelligent Recruitment Process Outsourcing (iRPO) makes the difference. For us, ""Digital Transformation"" is state of the art.",1995,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67312cb06512850001d543e6/picture,"","","","","","","","","" +"SocialNatives - You win, we win.",SocialNatives,Cold,"",30,marketing & advertising,jan@pandaloop.de,http://www.socialnatives.de,http://www.linkedin.com/company/socialnatives-profil,"","",58 Heidenkampsweg,Hamburg,Hamburg,Germany,20097,"58 Heidenkampsweg, Hamburg, Hamburg, Germany, 20097","marketing, landing pages, vertrieb, online marketing, webdesign, neukundenanfragen, strategie, google werbung, facebook werbung, instagram, facebook, umsetzung, geschwindigkeit, advertising services, web design, marketing & advertising","","Outlook, Microsoft Office 365, Hubspot, Google Font API, Bootstrap Framework, WordPress.org, Facebook Widget, Facebook Custom Audiences, Facebook Login (Connect), Vimeo, Google Tag Manager, Apache, Mobile Friendly, Hotjar, YouTube, Wistia, Linkedin Marketing Solutions","","","","","","",69c27f6bf296df00018a5b1c,"","","SocialNatives is a German recruiting and HR services company founded in 2017. It specializes in innovative strategies to help mid-sized companies quickly fill open positions. The company aims to ensure that no mid-sized employer lacks skilled workers. With a focus on transforming recruiting through social media and performance-driven approaches, SocialNatives has supported over 1,000 companies in Germany, generating more than 90,000 applications and successfully filling over 2,500 positions. + +The company offers a range of services tailored to modern talent acquisition and employer branding. These include innovative recruiting strategies that fill positions within 60 days, intelligent software for streamlined applicant management, and the creation of authentic content to enhance employer branding. SocialNatives emphasizes long-term partnerships and a human-centered, data-driven methodology, drawing from extensive experience across various industries. Their team of HR experts is dedicated to providing effective solutions and fostering collaborative relationships with clients.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670a4deaeccd2f00014b5dce/picture,"","","","","","","","","" +Woodmark Consulting,Woodmark Consulting,Cold,"",120,information technology & services,jan@pandaloop.de,http://www.woodmark.de,http://www.linkedin.com/company/woodmark-consulting,https://www.facebook.com/woodmarkgmbh/,"",7 Werner-von-Siemens-Ring,Grasbrunn,Bavaria,Germany,85630,"7 Werner-von-Siemens-Ring, Grasbrunn, Bavaria, Germany, 85630","data integration, reporting, cognitive analytics, iot, internet of things, data culture, data scientist, quantum computing, tableau, data science, data organisation, data transformation, data management, data quality, aws, business intelligence, bi strategy, big data, application services, exasol, databricks, artificial intelligence, snowflake, data platform, devops, data engineering, cloud analytics, ai, ki, analytics, data discovery, data strategy, data architecture, data analyitcs, data artist, kuenstliche intelligenz, use cases, predictive analytics, data warehouse, data governance, platform services, data engineer, bi tools, data security solutions, data lakes, cloud data lake, cloud migration & infrastructure, consulting services, data & ai use cases, cloud computing, data innovation, data & ai for manufacturing, data warehousing, data management & architecture, data analytics, data optimization, data quality assurance, data governance frameworks, data lifecycle management, data orchestration, industry 4.0 iot analytics, management consulting services, data compliance standards, data automation, data security, data & ai for finance, quantum model testing, ai consulting, cloud platforms, data analytics and ai, data & ai for healthcare, data migration tools, data compliance, digital transformation, data lake, machine learning, data visualization, data & ai for retail, consulting, software development, azure, data & ai for sports analytics, data & ai workshops, snowflake data platform, quantum algorithms, data & ai partnerships, services, ai model testing, cloud sovereign data cloud, genai, data engineering & transformation, genai implementation, cloud solutions, data pipelines, reporting & dashboards, data & ai certifications, information technology and services, data & ai competencies, data visualization tools, cloud migration, iot analytics, data infrastructure, data & ai innovation labs, data & ai, aws cloud, data & ai whitepapers, azure cloud, b2b, ai services, healthcare, finance, manufacturing, enterprise software, enterprises, computer software, information technology & services, management consulting, computer & network security, health care, health, wellness & fitness, hospital & health care, financial services, mechanical or industrial engineering",'+49 211 5420110,"Outlook, Hubspot, Facebook Custom Audiences, Nginx, Mobile Friendly, DoubleClick Conversion, Vimeo, Linkedin Marketing Solutions, Etracker, DoubleClick, Facebook Login (Connect), Google Dynamic Remarketing, Apache, Google Tag Manager, Facebook Widget, Databricks, Snowflake, Sisense, Domo, Looker, Uipath, SAP Analytics Cloud, Alteryx","","","","","","",69c27f6bf296df00018a5b14,7375,54161,"Woodmark Consulting AG is a German IT consulting firm based in Grasbrunn, Bavaria. The company specializes in Big Data, Analytics, Data, and AI, employing between 51 to 200 people and generating annual revenue of approximately $20.1 million. Woodmark operates across two continents and has successfully completed over 200 projects in various sectors, including HR, sales, marketing, finance, and real estate. + +The firm provides a wide range of consulting services, from strategy development to implementation, using its ""Data Cake"" model. Key areas of expertise include Data Governance, Cloud Analytics, Artificial Intelligence, and Data Management. Woodmark collaborates with leading technology partners such as Alteryx, IBM, and Snowflake, and is recognized for its strong implementation skills and friendly consultants. The company is also noted for its commitment to values like respect and responsible data use, contributing positively to customers and society.",1999,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69ad2ada06c3710001cd6a04/picture,"","","","","","","","","" +deveritec GmbH,deveritec,Cold,"",38,information technology & services,jan@pandaloop.de,http://www.deveritec.com,http://www.linkedin.com/company/deveritec,"","","",Dresden,Saxony,Germany,"","Dresden, Saxony, Germany","rtl design, python, fpga, workshops, agil, ultraprecise, app development, uwb, mobilfunk, systemdesign, requirementsengineering, sensors, middleware, smart home, embedded development, indoor positioning, security monitoring, cloud development, zertifizierung, serienbetreuung, ultrawideband, produktentwicklung, access management, outdoor positioning, testing, zulassung, hardware development, iot consulting, iot technology, rfid, ranging, validation & verification services, uwb technology, navigation, emv, rtls, keyless entry, asset tracking, zigbee, iot, indoor navigation, c, asic entwicklung, embedded system, embedded software, embedded software entwicklung, iot development, prototyping, presilicon validierung, embedded hardware, connectivity, nb iot, connected products, industrial measurement, firmware entwicklung, industrialisierung, ble, nfc, poc, software development, smart industry, iot networks, fpga entwicklung, linux, asic, requirement engineering, scrum, java, it services & it consulting, predictive maintenance, asic development, digitalization, energy-efficient electronics, custom electronics, sustainability, optical devices, deep tech, industry 4.0, security, manufacturing, multi-sensor systems, sensor technology, uwb nr+, custom asics, mesh protocols, measurement technology, iot solutions, quantum electronics, photonic devices, quantum computing, smart factory automation, physical principles in electronics, electronics and appliance manufacturing, energy management, manufacturing services, ems provider, photonics, wireless communication, smart devices, product certification, data security, hardware design, smart home connectivity, matter standard, series production, real-time monitoring, matter protocol, semiconductor and other electronic component manufacturing, electronics development, b2b, semiconductors, hardware, apps, information technology & services, internet of things, consumers, environmental services, renewables & environment, mechanical or industrial engineering, oil & energy, computer & network security",'+49 351 5019380,"Gmail, Google Apps, Outlook, Amazon AWS, Slack, reCAPTCHA, Mobile Friendly, Nginx, WordPress.org, Apache, IoT, Remote, Android","","","","","","",69c27f6bf296df00018a5b15,3671,33441,"deveritec GmbH is a German engineering firm based in Dresden, established in 2007. The company specializes in development services for embedded software and hardware, embedded systems, IoT, and integrated circuits within the electronics industry. With a team of 20-49 employees, deveritec generates annual revenue between $1M and $5M and is recognized as a small company. + +The firm offers a range of design, verification, and development services tailored to the electronics sector. Their core capabilities include embedded software and hardware development, hardware validation, and system design and verification. deveritec focuses on high-tech fields such as aerospace, energy systems, medical technology, automotive, and semiconductors, providing innovative solutions for digital devices and components. The company is also a member of networks like Silicon Saxony, highlighting its commitment to collaboration in the tech industry.",2007,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6910f8ed1f2de10001b2cbc1/picture,"","","","","","","","","" +PSI GridConnect,PSI GridConnect,Cold,"",16,information technology & services,jan@pandaloop.de,"",http://www.linkedin.com/company/psigridconnect,"","",6 Ostring,Karlsruhe,Baden-Wuerttemberg,Germany,76131,"6 Ostring, Karlsruhe, Baden-Wuerttemberg, Germany, 76131","hybride netzbetriebsfuehrung, verteilnetzausbau, netzautomatisierung, netzsteuerung, effiziente verteilnetze, mobilitaetswende, energieversorgung, versorgungssicherheit, mittelspannungsnetz, netzzustandsschaetzung, ladeinfrastrukturen, einspeisemanagement, weitbereichsregelung, gridmanagement, erneuerbare energien, lastmanagement, energiewende, niederspannungsnetz, netzzustandsprognose, topologieoptimierung, leitsystemschutz",'+49 721 942490,"Nginx, Mobile Friendly, Google Tag Manager","","","","","","",69c27f6bf296df00018a5b1d,"","","Die PSI GridConnect GmbH ist eine 100%ige Tochter der PSI AG mit dem Unternehmenssitz Karlsruhe. Das Unternehmen wurde 1996 als PSI Nentec gegründet und hat sich auf die Entwicklung leistungsstarker Netzwerkkomponenten und die Prozessankopplung für IP-basierte Kommunikationsnetze spezialisiert. + +Mit der Umfirmierung in PSI GridConnect GmbH Anfang 2019 soll die Fokussierung des Unternehmens auf die Entwicklung zukunftweisender Lösungen für sichere, intelligente Smart Grids zum Ausdruck gebracht werden. + +Neben den Zukunftsthemen Dezentralisierung und Flexibilitätsmanagement im intelligenten Stromnetz bieten wir auf Grundlage unserer langjährigen Erfahrung nach wie vor Hardware, Software und Dienstleistungen zum Bündeln, Konvertieren und Übermitteln von Informationen über IP-basierte Netzwerke. +Darüber hinaus verantworten wir die Entwicklungsarbeiten und Projektumsetzung im Bereich der dezentralen Verteilnetzautomatisierung im PSI Konzern und bieten aufeinander abgestimmte Produkte für die prozessnahe Automatisierung und Datenerfassung. + +Dank langjähriger Erfahrung im IT-Bereich wissen unsere Profis, wie man Produktideen und technische Konzepte zielstrebig zur Produktreife führt, ohne dabei Qualität, Kosten und Termine aus den Augen zu verlieren. + +Die PSI GridConnect beschäftigt am Hauptsitz Karlsruhe und in seinen weiteren Geschäftsstellen derzeit 54 hochqualifizierte Mitarbeiter/-innen mit umfangreichem Expertenwissen im Bereich der Netzwerk-Technologie. Die überdurchschnittliche Qualifikation und Motivation dieser Mitarbeiter bilden die Basis unseres Erfolgs. + +Impressum: https://www.psigridconnect.com/de/impressum/ + +Informationen zum Datenschutz: https://www.psigridconnect.com/de/datenschutz/",1996,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67020005c09f000001127cf8/picture,"","","","","","","","","" +QRC Group Team Joerg Speikamp,QRC Group Team Joerg Speikamp,Cold,"",18,staffing & recruiting,jan@pandaloop.de,"",http://www.linkedin.com/company/qrc-westfalen,"","",Bergbossendorf,Haltern am See,North Rhine-Westphalia,Germany,45721,"Bergbossendorf, Haltern am See, North Rhine-Westphalia, Germany, 45721","recruiting, grosskuechentechnik, product lifecycle management hr consulting, personalberatung, food service, technical & solution sales, pim, direct search, product lifecycle management, team hire, bim, headhunting, plm, cad, staffing & recruiting, enterprise software, enterprises, computer software, information technology & services, b2b","","Salesforce, Outlook, Microsoft Office 365, Amazon AWS, Active Campaign, Mobile Friendly, WordPress.org, Nginx, Google Tag Manager, Google Maps, Bootstrap Framework, Google Maps (Non Paid Users), Apache, YouTube, Google Analytics","","","","","","",69c27f6bf296df00018a5b27,"","","QRC Group AG is a personnel consulting firm based in Nuremberg, Germany, with a specialized recruitment team led by Jörg Speikamp in Münster/Westfalen. The firm focuses on executive search, personnel placement, and consulting, particularly in high-tech sectors. The team consists of around 18 professionals dedicated to recruiting for specialist and leadership positions. + +QRC Group offers a range of services, including personnel consulting, employee support, and training. Their expertise spans areas such as Product-Lifecycle Management (PLM), Engineering IT, and MINT (STEM) roles. They also specialize in sales excellence within high-tech industries and support new mobility initiatives, including e-mobility and traffic planning. The firm is equipped to handle staffing and recruitment for various roles, including IT Business Analysts and positions related to digital transformation in PLM.",2016,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/690add57a41e460001aa5042/picture,"","","","","","","","","" +core sensing GmbH,core sensing,Cold,"",18,electrical/electronic manufacturing,jan@pandaloop.de,http://www.core-sensing.de,http://www.linkedin.com/company/core-sensing-gmbh,"","",17 Rossdoerfer Strasse,Darmstadt,Hesse,Germany,64287,"17 Rossdoerfer Strasse, Darmstadt, Hesse, Germany, 64287","sensor, kraftsensor, maschinenbau, predictive maintenance, iot sensor, drehmomentsensor, drahtlose messverstaerker, appliances, electrical, & electronics manufacturing, industrieautomation, sensoren für maschinenbau, smart components, condition monitoring, sensoren für bau- und fertigungsprozesse, b2b, sensoren für landwirtschaftliche maschinen, cloud-lösungen, sensorentwicklung, kraft und drehmoment integriert, datenanalyse, use cases, datenfusion, industrie 4.0, feldtests, corein, smarte balgkupplung, kardanwellen mit sensoren, batteriebetriebene sensoren, gateways, predictive maintenance sensoren, condition monitoring sensoren, kraftsensoren, bluetooth sensorknoten, datenübertragung, apps und cloud, prozessoptimierung, dehnungsmessstreifen, sensorik für bau- und maschinenbau, drehmoment sensoren, sensorintegration in schraubfundamente, drehmomentmessflansch, iot sensorplattform, smarte maschinenelemente, transportation & logistics, drehmoment, services, lte telemetrie, sensoren für feldtests und serienproduktion, automatisierte dokumentation, sensor elektronik, sensorelektroniken, industrie 4.0 sensorlösungen, energy & utilities, serienfertigung, kundenspezifische lösungen, remote monitoring, drehmoment gelenkwellen, sensorintegration, nachhaltige produktion, sensorintegration in gelenkwellen, navigational, measuring, electromedical, and control instruments manufacturing, assistenzsysteme, sensoren, sensorplattform, mobile app, consulting, sensoren für druckluftsysteme, automatisierte sicherheitsdokumentation, construction, industrial automation, manufacturing, smarte gewindekomponenten, distribution, iot sensorintegration, wireless data logging, serienentwicklung, iot sensor plattform, machinery, transportation_logistics, energy_utilities, mechanical or industrial engineering, electrical/electronic manufacturing",'+49 6151 4936662,"Outlook, Amazon AWS, Hubspot, Linkedin Marketing Solutions, Vimeo, Google Tag Manager, DoubleClick Conversion, YouTube, DoubleClick, Apache, Google Analytics, Shutterstock, WordPress.org, Mobile Friendly, Google Dynamic Remarketing, Node.js, React Native, Android, Docker, IoT, Circle, AI",4950000,Venture (Round not Specified),0,2024-02-01,"","",69c27f6bf296df00018a5b2b,3829,33451,"core sensing GmbH is a company based in Darmstadt, Germany, founded in 2019. It specializes in IoT sensor integration for mechanical engineering, focusing on smart force sensors that enhance the digitalization of products and processes. The company originated from university research at the Technical University of Darmstadt and has developed a range of innovative solutions, including coreIN, a patented sensor technology for wireless force and torque measurement, and coreINSIGHT, an analytics tool for powertrain data interpretation. + +core sensing offers a modular sensor IoT platform called coreNET, which allows for flexible and scalable IoT setups. The company provides end-to-end solutions, supporting everything from concept planning to series production. With a commitment to quality, core sensing has achieved ISO 9001 certification and has secured significant funding to support its growth. It collaborates with partners in mechanical engineering, including a strategic partnership with Vemaventuri to enhance processes in the construction industry.",2019,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e561a0a6b5db000130b33e/picture,"","","","","","","","","" +taod Consulting GmbH,taod Consulting,Cold,"",70,management consulting,jan@pandaloop.de,http://www.taod.de,http://www.linkedin.com/company/taod-consulting-gmbh,"","",173 Oskar-Jaeger-Strasse,Cologne,North Rhine-Westphalia,Germany,50825,"173 Oskar-Jaeger-Strasse, Cologne, North Rhine-Westphalia, Germany, 50825","data science, knime, customer analytics, google analytics, visualisierungreporting, big data, fivetran, agile bi, postgrsql, power bi, trainings schulungen, lizenzhandling, ai, microsoft fabric, workshops, apikonnektoren, data thinking, datenbanken, datenintegration, intelligente datenplattformen, snowflake, exasol, consulting, cloud dhw, datavirtuality, data engineering, azure, webtracking, data strategies, postgresql, data pipelines, cloud migration, python 3, tableau desktop, trainings amp schulungen, business consulting & services, data modeling standards, data quality assurance, bi & data analytics, information technology & services, finance, data strategy consulting, databricks, data modernization, ai in business, cloud data platform strategy, power bi training, data governance frameworks, data migration, data security, ai services, b2b, azure fabric, data management, cloud computing, self-service bi, data infrastructure, data integration, data analytics, data transformation, data governance, strategy consulting, services, dataops, data automation, iot stream analytics, data quality, data compliance, snowflake data cloud, data orchestration, software development, predictive analytics, trainings, management consulting services, real-time data processing, cloud data platform, data science projects, data warehouse, data visualization, data lake architecture, azure data stack, tableau training, enterprise software, enterprises, computer software, management consulting, financial services, computer & network security, strategic consulting",'+49 221 97584970,"Cloudflare DNS, Route 53, Gmail, Outlook, Google Apps, Webflow, Hubspot, Adobe Media Optimizer, Linkedin Marketing Solutions, YouTube, Google Tag Manager, Mobile Friendly, Cedexis Radar, Hotjar, Facebook Custom Audiences, Facebook Widget, Facebook Login (Connect), Vimeo, Snowflake, Data Analytics, Remote, AI, Python, SQL, Microsoft Azure Monitor, AWS Trusted Advisor, Google Cloud, dbt","","","","","","",69c27f651e946c0001eeab96,7375,54161,"taod Consulting GmbH is a data consulting firm that specializes in data analytics, engineering, and strategy services. The company focuses on making data accessible and engaging, providing tailored solutions to meet client needs. With a team of 58 members, taod serves over 332 customers across the DACH region, including a location in Stuttgart. + +The firm offers a range of services throughout the project lifecycle, including data strategy development, data architecture and engineering, data analytics and visualization, data governance, and change management. taod integrates cloud technologies and modern data stacks to enhance data-driven practices. The company has expertise in various sectors, such as banking, retail, life sciences, and energy services, delivering specialized solutions like ESG reporting and real-time analytics platforms. + +Additionally, taod operates the taod Academy, which provides training and workshops for organizations looking to enhance their data analytics capabilities. They also host Data Lounge & Learn events to foster networking and inspiration among data professionals.",2018,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68be951a3856a3000111e6e3/picture,taod.ai (taod.ai),68523d668c46bb00013aee97,"","","","","","","" +Innok Robotics,Innok Robotics,Cold,"",43,machinery,jan@pandaloop.de,http://www.innok-robotics.de,http://www.linkedin.com/company/innok-robotics,https://www.facebook.com/InnokRobotics,"",4 Bahnweg,Regenstauf,Bavaria,Germany,93128,"4 Bahnweg, Regenstauf, Bavaria, Germany, 93128","robotik, outdoor, mobile robotik, outdoorrobotik, automation machinery manufacturing, logistics automation, hazard detection, predictive maintenance, robotic obstacle avoidance, indoor outdoor robots, services, robotic inspection, multi-terrain robots, modular robot platform, robot control software, ki-based navigation, transport robot, sensor technology, autonomous cemetery maintenance, sensor fusion, navigation software, flooding robot, utilities & energy, autonomous mobile robots, underground mining robots, farming robots, robotic automation, robotic water irrigation, cloud-based remote control, cemetery robot, robot platform customization, robotic water management, construction & real estate, autonomous watering, agricultural implement manufacturing, robotic watering, flooding robots, autonomous transport, farming automation, intelligent robot systems, inspection robots, logistics, manufacturing, agriculture, research & development, b2b, agriculture & farming, robotic system integration, remote maintenance, amr, robot navigation, 2d/3d sensors, multi-terrain navigation, robotic safety sensors, indoor outdoor mobility, robot safety features, education, distribution, energy & utilities, mechanical or industrial engineering",'+49 94 02473910,"Outlook, CloudFlare Hosting, Hubspot, Facebook Widget, Facebook Login (Connect), Google Tag Manager, DoubleClick Conversion, DoubleClick, Facebook Custom Audiences, YouTube, Linkedin Marketing Solutions, Google Dynamic Remarketing, Mobile Friendly, Remote, Bluebeam Revu, Dassault SOLIDWORKS, ePlan, FreeCAD, CANalyzer, CAT, Salesforce CRM Analytics, Wider Planet, Microsoft Excel, Microsoft PowerPoint, Indeed, Gem",7890000,Venture (Round not Specified),0,2025-06-01,"","",69c27f651e946c0001eeab99,3589,33311,"Innok Robotics GmbH is a German company founded in 2012 and based in Regenstauf, Bayern. The company specializes in developing autonomous mobile robots (AMRs) for various applications, including industrial logistics, the green sector, and research and development. + +Innok Robotics focuses on intelligent AMRs that utilize advanced 2D/3D sensor technology and proprietary software. Their core product, the Innok COCKPIT™ software, integrates sensors for intuitive operation and supports remote maintenance through Innok ReMain™, enhancing versatility in dynamic environments. The company offers a range of AMRs, including the HEROS platform for various applications, the INDUROS transport robot for industrial logistics, and the RAINOS irrigation robot for horticultural tasks. Their robots are designed for material handling, transport, and heavy-load transportation, providing efficient alternatives to traditional forklifts. + +Innok Robotics serves sectors such as industrial logistics and the green industry, showcasing their solutions at trade fairs like LOGISTICS & AUTOMATION Bern 2026 and IPM Essen. They also provide custom software development and system integration services to support their clients.",2012,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6784b013d926930001dfc3e7/picture,"","","","","","","","","" +MUNICH INNOVATION ECOSYSTEM,MUNICH INNOVATION ECOSYSTEM,Cold,"",13,management consulting,jan@pandaloop.de,http://www.munich-ecosystem.de,http://www.linkedin.com/company/munichinnovationecosystem,"","","",Munich,Bavaria,Germany,"","Munich, Bavaria, Germany","business consulting & services, high-tech industries, impact ecosystem services, partnerships, b2b, startups, consulting, ai hub, impact-driven, impact-focused, tech ecosystem, white papers, collaboration support, impact strategy, ai, corporates, impact strategy implementation, sustainable growth, impact project support, impact agenda setting, networking, impact community, impact initiatives, impact-oriented, impact collaboration, co-creation, impact development, impact ecosystem development, government, impact trend analysis, venture capital, industry trend setting, impact partnerships facilitation, other scientific and technical consulting services, ecosystem platform, public sector, munich innovation ecosystem, workshops, services, impact sustainability, impact partnerships, innovation agenda 2030, sustainability, digital transformation, impact-driven innovation, strategic initiatives, sustainable development, impact ecosystem, impact-focused collaboration, impact community building, education, information technology, impact projects, networking events, management consulting, environmental services, renewables & environment",'+49 173 3862862,"Cloudflare DNS, Outlook, Microsoft Office 365, Webflow, Mobile Friendly, Google Tag Manager, Hubspot, reCAPTCHA, YouTube, AI","","","","","","",69c27f651e946c0001eeaba2,8999,54169,"Munich Innovation Ecosystem GmbH is a collaborative organization based in Munich, Germany. It connects startups, talents, companies, academia, and the public sector to promote innovation and sustainability. As Germany's first inter-university entity focused on ecosystem building, it aims to establish Munich as a leading innovation hub through its Innovation Agenda 2030. + +The organization supports various initiatives, including the AI+MUNICH and AI NATION programs, which assist deep-tech AI startups with funding, expertise, and networking opportunities. It also hosts annual Management Meetups for ecosystem exchange and operates the Start for Future digital platform to foster community building. Munich Innovation Ecosystem GmbH provides access to resources like incubators, accelerators, and partnerships to help scale innovative ideas and drive systemic change. + +Key partners include top universities, public sector organizations, and industry leaders, all working together to create a vibrant innovation landscape in Munich.",2015,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6735ccc88e46130001c4cb72/picture,"","","","","","","","","" +AlgorithmWatch,AlgorithmWatch,Cold,"",35,nonprofit organization management,jan@pandaloop.de,http://www.algorithmwatch.org,http://www.linkedin.com/company/algorithmwatch,https://facebook.com/algorithmwatch,https://twitter.com/algorithmwatch,41 Boyenstrasse,Berlin,Berlin,Germany,10115,"41 Boyenstrasse, Berlin, Berlin, Germany, 10115","automation, algorithm, civil society, cso, aiethics, journalism, ethicsguidelines, watchdog, automated decisionmaking, automatisierte entscheidungen, datenspende, ngo, forschung, adms, civil society organisation, adm, research, data donation, advocacy, human rights, data sovereignty, datensouveraenitaet, agorithms, datenjournalismus, automatisierte entscheidungsfindung, algorithmic accountability, data journalism, algorithmic accountability reporting, non-profit organizations, ai in anti-discrimination policies, ai regulation, sustainability, data protection, ai governance, ai accountability measures, ai in surveillance, ai in civil society, algorithmic bias mitigation, algorithmic fairness, ai in democratic processes, ai in public accountability, ai in social welfare, ai in financial services, ai in social equity analysis, ai in human rights advocacy, ai in public transparency initiatives, ai in finance, ai in education, ai transparency standards, ai in public discourse, ai in civic engagement, ai in environmental sustainability, ai accountability, ai in workplace management, ai in digital democracy, ai in social cohesion, research and development, ai impact assessment, ai in social services, ai in ethical ai design, public understanding of ai, ai in employment, ai governance policies, ai in public policy, ai in social policy development, algorithmic bias, ai impact on labor rights, ai policy, ai in digital rights, digital rights, ai in digital literacy, ai fairness algorithms, ai in social risk assessment, ai in policy advocacy, machine learning ethics, ai regulation frameworks, social advocacy organizations, ai policy recommendations, ai oversight mechanisms, ai in labor rights, ai in community empowerment, ai transparency tools, algorithmic discrimination, public policy, automated systems, ai in civil liberties, ai ethics, ai in public awareness campaigns, ai and sustainability, ai bias detection, ai research, ai in environmental justice, ai and democracy, ai in democratic oversight, ai in participatory governance, automated decision systems, ai ethics guidelines, social impact of ai, algorithm transparency, ai oversight, ai in healthcare, ai in criminal justice, ai advocacy, algorithmic decision-making, ai in data protection, ai in social equity, ai and human rights, ai in social justice, ai in human rights protection, ai in society, ai in online content moderation, ai social implications, ai in legal frameworks, ai social justice, algorithm monitoring, automated decision-making, algorithmic transparency, surveillance technology, human rights advocacy, privacy protection, systemic risk assessment, impact analysis, ethical ai, digital governance, social justice, ai in workplace, labor rights, algorithm auditing, ngo initiatives, civil society coalition, ai impact studies, transparency frameworks, civil liberties, human-centric ai, algorithm enforcement, fairness in ai, platform accountability, eu ai act, algorithmic management, accountability measures, digital democracy, data privacy, public discourse, ai misuse, algorithm fairness, ai legislation, environmental sustainability, public space surveillance, ai risk management, algorithm governance, ethical oversight, autonomous systems, digital activism, information rights, non-profit, news, media, nonprofit organization management, environmental services, renewables & environment, research & development",'+49 30 994049000,"MailJet, Microsoft Office 365, Gmail, Google Apps, Salesforce, WordPress.org, Apache, Mobile Friendly, Nginx, Remote, AI","","","","",3400000,"",69c27f651e946c0001eeab9b,8999,81331,"AlgorithmWatch is a non-profit organization based in Berlin and Zurich that focuses on the social impact of algorithmic decision-making and AI systems. Its mission is to ensure that these technologies promote justice, democracy, human rights, and sustainability. The organization advocates for systems that prioritize democratic values and protect individuals from discrimination based on various factors. + +To achieve its goals, AlgorithmWatch employs evidence-based advocacy, combining research, policy analysis, and public campaigns. It develops tools to analyze algorithmic processes and their societal effects, promotes transparency and accountability, and conducts algorithm auditing to identify risks to democracy. The organization also engages in coalition-building to foster responsible AI use and encourages public debates on the limitations of computational solutions for human issues. + +AlgorithmWatch focuses on three main areas: AI and fundamental rights, AI and sustainability, and broader societal governance. It publishes analyses and reports, engages in policy work, and aims to shape legal frameworks for AI regulation, particularly in Switzerland and Europe.",2016,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67109fed9b09550001d20952/picture,"","","","","","","","","" +Codewerk,Codewerk,Cold,"",62,information technology & services,jan@pandaloop.de,http://www.codewerk.de,http://www.linkedin.com/company/codewerk,https://www.facebook.com/Codewerk-111231264917294,"",75 Siemensallee,Karlsruhe,Baden-Wuerttemberg,Germany,76187,"75 Siemensallee, Karlsruhe, Baden-Wuerttemberg, Germany, 76187","iolink fuer simatic pcs 7, fahrzeugtechnik, prozessleitsystemw, iot app entwicklung, edge application development, bibliotheken fuer simatic, energieautomatisierung mit iec 61850, automatisierung, industrielle schaltanlagen, iiot app development, prozessautomatisierung, protokoll implementierung, fertigungsautomatisierung, azure iot apps, mindsphere iot apps, model based software engineering, digitaler zwilling, verwaltungsschale, digitaler produktpass, software development, software-stack, cyber security pentesting, fahrzeug-subsysteme, big data, systemkonformität, datenarchitektur, schienenverkehr, sibaspn validierungstest, api-integration, edge- und iot-anwendungen, hardware-reduktion, systemintegration, fahrzeugnetzwerke, hardware-software-integration, modellbasiertes software-engineering, systemvalidierung, softwarelösungen, cybersecurity, industrie 4.0, services, fahrzeugdatenanalyse, fahrzeugnetzmanagement, netzwerktechnologien, edge computing, international standards, cyber security, automatisierungstechnik, industrial automation, iot-entwicklung, fahrzeugdatenmonitoring, navigational, measuring, electromedical, and control instruments manufacturing, systemharmonisierung, it-security, b2b, fahrzeugsteuerung, vernetzte industrie, profinet stack, zukunftstechnologien, kommunikationsprotokolle, standardisierung, softwareentwicklung, datenmanagement, forschungsprojekte, modellbasiertes engineering, smart rail solutions, edge- und cloud-lösungen, forschungskooperationen, transportation & logistics, datenanalyse, railway equipment & components, simatic pcs 7 integration, sicherheitsnachweise, io-link-bibliothek, sicherheitszertifizierung, technologieentwicklung, fahrzeug- und infrastruktur-interoperabilität, iot-plattformen, validierungstests, schnittstellenentwicklung, fahrzeugsoftware, subsystem-integration, fahrzeugkomponenten, trdp validierungstest, cloud-anwendungen, turck remote io, international standardisierung, manufacturing, profinet services, fahrzeugdiagnose-software, smart factory, sicherheitskonzepte, softsibas trdp, distribution, transportation_logistics, information technology & services, enterprise software, enterprises, computer software, computer & network security, mechanical or industrial engineering",'+49 721 98414678,"Outlook, Google AdWords Conversion, WordPress.org, Google Tag Manager, Google Font API, Mobile Friendly, Hotjar, Vimeo, Node.js, Android, AI, ICP, .NET, Remote, AT&T, Javascript, Secured MVC Forum on Windows 2012 R2, Amazon Linux 2, Siemens SIMATIC PCS 7, Kubernetes, Docker, IoT","","","","","","",69c27f651e946c0001eeab9f,3812,33451,"Codewerk GmbH is a German software development service provider founded in 2014 and based in Karlsruhe. The company specializes in consulting, development, and engineering for automation, Industrial Internet of Things (IIoT), rail transportation, process industries, and manufacturing sectors. With a team of approximately 56 employees, Codewerk operates from four locations in Germany and offers remote capabilities worldwide. The company is ISO 27001 certified for information security management. + +Codewerk provides a range of engineering services tailored to digitalized industries. Their offerings include custom software development and integration for rail vehicles and automation systems, PROFINET stack integration, and embedded security services. They also focus on consulting and engineering solutions for system integrators and machine builders, actively participating in research for future rail technology and Industry 4.0. Additionally, Codewerk develops engineering tools for the Siemens MindSphere® IoT platform and maintains a large library of IO-Link drivers.",2014,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6960c056908cef000103194a/picture,"","","","","","","","","" +ACP Digital Business Solutions AG,ACP Digital Business Solutions AG,Cold,"",23,information technology & services,jan@pandaloop.de,http://www.acp-digital.com,http://www.linkedin.com/company/acp-digital-bs,https://www.facebook.com/acp.gruppe,"",35 Pruessingstrasse,Jena,Thuringia,Germany,07745,"35 Pruessingstrasse, Jena, Thuringia, Germany, 07745","modern workplace, business software consulting, erpsystem godyo p4, digitalisierung, netzwerk und security, design thinking, projektmanagement, support und service, rechenzentrum, itinfrastruktur consulting, kuenstliche intelligenz, zentrale it, dokumentenmanagement, it services & it consulting, data analytics, automatisierung, generative ki, digital transformation, big data & analytics, ki workshops, consulting, industrial automation, computer systems design and related services, cloud computing, datenmanagement, prozessautomatisierung, künstliche intelligenz, services, cloud transformation, information technology and services, data lake-house, predictive maintenance, softwareentwicklung, data security, software development, data driven company, b2b, information technology & services, mechanical or industrial engineering, enterprise software, enterprises, computer software, computer & network security",'+49 364 12870,"Outlook, Microsoft Office 365, ServiceNow, GitHub Hosting, Hubspot, Slack, OneTrust, React, Google Tag Manager, Linkedin Login, Linkedin Widget, Mobile Friendly, Facebook Widget, Facebook Login (Connect)","","","","","","",69c27f651e946c0001eeaba5,7374,54151,"ACP | Ihr Partner für ganzheitliche IT. +✓IT-Consulting ✓IT-Infrastruktur ✓Software-Lösungen ✓IT-Service",1990,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670e3d82b43e5a000182aa5d/picture,"","","","","","","","","" +ECEON Robotics,ECEON Robotics,Cold,"",14,machinery,jan@pandaloop.de,http://www.eceon.tech,http://www.linkedin.com/company/eceon,"","",5 Im Mediapark,Koeln,Nordrhein-Westfalen,Germany,50670,"5 Im Mediapark, Koeln, Nordrhein-Westfalen, Germany, 50670","automation machinery manufacturing, fast setup, logistics automation, transportation & logistics, flexible deployment, machine learning, drive and control technology, labor shortage solutions, reliable automation, industrial robotics, autonomous transport, material flow automation, healthcare, warehouse automation, cost reduction, low training requirement, cognitive visioning, manufacturing, pallet transport, warehouse robotics, collaborative robots, industrial automation, ai technology, truck loading and unloading, self-learning systems, collaborative workforce, b2b, smart logistics solutions, material handling equipment manufacturing, robotic logistics, material handling automation, scalable robotics solutions, intelligent automation, robot deployment in factories, human-robot collaboration, distribution, order fulfillment automation, robotic pallet movers, intelligent robots, productivity increase, autonomous mobile robots, ai-powered robotics, material handling efficiency, human-machine interaction, error rate reduction, ai-driven material transport, german engineering, robot fleet management, artificial intelligence, information technology & services, health care, health, wellness & fitness, hospital & health care, mechanical or industrial engineering",'+49 22 1669614,"Outlook, Google Cloud Hosting, Varnish, Mobile Friendly, Wix, IoT, Remote, AI",220000,Seed,220000,2024-03-01,"","",69c27f651e946c0001eeaba6,3589,33392,"Automate Your Processes Through Intelligent Mobile Robots – As Effective and As Simple As Never Before. + +ECEON's next-generation autonomous mobile robots are based on advanced artificial intelligence for true human-machine collaboration allowing a new level of productivity, user-friendliness, and reliability. ECEON's intelligent robots are more than just robots - they are true coworkers that reduce material handling costs by up to 90% while increasing productivity by 200-300%. Thanks to ECEON's unique combination of innovative hardware and machine learning technologies, ANYONE is able to employ its intelligent collaborative coworkers – there is NO prior knowledge or training required. + +ECEON's robotics solutions are made in Germany. Our inherited strengths in German engineering and the high speed of Silicon Valley innovation are at the core of everything we do to deliver our customers highly innovative and effective solutions. With offices in Cologne, Germany, Sofia, Bulgaria, and Sunnyvale, California, we are located in the most vibrant and technology-focused areas. + +Are you interested in advancing technology to achieve breakthroughs in robotics and machine learning to provide our customers with intelligent robots that collaborate with humans like humans? Then you might want to become part of our team. Learn more at https://www.eceon.tech/","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66ffbac9cac7ed0001ba8166/picture,"","","","","","","","","" +Beschaffung Aktuell,Beschaffung Aktuell,Cold,"",11,publishing,jan@pandaloop.de,http://www.industrie.de,http://www.linkedin.com/company/beschaffung-aktuell,"","",8 Ernst-Mey-Strasse,Leinfelden-Echterdingen,Baden-Wuerttemberg,Germany,70771,"8 Ernst-Mey-Strasse, Leinfelden-Echterdingen, Baden-Wuerttemberg, Germany, 70771","cteilemanagement, beschaffung, zulieferung, indirekter einkauf, vendor managed inventory, business travel, compliance, technischer handel, eprocurement, verhandlungsfuehrung, digitalisierung, spend management, lieferantenmanagement, esourcing, supply chain management, procurement engineering, global sourcing, risikomanagement, einkaufscontrolling, public procurement, katalogmanagement, logistik, sustainability, newspaper publishing, industrial iot, additive fertigung in der luftfahrt, additive fertigung für automobilteile, großformat-3d-druck, automobilindustrie, regenerative medizin, medical devices & equipment, laser sintering, luft- und raumfahrt, industry 4.0, manufacturing technology, simulation, rapid prototyping, 3d printing, bio-3d-druck, b2b, information technology & services, industrial automation, werkzeug- und formenbau, automation, industrial equipment & components, post-processing, materialforschung, instandhaltung, forschung & entwicklung, predictive maintenance, industrie 4.0, material development, werkstoffentwicklung, prototypenentwicklung, kunststoffverarbeitung, 3d-druck in der medizintechnik, sls-drucker, fdm-drucker, sustainable manufacturing, 3d-druck, supply chain optimization, metallpulver, serial production, industrial machinery manufacturing, smart factory, fused deposition modeling, innovative werkstoffe, digital manufacturing, automatisierung, additive manufacturing, supply chain, consulting, laser-technologie, medizintechnik, serienfertigung, cybersecurity, sla-drucker, selective laser sintering, werkstoffe, aerospace & defense, qualitätskontrolle, additive serienfertigung, manufacturing solutions, prototyping, metall-3d-drucker, process optimization, metal 3d printing, services, digital twins, hybridfertigung, innovative materials, qualitätssicherung, feuerfester 3d-druck, automotive, additive fertigung mit titan, manufacturing, healthcare, industry, technology, additive_manufacturing, 3d_printing, industry_4_0, research, innovation, material_development, quality_control, digital_factory, logistics & supply chain, environmental services, renewables & environment, media, mechanical or industrial engineering, health care, health, wellness & fitness, hospital & health care",'+49 711 7594554,"Amazon SES, Outlook, Microsoft Office 365, GitHub Hosting, Vimeo, DoubleClick Conversion, Adobe Media Optimizer, reCAPTCHA, Gravity Forms, Google Tag Manager, WordPress.org, Media.net, Google Dynamic Remarketing, Google Analytics, Cedexis Radar, Google Font API, Mobile Friendly, DoubleClick, YouTube, Nginx, Linkedin Marketing Solutions","","","","","","",69c27f651e946c0001eeab93,7375,33324,"Beschaffung aktuell is a prominent German-language magazine focused on procurement professionals, including buyers, procurement managers, and Chief Procurement Officers. Established in 1954 and published by the Konradin Mediengruppe, it offers insights into strategic and operational procurement, supply chain management, materials management, and logistics. The magazine has evolved significantly over the years, increasing its publication frequency and adapting to industry changes. + +The content covers a wide range of topics such as digitalization in procurement, AI applications, sustainability, and economic indicators. It is available in various formats, including a print magazine with six issues per year, an online portal featuring daily news and articles, newsletters, and whitepapers. The magazine serves procurement decision-makers across multiple sectors, including manufacturing, automotive, and energy, providing valuable resources for professionals navigating the complexities of modern procurement.",1954,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670a0e6f3e597000013f4e76/picture,"","","","","","","","","" +Supper & Supper GmbH,Supper & Supper,Cold,"",13,management consulting,jan@pandaloop.de,http://www.supperundsupper.com,http://www.linkedin.com/company/supper-and-supper,"",https://twitter.com/SupperundSupper,20 Saarbruecker Strasse,Berlin,Berlin,Germany,10405,"20 Saarbruecker Strasse, Berlin, Berlin, Germany, 10405","computational life science, business intelligence, digital farming, digital transformation, data science, machine learning, process optimization, data analysis, big data, 3d point clouds, mechanical engineering, geo ai, business consulting & services, data pipeline, data lab, big data processing, computer systems design and related services, predictive maintenance in industry, ai for agriculture, transportation & logistics, industrial iot data, support services, remote sensing data, environmental monitoring, environmental data analysis, automated data labeling, predictive analytics, data support, ai-model deployment, services, manufacturing, agriculture data, sustainable agriculture, ki-gestützte geodatenanalyse, data operations, government, data pipelines, ai for infrastructure, data security, data analytics, industriefokus, remote sensing, consulting, artificial intelligence, cloud architektur, mlops, data management, scalability, ai-lösungen, agriculture ai, ai products, geospatial ai, data visualization, remote sensing data processing, digital twins, ai in civil engineering, digitalisierung, environmental impact analysis, industrial applications, sustainable agriculture solutions, cloud services, cloud migration, predictive maintenance, environmental monitoring ai, data-driven decision making, data strategy, data consulting, data infrastructure, 3d point cloud classification, industrial data, b2b, cloud architektur review, geospatial data pipelines, geodaten, satellite image analysis, transportation_logistics, analytics, information technology & services, enterprise software, enterprises, computer software, mechanical or industrial engineering, management consulting, computer & network security, cloud computing",'+49 30 922181450,"Outlook, Microsoft Office 365, Hubspot, WordPress.org, Nginx, Google Font API, Mobile Friendly, AI","","","","","","",69c27f651e946c0001eeab94,7375,54151,"Supper & Supper GmbH is specialized in Data Science, Data Science Training and Digital Transformation Management. We help to manage complex business challenges with data technologies, algorithms as well as the right mindset. We support clients to master high-volume, digital business processes using data mining and machine learning and empower organizations to actively shape their digital transformation.",2012,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66ef47734d3a3300012eadaa/picture,"","","","","","","","","" +TWT Science & Innovation,TWT Science & Innovation,Cold,"",140,information technology & services,jan@pandaloop.de,http://www.twt-innovation.de,http://www.linkedin.com/company/twt_gmbh,https://www.facebook.com/twtgmbh,https://twitter.com/TWT_Innovation,6 Industriestrasse,Stuttgart,Baden-Wuerttemberg,Germany,70565,"6 Industriestrasse, Stuttgart, Baden-Wuerttemberg, Germany, 70565","it services & it consulting, edge computing, forschung und entwicklung, automotive manufacturing, sicherheitsanalysen, virtuelle inbetriebnahme, cloud computing, mesh quality improvement, mesh smoothing in 3d, kollaborative entwicklung, softwareentwicklung, simulationstechnologien, produktentwicklung, b2b, sicherheitszertifizierung, kollaborative plattformen, research and development in the physical, engineering, and life sciences, predictive maintenance, produktionsplanung, mesh regularity enhancement, mesh quality metrics, nachhaltigkeit, software-tools, data science, virtuelle prototypen, mesh quality metrics optimization, automotive software, systemtests, simulationsplattformen, prozessautomatisierung, mesh convergence analysis, industrie 4.0, fem-simulation, machine learning, software-architekturen, simulationsmethoden, mesh smoothing algorithms, healthcare, process optimization, innovation, digitalisierung, vehicle dynamics, prozessoptimierung, technologieberatung, thermische simulationen, kommunikationssysteme, data analytics, mesh optimization, hardware-in-the-loop, mesh quality in cfd, automatisierte tests, automatisierte validierung, artificial intelligence, quantum computing, e-mobility, mesh smoothing for structural analysis, mesh optimization for high-performance computing, energy, autonomes fahren, energy efficiency, fahrzeugentwicklung, consulting, mesh optimization in finite element analysis, automotive engineering, energieeffizienz, datenmanagement, künstliche intelligenz, rechenmodelle, systemmodellierung, embedded systems, sensorenentwicklung, fahrzeugsoftware, healthcare technology, services, software development, qualitätsmanagement, interdisziplinäre forschung, information technology and services, qualitätskontrolle, mesh smoothing, model-based systems engineering, co-simulation, aerospace, automatisierung, sensorfusion, electric vehicles, digital twin, cyber-physical systems, mesh regularization, mesh smoothing for mixed meshes, systemintegration, fehlerdiagnose, industrieforschung, data management, datenfusion, virtual reality, mesh transformation methods, education, manufacturing, energy & utilities, information technology & services, enterprise software, enterprises, computer software, health care, health, wellness & fitness, hospital & health care, environmental services, renewables & environment, embedded hardware & software, hardware, clean energy & technology, mechanical or industrial engineering",'+49 711 2157770,"Cloudflare DNS, CloudFlare Hosting, Salesforce, Outlook, Microsoft Office 365, Facebook Custom Audiences, Mobile Friendly, Facebook Login (Connect), Google Maps, Google Tag Manager, Facebook Widget, WordPress.org, Google Maps (Non Paid Users), Slack","","","","",33000000,"",69c27f651e946c0001eeab97,8731,54171,"TWT GmbH Science & Innovation is a German SME based in Stuttgart, focused on transforming scientific expertise into advanced products and services in IT, engineering, and consulting. The company serves various industries, including automotive, aerospace, industrial, medical, and pharmaceuticals. With a team of around 250 skilled professionals, TWT emphasizes sustainable strategies and innovative solutions. + +The company offers a range of services, including consulting, project conception, and implementation tailored to meet the needs of its clients. Key areas of focus include automated quality assurance, AI-driven optimizations, modular simulation, and digital integration for smart factories. TWT is also involved in numerous publicly funded projects, contributing to advancements in mobility, AI, and smart systems. + +TWT collaborates with OEMs in technology-leading sectors and participates in various ITEA projects, showcasing its expertise in areas like behavior simulation, energy prognosis, and software optimization. The company is dedicated to developing solutions that address the challenges of modern industries.",1986,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69a52d1f11446600014106f9/picture,"","","","","","","","","" +statworx,statworx,Cold,"",65,information technology & services,jan@pandaloop.de,http://www.statworx.com,http://www.linkedin.com/company/statworx,https://facebook.com/statworx,https://twitter.com/statworx,150 Hanauer Landstrasse,Frankfurt,Hesse,Germany,60314,"150 Hanauer Landstrasse, Frankfurt, Hesse, Germany, 60314","machine learning, predictive analytics, statistics, sustainability, data science, statistik, artificial intelligence, it services & it consulting, services, ai in aviation, ai solutions, data lakes, ai in automotive, ai in finance, data literacy, data science and ai, predictive maintenance, ai in insurance, ai development, energy, data fabric, ai consulting, telecommunications, data management, ai for societal good, data quality, computer vision, healthcare, ai strategy, digital transformation, deep learning, data engineering, mlops, data architecture, logistics, ai in manufacturing, ai in energy, ai in pharma, finance, innovation, manufacturing, data pipelines, ai in telecom, natural language processing, ai in retail, ai in public sector, cloud solutions, automation, financial services, ai applications, business intelligence, computer systems design and related services, model deployment, process optimization, data platforms, b2b, neural networks, ai in logistics, data analytics, generative ai, recommender systems, data governance, data security, ai training, ai implementation, data mesh, ai in healthcare, it services and it consulting, explainable ai, data infrastructure, consulting, customer analytics, forecasting, data strategy, data culture, ai infrastructure, custom ai development, training and upskilling, big data processing, automated pricing, sales forecasting, ai chatbots, customer churn reduction, data integration, supply chain optimization, predictive pricing, ai governance, data lakehouse, ai for sustainability, process automation, enterprise ai solutions, case studies, use cases, career development, innovative technologies, technical consultancy, ai for digital transformation, expert advice, industry-specific solutions, augmented analytics, data-driven decision making, education, transportation_logistics, energy_utilities, information technology & services, enterprise software, enterprises, computer software, environmental services, renewables & environment, health care, health, wellness & fitness, hospital & health care, mechanical or industrial engineering, cloud computing, analytics, computer & network security",'+49 69 678306751,"Cloudflare DNS, ElasticEmail, Outlook, LearnDash, Atlassian Cloud, Microsoft Azure, Webflow, Hubspot, Slack, Facebook Custom Audiences, DoubleClick Conversion, reCAPTCHA, Google Maps, Hotjar, Google Maps (Non Paid Users), Google Font API, Google Dynamic Remarketing, WordPress.org, Google AdWords Conversion, Mobile Friendly, Bing Ads, Facebook Widget, DoubleClick, Nginx, Facebook Login (Connect), Google Analytics, Google Tag Manager, Snowflake, AI, Remote, OpenAI, Dataiku, Microsoft Azure Monitor, Google Cloud, Amazon Web Services (AWS), AWS Trusted Advisor, IBM ILOG CPLEX Optimization Studio, Spark, Apache Kafka, Databricks, Terraform, Pulumi, CallMiner Eureka, Azure Data Lake Storage, SQL, Canva, Python, Microsoft PowerShell","","","","","","",69c27f651e946c0001eeab9a,7375,54151,"statworx is a consulting and development company based in Frankfurt am Main, Germany, specializing in data science, machine learning, artificial intelligence (AI), and digital transformation. Founded in 2011 by CEO Sebastian Heinz, the company employs around 60 experts from diverse fields and serves clients across ten industries in the DACH region, focusing on delivering measurable business value through collaborative projects. + +The company offers comprehensive services in three main areas: strategic consulting, technical development, and training. It guides organizations in their data and AI transformation journeys, designs scalable infrastructures, and develops custom AI products. Additionally, statworx provides training programs that utilize gamification and interactive platforms to empower clients at all competency levels. With expertise in sectors like automotive and finance, statworx applies AI technologies to enhance efficiency and drive innovation.",2011,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68696dda8cefac0001e4dcbc/picture,"","","","","","","","","" +SIM Automation GmbH,SIM Automation,Cold,"",53,machinery,jan@pandaloop.de,http://www.sim-automation.de,http://www.linkedin.com/company/sim-automation-gmbh,https://www.facebook.com/SIM-Automation-GmbH-641781702946594/,"",20 Liesebuehl,Heilbad Heiligenstadt,Thuringia,Germany,37308,"20 Liesebuehl, Heilbad Heiligenstadt, Thuringia, Germany, 37308","sondermaschinenbau, produktion, maschinenbau, eichsfeld, machinery manufacturing, bunkersysteme, qualitätskontrolle, modulare anlagen, automatisierte prüfsysteme, automatisierungssoftware, individuelle automatisierung, präzise fertigung, medical devices, zuführtechnik, automatisierte zuführsysteme, effizienzsteigerung, laserkennzeichnungssysteme, prüftechnik, consulting, normgetreue anlagen, b2b, manufacturing, laserbeschriftung, industrial automation, medizintechnik automatisierung, prozessoptimierung, industrial machinery manufacturing, process optimization, ki-basierte systeme, automatisierungstechnologie, industrie 4.0, kundenspezifisch, automatisierungslösungen, transportbänder, skalierbare produktion, industrial machinery & equipment, electrical equipment & components, montageanlagen, services, system integration, healthcare, mechanical or industrial engineering, hospital & health care, health care, health, wellness & fitness",'+49 36 066900,"Outlook, Microsoft Office 365, ASP.NET, WordPress.org, Google Analytics, Apache, Microsoft-IIS, Google Tag Manager, Bootstrap Framework, Mobile Friendly","","","","","","",69c27f651e946c0001eeab9c,3599,33324,"SIM Automation GmbH is a German manufacturer based in Heilbad Heiligenstadt, specializing in special machines and automation equipment. With 60 years of experience, the company has developed extensive expertise in the automation sector. + +The company focuses on creating transport and feeding systems for small parts. Their product offerings include single-lane and double-lane transport belts, which come in various lengths and speeds, as well as belt bunkers designed for storing small items. Additionally, they provide spiral conveyors for sorting and organizing items, along with custom solutions tailored to meet specific customer needs. + +SIM Automation GmbH is led by Dr. Winfried Büdenbender and Dipl. Wirt.-Ing. Jochen Seidler.",1959,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/677a220f27bfd000012eddec/picture,"","","","","","","","","" +Trebing & Himstedt Prozeßautomation GmbH & Co. KG,Trebing & Himstedt Prozeßautomation GmbH & Co. KG,Cold,"",13,information technology & services,jan@pandaloop.de,http://www.t-h.de,http://www.linkedin.com/company/trebing-himstedt,https://facebook.com/TrebingHimstedt,https://twitter.com/trebinghimstedt,13 Wilhelm-Hennemann-Strasse,Schwerin,Mecklenburg-Vorpommern,Germany,19061,"13 Wilhelm-Hennemann-Strasse, Schwerin, Mecklenburg-Vorpommern, Germany, 19061","traceability, variant production, industrie 40, iot, digitale transformation, sap oee, sap cloud platform, sap mii, smarte instandhaltung, variantenreiche fertigung, produktrueckverfolgbarkeit, predictive maintenance, sap dm, produktion, produktionsplanung, smart maintenance, smart assets, digitalstrategie, mes mit sap, produktionskennzahlen, cloud, sap me, plant performance management, manufacturing, it services & it consulting, mes cloud, industrie 4.0 standards, produktionsoptimierung, intelligente fabrik, end-to-end digitalisierung, cloud migration, b2b, zero canvas, information technology & services, celonis ems, mes aus der cloud, sap portfolio, systemintegration, datenarchitektur, industrie 4.0, sap mes, sap dmi, transportation & logistics, open industry 4.0 alliance, smart factory, cloud in der produktion, process mining, digital supply chain, digitaler zwilling, consulting, data-driven manufacturing, supply chain management, hybrid cloud, cloud-migration-workshops, sap digital manufacturing, celonis process mining, sap reo, sap elevate partner, smart factory plattformen, services, nachhaltige produktion, resiliente wertschöpfungsketten, digital services, prozessautomatisierung, agile transformation, sap dme, management consulting services, cloud-architektur, agile projektmethoden, distribution, mechanical or industrial engineering, logistics & supply chain",'+49 385 3957212,"Amazon SES, SendInBlue, Outlook, Microsoft Office 365, Facebook Custom Audiences, Google Tag Manager, WordPress.org, DoubleClick Conversion, Linkedin Marketing Solutions, Bing Ads, Google Analytics, DoubleClick, Google Dynamic Remarketing, Mobile Friendly, Apache","","","","",7764000,"",69c27f651e946c0001eeab9e,3571,54161,"Trebing & Himstedt Prozeßautomation GmbH & Co. KG is a German consulting firm founded in 1992, focused on digital transformation for manufacturing companies. Headquartered in Schwerin, with additional offices in Stuttgart and Berlin, the company specializes in intelligent factories, sustainable supply chains, and Industry 4.0 solutions using SAP-based technologies. With a team of 51-200 employees, it has delivered over 650 integrated solutions both nationally and internationally. + +The firm offers comprehensive SAP consulting services throughout all phases of digitization, including strategy, implementation, and training. Key services include process mining, plant performance management, and predictive maintenance. As an SAP Silver Partner, Trebing & Himstedt utilizes the SAP Business Technology Platform to enhance production efficiency and support the transition to smart factories. Its solutions, such as SAP Digital Manufacturing and SAP Manufacturing Execution, enable flexible production and cost reduction for a diverse range of clients in high-tech and machinery sectors.",1992,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e6c60ab0da8000010e8fdf/picture,"","","","","","","","","" +Jüke Systemtechnik GmbH,Jüke Systemtechnik,Cold,"",52,medical devices,jan@pandaloop.de,http://www.jueke.de,http://www.linkedin.com/company/j%c3%bcke-systemtechnik-gmbh,https://facebook.com/juekesystemtechnikgmbh,"",2 Trumpenstiege,Altenberge,North Rhine-Westphalia,Germany,48341,"2 Trumpenstiege, Altenberge, North Rhine-Westphalia, Germany, 48341","regulatory affairs, supply chain management, production, quality management, lifecycle management, system development, engineering, optische technologien, gerätefertigung, consulting, softwareentwicklung, services, kundenspezifische systeme, labortechnik, bioanalytik, mechatronik, optische technologie, embedded systems, qualitätskontrolle, mechatronische baugruppen, digitalisierung, medical equipment and supplies manufacturing, project management, b2b, komponentenentwicklung, medical technology, analysen-, bio- und labortechnik, medizintechnik, präzisionstechnik, industrial automation, systementwicklung, softwarebasiertes anforderungsmanagement, lückenlose nachverfolgbarkeit, innovative medizintechniklösungen, produktion, biotechnology, digital transformation, data management, healthcare, manufacturing, medical, optical technology, analytical technology, lab technology, logistics & supply chain, embedded hardware & software, hardware, productivity, mechanical or industrial engineering, health care, health, wellness & fitness, hospital & health care",'+49 2505 870,"Outlook, Microsoft Office 365, Mobile Friendly, Apache, Nginx, WordPress.org, Remote, CAQH ProView, Wider Planet, Gem, AVEVA PDMS","","","","","","",69c27f651e946c0001eeaba8,3829,33911,"Jüke Systemtechnik GmbH is a German engineering company located in Altenberge, specializing in the development, manufacturing, and regulatory affairs of custom mechatronic systems. Founded in 1990, Jüke has over 35 years of experience and operates from a production space of more than 5,000 m². The company focuses on building long-term partnerships and emphasizes precision, quality, and digitalization throughout the product lifecycle. + +Jüke offers a range of contract services tailored for customers, including system and product development, contract manufacturing, and regulatory affairs. Their expertise spans various application areas such as medical technology, analytical and laboratory technology, biotechnology, and photonics. The company is committed to meeting regulatory standards and fostering customer-specific innovation, ensuring efficient production and safe approvals. Jüke actively participates in industry events to connect with partners and showcase its capabilities.",1990,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69629e433a615a00016f6171/picture,"","","","","","","","","" +Allgeier Engineering GmbH,Allgeier Engineering,Cold,"",130,information technology & services,jan@pandaloop.de,http://www.allgeier-engineering.com,http://www.linkedin.com/company/allgeier-engineering-gmbh,https://www.facebook.com/AllgeierEngineering,"",28 Wilhelm-Wagenfeld-Strasse,Muenchen,Bayern,Germany,80807,"28 Wilhelm-Wagenfeld-Strasse, Muenchen, Bayern, Germany, 80807","softwareentwicklung, navigation, digitale schiene, qualitaetssicherung, validierung verifikation, projektmanagement, aspice, qualitaetsmanagement, bahn, infotainment, automotive, rail, telematik, autonomes fahren, six sigma, consulting, testing, consumer electronic devices, security, systemintegration, engineering services, big data, software engineering, industry 4.0, b2b, navigational, measuring, electromedical, and control instruments manufacturing, software development, verifikation & validierung, telematics, automation, security in electronics, manufacturing, electronics manufacturing, system validation, railway technology, machine learning, automotive systems, services, automated driving, transportation & logistics, connectivity, digitalization in industry, electronic systems, qualitätsmanagement, embedded software, information technology & services, enterprise software, enterprises, computer software, mechanical or industrial engineering, artificial intelligence",'+49 89 124148748,"Route 53, Outlook, Microsoft Office 365, WordPress.org, Mobile Friendly, Google Tag Manager, Remote, AI","","","","","","",69c27f651e946c0001eeaba0,8731,33451,"Allgeier Engineering GmbH is a German engineering services company based in Munich. Founded in 2012 and rebranded in 2018, it specializes in developing electronic systems for various industries, including automotive, aerospace, and IoT. The company has grown from 15 employees to approximately 245, with offices in Munich, Berlin, Buckow, and Friedrichshafen. Ralf Erhardt is the CEO. + +The firm offers a range of engineering services focused on electronic systems, including product development, embedded systems, hardware and software engineering, and system integration. Allgeier Engineering also provides technical consulting, R&D, and support for digital transformation initiatives. Their team of nearly 200 experts collaborates on projects of varying complexity, often leveraging the broader IT capabilities of their parent company, Allgeier SE. They serve a diverse clientele, including leading technology firms and public sector clients, emphasizing innovation and collaboration in their work.",2012,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e673ca85f02000015b9068/picture,"","","","","","","","","" +QuantPi,QuantPi,Cold,"",33,information technology & services,jan@pandaloop.de,http://www.quantpi.com,http://www.linkedin.com/company/quantpi,"","",4 Halbergstrasse,Saarbruecken,Saarland,Germany,66121,"4 Halbergstrasse, Saarbruecken, Saarland, Germany, 66121","adversarial machine learning, machine learning, ai regulation, artificial intelligence, explainable ai, robustness auditing of ai, responsible ai, ai auditing, ai compliance, trustworthy ai, ai testing, software development, regulatory standards, multimodal ai testing, ai testing engine, risk management, ai lifecycle management, ai model certification, performance benchmarking, automated data labeling, ai safety, regulatory compliance, robustness analysis, ai transparency, b2b, ai explainability tools, computer systems design and related services, ai governance, government, model testing, ai risk classification, european ai standards, model oversight, software publishing, ai robustness, bias detection, compliance support, bias mitigation, ai trust platform, performance metrics, consulting, ai guardrails, ai safety standards, ai audit reports, risk assessment, ai performance evaluation, eu ai act compliance, model validation, model explainability, ai risk assessment, generative ai testing, ai lifecycle automation, information technology and services, regulatory reporting, model monitoring, services, ai fairness, automated testing, legal, information technology & services",'+49 68 130982899,"Cloudflare DNS, MailJet, Gmail, Google Apps, Microsoft Office 365, Slack, Wix, Ruby On Rails, Multilingual, Hubspot, Mobile Friendly, Google Tag Manager, WordPress.org, Android, Remote, Circle, AI",5490000,Other,2740000,2023-06-01,1000000,"",69c27f651e946c0001eeaba1,7375,54151,"QuantPi is a Germany-based AI trust management company founded in 2020, emerging from the CISPA Helmholtz Center for Information Security and Saarland University. The company specializes in platforms and tools designed to test, govern, validate, and ensure the trustworthiness and ethical compliance of AI systems, particularly focusing on large language models, generative AI, and various technologies throughout the AI lifecycle. + +Headquartered in Saarbrücken, QuantPi employs a small team and has secured funding, including a significant grant from the European Innovation Council to enhance automated risk management for generative AI. Their flagship AI trust platform acts as a centralized oversight tool for AI-first organizations, offering automated assessments and audit-ready insights. Key features include metrics collection, risk assessments, and support for various AI systems, all aligned with European standards. QuantPi primarily serves the technology sector, particularly in high-risk industries like financial services and healthcare, where regulatory compliance is crucial.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69ac02d5dd8fab0001c57242/picture,"","","","","","","","","" +TÜV Rheinland Energy & Industry,TÜV Rheinland Energy & Industry,Cold,"",21,environmental services,jan@pandaloop.de,http://www.h-on.it,http://www.linkedin.com/company/h-on-consulting,"","",Am Grauen Stein,Cologne,North Rhine-Westphalia,Germany,51105,"Am Grauen Stein, Cologne, North Rhine-Westphalia, Germany, 51105","solar, wind, power plant, energy saving, photovoltaic pv, energy efficiency, grid service, energy management, iso 50001, business consulting & services, machinery safety, machinery safety services, safety and security integration, machinery directive compliance, other scientific and technical consulting services, iec 61511, end-user services, iso 9001, atex directive compliance, iec 62443, cybersecurity consulting, machine safety, plant safety, machinery regulation, industrial control security, supply chain security for industry, safety standards, industrial control systems, iso 27001, risk prevention, b2b, manufacturing, machinery conformity restoring, iec 61511 safety instrumented systems, distribution, iec 62443 certification, industrial manufacturing, compliance management, manufacturers support, equipment compliance, industrial automation, cyber resilience act preparation, cyber security services, cybersecurity for manufacturing, iso 13849 performance levels, iec 62061 safety of electrical/ electronic/ programmable systems, industrial network security, cybersecurity standards, safety culture development, safety solutions, machinery conformity, nis 2 directive compliance, industrial data security, process safety, functional safety, industrial control system penetration testing, isasecure certification, cybersecurity risk assessment for industry, cybersecurity certification, functional safety standards, services, iec 61508 sil, industrial cyber security, safety compliance, safety and security standards, process industry risk management, system integrators, iso 13849, energy, operational safety, risk management, pharmaceuticals, functional safety for components, iec 61508, product reliability, operational technology security, standards compliance, consulting, safety certification, iso 26262, cyber resilience, ot cyber security, cyber risk prevention, automotive, iec 62061, clean energy & technology, environmental services, renewables & environment, oil & energy, management consulting, mechanical or industrial engineering, medical",'+49 3905 74870800,"Outlook, Microsoft Office 365, AI","",Merger / Acquisition,0,2023-11-01,3000000,"",69c27f651e946c0001eeaba9,3663,54169,"H-ON, now operating as H-ON a TÜV Rheinland Company, is an Italian consulting firm based in Prato, Tuscany. Founded in 2014, the company specializes in functional safety, cybersecurity, machine safety, and compliance management for machinery and plants. Following its acquisition by TÜV Rheinland in November 2023, H-ON has strengthened its position in the market, enhancing TÜV Rheinland's non-statutory services in Italy. + +The firm offers expert consulting services in functional safety, tailored cybersecurity solutions for industrial systems, machine reliability and safety assessments, and compliance management to meet relevant standards. H-ON serves both Italian and international clients across various industries that require expertise in machine safety and cybersecurity. The acquisition by TÜV Rheinland allows H-ON to expand its service delivery to existing and new clients, leveraging the resources of a global leader in independent testing.",2011,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/699455ca65e10c00018b13a4/picture,TÜV Rheinland Group (tuv.com),602aa4cd45cfaf0100a34f3f,"","","","","","","" +Helmholtz PioneerCampus @ Helmholtz Munich,Helmholtz PioneerCampus @ Helmholtz Munich,Cold,"",41,research,jan@pandaloop.de,http://www.pioneercampus.org,http://www.linkedin.com/company/helmholtz-pioneercampus,"","",1 Ingolstaedter Landstrasse,Oberschleissheim,Bavaria,Germany,85764,"1 Ingolstaedter Landstrasse, Oberschleissheim, Bavaria, Germany, 85764","research services, microfluidics, healthtech, biomedical technology, innovation, biomedical imaging, biomedical therapies, biomedical engineering applications, research environment, in vivo imaging, b2b, biomedical research funding, biomedical informatics tools, biomedical solutions, biomedical systems, biomedical diagnostics, biomedical innovation, biomedical collaboration, biomedical diagnostics tools, biomedical systems integration, biomedical data analysis, biomedical data management, molecular neurobiology, research and development in the physical, engineering, and life sciences, biomedical projects, systems genetics, biomedicine, systems biology, services, biomedical entrepreneurship podcasts, biomedical informatics, machine learning, ageing research, biomedical discovery tools, biomedical sciences, biomedical ai, biomedical development, biomedical data, scientific collaboration, in vivo imaging techniques, biomedical engineering, biomedical engineering techniques, disease prevention, biomedical research in personalized medicine, helmholtz pioneer campus, biomedical research environment, neuroepigenetics, biomedical breakthroughs, bioengineering, biomedical entrepreneurship, predictive analytics, biomedical informatics platforms, microfluidics in bioengineering, hpc in biomedicine, biomedical applications, biomedical tools, biomedical research collaboration, interdisciplinary research, biomedical research, cell biology, healthcare technology, biomedical ai applications, biomedical imaging innovations, biomedical research startups, engineering, biotechnology, biomedical therapies development, biomedical research infrastructure, biomedical discovery, biomedical data analysis platforms, research, healthcare, artificial intelligence, information technology & services, enterprise software, enterprises, computer software, health care, health, wellness & fitness, hospital & health care","","Apache, Mobile Friendly","","","","","","",69c27f651e946c0001eeab98,8731,54171,"Helmholtz Pioneer Campus (HPC) at Helmholtz Munich is an innovation campus located in Neuherberg, Munich, Germany. Launched in 2017 and officially inaugurated in July 2023, HPC combines biomedical sciences, engineering, and digitization to create novel solutions for disease prevention, diagnosis, and treatment. The campus features a modern laboratory and office building with 1,500 m² of lab space and 2,300 m² of office space, accommodating up to 20 research teams and 200 scientists in a collaborative environment. + +HPC's research is organized around three main pillars: biomedicine, bioengineering, and biomedical AI. The biomedicine focus aims for a systems-level understanding of human physiology, while bioengineering develops new techniques and tools for biological applications. The biomedical AI pillar leverages informatics and machine learning to enhance healthcare. The campus fosters interdisciplinary collaboration among top international scientists, leading to impactful publications, patents, and innovative startup ideas.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66ee45103290c200018e9670/picture,"","","","","","","","","" +Partake Consulting GmbH,Partake Consulting,Cold,"",21,information technology & services,jan@pandaloop.de,http://www.partake-consulting.com,http://www.linkedin.com/company/partake-consulting,https://www.facebook.com/Partake-Consulting-GmbH,"","",Neuss,North Rhine-Westphalia,Germany,"","Neuss, North Rhine-Westphalia, Germany","oracle obiee, dwh, snowflake, longview analytics, theobaldsoftware, board bi, theobald software, anbindung von datev, agiles data warehouse, ms sql azure, power bi, kuenstliche intelligenz, oracle essbase, microsoft, anbindung von sap bwhanas4, datenintegration, forecasting, digitalisierung, datenstrategie, oracle, insightsoftware, data warehouse, anbindung von dynamics365 etc, business intelligence, rimis, arcplan, reporting, business analytics, microsoft power bi, it services & it consulting, management consulting services, technology competencies, edge data processing, financial services, predictive analytics, data security, data modeling, automation of business processes, data lake integration, information technology & services, consulting, data integration, artificial intelligence, information technology and services, data quality management, sap hana, data management, data analytics, real-time data processing, custom software solutions, data visualization, b2b, data governance, manufacturing, data strategy, real-time analytics, automation, bi & analytics tools, distribution, data platform integration, process digitalization, hyperautomation, obiee (oracle), data lineage tracking, data-driven decision making, data orchestration, custom software development, data compliance, software development, etl processes, hybrid cloud data solutions, data pipeline automation, low-code platform, dataops, data migration, cloud data platforms, data management tools, business consulting, microsoft azure, services, data quality, finance, analytics, enterprise software, enterprises, computer software, computer & network security, mechanical or industrial engineering, management consulting",'+49 21 325100400,"Outlook, Microsoft Office 365, Hubspot, Google Tag Manager, Linkedin Marketing Solutions, Mobile Friendly, Nginx, Domo, Sisense, KNIME, DatoCMS, Microsoft Fabric, PowerBI Tiles, PySpark, Python, Databricks Lakehouse Platform, Flow, Microsoft Azure Monitor","","","","","","",69c27f651e946c0001eeaba4,7375,54161,"We make it our mission at Partake Consulting to ensure our clients do not waste time and money on high volumes of inexperienced consultants. Instead we work with small teams of experienced consultants with complementary business, technology and infrastructure skills, so that our clients benefit from better solutions delivered faster. + +Engagements +Each engagement is different: different technology, different functional need, and different client organization. However, one element that is consistently present is the client's high level of investment in a solution and the need for a quick Return On Investment. That is why Partake addresses each engagement with enthusiasm and professionalism using the collective experience of its consultants built up over many years of similar engagements. + +History +Partake is recognized as a leading provider. Since 1998 we provide our clients with the tools and knowledge to improve and simplify Enterprise Performance Management processes and systems. We have built premium partnerships with leading software suppliers in the Enterprise Performance Management market. + +Growth +Our company has experienced impressive growth over the years and from our regional offices in the Netherlands, France, Belgium, Germany and United Kingdom we continue to offer an unparalleled level of service to companies large and small across the sectors. We continue to recruit seasoned consultants with proven track records.",2007,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/671842e7425a830001a8acbd/picture,"","","","","","","","","" +SGS-TÜV Saar,SGS-TÜV Saar,Cold,"",150,public safety,jan@pandaloop.de,http://www.sgs-tuev-saar.com,http://www.linkedin.com/company/sgs-t%c3%bcv-saar-gmbh,"","",1 Am TUV,Sulzbach,Saarland,Germany,66280,"1 Am TUV, Sulzbach, Saarland, Germany, 66280","automotive, iso 26262, electronic mobility, functional safety, medical products, embedded systems, training, ai, inspection, testing, it security, cyber security, homologation, certification, risikoanalyse, zertifizierungen, sotif, schulungen, audits, automatisiertes fahren, iso/iec 17020, prüfungen, verifizierungsstelle emissionshandel, iso/iec 17025, emissionshandel zertifizierung, cybersecurity, iso/pas 8800, b2b, sicherheitsanalysen, ai-sicherheitsprozesse, softwarebewertung, produktzertifizierung, bahntechnik, schulungen funktionale sicherheit, systembewertung, iso 27001, iso 45001, land- und forstwirtschafts-sicherheit, hardwarebewertung, maschinensicherheit, cybersecurity bei aufzugsanlagen, sicherheits-workshops, industrie, prozesszertifizierung, iso 50001, software, iso 14001, automobilindustrie, prozessindustrie, services, medical devices, funktionale sicherheit, sicherheitszertifizierung, cyber-sicherheit, automation, ki-sicherheit, iso 9001, land- und forstwirtschaft, dakks-akkreditierung, consulting, medizintechnik, iec 61508 sil 2, testing laboratories and services, education, manufacturing, distribution, construction, embedded hardware & software, hardware, computer & network security, information technology & services, auditing, hospital & health care, mechanical or industrial engineering",'+49 68 9750660,"Akamai, Salesforce, Amazon SES, SendInBlue, Gmail, Outlook, Google Apps, Microsoft Office 365, Microsoft Azure Hosting, Oracle Cloud, Microsoft Application Insights, OneTrust, Django Language, Visual-Basic-.NET, SignalR, GitHub Hosting, Eloqua, Salesforce Live Agent, Adobe Marketing Cloud, Mobile Friendly, Apache, Bootstrap Framework, Google Tag Manager, TYPO3, Google Dynamic Remarketing, Facebook Login (Connect), Google AdWords Conversion, Vimeo, Gravity Forms, Google Maps (Non Paid Users), Cedexis Radar, Linkedin Marketing Solutions, Google Font API, GoToWebinar, Linkedin Widget, WordPress.org, reCAPTCHA, F5 BIG-IP, Facebook Widget, Bing Ads, ON24, Linkedin Login, Woo Commerce, DoubleClick Conversion, YouTube, Google AdSense, ASP.NET, Webex, SiteCore, Shutterstock, Qualtrics, Multilingual, Google Analytics, Google Maps, DoubleClick, Facebook Custom Audiences, Adobe Media Optimizer, SOASTA, Hotjar, DoubleClick Floodlight, Remote","","","","","","",69c27f651e946c0001eeaba7,8731,54138,"SGS-TÜV Saar GmbH is a joint venture established in 1998 between SGS Group Germany and TÜV Saarland e.V. Based in Sulzbach, Saarland, the company combines global testing expertise with regional service capabilities. With a presence at thirteen locations across Germany and some operations in France, SGS-TÜV Saar focuses on safety, precision, innovation, sustainability, quality, and integrity. + +The company offers a wide range of services, including testing, inspection, certification, training, and customized solutions. Their expertise spans various sectors such as automotive, environmental protection, information technology, and industrial goods. Key services include compliance inspections and certifications, product testing, and specialized training programs. SGS-TÜV Saar supports clients throughout the value chain, enhancing product quality and customer trust while ensuring regulatory compliance.",2008,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e3d0ab11edd0000157b60e/picture,"","","","","","","","","" +CmdScale GmbH,CmdScale,Cold,"",15,information technology & services,jan@pandaloop.de,http://www.cmdscale.com,http://www.linkedin.com/company/cmdscale,"","",11 Theatinerstrasse,Munich,Bavaria,Germany,80333,"11 Theatinerstrasse, Munich, Bavaria, Germany, 80333","go, softwareentwicklung, python, php, google cloud, istio, aws, typescript, kubernetes, it services & it consulting, künstliche intelligenz, iot integration, webframeworks, iot, prozessoptimierung, automatisierung, industrie 4.0, b2b, big data analytics, remote monitoring, sensor data processing, software as a service, smart factory, softwarelösungen, sensor data analytics, industrial dashboard svelte, custom dashboard development, real-time production monitoring, lean it practices, industrial iot solutions, cloud integration, real-time data monitoring, enterprise architecture, digitale infrastruktur, services, manufacturing, information technology & services, cloud computing, echtzeitüberwachung, ai in manufacturing, automated maintenance alerts, containerization, industry 4.0, industrieautomation, iiot web applications, enterprise architecture consulting, predictive analytics, consulting, industrial automation, industrie 4.0 technologien, process optimization, continuous integration/delivery, lean it, cybersecurity, computer systems design and related services, predictive maintenance solutions, agile development, digital readiness check, digitale transformation, digital ecosystem analysis, manufacturing process digitalization, dashboards, produktionssoftware, smart factory roadmap, manufacturing software, ki, predictive maintenance, big data, svelte, devops, it-infrastruktur, process automation, smart manufacturing, webanwendungen, software development, sveltekit, web dashboard development, custom software development, digital readiness, prozessautomatisierung, devops automation, enterprise software, enterprises, computer software, saas, mechanical or industrial engineering",'+49 172 4678410,"Cloudflare DNS, MailJet, Gmail, Google Apps, CloudFlare Hosting, React Redux, Hubspot, Slack, DoubleClick Conversion, DoubleClick, Google Tag Manager, Ruby On Rails, Mobile Friendly, Google Dynamic Remarketing, Xamarin, Node.js, React Native, Android, Remote, AI, Terraform, OpenStack, Rust, go+, Kubernetes, Argocd, HELM, Grafana, Temporal Cloud, Prometheus, Bitnami AlertManager, Grafana Loki, GitLab, Azure Key Vault, PostgreSQL, MongoDB, AWS Analytics, Azure Analysis Services, Google Cloud, Power BI Documenter, TypeScript, Python, C#, CouchDB, Bevywise MQTT Broker, React, VueJS, Svelte, Docker, AWS Trusted Advisor, Microsoft Azure Monitor, TensorFlow, PyTorch, Langchain, Tor, Make, .NET, Angular, PowerBI Tiles, Red Hat OpenShift, Ansible, Git, Securonix Security Operations and Analytics Platform, NVIDIA Omniverse, Jenkins, GitHub Actions, ELK Stack, Visual-Basic-.NET","","","","","","",69c27f651e946c0001eeaba3,3571,54151,"Wir digitalisieren den Maschinenbau – auf Augenhöhe, nachhaltig und praxisnah. + + + +Als mittelständischer Software-Dienstleister entlasten wir Unternehmen im Maschinenbau durch maßgeschneiderte digitale Lösungen. Unser Expert:innenteam entwickelt nicht nur moderne Software, sondern berät aktiv und begleitet den gesamten Digitalisierungsprozess. + +Unser Fokus: Hochwertige, resiliente und wartbare Softwarelösungen, die langfristig Bestand haben. Ob Smart Factory, DevOps-Pipelines, Lean IT oder als verlängerte Werkbank – wir begleiten Unternehmen mit technologischer Exzellenz und praxisnaher Beratung auf dem Weg in die digitale Zukunft. + +Wir schaffen Entlastung für unsere Kunden, indem wir Produktionsprozesse effizienter, automatisierter und transparenter machen. Durch optimierte Abläufe, bessere Überwachung der Produktionsqualität und den Einsatz moderner Softwarelösungen steigern wir die Prozesseffizienz und ermöglichen eine zukunftssichere Fertigung. + +Unser Team ist remote-first organisiert und in ganz Deutschland verteilt, mit einem zentralen Office in München. Wir arbeiten mit namhaften Kunden aus dem Maschinenbau und der Industrie zusammen und setzen auf langfristige Partnerschaften, um nachhaltige Digitalisierungserfolge zu erzielen.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6844b20c22951500011e332e/picture,"","","","","","","","","" +rwQUANTICAL,rwQUANTICAL,Cold,"",15,management consulting,jan@pandaloop.de,http://www.visusadvisory.com,http://www.linkedin.com/company/visus-advisory-gmbh,"","",2 Kaistrasse,Duesseldorf,North Rhine-Westphalia,Germany,40221,"2 Kaistrasse, Duesseldorf, North Rhine-Westphalia, Germany, 40221","employer branding, kuenstliche intelligenz, data strategy, human capital, sap, ai, hr consulting, talent management, sap transformation, business intelligence, future of work, machine learning, data analytics, ki, business consulting & services, ki-workshops, information technology & services, ki-implementierung, consulting, services, automation solutions, data structuring, artificial intelligence, powerbi, sap consulting, schnittstellenanbindung, zapier, sap s/4hana transformation, pandas, ai strategy development, b2b, erp consulting, künstliche intelligenz beratung, data-driven decision making, data integration, software development, ai solutions, data analysis, ki-whitepapers, ki-tools, ai consulting, custom ai solutions, management consulting, process optimization, datenvisualisierung, process automation, quickchat, automation tools, ai chatbot development, management consulting services, custom software development, data science, digital tools, data security, ai prototyping, automatisierte datenanalyse, business process optimization, digital transformation, technische konzeptentwicklung, data visualization, data management, sap beratung, massendaten verarbeitung, analytics, enterprise software, enterprises, computer software, computer & network security",'+49 1515 2535179,"Gmail, Google Apps, Google Cloud Hosting, Slack, Google Tag Manager, Varnish, Mobile Friendly, Wix, Android, Google Workspace, IoT, Micro, Snowflake, Data Analytics, React Native, Remote, AI, Python, CallMiner Eureka, Mode","","","","","","",69c27f651e946c0001eeabab,7375,54161,"rwQUANTICAL is a boutique consultancy dedicated to transforming businesses through innovative, data-driven solutions. + +We specialize in AI implementation, advanced analytics, and ERP consulting to deliver sustainable, impactful results.",2019,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69a569192773060001f98109/picture,"","","","","","","","","" +GNS Systems GmbH,GNS,Cold,"",55,information technology & services,jan@pandaloop.de,http://www.gns-systems.de,http://www.linkedin.com/company/gns-systems-gmbh,"","",5 Theodor-Heuss-Strasse,Brunswick,Lower Saxony,Germany,38122,"5 Theodor-Heuss-Strasse, Brunswick, Lower Saxony, Germany, 38122","machine learning ai, technisches datenmanagement, data analytics, software development, hpc cae, engineering workplace, cloud infrastructure, softwareentwicklung, outsourcing, application management, high performance computing, linuxwindows systemmanagement, it services & it consulting, automated cae workflows, hpc in the cloud, manufacturing, data context hub, ai server grace hopper, ai-powered engineering, c64ai stack, data management, memory 4 server, data security, data analysis, cloud-based cae tools, cax data, automotive, digital twins, memory 4, ai in cae, ai algorithms, services, high-performance computing, ai-powered engineering solutions, ai server with grace hopper, computer systems design and related services, software engineering, cax workflows, data integration, data analytics & ai, hpc environments, supercomputing, simulation it, simulation data automation, hybrid hpc, data optimization, machine learning & ai, digital twin data hub, virtual engineering workplace, b2b, hpc clusters, hybrid hpc optimization, simulation data management, cae automation, workflow automation, information technology and services, cloud hpc, on-premise hpc, consulting, digital engineering center, information technology & services, enterprise software, enterprises, computer software, internet infrastructure, internet, mechanical or industrial engineering, computer & network security",'+49 531 123870,"Outlook, Microsoft Office 365, Nginx, Piwik, Mobile Friendly, , Azure Linux Virtual Machines, Microsoft Windows Server 2012, Odoo, OpenFOAM","","","","",22906000,"",69c27f651e946c0001eeab95,7375,54151,"GNS Systems GmbH is a German IT services and consulting company based in Braunschweig, Niedersachsen. Founded in 1997, it employs around 60 people and reported annual revenue of $6.1 million in 2024. The company specializes in innovative IT solutions for virtual product development, focusing on optimizing CAx workflows for industries such as automotive, aerospace, and machinery. + +GNS Systems offers a range of tailored IT services, including High Performance Computing (HPC), technical data management, software engineering, and systems and application management. They provide hybrid HPC solutions that combine on-premise and cloud benefits, as well as custom software development for CAx processes. The company is an official Ansys HPC partner, supplying preconfigured workstations and servers designed for simulation and analysis, which help engineers concentrate on their core tasks. With over 20 years of experience in CAE application management, GNS Systems is committed to delivering quality and efficiency in technical-scientific computing infrastructures.",1997,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6871d5a7fb473e0001f94ce2/picture,"","","","","","","","","" +DRIMCO GmbH,DRIMCO,Cold,"",25,information technology & services,jan@pandaloop.de,http://www.drimco.net,http://www.linkedin.com/company/drimco-gmbh,"","",13 Am Moosfeld,Munich,Bavaria,Germany,81829,"13 Am Moosfeld, Munich, Bavaria, Germany, 81829","documentstructureunderstanding, optimizebidding, tenderanalysis, knowledgeintelligence, reuseknowledge, datasheetfilling, requirementunderstanding, artificialintelligence, deeplearning, riskdetection, machinelearning, reducetimeandcost, naturallanguageprocessing, nonconformancecost, autofillconfigurators, industrialknowledgegraph, cloneexpertknowledge, rfqanalyses, software development, ai for project execution, ai for project scope management, requirements deviation comments, document comparison ai, ai knowledge reuse in requirements, ai document segmentation, requirements evaluation workflow, ai project governance, requirements topic recognition, machine learning, ai deviation detection, ai document auto-segmentation, requirements management system, requirements version update, ai-based bid optimization, requirements workflow management, ai project traceability, requirements norm compliance, ai for complex tenders, requirements document import, regulation compliance, computer systems design and related services, ai for energy tenders, ai-powered compliance, requirements traceability, requirements re-use, requirements risk assessment, b2b, ai for energy projects, automation, ai for automotive rfqs, requirements norm management, ai for automotive industry, requirements scope management, requirements domain classification, ai bid management, ai for bid preparation, requirements risk mitigation, tender evaluation, ai for requirements lifecycle automation, ai project kpi monitoring, natural language processing, requirements process automation, ai for requirements clustering, ai requirement object analysis, ai project risk mitigation, requirements norm analysis, rfq management, requirements lifecycle automation, ai deviation and clarification comments, ai-driven project governance, ai for infrastructure, automotive, ai project risk control, ai project governance tools, ai for requirement traceability, data security, requirements project management, ai document version update, computer vision, ai document comparison, requirements clustering, government, requirements kpi monitoring, ai risk analysis for rfqs, requirements project consistency, requirements scope control, machinery, infrastructure, ai for manufacturing, ai project lifecycle management, energy, ai for infrastructure projects, ai project automation, regulatory compliance, requirements standards adherence, ai requirement analysis, project risk management, requirements kpi tracking, document import formats, requirements standards management, ai norm and regulation management, ai for requirements standards, ai for project risk mitigation, ai for industrial tenders, manufacturing, requirement object analysis, ai compliance monitoring, enterprise software, compliance monitoring tools, requirements project traceability, requirements assessment automation, requirements lifecycle management, risk management ai, ai for manufacturing bids, requirements norm management tools, services, digital transformation, requirements version control, ai nlp, ai knowledge lifecycle, consulting, ai compliance management, ai knowledge reuse, ai, tender management, regulation management, requirement analysis, risk management, document segmentation, compliance optimization, bidding process, automated evaluation, ai-powered solutions, nlp, project execution, data sovereignty, knowledge digitization, industrial applications, document comparison, integration with alm, integration with plm, requirement lifecycle management, project risk mitigation, stakeholder requirements management, dynamic workflows, expert evaluation automation, semantic similarity, traceability, ai-assisted decision making, cost reduction, data-driven insights, expert knowledge re-use, higher bid win rate, user-friendly interface, real-time monitoring, collaboration tools, lifecycle management, intelligent requirements fit, end-to-end requirements solution, robust data processing, customizable dashboards, strategic ai deployment, industry focused, cross-industry applications, high precision analysis, accelerated bidding cycle, knowledge preservation, enhanced competitiveness, information technology & services, artificial intelligence, computer & network security, mechanical or industrial engineering, enterprises, computer software","","Outlook, Microsoft Office 365, Python, Hubspot, Android, Remote, Docker, IoT, Node.js, AI, React Native, Jira, Confluence, C#",5000000,Seed,5000000,2025-06-01,"","",69c27f651e946c0001eeab9d,7375,54151,"DRIMCO GmbH specializes in AI-powered solutions that enhance workflows for RFQs (Requests for Quotation), tenders, and compliance through its Requirements Intelligence AI platform, DRIM. The company focuses on connecting stakeholders to streamline the assessment of requirements, enabling faster and more accurate bidding and project execution while minimizing risks. + +The DRIM platform captures and assesses knowledge from requirements efficiently, optimizing designs and ensuring that cost prices meet customer needs. DRIMCO also offers workflow transformation services that include AI-driven tools for technical compliance control and risk reduction. Additionally, the company provides consulting and implementation services to support organizations in achieving consistency across multiple projects. + +DRIMCO positions itself as a development partner, helping clients manage complex tenders and large-scale projects effectively. The company emphasizes real-world applications, showcasing success stories that highlight improved bidding accuracy and compliance in high-stakes scenarios.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69a3de9b0b89ef00014f21b1/picture,"","","","","","","","","" +Ginkgo Analytics,Ginkgo Analytics,Cold,"",37,"",jan@pandaloop.de,http://www.ginkgo-analytics.com,"","","",Hohe Bleichen,Hamburg,Hamburg,Germany,20354,"Hohe Bleichen, Hamburg, Hamburg, Germany, 20354","b2b, digital transformation, ai solutions, automotive, financial services, data governance frameworks, professional services, public, data democratization, ai ethics and compliance, transportation & logistics, consulting, data strategy roadmaps, data quality assurance, management consulting services, cyber security, cloud platforms, data architecture, strategy consulting, energy & utilities, data management frameworks, industry expertise, data sovereignty solutions, manufacturing, data management, data-driven decisions, life sciences, services, operational excellence, data & ai lifecycle management, ai-powered risk management, ai model deployment, data privacy, customer experience, government, ai-driven operational efficiency, ai automation, data integration, healthcare, data quality, enterprise transformation, ai model explainability, technology consulting, data & ai strategy, data cataloging and lineage, machine learning, data literacy, multi-cloud data security, data platform accelerators, ai transformation, predictive analytics, data platform implementation, business impact, generative ai, data architecture design, data modernization strategies, ai governance, data analytics, data platform scalability, ai-powered customer insights, sourcing & it advisory, data lifecycle management, data analytics tools, ai-powered data platforms, data platforms, data governance, security strategy & governance, data security, data compliance, sustainable growth, generative ai adoption, cybersecurity, finance, transportation_logistics, energy_utilities, life_sciences, professional training & coaching, computer & network security, information technology & services, strategic consulting, management consulting, mechanical or industrial engineering, enterprise software, enterprises, computer software, health care, health, wellness & fitness, hospital & health care, artificial intelligence","","Outlook, Microsoft Office 365, AI","","","","","","",69c27f651e946c0001eeabaa,8742,54161,"Ginkgo Analytics is an IT services and consulting company based in Hamburg, Germany. Founded in 2017, the company focuses on transforming enterprises into data-driven and AI-powered organizations. With a team of around 48 skilled data scientists and engineers, Ginkgo Analytics supports clients through all stages of implementation, from initial ideas to full production. + +The company offers bespoke data-driven solutions tailored to meet the unique needs of each client. They assess organizational readiness for artificial intelligence and develop customized strategies for digital transformation. Ginkgo Analytics emphasizes collaboration, guiding organizations on their journey to becoming AI-powered enterprises. They utilize a variety of modern technologies, including JavaScript, HTML, and PHP, to deliver effective solutions.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/64a84faf807912000120191b/picture,"","","","","","","","","" +AMDC GmbH,AMDC,Cold,"",73,defense & space,jan@pandaloop.de,http://www.amdc.de,http://www.linkedin.com/company/amdc-gmbh,"","",20A Oskar-Messter-Strasse,Ismaning,Bayern,Germany,85737,"20A Oskar-Messter-Strasse, Ismaning, Bayern, Germany, 85737","bmd, missiles, sensors, communication, military capabilities, simulation, systems, command & control, aerospace defense, defense & space manufacturing, prototype development, gnc techniques, new space technologies, high-end research, b2b, modular missile systems, object recognition in military tech, defense, space applications, unmanned aircraft systems, system simulation, space technology, consulting, combustion modeling, future space applications, sensor fusion, cost-effectiveness analysis, ml-based computer vision, synthetic training data, machine learning, unmanned aircraft, high-precision simulation, trajectory classification, high-fidelity cfd, synthetic training datasets, deep learning, computational engineering, structural analysis, government, system conception, threat detection, missile system analysis, simulation engineering, system effectiveness evaluation, structural integrity, defense system simulation, rapid prototyping aerospace, gnc algorithms, combustion simulation, services, design optimization, counter-uas applications, computer vision, engineering services, threat analysis, physical modeling, life cycle cost modeling, environmental impact, autonomous drones, reinforcement learning for navigation, simulation models, system safety, experimental rockets, threat assessment, synthetic data generation, sensor analysis, rapid prototyping, aerospace, military systems, trajectory analysis, experimental rocket testing, air defence systems, threat detection ai, object recognition, ml for gnc, fluid dynamics, defense consulting, reinforcement learning, life cycle cost calculations, aerospace analysis, fluid simulation, hardware, artificial intelligence, information technology & services",'+49 89 89617593,"Apache, Mobile Friendly, Remote, AI","","","","","","",69c27f6052a1d30001e97d80,8711,54133,"AMDC GmbH is an engineering service provider based in Ismaning, Bayern, Germany, established in 2011. The company specializes in future technologies within the aerospace, defense, machine learning, and computational engineering sectors. It focuses on analysis, conception, prototype development, and consulting for innovative systems, including experimental rockets and unmanned aircraft systems. + +The company offers a range of services, particularly in defense, where it advises the German Bundeswehr and allied armed forces on military research and technology. AMDC develops machine learning solutions for computer vision and provides tailored simulation models for complex physical problems in computational engineering. Its collaborations with defense industry partners, universities, and aerospace research institutions enhance its contributions to national security and technological advancement.",2011,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/672b1cb57db1f60001d1bc8b/picture,"","","","","","","","","" +znt-Richter,znt-Richter,Cold,"",150,information technology & services,jan@pandaloop.de,http://www.znt-richter.com,http://www.linkedin.com/company/znt-zentren-f-r-neue-technologien-gmbh,"","",2 Lena-Christ-Strasse,Gruenwald,Bavaria,Germany,82031,"2 Lena-Christ-Strasse, Gruenwald, Bavaria, Germany, 82031","software und systemintegrator von loesungen im bereich der produktionsautomatisierung, system standardization, medizintechnik, digitale transformation, production efficiency, elektronikfertigung, industrial machinery manufacturing, automation of production lines, digital twin, equipment connectivity, secs equipment driver, automatisierungsplattformen, equipment integration, fertigungsdatenmanagement, process preparation, manufacturing it, system interoperability, industry 4.0, mes integration platform, mes - manufacturing execution system, shopfloor data, bom connector, prozessoptimierung, fertigungssteuerung, b2b, recipe management, automation, smart manufacturing audit, manufacturing data security, industry 4.0 standards, fertigungsprozess, closed loop manufacturing, government, sonstige industrien, systemanbindung, fertigungsautomatisierung, real-time monitoring, digitalisierung, industrie 4.0 standards, data integration, data analytics, manufacturing data analytics, manufacturing data, process optimization, mes, mes plattform, process change management, fertigungsdaten, digital thread, bom management, services, semiconductor & solar, process automation, automatisierungslösungen, automatisierung, fertigungsdatenanalyse, systemintegration, iiot | analytics, shopfloor automation, production control, systemintegration in der elektronikfertigung, real-time data, recipe management system, equipment automation, smart factory, shopfloor integration, consulting, produktionssteuerung, production data, factory automation, data collection, industrie 4.0, production traceability, manufacturing software, automatisierte fertigung, healthcare, manufacturing, enterprise software, enterprises, computer software, information technology & services, health care, health, wellness & fitness, hospital & health care, mechanical or industrial engineering",'+49 6151 599070,"Microsoft Office 365, SendInBlue, Outlook, Hubspot, Slack, Atlassian Cloud, Mobile Friendly, Google Tag Manager, reCAPTCHA, WordPress.org, Vimeo, Apache, Remote, AWS SDK for JavaScript, DotNetNuke, C#, Angular","",Merger / Acquisition,0,2023-11-01,"","",69c27f6052a1d30001e97d8e,3571,33324,"znt-Richter is a Germany-based IT company that specializes in digital transformation, process optimization, and automation, particularly in smart manufacturing. Founded in 1985, the company has evolved from ZAM e.V. to the znt-Richter group, which now has a global presence with subsidiaries in several countries, including the USA, China, and Malaysia. + +The company offers a range of services focused on digitizing and automating IT processes. Their core products include Manufacturing Execution Systems (MES) for integrating manufacturing data and Process Automation Controllers (PAC) for standardizing equipment data. znt-Richter serves various industries, including semiconductor, automotive, and medical technology, and is known for fostering long-term relationships with its clients through reliable implementations.",1998,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6875fb126360280001cad943/picture,"","","","","","","","","" +Leibniz-Institut für Werkstofforientierte Technologien - IWT,Leibniz-Institut für Werkstofforientierte Technologien,Cold,"",170,research,jan@pandaloop.de,http://www.iwt-bremen.de,http://www.linkedin.com/company/leibniz-institut-fuer-werkstofforientierte-technologien-iwt,"","",3 Badgasteiner Strasse,Bremen,Bremen,Germany,28359,"3 Badgasteiner Strasse, Bremen, Bremen, Germany, 28359","oberflaechentechnik, physikalische analytik, geometrisch bestimmte prozesse, additive fertigung, waermebehandlung, leichtbauwerkstoffe, bauwesen, baustoffmikroskopie und denkmalpflege, metallische werkstoffe und bauteile, reaktive spruehtechnik, qualitaetsmanagement, mikrozerspanung, materialpruefung, strukturmechanik, metallographische analytik, schleifen und verzahnung, metallzerstaeubung und spruehkompaktieren, mehrphasenstroemung, prozessierung von funktionsmaterialien, waerme und stoffuebertragung, metallurgie und umformtechnik, werkstoffoptimierung, digitalisierung, government, werkstoffentwicklung, manufacturing, werkstoffforschung, werkstofftechnik, werkstoffprüfung, werkstoffcharakterisierung, services, prozesssimulation, ressourceneffizienz, lebensdauererprobung, werkstoffherstellung, oberflächentechnik, energy & utilities, hybride verbundwerkstoffe, wärmebehandlung, automotive, schadensanalyse, nano-materialien, werkstoffdatenmanagement, data management, werkstoffmodellierung, werkstoffrecycling, engineering services, pulverherstellung, b2b, werkstoffanalytik, fertigungstechnik, medical devices, construction, wasserstofftechnologien, laseradditive fertigung, energy, werkstoffanalyse, werkstoffforschung in der raumfahrt, 3d-druck, werkstoffsimulation, werkstoffinnovationen, aerospace, werkstoffdesign, energieeffizienz werkstoffe, metallpulver, energy_utilities, mechanical or industrial engineering, information technology & services, hospital & health care",'+49 421 21851300,"Apache, Mobile Friendly, Micro, Xray","","","","","","",69c27f6052a1d30001e97d7b,8711,54133,"Leibniz-Institut für Werkstofforientierte Technologien – IWT (Leibniz-IWT) is a research institute located in Bremen, Germany. It specializes in materials-oriented technologies, focusing on high-performance metallic structural materials. Established in 1950, the institute has evolved to integrate various disciplines, including materials technology, process technology, and manufacturing technology, all aimed at addressing challenges in digitalization, resource efficiency, and lightweight construction. + +The institute conducts both fundamental and applied research, offering services that include contract research and technology transfer to industry. Its expertise spans a wide range of areas, such as heat treatment, surface technology, additive manufacturing, and hydrogen technologies. IWT collaborates with metalworking companies, particularly in drive technology, to develop innovative solutions and support the entire process chain from design to testing. With a team of over 200 staff, IWT is committed to advancing materials science and engineering.",1950,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e58301ce562e000139b4e3/picture,"","","","","","","","","" +iDA Smart Digital Solution,iDA Smart Digital Solution,Cold,"",21,information technology & services,jan@pandaloop.de,http://www.ida-sds.com,http://www.linkedin.com/company/idasmartdigitalsolution,https://de-de.facebook.com/IDA.analytics/,"","",Heuchelheim,Hesse,Germany,"","Heuchelheim, Hesse, Germany","it services & it consulting, data visualization dashboards, data formats conversion, enterprise data, operational efficiency, data extraction, dataops, data silos resolution, consulting, big data, data consistency, b2b, virtual data layer, cyber security monitoring, data flows, anomaly detection, cyber security, ai, data transformation, data-driven decisions, data visualization, predictive maintenance, devops, data governance, data pattern recognition, software development, data analytics, data monitoring, data unification, digital transformation, data formats, machine learning, data platform, data structuring, data management, data infrastructure, data science, process automation, digital transformation support, data security, cybersecurity, data quality, real-time data analytics, services, data integration, industry 4.0, big data analytics, data stream processing, data quality assurance, data automation, data virtualization, data connectivity, information technology and services, computer systems design and related services, real-time data processing, predictive analytics, data virtual layer, information technology & services, enterprise software, enterprises, computer software, computer & network security, artificial intelligence","","Cloudflare DNS, Outlook, Microsoft Office 365, CloudFlare Hosting, React Redux, React, Flutter, Slack, Hubspot, Apache, WordPress.org, Google Font API, Mobile Friendly",190000,Other,190000,2021-04-01,"","",69c27f6052a1d30001e97d7c,7375,54151,"iDA Smart Digital Solution - Data is our Business. + +iDA is a scaling software company founded at the heart of Germany. We've created a state of the art platform for realizing digitalization projects of international companies and organizations. With our tailor made software solutions data from different systems and formats can be connected, extracted, analysed and visualised with one configurable tool kit. iDA's working area and best practices include Smart Data Analytics, Industry 4.0, Data Science, Digital Transformation, Real-Time Streaming Analytics, Big Data Service Orchestration and Academy for Data Science & Data Engineer. + +In three years iDA scaled it's business, having three attractive locations, 60 highly trained staff members and about 40 successful projects working on data innovation and the forefront of technological progress. + +IDA - Digitalization works with us. + +www.ida-sds.com",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6843b208ef7de60001e73cfd/picture,"","","","","","","","","" +Bitkom Akademie,Bitkom Akademie,Cold,"",20,professional training & coaching,jan@pandaloop.de,http://www.bitkom-akademie.de,http://www.linkedin.com/company/bitkom-akademie,http://www.facebook.com/pages/Bitkom-Akademie/122726507787601,https://twitter.com/bitkom_service,10 Albrechtstrasse,Berlin,Berlin,Germany,10117,"10 Albrechtstrasse, Berlin, Berlin, Germany, 10117","digitale transformation, ki daten, itsicherheit, recht regulierung, nachhaltigkeit, datenschutz, it risk management, ai & data spaces, ai ethics & compliance, education, legal tech education, online seminars, regulatory compliance, digital skills development, smart city initiatives, data protection, green it, ai & data, ai & legal risks, digital economy, digital transformation, sustainability in it, cyber resilience, legal & regulatory compliance, colleges, universities, and professional schools, data-driven decision making, expert-led courses, ai & public administration, services, ai & operational resilience, compliance training, leadership in digital transformation, tech-upskilling, sustainability, risk management, digital innovation, workshops & certifications, ai governance, in-house training, ai workflow hacking, generative ai regulation, cyber resilience act, ai training, project management in digital age, change management in it, it infrastructure training, ai & gdpr, iso/iec 42001 ki management, data privacy training, ai ethics, data science courses, generative ai, cybersecurity training, ai & ethical leadership, b2b, data management, nis-2 regulation, ai in hr & recruitment, cybersecurity, legal services, data analytics, smart city digital participation, information technology & services, digital strategy, practical training, cloud security, future leadership skills, future skills, ai & sustainability, ai & business continuity, leadership development, workforce qualification, government, it security, digital leadership, it governance, seminars & certification, legal, environmental services, renewables & environment, marketing, marketing & advertising, computer & network security",'+49 30 27576277,"MailJet, Outlook, Microsoft Office 365, Drupal, VueJS, OneTrust, Python, Hubspot, Mapbox, Salesforce, Facebook Custom Audiences, Facebook Login (Connect), Apache, YouTube, Google Tag Manager, Mobile Friendly, Facebook Widget, Shutterstock, IoT, Remote, AI","","","","",6500000,"",69c27f6052a1d30001e97d81,8299,61131,"Bitkom Akademie is a leading provider of training and further education in Germany, focusing on the digitalizing world of work. Founded in 2005 and based in Berlin, the academy offers over 400 programs annually in areas such as digital transformation, AI, IT security, sustainability, and data protection. With a TÜV and ISO 9001 certification, it serves more than 18,000 participants each year, emphasizing practical content tailored for the digital economy. + +The academy provides a range of services, including vocational training, seminars, workshops, and certificate programs, available in both live online and in-person formats. Key offerings include training for Data Scientists, Chief Data Officers, and Digital Marketing Managers, along with specialized workshops and the Bitkom Management Club for executives. Bitkom Akademie collaborates with various organizations to support companies and public institutions in their digital projects and workforce development.",2005,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/675420d22818db0001d4a2cd/picture,"","","","","","","","","" +TUM Think Tank,TUM Think Tank,Cold,"",38,think tanks,jan@pandaloop.de,http://www.tumthinktank.de,http://www.linkedin.com/company/tum-think-tank-an-der-hochschule-f-r-politik-m-nchen,"","",1 Richard-Wagner-Strasse,Muenchen,Bayern,Germany,80333,"1 Richard-Wagner-Strasse, Muenchen, Bayern, Germany, 80333","digital child safety, non-profit, innovation, digital policy, sustainability, technology ethics, public engagement, regulatory frameworks, ai in urban development, public policy, quantum technology standards, ai governance, government, ai sandboxes, policy recommendations, digital transformation, education, urban ai applications, national security and international affairs, generative ai, research-to-action platform, digital infrastructure, technology and society, interdisciplinary collaboration, public sector innovation, digital governance, public sector transformation, european digital strategy, nonprofit organization management, environmental services, renewables & environment",'+49 89 28925543,"MailJet, Nginx, Apache, WordPress.org, Typekit, Mobile Friendly, Piwik, Eventbrite, YouTube, Google Dynamic Remarketing, Personify, Horde, reCAPTCHA, Adobe Media Optimizer, Facebook Custom Audiences, Ubuntu, MailChimp, Google Maps, Woo Commerce, Google Font API, TYPO3, Wordpress.com, Facebook Login (Connect), DoubleClick, Multilingual, Facebook Widget, Drupal, DoubleClick Conversion, Workday Recruit, Bootstrap Framework, Hotjar, Vimeo, Gravity Forms, Cedexis Radar, AngularJS, Linkedin Marketing Solutions, Google Tag Manager, Google Maps (Non Paid Users), Moodle, Django","","","","","","",69c27f6052a1d30001e97d82,8732,928,"TUM Think Tank is a research-to-action platform affiliated with the Munich School of Politics and Public Policy at the Technical University of Munich. Based in München, Bayern, Germany, it focuses on bridging science, technology, society, and politics to drive societal change through interdisciplinary collaboration. With a team of approximately 26 employees, TUM Think Tank connects researchers, decision-makers, and change agents to transform knowledge into actionable outcomes. + +The organization hosts a network of labs, projects, and fellowships that concentrate on various research areas. These initiatives promote dialogue between science, technology, and society, facilitating societal and political transformation. TUM Think Tank emphasizes the importance of cross-sector partnerships, critical discourse, and public engagement to foster a responsible digital future. Its mission is to tackle complex challenges at the intersection of technology, society, and politics through innovative learning paths.",2022,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68cf883c6f2b610001164691/picture,"","","","","","","","","" +ERCIS,ERCIS,Cold,"",96,research,jan@pandaloop.de,http://www.ercis.org,http://www.linkedin.com/company/ercis-network,"","",3 Leonardo-Campus,Muenster,North Rhine-Westphalia,Germany,48149,"3 Leonardo-Campus, Muenster, North Rhine-Westphalia, Germany, 48149","research, networking, data science, transformation, process science, education, artificial intelligence, digitalization, innovation, research services, information technology, research projects, phd training, business process management, machine learning, ai innovations, research network, social media crisis communication, information technology and services, educational initiatives, ai in financial services, reliable systems, learning clusters, research in digital europe, digital skills pedagogy, european research center, data analytics, services, knowledge management, interdisciplinary collaboration, design science, publications, big data, ai-based business process transformation, research and development in the physical, engineering, and life sciences, process mining, academic-industry linkage, gender equality in it research, higher education, process dynamics explaining, digital transformation, information systems, interdisciplinary research, ai in finance, research and development, consulting, b2b, master theses, international network, industry engagement, mobility innovation labs, knowledge sharing, industry-academia partnership, innovation in is, research clusters, social media analytics, government, socio-technical data science, research collaboration, european research, ai innovation labs, future mobility solutions, natural language processing, entrepreneurship, doctoral consortia, finance, transportation & logistics, information technology & services, enterprise software, enterprises, computer software, education management, research & development, financial services",'+49 251 8338100,"Mobile Friendly, Google Font API, WordPress.org, Nginx, Remote","","","","","","",69c27f6052a1d30001e97d85,7375,54171,"ERCIS, the European Research Center for Information Systems, is an international research network focused on advancing Information Systems research through collaboration among universities and industry organizations in over 25 countries. The network includes around 50 professors and 300 PhD students who engage in research and education, addressing challenges related to digital transformation and the development of a ""Digital Europe."" + +ERCIS organizes its research through specialized Research Clusters and Competence Centers, with a significant focus on service management and engineering. Key research areas include service process management, business process management, AI-based innovation for SMEs, and digital transformation strategies. The network promotes collaboration through researcher visits and joint EU-funded projects, allowing for the exchange of ideas and expertise among academics and industry professionals. + +In addition to research, ERCIS provides education to over 10,000 students in Information Systems and related fields, preparing them to become future digital leaders. The network designs practical solutions and software prototypes that companies can implement to enhance their operations in the service sector.",2004,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670394adce92090001732dff/picture,"","","","","","","","","" +neogramm GmbH,neogramm,Cold,"",22,information technology & services,jan@pandaloop.de,http://www.neogramm.de,http://www.linkedin.com/company/neogramm,"","",25 Konrad-Zuse-Ring,Mannheim,Baden-Wuerttemberg,Germany,68163,"25 Konrad-Zuse-Ring, Mannheim, Baden-Wuerttemberg, Germany, 68163","industrielle bildverarbeitung, kamerasysteme, spsprogrammierung, manufacturingx, digitale integration, digitalisierung, systemintegrator, machine vision, automatisierungstechnik, softwarentwicklung, maschinensteuerung, industrie 40, smart production, visionkit, automatisierung, industrial internet of things, digital manufacturing, qualitaetskontrolle, kiintegration, iiot, smart factory, transition to ai, software development, b2b, plug & produce, webbasierte software, process optimization, consulting, visionkit ai, automationkit custom apps, manufacturing data models, digital transformation, cloud solutions, ai integration, manufacturing, manufacturing service bus, heterogeneous data handling, sensor technology, machine vision framework, cloud integration, adaptive manufacturing, digital twin, machine learning, edge computing, cloud computing, industrial machinery manufacturing, data analytics, cybersecurity, datenintegration, distribution, system integration, automation, open interfaces, remote maintenance, resilient systems, modulare lösungen, industrial automation, hardware integration, standards-based communication, shopfloor management, services, manufacturing-x, data visualization, industrie 4.0, ai-based quality control, automation framework, data security, information technology & services, enterprise software, enterprises, computer software, mechanical or industrial engineering, artificial intelligence, computer & network security",'+49 621 1502050,"Outlook, Apache, Nginx, WordPress.org, Mobile Friendly, IoT","","","","","","",69c27f6052a1d30001e97d8a,3571,33324,"Since 2009, the Germany-based company has been developing tailor-made solutions and future-proof architectures for the production processes of manufacturing companies and for the services of machine and plant manufacturers - based on proven and tested expertise in automation, machine vision and IIoT. + +The core portfolio comprises offers for mass customization, AI-based machine learning for quality management, predictive maintenance and condition monitoring, IIoT applications and plug and produce solutions. neogramm teams up with their project partners for the initial analysis and consulting up until the implementation and operation. + +IMPRINT + +neogramm GmbH +Konrad-Zuse-Ring 23 +68163 Mannheim +Germany + +Phone: 0621/150205-0 +E-Mail: info@neogramm.de +Internet: www.neogramm.de + +Amtsgericht Mannheim, Registergericht, HRB 747875 +VAT-ID: DE364876014 + +Represented by: +Kai Blümchen und Stephan Könn",2009,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e135557f4f170001de1234/picture,"","","","","","","","","" +Sereact,Sereact,Cold,"",77,information technology & services,jan@pandaloop.de,http://www.sereact.ai,http://www.linkedin.com/company/sereact,"",https://twitter.com/SereactAI,17 Schockenriedstrasse,Stuttgart,Baden-Wuerttemberg,Germany,70565,"17 Schockenriedstrasse, Stuttgart, Baden-Wuerttemberg, Germany, 70565","deep learning, logistics, embodied ai, artificial intelligence, industrial automation, robotics, software development, ai for inventory accuracy, ai for industrial automation, services, automated sortation, sensor fusion, robotic workflow automation, inventory verification, b2b, vision-guided robotics, retail, real-world robotics dataset, multi-modal sensor data, warehousing, automated sorting, supply chain management, industrial machinery manufacturing, multi-robot coordination, vision-based quality control, pick and place ai, ai warehouse optimization, autonomous robots, ai for unstructured environments, vision-based inspection, autonomous mobile robots, real-world data training, ai for e-commerce, ai-driven warehouse, system integration, ai in logistics, manufacturing, ai warehouse efficiency, vision-language manipulation, production-ready ai, robotic self-learning, ai for deformable objects, ai training datasets, robotic fleet management, robotic system deployment, ai for supply chain, multi-robot control, ai system integration, scalable robotic solutions, robotic task execution, ai for inventory management, operational efficiency, vision language model, robotic grasping, ai deployment in logistics, autonomous warehouse robots, continuous learning ai, ai-driven logistics, ai for fragile items, robotic system integration, robotic error recovery, ai for high-density storage, zero-shot reasoning, ai for complex environments, robotic perception, zero-shot learning, ai for high throughput, vision-based manipulation, robotic pick & place, robotic system scalability, ai for manufacturing lines, ai for manufacturing, e-commerce, robotic task planning, robot control, automated warehouse systems, ai for high accuracy picking, adaptive robotics, robotic process automation, inventory management, real-time vision, ai-powered robotics, ai for returns processing, vision language action model, intelligent robotics, ai for real-time decision making, robotic system interoperability, machine learning, vision-language ai, robotic system resilience, adaptive robot control, robotic automation, zero-shot robot learning, ai-powered logistics, real-world training data, robot control platform, warehouse automation, robotic error handling, warehouse process automation, ai for warehouse efficiency, warehouse intelligence, robotics automation, warehouse productivity, automated pick and place, cost savings, real-time image analysis, robotic sortation, batch picking, goods to person, automated induction, kitting solutions, bin handling, seamless system integration, dynamic workflows, ai-based solutions, robotics control, vision language models, order accuracy, automated fulfillment, automated packaging, supply chain efficiency, flexible software deployments, adaptive grippers, high throughput, automated systems, picking accuracy, human-robot collaboration, robotic platforms, inventory tracking, employee safety, collaborative robots, ai visualization, supply chain automation, real time operational data, logistics optimization, performance enhancement, automation technology, distribution, consumer products & retail, transportation & logistics, information technology & services, mechanical or industrial engineering, logistics & supply chain, consumer internet, consumers, internet",'+49 711 90777712,"Cloudflare DNS, Gmail, Google Apps, CloudFlare Hosting, Vercel, Hubspot, DoubleClick Conversion, Google Tag Manager, Hotjar, Google AdWords Conversion, DoubleClick, YouTube, Google Dynamic Remarketing, Linkedin Marketing Solutions, Mobile Friendly, Node.js, Xamarin, React Native, Android, Remote, AI, Circle, , AWS Trusted Advisor, IBM ILOG CPLEX Optimization Studio, Microsoft Azure Monitor, 3M 360 Encompass - Health Analytics Suite, Docker, Python, C#, Azure Linux Virtual Machines, Progress Chef, Puppet, Veritas Alta, Ansible, Git, Bash, NVIDIA TensorRT, Odoo, Wider Planet, ABB Robotics",32500000,Series A,27500000,2025-01-01,1200000,"",69c27f6052a1d30001e97d78,3589,33324,"Sereact is a robotics startup based in Stuttgart, Germany, founded in 2021 by Ralf Gulde and Marc Tuscher. The company specializes in AI-powered robotics solutions that enhance visual and manipulation capabilities for robots in various industries, including warehousing, logistics, and manufacturing. Sereact has developed the Vision Language Action Model (VLAM), an AI ""brain"" that allows robots to perceive their environment and execute tasks using natural language instructions. This technology enables users to deploy systems quickly and achieve high accuracy from the start. + +Sereact's core offering includes a VLAM-based AI brain for universal autonomy in physical tasks, available through a Robot-as-a-Service (RaaS) model. Key products include Sereact Pick & Place, which allows robots to handle unseen objects, and Sereact Lens, an AI vision layer for real-time perception and inventory tracking. The company has logged over 500 million picks in live production and serves major customers in the US and Europe, providing solutions for warehouse automation and logistics.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69a537479e1fa800012ad4b3/picture,"","","","","","","","","" +Knowtion GmbH,Knowtion,Cold,"",28,information technology & services,jan@pandaloop.de,http://www.knowtion.de,http://www.linkedin.com/company/shiratechknowtion,"","","",Karlsruhe,Baden-Wuerttemberg,Germany,"","Karlsruhe, Baden-Wuerttemberg, Germany","sensordatenfusion, data science, engineering services, artificial intelligence, kuenstlichen intelligenz, godigital, product development, predictive maintenance, functional safety, embeddedsoftware, modellbasierte algorithmen, data analytics, algorithmenentwicklung, embedded systems, air traffic management, special applications, prototype development, softwareentwicklung, software development, algorithm development, safetycritical systems, automatische datenanalyse, industry 40, datengetriebene algorithmen, industrial solutions, multisensor data fusion, certified software, safety integrity level, system engineering, system architecture, embedded software engineering, safety standards compliance, aerospace software, certification support, aerospace & defense, safety integrity level (sil), norm-compliant development, automotive safety standards, autonomous systems, iec 61508 certification, defense system certification, edge computing, system reliability, risk management, security-critical applications, risk assessment, sensor data processing, edge-based analytics, system simulation, normative compliance, real-time data processing, public safety & security, aerospace embedded systems, safety standards, autonomous vehicle safety, automotive safety, system certification, system robustness, safety case development, software validation, fault-tolerant systems, ai/ml integration, defense systems, real-time monitoring, mil-std-882 standard, military embedded software, high-reliability software, system integration, fault detection, fault detection algorithms, security in embedded systems, fault-tolerant control systems, system validation, military software, safety assurance, iso 26262 compliance, safety-critical sensor algorithms, automotive embedded software, industrial automation, safety-critical systems, aerospace safety systems, hardware-in-the-loop, safety-critical software, hazard analysis, sensor fusion, multisensor data analysis, b2b, transportation & logistics, information technology & services, embedded hardware & software, hardware, mechanical or industrial engineering",'+972 3-943-5050,"Outlook, Amazon AWS, Linkedin Marketing Solutions, Google Tag Manager, Mobile Friendly, Nginx, WordPress.org, Google Font API, Remote, AI","","","","","","",69c27f6052a1d30001e97d7e,3812,54133,"Knowtion GmbH is a data science and software development company located in Karlsruhe, Germany. Founded in 2011, it focuses on developing algorithms and applying them in industrial settings, particularly in sensor fusion and automatic data analysis. As a B2B service provider in the IT and communications sector, Knowtion employs a small team of skilled engineers with advanced degrees. + +The company offers a range of services, including algorithm development for processing sensor and machine data, data analytics, and software development. Their expertise extends to AI/ML and backend development, as well as safety-critical software. Knowtion creates both individual software modules and comprehensive solutions tailored to meet customer needs, adhering to high industry standards. Their work helps clients enhance efficiency, innovate products, and explore new business models.",2011,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6726b32c35e88d00018248fc/picture,"","","","","","","","","" +ZAL Center of Applied Aeronautical Research,ZAL Center of Applied Aeronautical Research,Cold,"",61,aviation & aerospace,jan@pandaloop.de,http://www.zal.aero,http://www.linkedin.com/company/zaltechcenter,"","",22 Hein-Sass-Weg,Hamburg,Hamburg,Germany,21129,"22 Hein-Sass-Weg, Hamburg, Hamburg, Germany, 21129","research, vr, luftfahrt, industry 40, fuel cell, mro, future factory, additive manufacturing, innovation, aviation, robotics, aeronautics, acoustics, aircraft interiors, 3d printing, automation, testing, luftfahrtforschung, startups, hydrogen, aviation & aerospace component manufacturing, energy efficiency, innovation in aerospace, additive manufacturing certification, aerospace, innovation accelerator, hydrogen drones, energy & utilities, virtual tour, artificial intelligence, robotics & automation, b2b, manufacturing, h2am hydrogen center, acoustics & vibration, government, water hydrogen applications, research and development in the physical, engineering, and life sciences, industry collaboration, hydrogen technology, research partnerships, smart cabin iot solutions, data analytics, research infrastructure, multi-megawatt propulsion, aerospace & defense, cabin acoustics optimization, transportation & logistics, services, hamburg aviation hub, sustainable aviation fuels, applied aviation research, fuel cell systems, remote inspection ai, consulting, aerospace technology development, uav development workshop, aviation research, technology, technology transfer, research and development, transportation_logistics, energy_utilities, mechanical or industrial engineering, information technology & services, environmental services, renewables & environment, research & development",'+49 40 2485950,"Mailchimp Mandrill, Outlook, Microsoft Office 365, Microsoft Windows Server 2012, Azure Linux Virtual Machines, Microsoft Active Directory Federation Services, Office365","","","","","","",69c27f6052a1d30001e97d84,8731,54171,"ZAL Center of Applied Aeronautical Research (ZAL) is a leading research and development platform for civil aviation, located in Hamburg, which is the world's third-largest civil aviation hub. Established in 2016, ZAL serves as a bridge between academic institutions, the aviation industry, and the City of Hamburg, focusing on integrating and industrializing innovative aviation technologies. + +The organization comprises ZAL GmbH, which manages research facilities and projects, and the ZAL Association, which oversees programs and awards. The ZAL TechCenter, a modern research facility, offers extensive infrastructure, including laboratories, hangars, and specialized labs for hydrogen propulsion and maintenance technologies. ZAL conducts applied research in various areas, such as robotics, digitalization, sustainable aviation fuels, and urban air mobility, while also facilitating knowledge transfer through events and workshops. The center collaborates with a diverse network of partners, including the German Aerospace Centre, Lufthansa Technik, and various academic institutions, to advance aviation technology and sustainability.",2009,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68cf8a6650d5aa0001e75108/picture,"","","","","","","","","" +Körber Digital,Körber Digital,Cold,"",98,information technology & services,jan@pandaloop.de,http://www.koerber-digital.com,http://www.linkedin.com/company/koerberdigital,"","",3 Max-Urich-Strasse,Berlin,Berlin,Germany,13355,"3 Max-Urich-Strasse, Berlin, Berlin, Germany, 13355","digitalization of manufacturing processes, operational excellence, digital services, manufacturing efficiency, manufacturing ecosystems, data science, ai, iiot, software development, digital enterprise solutions, digital transformation hub, real-time monitoring, cloud-based software, digital transformation consulting, digital transformation ecosystem, digital factory, digital transformation strategy, digital supply chain solutions, smart manufacturing, consulting, services, ai in supply chain management, digital engineering, digital manufacturing excellence, business intelligence, food and beverage, logistics, digital ecosystem collaboration, digital transformation in food industry, digital capabilities, real-time process monitoring, digital ecosystem development, supply chain, data analytics, integrated digital systems, ai-enabled supply chain, digital ecosystem, digital supply chain, innovation, b2b, digital transformation in logistics, digital ecosystem co-creation, cloud computing, computer systems design and related services, machine learning, digital innovation, industry 4.0, manufacturing, mechanical engineering, digital process optimization, pharmaceutical, supply chain optimization, digital ecosystem for industry, digital transformation for industrial companies, intelligent systems, digital manufacturing platform, iot, digital tools for industry, digital platforms, digital strategy, digital innovation in manufacturing, ai-powered manufacturing, sustainability, predictive maintenance, automation, digital tools, supply chain management, ai-driven manufacturing, digital transformation, digital technologies, digital transformation in pharma, digital business models, collaborative innovation, digital solutions, ai in pharma manufacturing, digital ecosystem platform, digital industry solutions, saas solutions, machine-agnostic software, iiot technologies, user-centric design, corporate venture building, ai-driven efficiency, cloud connectivity, sustainable innovation, collaborative ecosystem, quality control automation, employee engagement, gamification in business, data-driven decisions, overall equipment effectiveness, agile methodologies, digital mindset, remote work solutions, entrepreneurial culture, technology integration, ai transformation, open innovation, supply chain resilience, dynamic ecosystems, deep tech solutions, real-time analytics, customer co-creation, cross-industry applications, digital frameworks, performance optimization, machine learning solutions, data ethics, sustainability in manufacturing, automation technologies, cloud-based services, manufacturing insights, advancing workplace productivity, employee empowerment, saas, distribution, transportation & logistics, information technology & services, analytics, food & beverages, consumer goods, consumers, enterprise software, enterprises, computer software, artificial intelligence, mechanical or industrial engineering, medical, marketing, marketing & advertising, environmental services, renewables & environment, logistics & supply chain",'+49 171 8478792,"Route 53, MailChimp SPF, Microsoft Office 365, Hubspot, Atlassian Cloud, Magento, SuccessFactors (SAP), Adobe Marketing Cloud, Slack, Salesforce, Zendesk, Google Tag Manager, Mobile Friendly, Linkedin Marketing Solutions, Nginx, DoubleClick Conversion, Multilingual, Cedexis Radar, DoubleClick, Google Analytics, Adobe Media Optimizer, Google Dynamic Remarketing, Vimeo, Bootstrap Framework, Remote","","","","","","",69c27f6052a1d30001e97d76,3571,54151,"Körber Digital is the Digital Transformation Studio and Business Area of the Körber Group, based in Berlin, Germany. The company specializes in AI, data science, cloud computing, IIoT, and deep tech solutions aimed at enhancing manufacturing efficiency and supply chain agility. With a team of around 245 employees from approximately 30 nationalities, Körber Digital generates about $21 million in revenue. + +The company focuses on innovative, scalable solutions that drive digital transformation in manufacturing and supply chain industries. Körber Digital operates as an innovation hub, emphasizing co-creation with experts and partners to develop machine-vendor-agnostic solutions. Its core offerings include AI and data science integrations, deep tech solutions, and ecosystem approaches designed to streamline production and maximize performance. Key sectors served include automotive, consumer goods, e-commerce, food and beverage, and pharmaceuticals, among others.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68a6d18783ba5900015b710f/picture,Körber (koerber.com),55ee622df3e5bb21df0012b7,"","","","","","","" +DATANOMIQ,DATANOMIQ,Cold,"",12,information technology & services,jan@pandaloop.de,http://www.datanomiq.de,http://www.linkedin.com/company/datanomiq,"",https://twitter.com/DATANOMIQ,11 Franklinstrasse,Berlin,Berlin,Germany,10587,"11 Franklinstrasse, Berlin, Berlin, Germany, 10587","data strategy, business analytics, seminarworkshops for it specialists engineers, seminarworkshops for it specialists amp engineers, data science, it services & it consulting, consulting, information technology and services, data mining, data assessment, data quality, data mesh architecture, data warehousing, reporting, data analytics, data quality analytics, process mining guidance, deep learning, data analysis, computer systems design and related services, cloud data engineering, data team coaching, process mining, b2b, data lake, big data, business intelligence, web data scraping, data lakehouse, ai assessment, data analytics and consulting, data engineering, software development, data as a service, data management, data strategy tool guidance, predictive analytics, services, analytics, fraud detection, ai as a service, information technology & services, enterprise software, enterprises, computer software, artificial intelligence, computer & network security","","Gmail, Google Apps, Microsoft Office 365, Apache, Google Font API, Mobile Friendly, WordPress.org, Android, Remote, AI","","","","","","",69c27f6052a1d30001e97d86,7374,54151,"DATANOMIQ is a consulting and service partner that specializes in Business Intelligence (BI), Process Mining, and Data Science. The company helps organizations utilize Big Data and artificial intelligence to optimize their business processes. With a focus on making data accessible to all stakeholders, DATANOMIQ enables faster insights that drive improvements across the value chain. + +The company offers a range of services, including consulting on data architectures like Data Warehouses and Data Lakehouses, which integrate and clean data from various sources. DATANOMIQ also provides independent guidance on Process Mining tools and methods, utilizing Natural Language Processing to analyze unstructured data. Their expertise in Data Science leverages Big Data and AI to enhance value creation. Overall, DATANOMIQ is dedicated to matching technical and organizational needs with the right tools for successful data-driven implementations.",2015,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/676e3ce190923900018cf93e/picture,"","","","","","","","","" +ATB-Bremen,ATB-Bremen,Cold,"",21,research,jan@pandaloop.de,http://www.atb-bremen.de,http://www.linkedin.com/company/atb-bremen,"","",1 Wiener Strasse,Bremen,Bremen,Germany,28359,"1 Wiener Strasse, Bremen, Bremen, Germany, 28359","research services, b2b, systemanalyse, innovationskraft, software development and engineering, software development, forschung, government, consulting, forschungsprojekte, digital transformation, modulare softwarelösungen, internationale kooperationen, branchenübergreifende softwarelösungen, technologieentwicklung, research and development in engineering and technology, kontextbasierte wissensmanagement, user experience, ki-gestützte lösungen, projektmanagement, forschungsförderung, software engineering, cloud computing, softwarearchitektur nach standards, ai, embedded services, information technology, product development, systemtechnik, system integration, automation, softwarearchitektur, open source nutzung, technologiezentrum, services, softwareentwicklung, robotics, custom software development, project management, agile zusammenarbeit, research and development in the physical, engineering, and life sciences, information technology & services, ux, enterprise software, enterprises, computer software, mechanical or industrial engineering, productivity",'+49 421 220920,"Microsoft Office 365, IoT","","","","","","",69c27f6052a1d30001e97d79,8731,54171,"ATB ist ein anwendungsorientiertes Forschungsinstitut, das im Jahre 1991 gemeinsam von der Freien Hansestadt Bremen und bedeutenden Industrieunternehmen aus Bremen gegründet wurde. + +ATB ist ein wesentlicher Teil der langfristigen Strategie der Freien Hansestadt Bremen zur Stärkung des Innovationspotentials des norddeutschen Wirtschaftsraumes und insbesondere des Standortes Bremen. + +ATB ist ein hochinnovatives und leistungsfähiges Technologiezentrum, welches systemtechnische Dienstleistungen und Produkte einem breiten Spektrum von Unternehmen und Institutionen verfügbar macht und so deren Wettbewerbsfähigkeit steigert. ATB hat sich zu einem dynamisch wachsenden Forschungsinstitut entwickelt, das sowohl im nationalen und europäischen, wie auch weltweiten Markt erfolgreich agiert und seinen Partnern einen hohen Grad an Expertise in mehreren technischen Bereichen anbietet.",1991,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/674d5ddef5325000013f66d9/picture,OAS AG (oas.de),55f2593ef3e5bb0b85003ceb,"","","","","","","" +KIOTERA GmbH,KIOTERA,Cold,"",14,information technology & services,jan@pandaloop.de,http://www.kiotera.de,http://www.linkedin.com/company/kiotera,"","",15A Speditionstrasse,Duesseldorf,North Rhine-Westphalia,Germany,40221,"15A Speditionstrasse, Duesseldorf, North Rhine-Westphalia, Germany, 40221","industrial iot, projektmanagement, digitale verwaltung, smart city, condition monitoring, design thinking, business models, mittelstand, digital transformation, internet of things, lorawan, instandhaltung, predictive maintenance, it services & it consulting, iot im stahlsektor, datenplattform, digitale transformation, nachhaltigkeit, technologieentwicklung, environmental services, datensicherheit, iot in der chemieindustrie, energieverbrauchsmanagement, interoperabilität, information technology & services, ki-gestützte optimierung, din-zertifizierungen, gebäudemanagement, manufacturing, b2b, effizienzsteigerung, ressourcenoptimierung in gebäuden, iot-strategieentwicklung, sensoren für co2-überwachung, energieeffizienz, netzwerktechnik, iot-lösungen, iot, industrial automation, automatisierung, netzwerksimulation, netzwerkaufbau für große flächen, smart grid, datenanalyse, distribution, langfristige projekte, ressourcenmanagement, iot-netzwerke, iot-architektur, services, ressourcenschonung, consulting, industrie 4.0, sensoren, sensorintegration, computer systems design and related services, nachhaltige gebäudebewirtschaftung, construction, iot für lagerhallen, renewables & environment, mechanical or industrial engineering, clean energy & technology","","Outlook, Hubspot, Atlassian Cloud, Slack, Adobe Media Optimizer, DoubleClick, Google Dynamic Remarketing, Shutterstock, Google Tag Manager, WordPress.org, Nginx, Cedexis Radar, DoubleClick Conversion, Vimeo, Mobile Friendly, IoT, React Native, Remote, AI","","","","","","",69c27f6052a1d30001e97d7a,7375,54151,"KIOTERA GmbH is a German company based in Düsseldorf that specializes in sustainable IoT solutions. The company focuses on increasing plant availability, reducing costs, and lowering CO2 emissions through innovative technology. With a team of 27 employees, KIOTERA has successfully completed 100 projects and is led by Geschäftsführer Philip Hill. + +The company offers a range of services, including the development, implementation, and operation of IoT projects. Their expertise includes condition monitoring for machinery and plants, building management, and general consulting and project management. KIOTERA emphasizes sustainability in its solutions, aiming to support environmental goals through effective IoT applications. They also partner with platforms like ThingsBoard to enhance their service offerings.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/673049cea8dae00001f1a7c9/picture,"","","","","","","","","" +aoloa-Engineering GmbH,aoloa-Engineering,Cold,"",12,information technology & services,jan@pandaloop.de,http://www.aoloa.de,http://www.linkedin.com/company/aoloa-engineering,"","",4-6 Maichinger Strasse,Magstadt,Baden-Wuerttemberg,Germany,71106,"4-6 Maichinger Strasse, Magstadt, Baden-Wuerttemberg, Germany, 71106","it services & it consulting, information technology & services","","Gmail, Google Apps, Apache, Mobile Friendly, Google Analytics, Google Font API, Shutterstock","","","","","","",69c27f6052a1d30001e97d87,"","","Seit 2009 ist die aoloa-Engineering GmbH mit Sitz in Magstadt verlässlicher und kompetenter Partner in der Entwicklung innovativer IoT-Lösungen. Sie unterstützt bei der Projektierung und Umsetzung von Projekten im Automotive-, Aerospace- und Automations-Bereich ebenso wie in den Bereichen Smart Waste Management oder Smart Medtech. Aoloa-Engineering entwickelt maßgeschneiderte smarte Lösungen für die individuellen Anforderungen ihrer Kunden, mit denen bestehende Prozesse optimiert und Ressourcen eingespart werden können. Das Unternehmen setzt seit Jahren auf die spezifische Ausbildung eigener Spezialisten im Bereich der Kommunikationstechnologien und Datenanalyse. Die Kernkompetenz des Unternehmens liegt in der System- und Softwareentwicklung im Kundenauftrag bis hin zur Entwicklung und Vermarktung eigener Produkte.",2009,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e515559d99b50001043d86/picture,"","","","","","","","","" +Digital Additive Production DAP - RWTH Aachen,Digital Additive Production DAP,Cold,"",62,research,jan@pandaloop.de,http://www.dap-aachen.de,http://www.linkedin.com/school/dap-rwth-aachen,https://www.facebook.com/daprwth/,https://twitter.com/dap_rwth,79 Campus-Boulevard,Aachen,Nordrhein-Westfalen,Germany,52074,"79 Campus-Boulevard, Aachen, Nordrhein-Westfalen, Germany, 52074","industry benchmarking, digital process chains, qualification & development of new materials for additive manufacturing, design for additive manufacturing, additive manufacturing, metal additive manufacturing, education, technical due diligence, algorithmbased smart lattice structures, equipment evaluation, executive education, am consulting, process simulation, technology roadmap, research services, industrial machinery manufacturing, cellular structures in am, am process chain, digital twin, laser powder bed fusion, coating technologies, ehla (extreme high-speed laser material deposition), quality assurance, industry 4.0, nanostructured alloys, digital manufacturing, manufacturing, digitalization in manufacturing, b2b, sustainable solutions, bioresorbable implants, applied research, lpbf (laser powder bed fusion), additive manufacturing for medical implants, extreme high-speed laser material deposition (ehla), laboratory systems, education and training, production networking, sustainable manufacturing, post-processing, industry collaboration, hydrogen technology, open vector format (ovf), process monitoring, research infrastructure, metal am, cloud-based am platforms, process parameters, process optimization, metal-based am, process digitalization, patient-specific implants, bioresorbable alloys, digital twin for am, automated post-processing algorithms, services, process chain optimization, polymer-based am, 3d printing, industrial partnerships, decentralized am production, internships, multi-material am, laser cladding, automotive additive manufacturing, polymer am, decentralized production, open vector format, material development, hydrogen burners, consulting, laser-based coating processes, laser material deposition, research and development, healthcare, mechanical or industrial engineering, research & development, health care, health, wellness & fitness, hospital & health care","","SendInBlue, Mobile Friendly, WordPress.org, Apache","","","","","","",69c27f6052a1d30001e97d7f,3546,33324,"Digital Additive Production (DAP) is a research chair at RWTH Aachen University, established in August 2016 under the leadership of Prof. Johannes Henrich Schleifenbaum. With around 120 employees and over 3,200 m² of laboratory space, DAP focuses on advancing additive manufacturing (AM) and production digitalization. The organization aims to enhance the manufacturing industry by developing sustainable solutions and sharing expertise with industrial partners. + +DAP offers a range of consulting and development services, including production design and digitalization. Their services encompass process optimization, design for manufacturing, data transfer solutions, and predictive monitoring. The chair also engages in functional prototyping, post-processing, and quality assurance, utilizing advanced technologies like Metal Binder Jetting and Extreme High-Speed Laser Material Deposition. DAP collaborates with notable partners, including Ford and Kueppers Solutions GmbH, and is committed to training the next generation of specialists in additive manufacturing through various educational programs.",2016,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/672697f424127600014445c9/picture,"","","","","","","","","" +INperfektion GmbH,INperfektion,Cold,"",29,machinery,jan@pandaloop.de,http://www.inperfektion.de,http://www.linkedin.com/company/inperfektion,"","",34 Friedrich-List-Allee,Wegberg,North Rhine-Westphalia,Germany,41844,"34 Friedrich-List-Allee, Wegberg, North Rhine-Westphalia, Germany, 41844","kompetenz, coke machinary, industrie 40, all about automation, solidworks, service, industry business network 40, industrielle automation, automatisierung, eplan, process knowhow, robotic, system integrator, turnkey solution, industrial engineering, deutscher gruenderpreis, pharmaindustry, automation machinery manufacturing, fertigungstechnik, automatisierte qualitätssicherung, consulting, modernisierung, services, kollaborative roboter, maschinenbau, automatisierungslösungen, robotik, digitalisierung, distribution, robotics, industrie 4.0, robotiksysteme, b2b, systemintegration, flexible produktion, industrial machinery manufacturing, manufacturing, retrofit, steuerungssysteme, logistikautomation, instandhaltung, industrial automation, mechanical or industrial engineering, information technology & services",'+49 2432 934300,"Outlook, Microsoft Office 365, GoDaddy Hosting, Google translate API, WordPress.org, Mobile Friendly, Varnish, Node.js, Xamarin, Android, React Native, AI, Remote","","","","","","",69c27f6052a1d30001e97d88,3589,33324,"INperfektion GmbH is a German engineering company based in Wegberg, specializing in automation solutions for the development, design, manufacturing, and optimization of automated machines and systems. The company focuses on Industry 4.0, aiming to enhance production environments through innovative and precise automation strategies. Founded as a limited liability company, INperfektion emphasizes efficiency gains and future-oriented innovations in heavy industry. + +The company offers comprehensive system solutions that cover the entire lifecycle of automation, including engineering design and trading in automation and drive technology. INperfektion serves various sectors such as the food, heavy, steel, and automotive industries, providing tailored automation solutions to meet diverse client needs. It maintains a strong partner network for global supply chains and actively participates in industry events to showcase its expertise and foster collaborations.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/686b0b34252b0f00014b7c23/picture,"","","","","","","","","" +RoboHub Niedersachsen,RoboHub Niedersachsen,Cold,"",50,machinery,jan@pandaloop.de,http://www.robohub-nds.de,http://www.linkedin.com/company/robohub-nds,"","","",Garbsen,Lower Saxony,Germany,"","Garbsen, Lower Saxony, Germany","automation machinery manufacturing, projektentwicklung robotik, automation, collaborative robotics, schulung, robotik zentrum, b2b, meet-up, cobot-integration, cobot-integration in kmu, robot automation, flexible fertigungstechnologien, automatisierung, forschungszentrum, fördermittelberatung, vernetzungsplattform, robotics, vernetzung, industrial automation, digitaler ort niedersachsen, schulungen und workshops, services, industrielle robotik in niedersachsen, leichtbauroboter, manufacturing, cobot-community plattform, digital transformation, fachkräftesicherung, 3d-druck für greifer, robotik beratung, leichtbauroboter für produktion, industrial machinery manufacturing, cobot-experimentierfeld, cobot-programmierung, automatisierung bei materialverschwendung, industriepartner, consulting, sicherheitskonzepte, automatisierung im mittelstand, automatisierungsprojekte, technologieentwicklung, research and development, government, workshop, kollaborative robotik, automatisierungslösungen, robotik hub, cobots, produktionsprozesse, forschung und entwicklung, robotik innovation, industrie 4.0, mensch-roboter-kollaboration, labor, machine learning, mechanical or industrial engineering, information technology & services, research & development, artificial intelligence","","Apache, DoubleClick, Google Font API, Typekit, WordPress.org, Mobile Friendly","","","","","","",69c27f6052a1d30001e97d8c,3546,33324,"Digitalhub für die Themen Cobots und Roboterautomation +Wir bieten praxisorientierte Workshops, Umsetzungsprojekte, Schulungen sowie Netzwerkveranstaltungen für interessierte Unternehmen aus Niedersachsen und darüber hinaus.",2022,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6713da93b928a80001d3adde/picture,"","","","","","","","","" +Merantix AI Campus,Merantix AI Campus,Cold,"",14,information technology & services,jan@pandaloop.de,http://www.merantix-aicampus.com,http://www.linkedin.com/company/merantix-ai-campus,"",https://twitter.com/merantix,4 Max-Urich-Strasse,Berlin,Berlin,Germany,13355,"4 Max-Urich-Strasse, Berlin, Berlin, Germany, 13355","technology, information & internet, ai collaboration, ai for autonomous systems, ai research, ai for material discovery, generative ai, ai hardware acceleration, b2b, research institutions, ai for cybersecurity, ai community events, ai community network, ai solutions, ai community engagement, services, ai ecosystem initiatives, open source ai, ai projects, ai community programs, ai research hub, ai ecosystem investments, digital health, investor networks, ai for climate change, ai ecosystem acceleration, artificial intelligence, ai for smart cities, ai ecosystem europe, ai ecosystem networking, ai for environmental monitoring, ai for speech recognition, ai development, ai ecosystem platform, ai in automotive, ai in public administration, ai ecosystem growth, ai community platform, ai ecosystem incubation, ai for natural language processing, ai ecosystem community, community-driven services, coworking space, ai community initiatives, ai ventures, ai ecosystem development, ai community, ai startups, ai infrastructure, ai for industrial automation, information technology and services, customer engagement, ai for robotics, event series, ai residency, ai in finance, ai collaboration platform, ai community growth, data analytics, government, ai model deployment, ai ecosystem scaling, ai in energy, ai for data privacy, ai ecosystem, ai for personalized medicine, ai knowledge sharing, ai ecosystem ecosystem, ai for drug discovery, ai in healthcare, ai conferences, ai startups support, digital transformation, networking events, ai industry verticals, ai in manufacturing, ai in e-commerce, ai ecosystem infrastructure, ai industry, ai ecosystem collaboration, coworking space and business incubation, ai networking, ai for supply chain, ai community collaboration, tech ecosystem, startups, ai for digital governance, community and industry collaboration, ai for smart mobility, ai innovation, ai knowledge exchange, ai for image analysis, computer systems design and related services, ai ecosystem innovation, ai technology, machine learning, european ai hub, ai ecosystem partnerships, ai community support, regulatory collaboration, ai ecosystem support, ai for climate tech, ai for public services, research and development in artificial intelligence, ai for societal impact, community engagement, knowledge sharing, office space, ai events, cross-disciplinary, researchers, corporate partnerships, berlin ai hub, ai access, technology exchange, entrepreneurship, ai builders, stakeholder integration, office rentals, meetup events, ai applications, collaborative workspace, event hosting, investment opportunities, sustainability in ai, deep tech, talent network, regulatory alignment, ai workshops, research initiatives, community growth, ai for good, startup acceleration, ai education, ai strategy, responsible ai, policy impact, hub network, e-commerce, healthcare, finance, education, non-profit, manufacturing, distribution, consumer_products_retail, transportation_logistics, energy_utilities, construction_real_estate, information technology & services, health, wellness & fitness, consumer internet, consumers, internet, health care, hospital & health care, financial services, nonprofit organization management, mechanical or industrial engineering","","Cloudflare DNS, Gmail, Google Apps, Microsoft Office 365, Webflow, Workday, Greenhouse.io, Hubspot, Slack, Eventbrite, Google Font API, Google Tag Manager, Mobile Friendly, Nginx, YouTube, IoT, Automation Anywhere, Data Analytics, Databricks, Snowflake, Microsoft Sql Server, Remote, Circle, AI, Gong, React Native, Toast, Oracle Fusion Cloud ERP, Salesforce, FUSION, Autodesk, Salesforce CRM Analytics, AWS Trusted Advisor, Microsoft Azure Monitor, Microsoft Active Directory Federation Services, Akamai CDN Solutions, Blue Coat ProxySG, Cisco Secure Firewall Management Center, Pipedrive, ebs, Amazon DynamoDB, Amazon EventBridge, Amazon S3, Amazon Simple Queue Service (SQS), API Gateway, AWS Step Functions, Lambda Cloud, SNS, , Sensu, Freshdesk, Asana, Mindtickle, WebOffice, SAS Enterprise Guide, SQL, Microsoft Teams, Ad Dynamo, Revit, Civil 3D, Construct, Hi-Media Performance, C#, go+, Rust, Python, AWS SDK for JavaScript, CMake, Docker, Git, Jenkins, Spark, Microsoft Excel, E-planning, Dell EMC PowerStore, Azure Data Lake Storage, Kubernetes, IBM ILOG CPLEX Optimization Studio, AutoCAD, Barracuda MSP, SLURM Workload Manager, Metaflow, React, Node.js, Maya, Autodesk 3ds Max, Flame, ShotGrid, Microsoft Entra ID, CAT, Microsoft Windows Server 2012, REST, Amazon EC2, ECS, Amazon EKS Anywhere, Terraform, Imperva Serverless Protection, Spinnaker, Harness, Cursor, Claude, GraphQL, GRPC, AVRO, Apache Kafka, Amazon Kinesis, Confluent, AWS Glue, R, Shiny, LinkedIn Recruiter, Siemens SINAMICS, Zoomdata, Vertex AI, Google Cloud Platform, Javascript, TypeScript, Groovy, Akamai Connected Cloud (formerly Linode), JFrog Artifactory, Conversant (ValueClick), Olo, Playwright, Jest, Visual Studio, Visual Studio Code, Jira, Confluence, SAP, LucidChart, Google AlloyDB for PostgreSQL, MySQL, GitHub Actions, AWS Cloud Development Kit (AWS CDK), Amazon Managed Streaming for Apache Kafka (Amazon MSK), Redshift, Google Cloud BigQuery, ClickHouse, Google Workspace, Outlook, Google AdWords Conversion, Excel4Apps, PowerBI Tiles, Flow, Airtable, Spring Boot, ChatBot, Inventor, Microsoft Visual Studio, Xcode, pandas, Angular, .NET, SAP S/4HANA, Cypress, Pytest, Fastapi, Xray, Liferay, PyTorch, Make, TensorFlow, scikit-learn, Langchain, Strands Retail, Google Ad Manager, Xandr, Cisco ACI Orchestration, AWS Application Load Balancer, dbt, PySpark, Airflow, Hive, Hadoop HDFS, Gradle, Red Hat OpenShift, Splunk, MongoDB, PostgreSQL, Copilot, Microsoft Intune Enterprise Application Management, Autodesk Fusion 360 Manage PLM, IBM Data Warehouse, IBM Cognos Analytics, Google PageSpeed Insights, AWS Wavelength, 24-7 Media, Ning, ADAPT, Mode, Clojure, ANGEL LMS, edX, , SAP Fiori, Siemens Calibre nmDRC, Tor, SailPoint, SailPoint IdentityNow, Impact Radius, Amazon CloudWatch, NetApp SAN, Autodesk Fusion Manage, NVIDIA A100 Tensor Core GPU, Sizmek (MediaMind), CDK, AWS CloudFormation, GitLab, dynaTrace, BlueTie Vault, Azure Cosmos DB, Redis, Docker Compose, Jira Software, Jira Service Management, Atlassian Cloud, CallMiner Eureka, Autopilot, NTENT, AWS Marketplace, Microsoft Teams Rooms, Actionstep, Cisco Nexus Dashboard, Rapid7 InsightVM, Amazon Associates, Microsoft Office, Microsoft Power Apps, Microsoft Power Automate, TSYS, Synopsys Design Compiler, NVIDIA, Selenium, Anaplan, Power BI Documenter, Cascade CMS, Cisco WebEx Teams, Frame, SignNow, Amazon QuickSight, Qt, Splunk SOAR, Siemens SIMATIC S7, ABB Robotics, ARIS Simulation, Azure Digital Twins, Microsoft DirectX, Open Graphics Library (OpenGL), Vulkan, Activa, IntelliJ IDEA, Maven, Backstage, PyCharm, Adobe Dreamweaver, IBM Db2 for Linux, UNIX, and Microsoft Windows, SAP SuccessFactors, Saba Talentlink, CloudBees, GitHub Enterprise, GitHub, Apigee, Azure API Management, Next.js, Linkedin Marketing Solutions, Spryker Cloud Commerce OS, Docking & MDI for WPF, n8n, SmartRecruiters, Retool, 3M 360 Encompass - Health Analytics Suite, Apache Iceberg, Jupyter Notebook, Google Publisher Tag (GPT), Security, Gem, Autodesk BIM Collaborate, Instagram, TikTok, Salesforce Service Cloud, Micro, Metabase, Google Ads, Miro, Scrum Do, Kanbanize, Act!, ICP, Harmony Email & Collaboration, Kotlin, , Cribl, Microsoft PowerShell, Autodesk InfraWorks 360, SAP BusinessObjects Business Intelligence (BI), LeanIX Enterprise Architecture Management, New Relic, Azure Key Vault, Microsoft Purview Information Protection, Gainsight, Microsoft PowerPoint, HTML Pro, CircleCI, Clearwater Analytics, Sage 300 Construction and Real Estate, Looker, Redux, React Redux, CSS, webpack, Babel, JobRouter, Express, Flask, RabbitMQ, Alembico EMR, OpenTelemetry, Autodesk Fusion, Figma, Apache Flink, Google, PitchBook, Microsoft 365, McAfee Total Protection for Data Loss (DLP), BASE, Electron, JUnit, Grafana, SS&C, Ansible, Twitter Advertising, SWIFT, Objective-C, Spring, Google Cloud, Amazon Web Services (AWS), Microsoft Azure, Snow, Clari, Upland Altify, Adobe Creative Cloud, DuckDB, NICE, Streamlit, Awin, Navisworks, ArcGIS, ForgeRock Identity Platform, Recap, AWS Analytics, AWS EventBridge, AWS IoT Core, OpenAPI, Sigma, FlipHTML5, Faiss, LangGraph, OpenAI, OpenSearch, Pinecone, Amazon Virtual Private Cloud (Amazon VPC), Route 53, Kibana, Amazon ElastiCache, Springboot, ServiceNow, Autodesk BIM 360 Docs, Innovyze InfoAsset, Fastly CDN, Workday Recruiting, , Gemini, OpenAI Whisper, Google Sheets, Tableau, Elasticsearch, Collibra, Sophos XG, LeafLink, VMware Virtual Desktop Infrastructure, Notion, Presto, Klue, Microsoft Whiteboard, Apollo, Siemens PLM, AT&T, Adobe, Marketo, Segment, Dovetail, Apptio Cloudability SaaS, IBM Turbonomic, CrowdStrike, Tenable Nessus, AWS Glue Data Catalog, Repl.it, Azure Devops, LinkedIn Ads","","","","","","",69c27f6052a1d30001e97d77,8731,54151,"Merantix AI Campus is a prominent hub for the AI ecosystem located in Berlin. Launched in April 2021 by the Merantix Group, it serves as a not-for-profit coworking and residency space that brings together researchers, startups, corporates, investors, and universities. The campus focuses on fostering collaboration and innovation among AI stakeholders, with around 90 companies and over 1,000 registered desks. + +The facility offers dedicated workspaces and residency programs for AI teams, along with hosting approximately 250 events annually. These events include technical discussions, networking gatherings, and hands-on workshops aimed at sparking ideas and connections. Merantix AI Campus emphasizes community building, facilitating connections among founders, operators, and investors to drive visibility and collaboration within the AI sector.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e94e90b63bc100014207bd/picture,Merantix Capital (merantix-capital.com),5c1d9f0180f93e5d4b904ee5,"","","","","","","" +Ailio GmbH,Ailio,Cold,"",13,information technology & services,jan@pandaloop.de,http://www.ailio.de,http://www.linkedin.com/company/ailio,https://www.facebook.com/ailiogmbh,"",9 Buddestrasse,Bielefeld,North Rhine-Westphalia,Germany,33602,"9 Buddestrasse, Bielefeld, North Rhine-Westphalia, Germany, 33602","ki, streaming, python, sqldatenbanken, django, dataanalytics, kafka, bigdata, databricks, azure, graphdatenbanken, message streaming, datascience, it services & it consulting, ml & ai, business intelligence solutions, operational efficiency, predictive analytics, big data, consulting, cloud solutions, services, data engineering, event streaming, data optimization, business intelligence, production optimization, data products, video & bildanalyse, artificial intelligence, data consulting, data solutions, data-infrastruktur, user experience, data pipelines, data analytics, data automation, automatisierung in industrie, rag pipelines, distribution, data scalability, microsoft azure, b2b, deep learning, interne gpt/llm-lösungen, data integration, computer systems design and related services, machine learning, data governance, manufacturing, data infrastructure, large language models, data platform development, energy efficiency, lagerverwaltung, data literacy, apache kafka, data migration, decarbonization, data lakehouse, data transformation, data literacy training, customer clustering, data-science, data plattform, data monitoring, data-science projects, data lakehouse architektur, data projects, predictive maintenance, automation, custom software development, data security, data strategy, data governance plattformen, data management, ki & data-science, data cloud, ki use-cases, information technology & services, enterprise software, enterprises, computer software, cloud computing, analytics, ux, mechanical or industrial engineering, environmental services, renewables & environment, computer & network security",'+49 521 96301788,"Cloudflare DNS, Gmail, Outlook, Google Apps, CloudFlare Hosting, DoubleClick, Mobile Friendly, reCAPTCHA, WordPress.org, Google Tag Manager, Data Analytics, Data Storage, Looker, Scala, Android, Docker, Remote, Google Ads, Meta Ads Manager","","","","","","",69c27f6052a1d30001e97d7d,7375,54151,"Ailio GmbH is a service provider based in Germany, specializing in data science and artificial intelligence (AI). The company focuses on customized projects that utilize platforms like Databricks and Microsoft Azure to help mid-sized companies and corporations build data-driven infrastructures. Ailio emphasizes lean lighthouse projects to showcase AI potential, followed by comprehensive transformations in data governance, business intelligence, and AI applications. + +The company offers a range of services, including predictive analytics, machine learning, and the development of AI-driven expert systems. They create tailored data solutions for various sectors, such as mechanical engineering and manufacturing. Ailio also provides workshops to identify valuable AI use cases and supports the development of long-term data infrastructures. Their team consists of experts in various roles, including data scientists and engineers, who work collaboratively to deliver bespoke data products and solutions that address specific business challenges.",2015,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69ae508f55cc360001fe3d37/picture,"","","","","","","","","" +CoSyBio,CoSyBio,Cold,"",15,higher education,jan@pandaloop.de,http://www.cosy.bio,http://www.linkedin.com/company/cosy-bio,"","",8 Albert-Einstein-Ring,Hamburg,Hamburg,Germany,22761,"8 Albert-Einstein-Ring, Hamburg, Hamburg, Germany, 22761","deep learning, ai infrastructure, biotechnology, genomics, generative ai, biomarker prediction, biomarker discovery, biomedical data analysis, services, computational drug discovery, multi-omics data privacy, neural network models for genomics, proteomics, quantum algorithms in biology, privacy-preserving ai, personalized medicine, drug repurposing, biological data analysis, ai for drug discovery, network and systems biology, biomedical data privacy, ai-driven healthcare, computational biology, research and development in the physical, engineering, and life sciences, biomedical informatics, alternative splicing analysis, disease mechanisms, quantum algorithms, federated learning, clinical data integration, predictive analytics, biological data science, network medicine, privacy-aware machine learning, multi-omics integration, large-language models in biomedicine, biomedical research, bioinformatics, disease heterogeneity, machine learning, single-cell analysis, data science, biological networks, ai in healthcare, machine learning models, federated learning for patient data, systems biology, healthcare, biomedical network analysis, single-cell omics, large-language models, alternative splicing, neural networks, healthcare technology, multi-modal data analysis, data privacy in medicine, multi-omics data, artificial intelligence, information technology & services, enterprise software, enterprises, computer software, b2b, health care, health, wellness & fitness, hospital & health care","","Google Cloud Hosting, Mobile Friendly, Varnish, Wix","","","","","","",69c27f6052a1d30001e97d83,8731,54171,"CoSyBio is a research laboratory that investigates the molecular mechanisms driving diseases using artificial intelligence methodology and combinatorial optimization. It is located with the Chair of Computational Systems Biology at the University of Hamburg. + +We develop computational methods for Network and Systems Medicine, in particular for mechanotyping and redefining diseases by their mechanistic causes rather than symptoms. Here, we emerge novel ways for drug repurposing and synergistic pharmacology. + +We also develop privacy-preserving artificial intelligence tools to unleash the power of big data in precision medicine, where sensitive data may not be shared cross-institutionally for prediction model learning. We thus develop privacy-by-design methods, largely based on federated artificial intelligence, that respect individual privacy while still allowing for big data analytics.",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66fa121bae5fb10001298248/picture,"","","","","","","","","" +Center for Advanced Internet Studies (CAIS) gGmbH,Center for Advanced Internet Studies gGmbH,Cold,"",57,research,jan@pandaloop.de,http://www.cais-research.de,http://www.linkedin.com/company/center-for-advanced-internet-studies,https://www.facebook.com/CenterforAdvancedInternetStudies,"","",Bochum,North Rhine-Westphalia,Germany,"","Bochum, North Rhine-Westphalia, Germany","digitalisierungsforschung, research services, third-party funded projects, research and development in the social sciences and humanities, science communication, digital media society, society, platform governance, technology, education, interdisciplinary, digital innovation, digital society research, ai in education, interdisciplinary research, social media moderation, publications, digital ethics, research programs, digitalization, trustworthy ai, societal impacts, public participation in digital society, ai policy gaps, research and development, research institute, digital democracy, research departments, research data, digital media influence, research incubator, fellowships, public policy, digital transformation, artificial intelligence, research & development, information technology & services","","Outlook, Bootstrap Framework, WordPress.org, Nginx, Vimeo, Cedexis Radar, Adobe Media Optimizer, Mobile Friendly","","","","","","",69c27f6052a1d30001e97d89,8732,54172,"The Center for Advanced Internet Studies (CAIS) gGmbH is a non-profit research institute located in Bochum, Germany. Established in 2017 and evolving into a full institute in 2021, CAIS focuses on interdisciplinary research related to the social impacts of digital transformation. It aims to develop evidence-based solutions for a human-centered digital society and serves as a hub for international researchers and experts from various fields. + +CAIS conducts five-year interdisciplinary research programs addressing different aspects of digital transformation, such as educational technologies and artificial intelligence. The institute also offers funding opportunities for innovative projects, including fellowships, working groups, and events. Additionally, CAIS supports PhD students through workshops and conferences, fostering collaboration among researchers, practitioners, and civil society. The team consists of experienced and early-career researchers from diverse disciplines, working together in an open and collaborative environment.",2015,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e5e131d16aa70001cb0ee6/picture,"","","","","","","","","" +Vision Lasertechnik GmbH,Vision Lasertechnik,Cold,"",20,mechanical or industrial engineering,jan@pandaloop.de,http://www.vision-lasertechnik.de,http://www.linkedin.com/company/vision-lasertechnik-gmbh,https://facebook.com/VisionLaser,"",27 Luegensteinweg,Barsinghausen,Lower Saxony,Germany,30890,"27 Luegensteinweg, Barsinghausen, Lower Saxony, Germany, 30890","sonderanlagenbau, medizinlaser, maschinenbau, lasertechnik, medical devices, laser system connectivity, laser efficiency, laser system quality control, laser technology, laser innovation, laser engineering, laser automation systems, laser precision, laser system data analysis, laser for medical applications, laser control software, laser marking, laser equipment, industry 4.0, laser industry, laser for industrial manufacturing, manufacturing, made in germany, automation, laser production, laser system integration, laser solutions, laser system automation in industry 4.0, laser systems, laser system remote control, laser system monitoring, medical equipment and supplies, commercial and service industry machinery manufacturing, laser for photovoltaics, research and development, laser system upgrades, laser microstructuring, industrial automation, laser manufacturing, laser research, laser automation, b2b, laser system customization, laser development, research and industry, laser system automation, laser system maintenance, laser microprocessing, laser automation integration, services, laser system networking, smart factory, laser welding, healthcare, industry, research, laser, industry_4.0, mechanical or industrial engineering, hospital & health care, commercial & service industry machinery manufacturing, research & development, health care, health, wellness & fitness",'+49 5108 64460,"Outlook, Bootstrap Framework, Hubspot","","","","","","",69c27f6052a1d30001e97d8b,3556,33331,Lasertechnik und Anlagenbau,1984,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6713b34d21ffa30001335cd3/picture,"","","","","","","","","" +Inventor AI,Inventor AI,Cold,"",11,medical devices,jan@pandaloop.de,http://www.inventorai.de,http://www.linkedin.com/company/inventor-ai,"","",24 Pettenkoferstrasse,Munich,Bavaria,Germany,80336,"24 Pettenkoferstrasse, Munich, Bavaria, Germany, 80336","clinical expertise, userdriven product development, hospital construction planning, disruptive innovation, rd, innovation management, market analysis, medical technology, project management office, quality management, technology management, 3d printing, intellectual property consulting for medical technology, medical devices, augmented reality, medical simulation, medical equipment manufacturing, data quality management, ai-driven medical technology, clinical partner network, ai validation studies, regulatory compliance, medical device development, consulting, ai-based post-market surveillance, data annotation standards, ai cro services, ai validation, clinical data framework contracts, clinical data access, annotation guidelines, ai cro, regulatory approval support, ai clinical data annotation, medical ai validation platform, ai regulatory framework, clinical performance testing, regulatory data services, ai in clinical workflows, b2b, medical ai consulting, clinical training data, regulatory compliance in healthcare, ai medical device approval, research and development in the physical, engineering, and life sciences, medical ai validation, ai medical devices, validation studies, clinical data integration, gold-standard data annotation, healthcare technology, clinical use case analysis, data annotation, healthcare, clinical real-world data, clinical workflow analysis, ai-driven medical device development, clinical data centers, ai clinical use case optimization, medical ai innovation platform, post-market surveillance, ai in healthcare, services, clinical use case testing, clinical raw data access, hospital & health care, information technology & services, health care, health, wellness & fitness",'+49 89 12503074,"Gmail, Google Apps, Amazon AWS, Vimeo, Mobile Friendly","","","","","","",69c27f6052a1d30001e97d8d,3829,54171,"Inventor AI is a collaboration between M3i GmbH (Munich) and INVENTOR Medical GmbH (Heidelberg), bringing together expertise in medical technology and artificial intelligence (AI). + +The partnership focuses on addressing the challenges involved in developing and obtaining regulatory approval for AI-driven medical devices. Through services such as Medical AI Consulting, access to Clinical Real-World Data, Gold-Standard Data Annotations, and Validation Studies, Inventor AI supports more streamlined innovation cycles, cost efficiency, and faster time-to-market for medical device development. + +As a specialized Contract Research Organization (CRO) with a focus on AI, Inventor AI - The AI CRO offers an agile and efficient approach, tailored to the unique requirements of Medical AI products. The aim is to support clients in meeting regulatory and clinical standards through practical and targeted solutions.",2016,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68444b2a69892700012e7329/picture,"","","","","","","","","" +Simreka,Simreka,Cold,"",48,information technology & services,jan@pandaloop.de,http://www.simreka.com,http://www.linkedin.com/company/simreka1,"",https://twitter.com/simreka,15a Speditionstrasse,Duesseldorf,North Rhine-Westphalia,Germany,40221,"15a Speditionstrasse, Duesseldorf, North Rhine-Westphalia, Germany, 40221","ai, material informatics, simulation software, chemical engineering, new material discovery, chem informatics, ml, process engineering, software development, big data, data security, ai-driven product design, proprietary datasets, ai copilot, domain-specific data, materials, ai for high-performance plastics, reverse simulation, predictive analytics, data intelligence, chemicals, time-to-market acceleration, process optimization, virtual experimentation, chemical formulation software, regulatory screening, generative ai, ai for coatings, forward simulation, consumer goods, automotive, electronics, ai r&d platform, product lifecycle analysis, ai for automotive plastics, eco-friendly ingredients, research and development in the physical, engineering, and life sciences, materials innovation, manufacturing, b2b, ai for polymers, cloud deployment, large language model, cost reduction, formulation generation, ai for circular design, on-premise deployment, ai-powered simulation, ai for eco-friendly materials, ai for personal care formulations, sustainable product development, digital twin, sustainability scoring, services, circular economy, ai for food contact materials, materials and manufacturing, aerospace, ai for textile waste, regulatory compliance, ai-driven supply chain, supply chain optimization, ai for batteries, machine learning, consumer products & retail, information technology & services, enterprise software, enterprises, computer software, computer & network security, consumers, computer hardware, hardware, mechanical or industrial engineering, artificial intelligence",'+31 30 808 0139,"Cloudflare DNS, Amazon SES, Microsoft Office 365, Atlassian Cloud, Slack, Woo Commerce, YouTube, Google Font API, Google Tag Manager, Mobile Friendly, WordPress.org, AI",20500000,Seed,20500000,2019-06-01,5000000,"",69c27f5a6ce8cd0001ae2402,3825,54171,"Simreka is a deep-tech company based in Düsseldorf, Germany, founded in 2015. It specializes in AI-powered virtual experiment software designed to enhance research and development in the chemicals, materials, and manufacturing sectors. By utilizing AI, machine learning, and a comprehensive material informatics databank, Simreka enables rapid and sustainable product innovation through data-driven virtual experiments. + +The company's core offering is a virtual experiment platform that significantly accelerates R&D processes. It allows for the prediction of reaction pathways and optimization of material formulations, achieving experiments that are 10 to 100 times faster than traditional methods. Simreka's platform supports various industries, including consumer products, chemical manufacturing, and alternative energy, helping teams develop innovative and eco-friendly products efficiently. With a focus on sustainability, Simreka aims to facilitate the global transition to responsible innovation.",2015,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e40a50b3c9640001e59ed9/picture,"","","","","","","","","" +The Digital Workforce Group AG,The Digital Workforce Group AG,Cold,"",13,information technology & services,jan@pandaloop.de,http://www.dwg.io,http://www.linkedin.com/company/the-digital-workforce-group-ag,"",https://twitter.com/workforce2018,4 Weserstrasse,Frankfurt,Hesse,Germany,60329,"4 Weserstrasse, Frankfurt, Hesse, Germany, 60329","it beratung, young professionals, aiops, digital technology projects, kuenstliche intelligenz, robotic process automation, digital workforce management, it governance, talent acquisition, devops, talent strategy, artificial intelligence, big data, cloud platforms, talent relationship management, young experts, young specialists, it security, absolventen, data cleansing, candidate experience, ai-based recruiting, b2b, ai case studies, data security, cloud computing, digital transformation, digital innovation, ai in candidate journey, enterprise software, ai in sap, it services, services, computer systems design and related services, ai development, ai for business processes, ai and machine learning, ai quick cases, data analysis, ai consulting, ai frameworks, it consulting, customer experience, platform development, customer & candidate experience, ai solutions, ai security, software development, information technology and services, process automation, ai use cases, sap optimization, ai in customer journey, ai in gdpr compliance, talent management, data classification, consulting, sap performance management, legal, information technology & services, enterprises, computer software, computer & network security, data analytics, management consulting",'+49 69 97097958,"Cloudflare DNS, Outlook, Amazon AWS, Pipedrive, Typeform, Webflow, Active Campaign, Mobile Friendly, Vimeo, Deel","","","","","","",69c27f5a6ce8cd0001ae2407,7375,54151,"The Digital Workforce Group ist die Holding für alle Leistungsangebote rund um Absolventen, Young Professionals und Young Experts in der Banking-, Insurance-, Finance- und IT-Branche. Unsere Leistungsangebote umfassen das Talent Relationship Management, das Digital Workforce Management und Digital Technologies Projects (KI, RPA, AIOps, DevOps, Cloud Platforms, Big Data, IT Security & Governance). + +Unsere Tochterunternehmen sind die spezialisierten und miteinander vernetzten Delivery Units für unsere Services: + +Talentrecruiters ist als branchenübergreifende IT-Personalberatung auf das Recruiting von Absolventen, Young Professionals und Young Experts spezialisiert. Wir unterstützen unsere Kunden bei der Entwicklung und dem Einsatz von Führungs-, Incentivierungs- und Ausbildungskonzepten für die effiziente und effektive Ausbildung und Führung von IT-Nachwuchs. + +Karriererakete bietet Absolventen und Juniors mittels Arbeitnehmerüberlassung den Einstieg in die spannende Welt der IT-Services. Unsere Mitarbeiter erhalten effizientes Training und optimale Vorberitung auf Kundeneinsätze in der IT-Produktion und dem IT-Applicationsupport unserer Kunden mit der Möglichkeit auf Festeinstellung. + +Talentschmiede fördert als branchenübergreifende IT-Unternehmensberatung den Einsatz von Absolventen und Young Professionals. Wir bieten unseren Kunden Projektteams mit jungen, talentierten und hoch motivierten Mitarbeitern, die wir mittels unseres innovativen Ausbildungs- und Betreuungskonzeptes kontinuierlich fortbilden. + +Meisterwerk ist eine aufstrebende Unternehmensberatung für berufserfahrene Young Consultants & Specialists, die unsere Kunden in IT- und Prozessberatungsprojekten unterstützen. Wir sind auf digitale Technologien, Robotic Process Automation und IT Security & Governance spezialisiert und unsere Young Experts sind methodisch sowie fachlich sehr versiert.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e7a5acab4fb30001958f23/picture,"","","","","","","","","" +Collaborative Research Center 1597 Small Data,Collaborative Research Center 1597 Small Data,Cold,"",13,research,jan@pandaloop.de,http://www.smalldata-initiative.de,http://www.linkedin.com/company/collaborative-research-centre-1597-small-data,"","",26 Stefan-Meier-Strasse,Freiburg,Baden-Wuerttemberg,Germany,79104,"26 Stefan-Meier-Strasse, Freiburg, Baden-Wuerttemberg, Germany, 79104","research services, small data symposium, clinical research, small data methods, small data analysis, small data, small data modeling frameworks, data-driven modeling, non-profit, biomedical ai applications, deep learning, healthcare analytics, services, small data frameworks, small data in personalized medicine, small data techniques, ai in healthcare, uncertainty quantification, small data community, small data in healthcare, small data transfer methods, neural networks, synthetic benchmarks, meta-learning, education, biomedical ai, small data in epidemiology, small data in clinical trials, knowledge transfer, small data in clinical studies, biomedical data, research collaboration, small data solutions, medical informatics, small data in translational research, small data challenges, small sample analysis, small data in patient monitoring, biomedical modeling, knowledge fusion, small data modeling, interdisciplinary approach, small data interdisciplinary research, knowledge-driven modeling, small data applications, small data in diagnostics, small data symposium 2024, synthetic data, small data projects, differential equations, data fusion, small data inference, small data in genetics, small data in medical imaging, small data in systems biology, data science, healthcare, small data in drug discovery, small data in public health, clinical data analysis, machine learning, ai in medicine, interdisciplinary research, clinical data, small data research projects, small data uncertainty methods, doctoral program smart, small data in health informatics, research and development in the physical, engineering, and life sciences, small data research, small data prediction, small data innovation, small data in genomics, biostatistics, small data in biomedicine, transfer learning, small data in rare diseases, nonprofit organization management, artificial intelligence, information technology & services, health care, health, wellness & fitness, hospital & health care",'+49 761 27083802,"Mobile Friendly, WordPress.org, Apache, Nginx","","","","","","",69c27f5a6ce8cd0001ae2409,8731,54171,"We are a Collaborative Research Center (Sonderforschungsbereich) funded by the DFG. In SmallData, we address data analysis and modeling in small data settings, i.e., when there is only little information in a dataset at hand, due to a small number of observations that carry relevant information, relative to the complexity of novel patterns to be uncovered or the level of heterogeneity across observations. + +We focus on: + +1) Similarity for pulling in additional data of the same type (Project Area A), + +2) Transfer for transferring additional information to the dataset at hand, such as from data of different type (Project Area B), + +3) Uncertainty for quantifying and reducing uncertainty in particular in similarity and transfer (Project Area C). + +This is enabled by a joint methods framework, with a focus on combining knowledge-driven and data-driven modeling. More information can be found on our website, and our research projects with GitHub repositories are collected here: https://github.com/CRC-1597-Small-Data + +Subscribe to our event mailing list by following the instructions listed here: https://www.smalldata-initiative.de/2024/04/subscribe-to-our-mailing-list/","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670cfa7821cbac00018b6439/picture,"","","","","","","","","" +PICKPLACE,PICKPLACE,Cold,"",14,information technology & services,jan@pandaloop.de,http://www.pickplace.de,http://www.linkedin.com/company/pickplace1337,"","",24 Brandstuecken,Hamburg,Hamburg,Germany,22549,"24 Brandstuecken, Hamburg, Hamburg, Germany, 22549","robotik, hmi, leistungselektronik, stm32, mikroprozessor, hardware, yocto, mikrocontroller, microcontroller, internet of things, steuergeraete, ecu, kamerasysteme, displays, dsp, elektromobilitaet, embedded systems, linux, automotive, embedded software products, sensor fusion algorithmen, obsoleszenz-management in sicherheitskritischer elektronik, systemintegration, ce- und emv-konformität, ki auf mikrocontrollern, sicherheitszertifizierung, transportation & logistics, automotive elektronik, hardware fault tolerance, bahnindustrie, prototyping, echtzeitkritische systeme, distribution, funktionale sicherheit, risikomanagement, manufacturing, b2b, hardware-entwicklung, consumer goods & retail, serienreife hardware, sensorik, government, hardware-design-tools, mil-standard elektronik, sicherheitskritische anwendungen, industrieautomation, militärische elektronik, sicherheitsstandards, sicherheitsarchitektur, sicherheitskritische steuerungen, obsoleszenzmanagement, cyber resilience in embedded systems, consulting, navigational, measuring, electromedical, and control instruments manufacturing, kleinserienfertigung, industrial automation, industrie 4.0, edge und sensor fusion, ki-integration in mikrocontroller, sicherheitsarchitektur in embedded systems, sicherheitszertifizierung nach iec 61508 und iso 26262, edge computing in sicherheitsrelevanten anwendungen, cyber security, engineered products, software-entwicklung, normkonforme entwicklung, hardware-design, embedded software, services, consumer_products_retail, transportation_logistics, embedded hardware & software, information technology & services, mechanical or industrial engineering, computer & network security","","Outlook, Microsoft Office 365, CloudFlare Hosting, Hubspot, Linkedin Widget, Facebook Widget, Google Maps, Google Maps (Non Paid Users), Mobile Friendly, Linkedin Marketing Solutions, Google Tag Manager, Apache, Linkedin Login, Facebook Login (Connect), WordPress.org, Circle, Remote, Android, AI, Amazon FreeRTOS, C/C++, IBM Spectrum LSF, Kali Linux","","","","","","",69c27f5a6ce8cd0001ae2413,3671,33451,"Wir entwickeln sichere Elektroniksysteme für Unternehmen, die Verantwortung ernst nehmen. +Als Engineering-Partner für Embedded Systems begleiten wir unsere Kunden von der Idee bis zur +Serienreife und stellen sicher, dass Technik nicht nur funktioniert, sondern bleibt. 🔒 + +Unsere Arbeit beginnt dort, wo Präzision, Qualität und Vertrauen entscheidend sind: +in sicherheitskritischen Anwendungen der Industrie, Mobilität und Energieversorgung. + +Ob Softwarearchitektur, Hardwaredesign oder funktionale Sicherheit – bei uns steht Stabilität vor +Geschwindigkeit und Verantwortung vor Schlagworten. 🧠 + +Was uns antreibt, ist mehr als Technologie: Es ist der Anspruch, sichere Systeme zu schaffen, auf die sich +Menschen, Unternehmen und Gesellschaften verlassen können. + +🇩🇪 Made in Hamburg. 💡 Gedacht für die Zukunft.",2015,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/675defb56311090001dbfef6/picture,"","","","","","","","","" +Retail AI GmbH,Retail AI,Cold,"",17,information technology & services,jan@pandaloop.de,http://www.retailai.io,http://www.linkedin.com/company/retailai-io,"","","",Frankfurt,Hesse,Germany,"","Frankfurt, Hesse, Germany","gen ai products services, gen ai academy, gen ai alliance, gen ai research, software development, ai for competitive analysis, ki-transformation, e-learning, ai application development, ai saas, consulting, ai-driven market insights, ai in logistics, retail ai, services, software publishing, ai in marketing, ai in product management, ai prototyping, ai innovation, computer systems design and related services, ai for inventory optimization, ai for commerce, generative ki, fmcg, ai platform, ki-tools, operational efficiency, education, ai in supply chain, data analytics, ki-implementierung, generative ai for marketing campaigns, information technology, ai for trend analysis, ki-schulungen, ai for sales automation, b2b, ai in customer service, ki-forschung, ai research collaborations, ai for fmcg, ai in inventory management, e-commerce, fmcg ai solutions, ki-apps, custom software, ai in data analytics, ai for customer engagement, ai for retail strategy, ki-lösungen, information technology and services, d2c, digital transformation, ai training, ai for product descriptions, ki-partnernetzwerk, ai in retail, ai for personalized marketing, ai in sales, market research, customer engagement, ai in industry, retail, distribution, information technology & services, internet, computer software, education management, consumer internet, consumers","","Amazon SES, Outlook, Microsoft Office 365, Hubspot, WordPress.org, Shutterstock, Nginx, Google Tag Manager, Ubuntu, Mobile Friendly, Varnish, Woo Commerce","","","","","","",69c27f5a6ce8cd0001ae240c,7375,54151,"Retail AI GmbH is a German company founded on March 22, 2024, by Markant in collaboration with experts Prof. Dr. Christian Au and Prof. Dr. Peter Gentsch. Based in Offenburg, the company specializes in customized generative AI solutions for the retail and fast-moving consumer goods (FMCG) sectors. It focuses on collaborative development and ethical AI use, emphasizing employee training and sensitivity programs. + +The company offers four core business modules: the Product Factory, which develops generative AI applications like the Product Wizard for creating tailored product descriptions; the Academy, which provides workshops on generative AI basics and ethics; and the Lab, which conducts research on generative AI and large language models in partnership with academic institutions and startups. Retail AI GmbH works closely with its network of trading companies and industrial partners to deliver expert advice and custom solutions for effective AI integration in industry processes.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68c26df6ff7c1c00011e6f9a/picture,"","","","","","","","","" +DeepMask,DeepMask,Cold,"",13,information technology & services,jan@pandaloop.de,http://www.deepmask.io,http://www.linkedin.com/company/deepmask,"","",9 Sonnenstrasse,Munich,Bavaria,Germany,80331,"9 Sonnenstrasse, Munich, Bavaria, Germany, 80331","software development, workflow automation, custom ai models, hr and labor law chatbot, llms and fine-tuning, secure ai infrastructure, secure integrations, secure enterprise ai infrastructure, consulting, services, ai model fine-tuning, llm, gdpr iso bsi compliance, private data training, secure ai for manufacturing, artificial intelligence, data protection, secure cloud alternatives, compliance, on-premise ai solutions, legal, ai platform, enterprise ai scaling, legal document ai, ai automation workflows, enterprise software, rag pipelines, b2b, ip and data privacy enforcement, domain-trained chatbots, deep learning, knowledge base rag pipelines, enterprise security, open-source llm fine-tuning, computer systems design and related services, machine learning, data sovereignty, open mcp standard, ai agents, manufacturing, fine-tuning, ai model customization, gdpr compliance, data privacy and sovereignty, security, enterprise ai platform, distributed knowledge unification, customizable gpt assistants, internal knowledge management, natural language processing, m&a document analysis, data science, llms, secure ai deployment, data security, enterprise ai in germany and eu, industry-specific llms, ai automation, ai, information technology & services, enterprises, computer software, mechanical or industrial engineering, computer & network security",'+49 173 7145653,"Gmail, Google Apps, Amazon AWS, Varnish, Wix, Mobile Friendly","","","","","","",69c27f5a6ce8cd0001ae240d,7375,54151,"DeepMask provides a full-stack platform to build, deploy and run LLMs, internal knowledgebase RAG pipelines and fine-tuning of LLMs with full sovereignty and security. We empower enterprises of all sizes to implement Al with GDPR, ISO and BSI-compliant infrastructure. We are the secure alternative to foreign AI cloud hyperscalers in Germany and EU.",2024,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69a3ba619f7aac0001959cee/picture,"","","","","","","","","" +Wandelbots,Wandelbots,Cold,"",140,information technology & services,jan@pandaloop.de,http://www.wandelbots.com,http://www.linkedin.com/company/wandelbots,https://facebook.com/wandelbots/,https://twitter.com/wandelbots,38 Tiergartenstrasse,Dresden,Saxony,Germany,01219,"38 Tiergartenstrasse, Dresden, Saxony, Germany, 01219","automation, interaction, digital manufacturing, wearables, robotics, programming, software, artificial intelligence, robot automation platform, connecting it & ot, machine learning, software development, robotic system performance analytics, robotic path optimization, automation scalability, robotic software platform, cloud-based robotics control, robotic system customization, ai and machine learning, robotic system security and compliance, robotic software sdks, robotic workflow optimization, services, robot simulation tools, cycle time optimization, vendor-agnostic control, virtual prototyping for industrial robots, cloud-native infrastructure, custom application development, ai-driven robot path planning, robotic system simulation nvidia omniverse, seamless hardware integration, industry 4.0 readiness, digital factory twin, digital twin technology, robotic process optimization, robotic system orchestration, real-time performance monitoring, cloud robotics platform, human-robot interaction, human-robot collaboration, cloud connectivity for robots, robotic automation software, cloud-native architecture, robotic system interoperability, ai-powered optimization, robotic system deployment, digital twin, robot monitoring and diagnostics, simulation and virtual commissioning, consulting, ai-assisted robot teaching, scalable automation solutions, robot control api integration, vendor-neutral control, robotic system integration platform, transportation & logistics, industrial robot platform, simulation tools, digital twin for manufacturing, virtual prototyping for robots, b2b, software engineering, legacy system retrofit, robot programming interface, robotic process automation, software-defined automation, path planning, digital twin validation, ai-driven predictive maintenance, robotic workflow orchestration, ai-driven robotics, interoperable robot control software, cloud-based robot fleet management, robot control interfaces, robotic system apis, robotic system management, robot programming software, robot operating system, flexible manufacturing automation, it and ot integration, human-robot interaction interface, robotic system integration, industrial robotics platform, open ecosystem for automation, real-time data analytics, industrial machinery manufacturing, ai and machine learning integration, multi-vendor robot control, robotic process improvement, no-code robot programming, automation cost reduction, robotic workflow management, robot control software, multi-vendor robotic control system, collaborative robotics, virtual commissioning tools, robotic system security, robotic process automation in manufacturing, robot path planning, robotic system validation, software ecosystem for robotics, robot fleet scalability, robotic hardware compatibility, robot fleet management, robot simulation environment, digital factory solutions, cycle time reduction, ai-powered predictive analytics, robotic path optimization ai, ai-based cycle time optimization, manufacturing, custom ui development, robot programming, industrial robotics, ai-driven automation, robot application, no-code programming, robot integration, scalable automation, user-friendly interface, real-time monitoring, collision-free paths, palletizing solutions, intuitive applications, python programming, javascript support, integrated development environments, process automation, robotics as a service, web-based applications, custom robotic applications, wandelscript, robot compatibility, automation lifecycle, streamlined development, flexible automation, robot performance optimization, task automation, user-centric design, cloud-based solutions, robotic cell configuration, software development tools, modern ides, robot programming languages, intelligent path creation, automated surface treatment, easy app creation, robot tracking, robotic workflow, tailored automation, open platform, developer community, industrial applications, time-to-market reduction, user empowerment, distribution, consumer goods, consumers, mechanical or industrial engineering, information technology & services",'+49 35 186264000,"Route 53, MailJet, Outlook, Pardot, MailChimp SPF, Google Cloud Hosting, Atlassian Cloud, Hubspot, Slack, DoubleClick Conversion, Wix, Linkedin Marketing Solutions, DoubleClick, Mobile Friendly, Google Dynamic Remarketing, Google Tag Manager, Varnish, Remote, Jira, Python, Vscode, OpenAPI, React, TypeScript, Playwright, Kubernetes",122120000,Series C,84000000,2022-01-01,1000000,"",69c27f5a6ce8cd0001ae2412,3581,33324,"Wandelbots is a robotics software company based in Dresden, Germany, founded in 2017. The company focuses on making industrial robotics more accessible through intuitive, no-code programming tools. These tools allow non-experts to teach and control robots by demonstrating tasks, which simplifies the automation process. + +Wandelbots has developed a unified, vendor-agnostic software platform that supports robot programming, planning, simulation, deployment, and optimization across various robot brands. Its flagship product, Wandelbots NOVA, offers hardware-agnostic control, AI-driven path planning, and powerful simulation capabilities. Other notable offerings include the TracePen, a handheld device for high-precision motion tracking, and SmartJacket, a wearable tool for live human motion tracking. The company serves a range of clients, including multinationals like BMW and Infineon, and supports applications in manufacturing and supply chain automation.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/686de3570a230e0001630a32/picture,"","","","","","","","","" +Sqilline Health,Sqilline Health,Cold,"",41,research,jan@pandaloop.de,http://www.sqilline.com,http://www.linkedin.com/company/sqilline-health,"","",2 Am Zirkus,Berlin,Berlin,Germany,10117,"2 Am Zirkus, Berlin, Berlin, Germany, 10117","mobile app development, scientific publications, biotechnology company, sap implementation, clinical trials, danny platform, oncology, big data, ai technology, augmented reality, parmaceutical industry, clinical research, cancer research, genai, danny datastruct, healthcare, analytics, predictuon, mobile device management, realworld data analytics, biotechnology research, ai model validation, clinical data management, real-world data processing, medical data insights, health outcomes prediction, health data compliance, natural language processing (nlp), clinical trial optimization, ai-powered medical imaging analysis, medical data analytics, medical data analysis tools, data extraction, medical data harmonization, hospital data analytics, health data management, data security protocols, health data security, ai in healthcare, real-world evidence for hta, gdpr compliance, healthcare data infrastructure, data structuring, medical research, government, ai-powered healthcare, healthcare data analytics, ai in clinical research, consulting, data processing, data security, data governance, healthcare data platform, electronic health records (ehr), data-driven healthcare, clinical trial patient matching, oncology data analysis, healthcare data management, rare diseases research, pharmaceuticals, real-world evidence (rwe), clinical data visualization, machine learning algorithms, rare disease data analysis, big data healthcare, research and development in the physical, engineering, and life sciences, health data integration, data normalization, health data privacy, healthcare it integration, b2b, medical research support, predictive analytics, health data automation, nlp algorithms, ai in cardiology research, healthcare ai platform, health data visualization, data harmonization, health data quality control, predictive modeling in healthcare, healthcare data security, nlp for medical reports, healthtech, cloud data solutions, data analytics platforms, patient cohort identification, data privacy, automated data structuring for healthcare, data structuring for medical publications, services, data enrichment, on-premises deployment, real-world data (rwd), ai for oncology, clinical research solutions, data reporting, data storage, clinical decision support, machine learning, medical data integration, clinical data analysis, data visualization, medical data processing, healthcare analytics, medical data enrichment, health data insights, health data reports, machine learning (ml), data quality control, saas, insights, real-world data, ai, ml, nlp, data analytics, decision support, rare diseases, hospital data, patient cohort, healthcare software, gdpr, on-premises, cloud, software development, information technology & services, health care, health, wellness & fitness, hospital & health care, enterprise software, enterprises, computer software, computer & network security, medical, artificial intelligence, natural language processing",'+49 359 884163831,"Gmail, Google Apps, Salesforce, WordPress.org, Apache, Gravity Forms, Google Tag Manager, Mobile Friendly, Google Font API, Domo, Sisense, Remote, KNIME, AI, AWS SDK for JavaScript, Spring Boot, Hibernate, SQL, SAP HANA","","","","","","",69c27f5a6ce8cd0001ae23fb,8731,54171,"Sqilline Health is a software and technology company based in Sofia, Bulgaria, specializing in Big Data analytics, AI, and machine learning for oncology and healthcare applications. The company focuses on real-world data to enhance cancer treatment, support clinical trials, and promote value-based healthcare. With additional offices in cities like Boston, Madrid, and Bucharest, Sqilline Health positions itself as a global player in healthcare data technology. + +The company's core offering is the Danny Platform, an analytics tool that evaluates drug effectiveness using real-world evidence and structures multilingual clinical data, particularly from oncology electronic health records. This platform generates research-ready datasets for clinical trials and decision support, while also enhancing early diagnosis of rare diseases through AI-driven insights. Sqilline Health collaborates with over 63 hospitals and registries across Central and Eastern Europe, serving oncologists, physicians, and researchers in the healthcare and pharmaceutical sectors.",2009,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68bc6754814da7000151c045/picture,"","","","","","","","","" +human Magazin,human Magazin,Cold,"",12,media production,jan@pandaloop.de,http://www.human-magazin.de,http://www.linkedin.com/company/humanmagazin,"","",13 Westermuehlstrasse,Munich,Bavaria,Germany,80469,"13 Westermuehlstrasse, Munich, Bavaria, Germany, 80469","technology, community, consulting, media, magazine, artificial intelligence, events, corporate publishing, ethics, transformation, keynotes, human-centered, media platform, education technology, technology assessment, media analysis, human focus, ai regulation, community building, ai and democracy, ai and gender equality, future trends, ai challenges, society and culture, ai in crisis management, public engagement, dialogue, decision-makers, information technology and services, ai opportunities, ai in policymaking, ai and moral dilemmas, societal impact, b2b, public dialogue, ai and societal values, ai in medicine, leadership development, knowledge transfer, ai and social justice, ai and cultural change, media and publishing, culture, expertise, ai and public trust, ai in geopolitics, public discourse, ethics in ai, digital innovation, societal resilience, ai and human rights, future of ai, healthcare, digital transformation, digital society, innovation, ai in education, philosophy of ai, future, services, ai ethics, ai and environmental sustainability, media for decision-makers, ai and community empowerment, web search portals, libraries, archives, and other information services, ai and innovation hubs, ai policy, medicine, white paper, ai responsibility, society, knowledge, ai transparency, medical ai, ai, publishing, education, communities, information technology & services, e-learning, internet, computer software, education management, health care, health, wellness & fitness, hospital & health care","","WordPress.org, Mobile Friendly, reCAPTCHA, Apache","","","","","","",69c27f5a6ce8cd0001ae2400,8732,519,"human Magazin is a prominent German print and digital magazine that explores artificial intelligence (AI) and its societal implications. It targets strategic decision-makers, business leaders, and scientists, aiming to inspire a human-centered approach to the future of AI. Published by human philosophy works GmbH in Munich, the magazine is recognized for its journalistic excellence and features contributions from leading experts in various fields. + +The magazine offers bilingual print editions, whitepapers, and digital content that delve into topics such as trust, transformation, and the intersection of AI with societal issues. Its editorial team, led by Dr. Rebekka Reinhard and Thomas Vašek, emphasizes high-quality journalism and engaging visuals. The slogan ""Rethink Intelligence. Reclaim humanity"" reflects its mission to foster dialogue and provide diverse perspectives on innovation and human values in the age of AI.",2023,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68314bd67ab55e0001c92ed2/picture,"","","","","","","","","" +Marple,Marple,Cold,"",16,information technology & services,jan@pandaloop.de,http://www.marple.info,http://www.linkedin.com/company/marple,"","",6 Am Branderhof,Bergisch Gladbach,North Rhine-Westphalia,Germany,51429,"6 Am Branderhof, Bergisch Gladbach, North Rhine-Westphalia, Germany, 51429","software development, research and development in the physical, engineering, and life sciences, mobility, mobility planning data, satellite imagery analysis, mobility solutions, earth observation for climate, agricultural remote sensing, government, healthcare analytics, award-winning solutions, climate monitoring, agricultural management, b2b, remote sensing for agriculture, artificial intelligence, ai, ground-breaking insights, computer vision, earth data analytics, ai-driven earth data, space technology, ai in earth observation, environmental monitoring, climate, big data, remote sensing, services, digital transformation, climate solutions, agriculture, satellite data analysis, remote sensing solutions, ai-driven insights, sustainability solutions, environmental services, climate monitoring tools, aerospace and defense, information technology and services, agriculture technology, earth observation, education, non-profit, transportation & logistics, information technology & services, enterprise software, enterprises, computer software, renewables & environment, nonprofit organization management","","Apache, Google Font API, Mobile Friendly, Typekit, WordPress.org",30000,Other,30000,2021-12-01,"","",69c27f5a6ce8cd0001ae2408,3812,54171,"We use AI to provide better access to knowledge, education and health.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/671402946032b90001393f1d/picture,"","","","","","","","","" +OptWare GmbH,OptWare,Cold,"",48,information technology & services,jan@pandaloop.de,http://www.optware.de,http://www.linkedin.com/company/optware-gmbh,https://facebook.com/pages/OptWare-GmbH/157393794317864,https://twitter.com/optware,20 Pruefeninger Strasse,Regensburg,Bavaria,Germany,93049,"20 Pruefeninger Strasse, Regensburg, Bavaria, Germany, 93049","datamining, simulation, optimierte werks und linienbelegungsplanung, steuerung variantenreicher fertigung, sequenzierung, optimierung, modellierung, prognosemodelle, software development, project management, decision support, ai integration, predictive analytics, scalable platform, quantum computing, consulting, mathematical modeling, hybrid quantum-classical algorithms, data management, data-driven solutions, computer systems design and related services, cloud computing, b2b, data science, machine learning, manufacturing, qaoa, adaptive process optimization, real-time analytics, industrial automation, production planning, automation, distribution, operations optimization, optimization algorithms, process optimization, cloud solutions, quantum annealing, quantum readiness, operational efficiency, services, supply chain optimization, information technology & services, productivity, enterprise software, enterprises, computer software, artificial intelligence, mechanical or industrial engineering",'+49 941 85099600,"SendInBlue, Outlook, Microsoft Office 365, Etracker, Mobile Friendly, WordPress.org, Gravity Forms, Apache, reCAPTCHA, Node.js, Angular, Java EE, Python, Figma","","","","","","",69c27f5a6ce8cd0001ae240a,3571,54151,"OptWare GmbH is a German software system house and consulting firm founded in 1999. The company specializes in mathematical optimization, analytics, and planning software aimed at enhancing production, logistics, and operational efficiency. With headquarters in Regensburg and additional offices in Munich and Sibiu, Romania, OptWare employs around 69-75 staff members and has over 25 years of experience in delivering high-performance optimization solutions. + +OptWare offers customized solutions across three main areas: mathematical modeling and optimization, planning software and operations, and data intelligence and analytics. Their services include developing algorithms for production scheduling and logistic optimization, designing custom software with defined interfaces, and integrating machine learning and AI for improved decision-making. The company focuses on serving the automotive and pharmaceutical industries, along with sectors like mechanical engineering, finance, and energy, providing tailored solutions to meet diverse operational needs.",1999,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68400ed1d226630001b131b0/picture,"","","","","","","","","" +inpro,inpro,Cold,"",45,information technology & services,jan@pandaloop.de,http://www.inpro.de,http://www.linkedin.com/company/inpro-innovationsgesellschaft-f-r-fortgeschrittene-produktionssysteme-in-der-fahrzeugindustrie-mbh,"","",2 Steinplatz,Berlin,Berlin,Germany,10623,"2 Steinplatz, Berlin, Berlin, Germany, 10623","engineering services, machine learning, smart manufacturing, ki-gestützte wartungsplanung, sustainability, ki-engineering, shopfloor ai, information technology, produktionsplanung, energy efficiency, manufacturing, mlops, ki-chatbots, vernetzte produktion, digitale anlaufkette, qualitätskontrolle, prozessüberwachung, process optimization, ki-blueprints, schnittstellenintegration, ki-gestützte produktion, digital twin, services, iot-plattformen, echtzeitdaten, ki-training, industrial automation, ki-gestützte troubleshooting, industrie 4.0, automatisierung, ki-gestützte qualitätsprüfung, predictive maintenance, simulationsdaten, ki-modelle für produktion, simulationsbasierte optimierung, sicherheitskonzepte, b2b, predictive analytics, maschinelles lernen, prozessoptimierung, datenanalyse, automatisierte workflows, fehlerdiagnose, digitale fabrik, datenvisualisierung, ki-lösungen, consulting, datenmodellierung, synthetische fehlerdaten, ar-gestützte inspektion, produktionsdatenanalyse, computer systems design and related services, asset management, information technology & services, artificial intelligence, environmental services, renewables & environment, mechanical or industrial engineering, enterprise software, enterprises, computer software",'+49 30 399970,"Outlook, Microsoft Office 365, OpenSSL, Apache, YouTube, Shutterstock, WordPress.org, Mobile Friendly","","","","","","",69c27f5a6ce8cd0001ae240e,3571,54151,"inpro is the Digital Industry Innovation Hub based in Berlin, Germany. It is a joint venture between Siemens, Volkswagen, and SABIC, focusing on AI-driven innovations for digital production. The company employs around 167 people and generates approximately $6.5 million in annual revenue. inpro serves as a bridge between corporate partners, scientific collaborators, suppliers, and startups to enhance flexibility, productivity, efficiency, and quality in industrial production. + +The company specializes in contract R&D engineering innovations, utilizing AI, IoT platforms, digital twins, and mobile assistance systems. Their services include tailor-made AI solutions for shopfloor operations, digital twins for optimizing design and manufacturing coordination, and digital transformation across the automotive value chain. inpro also offers free 30-minute consultations to discuss use cases and technology building blocks. Their focus is on providing AI-based tools that improve process efficiency and real-time shopfloor optimization.",1983,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67155e0ecae1260001b827a0/picture,"","","","","","","","","" +Phantasma Labs,Phantasma Labs,Cold,"",13,machinery,jan@pandaloop.de,http://www.phantasma.global,http://www.linkedin.com/company/phantasma-labs-limited,"","",65 Lohmuehlenstrasse,Berlin,Berlin,Germany,12435,"65 Lohmuehlenstrasse, Berlin, Berlin, Germany, 12435","automation machinery manufacturing, predictive analytics, production scheduling automation, roi within 6 months, industrial automation, factory scalability, smart manufacturing tools, production optimization, software development, information technology, services, ai model generalization, operational efficiency, ai reinforcement learning, simulation-based ai, capacity utilization, inventory management, erp and mes integration, manufacturing efficiency, real-time decision-making, ai co-pilot, b2b, ai for complex scenarios, unforeseen scenario handling, dynamic scheduling, manufacturing, low data requirement, reinforcement learning, computer systems design and related services, ai-driven production planning, factory digital maturity, information technology & services, enterprise software, enterprises, computer software, mechanical or industrial engineering",'+49 176 45743949,"Cloudflare DNS, Gmail, Google Apps, Microsoft Office 365, Google Tag Manager, Mobile Friendly, Micro, Circle, AI, Rust, React, TypeScript, Kubernetes",1100000,Seed,1100000,2024-10-01,"","",69c27f5a6ce8cd0001ae23fd,3575,54151,"Phantasma Labs is a Berlin-based AI company focused on making advanced AI accessible to manufacturing enterprises of all sizes. The company specializes in AI-powered production planning and scheduling software that enhances manufacturing efficiency without the need for extensive data. By utilizing Reinforcement Learning and simulations, Phantasma Labs develops solutions that can significantly improve planning performance, generating optimal plans that are up to 30% better and 100 times faster than traditional methods. + +The flagship product integrates seamlessly with existing ERP and MES systems, providing a quick setup and a typical return on investment within six months. It features an AI co-pilot that supports manual, automated, and AI-driven planning, enabling real-time scheduling and adaptability to changing conditions. Phantasma Labs targets small and medium enterprises, mid-caps, and large factories globally, with a strong emphasis on accessibility and efficiency. The company is backed by notable investors and has established partnerships with ERP providers to enhance production planning capabilities.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69a56550b3aeb70001097b68/picture,"","","","","","","","","" +Carl-Zeiss-Stiftung,Carl-Zeiss-Stiftung,Cold,"",25,research,jan@pandaloop.de,http://www.carl-zeiss-stiftung.de,http://www.linkedin.com/company/carl-zeiss-stiftung,"","","",Stuttgart,Baden-Wuerttemberg,Germany,"","Stuttgart, Baden-Wuerttemberg, Germany","forschungsfoerderung, foerderprogramme, foerderstiftung, mint, wissenschaftsfoerderung, beteiligungstraegerstiftung, wissenschaft, stiftung, forschungsfoerderung & beteiligungstraegerstiftung, research services, scientific research, high-risk projects, science and technology funding, science and engineering support, research funding, artificial intelligence, interdisciplinary research, high-risk research support, b2b, colleges, universities, and professional schools, research and development in engineering and physical sciences, data-driven research support, research projects, engineering, industry collaboration, research infrastructure, public-private research partnership, funding programs, university grants, science communication measures, funding for young scientists, services, regional research funding, interdisciplinary teams, research transfer, scientific breakthroughs, funding for new technologies, innovation support, stem support, talent development, support for early-career researchers, science communication, technology transfer, higher education, finance, education, information technology & services, education management, financial services",0049,"Salesforce, Akamai DNS, Outlook, Microsoft Office 365, Microsoft Azure, Hubspot, Apache, Mobile Friendly, TYPO3","","","","","","",69c27f5a6ce8cd0001ae240b,8731,61131,"The Carl-Zeiss-Stiftung, established in 1889 by physicist Ernst Abbe in Jena, Germany, is a private foundation dedicated to promoting science and technology, particularly in optics and glass technology. It serves as the sole shareholder of Carl Zeiss AG and SCHOTT AG, ensuring their long-term economic and scientific future. The foundation is one of Germany's oldest and largest private science-promoting organizations. + +The foundation's mission includes fostering innovation, supporting young talent, and building connections between businesses and universities. It emphasizes ethical governance and the importance of qualified employees. Historically, it has played a significant role in advancing scientific research and securing the future of its affiliated companies. Carl Zeiss AG specializes in optics and precision instruments, while SCHOTT AG focuses on specialty glass, both of which have a rich history of product development dating back to the 19th century.",1889,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66efe472027e3c0001317484/picture,ZEISS Group (zeiss.com),5f7b63d62b9a01008cb32881,"","","","","","","" +AI Grid,AI Grid,Cold,"",20,information technology & services,jan@pandaloop.de,http://www.ai-grid.org,http://www.linkedin.com/company/ai-grid,"","",8 Genthiner Strasse,Berlin,Berlin,Germany,10785,"8 Genthiner Strasse, Berlin, Berlin, Germany, 10785","technology, information & internet, fachlicher austausch in ki, interdisziplinäre ki-forschung, ki-forschung, mentoring in ki, forschungskooperationen, artificial intelligence, ki-startups, data science, nachwuchsförderung, forschungsförderung bundesministerium, bio-inspired learning, multimodal learning, energy-efficient ai, government, künstliche intelligenz, big data, wissenschaftliches netzwerk, human-robot interaction, forschungsförderung, forschungsnetzwerk, wissenschaftliche zusammenarbeit, forschungsförderung deutschland, innovationsnetzwerk, multilingual llms, human-machine teams, wissenschaftliche kooperationen, deep generative models, ki-expertennetzwerk, innovationsförderung, wissenschaftliche events, probabilistic methods in ml, machine learning, forschungskonferenzen, karriereförderung in ki, ki-community deutschland, computer vision, forschungszentren, ki-netzwerk, europäische ki-community, services, bias and fairness in ki, higher education, education, fairness and transparency in ki, technologieentwicklung, forschungsgemeinschaft, micro focus groups, time-series data analysis, societal impact of ai, wissenschaftliche publikationen, non-profit, forschungsprojekte, colleges, universities, and professional schools, forschungscommunity, mentoring-programm, ki-community europa, information technology & services, enterprise software, enterprises, computer software, b2b, education management, nonprofit organization management","","Outlook, Microsoft Office 365, Apache, Mobile Friendly, WordPress.org","","","","","","",69c27f5a6ce8cd0001ae23ff,8731,61131,"AI Grid connects young scientists in AI in an interdisciplinary community, fostering collaboration and driving innovative research. +Master's and PhD students are grouped into specialized micro focus groups to network, share research outcomes, and initiate collaborative projects. +Through a rich program of events, exceptional mentoring, and a tailored matchmaking platform, AI Grid provides an ideal environment for inspiration, scientific exchange, and the development of innovative solutions. + +Join our community and advance your research !","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/686b16e1c6474200015de158/picture,"","","","","","","","","" +YAMAHA ROBOTICS EMEA,YAMAHA ROBOTICS EMEA,Cold,"",20,machinery,jan@pandaloop.de,http://www.yamaha-motor-robotics.de,http://www.linkedin.com/company/yamaha-robotics-emea,"","",12 Hansemannstrasse,Neuss,North Rhine-Westphalia,Germany,41468,"12 Hansemannstrasse, Neuss, North Rhine-Westphalia, Germany, 41468","smt surface mounting technology, inspektion, aoi, printer, mounter, robotics, bestueckungsautomaten, factory automation, automation machinery manufacturing, hybrid bare-die/smd chip placement, industrial ethernet protocols, intelligent factory tools, transportation & logistics, real-time monitoring, modular conveyor systems, food & beverage, distribution, flexible manufacturing systems, electronic assembly, data analytics, high accuracy robotics, aoi systems, production scalability, manufacturing productivity, vision systems, manufacturing equipment, fieldbus protocols, b2b, logistics, manufacturing, customized robotic solutions, flexible automation, automation, automated handling, hybrid chip placers, consumer goods & retail, flip-chip packaging, inspection systems, production line automation, automotive, solder paste printing, robotic handling, component placement, automated pcb inspection, robot programming software, automated material handling, factory automation hardware, linear transfer modules, pcb assembly, automation solutions, machine learning, integrated manufacturing solutions, modular automation, robot controllers, ai-powered inspection, services, industrial robots, robotic assembly, advanced inline automation, conveyor modules, precision robotics, robot vision, data-driven manufacturing, robotic solutions for semiconductor backend, electronic manufacturing equipment, aerospace, custom robotic solutions for electronics, high-speed production, automated inspection, electronics, smart factory software, surface mount technology, ai integration, ai in manufacturing, high-speed inline equipment, industrial machinery manufacturing, mems sensor assembly, high-accuracy hybrid placers, scara robots, precision assembly, data analytics in robotics, consumer products & retail, mechanical or industrial engineering, information technology & services, consumer goods, consumers, artificial intelligence, computer hardware, hardware",'+49 2131 2013520,"Route 53, Amazon AWS, Salesforce, Amazon SES, Outlook, Microsoft Office 365, WordPress.org, reCAPTCHA, Facebook Login (Connect), Vimeo, Nginx, Google Tag Manager, Mobile Friendly, Google Font API, Google Maps, YouTube, Apache, AI","","","","","","",69c27f5a6ce8cd0001ae2401,3599,33324,"Yamaha Robotics EMEA is the division of Yamaha Motor's Robotics Business Unit that serves the Europe, Middle East, and Africa regions. The company specializes in advanced automation solutions for the manufacturing and logistics industries, building on a legacy that began in 1974. Yamaha Robotics operates globally, with a research, development, and production center in Hamamatsu, Japan. + +The company has two main sections: Factory Automation (FA) and Surface-Mount Technology (SMT). The FA Section offers a range of high-speed industrial robots designed for precision assembly, handling, and packaging. The SMT Section provides award-winning equipment for electronic surface-mount manufacturing, including the Z:TA-R YSM40R surface mounter, known for its high production capacity. Yamaha Robotics integrates advanced technologies like artificial intelligence and data analytics into its solutions, focusing on continuous innovation to meet the needs of diverse industrial sectors.",2011,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6881d76494ff1000014241c0/picture,"","","","","","","","","" +IPAI,IPAI,Cold,"",77,information technology & services,jan@pandaloop.de,http://www.ip.ai,http://www.linkedin.com/company/ipaihn,"","",13 Im Zukunftspark,Heilbronn,Baden-Wuerttemberg,Germany,74076,"13 Im Zukunftspark, Heilbronn, Baden-Wuerttemberg, Germany, 74076","kollaboration, kuenstliche intelligenz, matchmaking, community, cokreation, ai research and development, research and development in artificial intelligence, ai research collaboration, ai societal benefit, ai co-creation, ai partnerships, research and development in the physical, engineering, and life sciences, ai in legal, ai responsible use, ai innovation support, public sector and government, digital transformation, european ai platform, ai innovation campus, ai data centers, ai real-world testing, responsible ai, ai application, ai in manufacturing, ai ethics and responsibility, ai collaboration platform, ai research, ai real labs, ai infrastructure, ai data sharing platforms, ai industry collaboration, ai ecosystem development, ai research labs, ai startup ecosystem, ai ecosystem heilbronn, machine learning, logistics, information technology and services, ai technology transfer, ai sustainability initiatives, ai industry network, ai societal impact, human-centered ai, ai community building, manufacturing, ai industry partnerships, legal services, ai startup support, ai community, ai infrastructure services, supply chain, ai training, ai ethics, european ai, artificial intelligence, ai community events, consulting, ai ethics guidelines, ai application support, services, transportation and logistics, startups, energy and utilities, ai ecosystem germany, ai in mobility, ai matchmaking, government, ai in industry, finance and insurance, higher education, b2b, ai member network, ai in society, ai knowledge exchange, ai in hr, ai collaboration, ai infrastructure development, ai startups, ai innovation hub, ai in finance, ai development, european ai sovereignty, ai labs and data centers, ai public sector, ai responsible innovation, ai training programs, ai sustainability, ai co-creation projects, education, ai community network, ai project incubation, ai ecosystem, ai platform, ai solutions, innovation ecosystem, co-creation, collaborative processes, data pooling, public-private partnership, sustainable ai, education programs, research collaborations, business development, ai certification, ethical ai, ai technology, ai applications, ecosystem development, ai impact, entrepreneurship, networking events, innovation park, ai value chain, local economy support, member engagement, knowledge exchange, future technologies, ai projects, funding opportunities, digital responsibility, european sovereignty, ai-driven solutions, startups support, collaboration platform, community building, technology partnerships, ai testing environments, strategic partnerships, innovation labs, ai deployment, public sector engagement, event formats, ai resource sharing, member offerings, ai expert network, international partnerships, community events, finance, legal, transportation & logistics, energy & utilities, communities, information technology & services, mechanical or industrial engineering, education management, financial services",'+49 7132 30793079,"Akamai, Gmail, Outlook, Google Apps, Microsoft Office 365, Hubspot, Mobile Friendly, WordPress.org, Linkedin Marketing Solutions, Google Tag Manager, Vimeo, Google Analytics, AI, Kubernetes, Terraform, Salesforce CRM Analytics, Python","","","","","","",69c27f5a6ce8cd0001ae23fe,8731,54171,"IPAI, or Innovation Park Artificial Intelligence, is Europe's largest ecosystem dedicated to applied artificial intelligence. It serves as an innovation platform that connects companies, startups, research institutions, and AI experts to foster collaboration and advance AI transformation in business and society. Founded to align AI development with regional values, IPAI aims to empower stakeholders to shape the future of AI together. + +The organization offers a range of services and infrastructure to support AI initiatives. IPAI SPACES provide flexible workspaces and event facilities for AI teams, while IPAI LAB is a real-world laboratory for developing and testing new AI applications. The IPAI CAMPUS features a Living Lab for practical innovation under real-life conditions. Additionally, IPAI offers expert knowledge, workshops, and tailored matchmaking services to help members navigate their AI projects effectively. With over 80 member organizations, IPAI is committed to making AI beneficial and profitable for businesses.",2022,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68cf72500dd3ff00017dbb03/picture,"","","","","","","","","" +HAT.tec GmbH,HAT.tec,Cold,"",56,information technology & services,jan@pandaloop.de,http://www.hattec.de,http://www.linkedin.com/company/hattec,"","","",Neubiberg,Bavaria,Germany,"","Neubiberg, Bavaria, Germany","defence, dualuse, aerospace, ai, software development, ai for complex environments, real-time monitoring, human-machine collaboration, operational efficiency, automated reasoning, operator workload reduction, consulting, mission management software, services, decision support systems, ai decision making, multi vehicle teaming, ai algorithms, swarm ai, border protection systems, government, cognitive automation, ai technologies, ai in military operations, ai & machine learning, adaptive assistance, ai-powered mission management, b2b, mission simulation, computer systems design and related services, sensor integration, mission planning software, ai-driven system testing, human system integration, uav automation, uav swarming, defense & military, human autonomy teaming, system integration, ai for defense, scalable mission solutions, multi vehicle mission control, ai-based planning, disaster response automation, rescue mission automation, manned-unmanned teaming, mission analysis, cognitive workload management, autonomous vehicle control, custom software development, aerospace & defense, geospatial data, digital transformation, autonomous vehicles, autonomous systems, multi-domain operations, system design, transportation & logistics, information technology & services",'+49 89 69312880,"Outlook, Microsoft Office 365, Nginx, WordPress.org, Ubuntu, Mobile Friendly, IoT, Remote, AI, Microsoft Office","",Venture (Round not Specified),0,2025-04-01,"","",69c27f5a6ce8cd0001ae2403,7375,54151,"HAT.tec GmbH is a software development, research, and consulting company based in Munich, Germany. Founded in 2018 as a spin-off from the Institute of Flight Systems at Bundeswehr University Munich, HAT.tec specializes in Human Autonomy Teaming (HAT) Technologies. The company focuses on enhancing mission performance through AI-driven human-machine collaboration, particularly in complex environments like manned-unmanned teaming. + +With a team of 24-35 engineers and computer scientists, HAT.tec develops scalable mission management software and customized AI-based solutions for various applications in civil, parapublic, defense, aviation, and aerospace sectors. Their offerings include mission planning, execution, and assistance systems, as well as consulting services in mission analysis and system integration. HAT.tec is committed to advancing AI capabilities while emphasizing the enhancement of human skills rather than full automation. The company holds certifications such as EN9100 and ISO 9001, reflecting its dedication to quality and excellence in its operations.",2018,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f8be71f2d3f00001a96a46/picture,"","","","","","","","","" +Nemo,Nemo,Cold,"",34,information technology & services,jan@pandaloop.de,http://www.nemo-ai.com,http://www.linkedin.com/company/nemo-gmbh,https://facebook.com/infozoom,https://twitter.com/InfoZoom,8 Auf dem Immel,Weilerbach,Rheinland-Pfalz,Germany,67685,"8 Auf dem Immel, Weilerbach, Rheinland-Pfalz, Germany, 67685","stammdatenpflege, einkaufsoptimierung, datengetriebene entscheidungsfindung, stammdatenoptimierung, clean data, datenauswertung, artificial intelligence, kuenstliche intelligenz, advanced analytics, lageroptimierung, prozessanalyse, datenanalysen, data quality, data quality management, datenqualitaetsmanagement, bi, data analytics, datadriven decision, datenverstaendnis, datenqualitaet, data monitoring, spontane analysen, business intelligence, prozessoptimierung, ki, data migration, analyticsasaservice platform, analytics asaservice plattform, echtzeitanalyse, dqm, ad hoc analyse, stammdaten, datenanalyse, business analytics, produktionsoptimierung, ai, datenmigration, ad hoc reporting, geschaeftsprozesse, produktiosnprozesse, it services & it consulting, data management, supply chain management, computer systems design and related services, services, data visualization, information technology and services, process analysis, management consulting, ai-based decision making, data-driven insights, ai in erp environment, ai for supply chain optimization, pattern recognition, production analytics, consulting, predictive modeling, monetary evaluation, production optimization, ai recommendations, stock optimization, data patterns, purchasing optimization, b2b, real-time monitoring, process optimization, data exploration, data mining, real-time business advisor, supply chain analytics, enterprise ai, predictive analytics, data security, process transparency, bi tools, master data, anomaly detection, inventory management, forecasting, data analysis, sustainability analytics, warehouse management, ai for production efficiency, ai-based stock reduction, data dashboards, ai-driven process insights, ai for sustainability reporting, data integration, sustainability, ready-to-use ai apps, ai for demand forecasting, ai consulting, ai predictions, cloud computing, holistic data view, ai for mittelstand, real-time insights, decision support system, cloud-based software, master data management, self-service analytics, ai for inventory management, data analysis in real time, ai platform, stock management, optimization potentials, ai apps, information technology & services, analytics, logistics & supply chain, enterprise software, enterprises, computer software, computer & network security, environmental services, renewables & environment","","Outlook, ServiceNow, Microsoft Office 365, Braze, Slack, Hubspot, DoubleClick Conversion, YouTube, Mobile Friendly, Google Analytics, Google Tag Manager, DoubleClick, Google Dynamic Remarketing, Vimeo","","","","",473000,"",69c27f5a6ce8cd0001ae2405,7375,54151,"Nemo is an AI-based business consultant platform that helps companies manage and analyze their business processes in real time. It utilizes advanced artificial intelligence methods to analyze data across the entire value-added chain, identifying patterns, irregularities, and opportunities for optimization. + +The platform offers a holistic view of business data by automatically analyzing millions of records. Key features include real-time analysis, pattern and anomaly detection, predictive analytics, and monetary evaluation of optimization potentials. Nemo is available as a cloud-based solution compatible with the proALPHA ERP+ ecosystem and other third-party ERP solutions. It includes ready-to-use AI applications and operates on a plug-and-play model, allowing companies to quickly load their data and start using the platform. + +Nemo has been recognized by clients such as Gebr. Pfeiffer SE, who noted the platform's ability to provide a new perspective on their data through AI-driven insights.",1996,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/675ec000825a90000184a1c0/picture,"","","","","","","","","" +zeroG - AI in Aviation,zeroG,Cold,"",110,information technology & services,jan@pandaloop.de,http://www.zerog.aero,http://www.linkedin.com/company/zerog,"","","",Frankfurt,Hesse,Germany,"","Frankfurt, Hesse, Germany","computer vision, revenue management, digitalization, machine learning, network planning, data analysis, data engineering, data consultancy, deep learning, innovation, kubernetes, analytics, reinforcement learning, airline operations, aviation, data science, business intelligence, artificial intelligence, it services & it consulting, process automation, generative ai, edge computing, ai-powered chatbots for customer support, ai-powered customer support, predictive analytics, ai in aviation, ai strategy and consulting, real-time monitoring, aviation data analytics, hybrid cloud solutions, aircraft exterior inspection, ai for aircraft maintenance, data security, data analytics, ai risk mitigation, operational efficiency, ai hackathons for aviation, information technology, passenger experience, aviation industry, turnaround optimization, ai solutions, data enablement training, computer systems design and related services, services, crew management, custom data solutions, data platform engineering, sustainable aviation fuel analytics, data visualization, aircraft damage detection, data maturity assessment, data & ai strategy, demand prediction, passenger demand forecasting, cargo inspection with computer vision, b2b, data & ai solutions, crew absence prediction, baggage handling optimization, consulting, operational optimization, education, information technology & services, enterprise software, enterprises, computer software, computer & network security",'+49 1515 8923645,"Amazon AWS, Mobile Friendly, Google Tag Manager, Vimeo, Adobe Media Optimizer, Cedexis Radar, AI, SQL, Python, Google Analytics, Webtrends, Microsoft Azure Monitor, Google Cloud Platform, Amazon Web Services (AWS), Tableau, PowerBI Tiles, Looker","","","","","","",69c27f5a6ce8cd0001ae2411,7375,54151,"zeroG - AI in Aviation is a German company founded in 2015 as a subsidiary of Lufthansa Systems. It specializes in data-driven AI and machine learning solutions tailored for the aviation industry. Headquartered in Raunheim, Hessen, the company employs around 70-93 people and reported $5.7 million in revenue in 2024. zeroG focuses on enhancing operations and customer experiences, aiming to make aviation data useful for healthier and more enjoyable air travel. + +The company offers a range of end-to-end data science and AI services customized for airlines. Their solutions include user-centric development that combines aviation expertise with machine learning technologies, such as conversational AI for customer support, machine learning for crew absence forecasting, and computer vision applications for engine and baggage inspections. zeroG's innovations have positively impacted over 186 million passengers annually, making it a trusted partner for leading airlines in the industry.",2015,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69ae23857a6217000108c64f/picture,"","","","","","","","","" +thyssenkrupp Materials IoT GmbH,thyssenkrupp Materials IoT,Cold,"",19,information technology & services,jan@pandaloop.de,http://www.thyssenkrupp-iot.com,http://www.linkedin.com/company/thyssenkrupp-iot-gmbh,"","","",Oberhausen,North Rhine-Westphalia,Germany,"","Oberhausen, North Rhine-Westphalia, Germany","it services & it consulting, kommunikationsschnittstellen, implementierung, industrie 4.0 plattform, echtzeit-transparenz, papierlose fertigung, manufacturing, it-infrastruktur, industrial machinery manufacturing, intralogistik, produktionsdaten, datenanalyse, vernetzung, effizienzsteigerung, maschinenintegration, automatisierung, produktionsmanagement, erp-integration, iiot-plattform, prozessoptimierung, modulare softwarelösungen, prozessautomatisierung, downtime-analyse, smart manufacturing, kundenberatung, softwareanpassung, produktivitätssteigerung, schnittstellenentwicklung, mes, partnernetzwerk, plattform für stahl service center, brücke zwischen maschinen und it, end-to-end-digitalisierung, distribution, smart factory, softwareentwicklung, maschinenvernetzung, digitalisierung, maschinensteuerung, produktionsüberwachung, schulungen, standortübergreifende produktion, industrie 4.0, vernetzte produktion, automatisierte prozesse, b2b, information technology & services, mechanical or industrial engineering",'+49 20 89899240,"Amazon CloudFront, Route 53, Outlook, Microsoft Office 365, Amazon AWS, Jira, Atlassian Confluence, Vercel, Atlassian Bitbucket, Workday, Freshdesk, ServiceNow, Amazon SES, Slack, Salesforce, Mobile Friendly, Google Tag Manager, Facebook Login (Connect), Adobe Media Optimizer, Vimeo, Facebook Widget, YouTube, Facebook Custom Audiences, Multilingual, Workday Recruit, Google Font API, WordPress.org, Cedexis Radar, Remote, SAP, Angular, Spring Boot, Kubernetes, Docker, PowerBI Tiles, SharePoint, CNC Software, IBM Maximo IT, Creo+, Dassault SOLIDWORKS, Microsoft Office, Philips IntelliSpace, PriceGrabber, Siemens PLM, Siemens SIMATIC STEP 7, Quickbase, ServiceNow Configuration Management Database, Tor, CATIA, Minitab Workspace, WebOffice, Craneware, Teamcenter, Visio, CONTROL, SS&C, eMaint CMMS, Vero, ABB Robotics, SAP SD, .NET, Microsoft Excel, Microsoft PowerPoint, PortSwigger, SAP Data Migration, Siemens SIMATIC S7, Ning, Google Cloud Machine Learning Engine, Tampa AS400 Inc, ENTERPRISE ARCHITECT, Power BI Documenter, SAP SuccessFactors Learning, Excel4Apps, AVEVA InTouch HMI, AC500 PLC, Quip, Python, Factors.AI, Microsoft Defender for Cloud, ANGEL LMS, Feathr, CAESAR II, SAP SuccessFactors, Arduino, C/C++, CANalyzer, Dspace, MATLAB, poly, Simulink, Xray, FUSION, Oxid, IoT, DC Storm, VMware SD-WAN, Microsoft Project, Oracle Primavera, ABAP, Gem, SentenceTransformers, Microsoft Power Apps, Microsoft Power Automate, Copilot, Microsoft Power Platform, Veeva Vault PromoMats, SAP BusinessObjects Business Intelligence (BI), C#, ASP.NET, FlipHTML5, Javascript, Aryson MySQL to MSSQL Converter, Infor ION, SDS/2, Bitbucket, Confluence, JFrog Artifactory, Harbor, Jenkins, Nutanix Acropolis, Git, Microsoft Azure Monitor, Azure Linux Virtual Machines, Ausgezeichnet, Front, CAT, JQuery 1.11.1, Salesforce CRM Analytics, FANUC FIELD System, Homestead, SAP S/4HANA, Linkedin Marketing Solutions, SAP Master Data Governance, SAP Concur, Astra, AWS SDK for JavaScript, BERT, Eclipse, Java EE, Kotlin, Maven, Oracle Database, Oracle WebLogic, Oracle XML DB, REST, SonarQube, R, FICO Safe Driving Score, OnBase, iCIMS SkillSurvey Reference, SAP R/3, , DATAVERSE LTD, Microsoft 365, Wider Planet, TypeScript, HTML5 Maker, CSS, Visual Studio Code, Azure Data Lake Analytics, Micro, AutoCAD, Inventor, Pages, HTML Pro, Bootstrap, Liquid, jQuery, WP-Oauth, IBM SPSS Modeler, SysTools VBA Password Recovery, Neogov HRMS, IBM Storage Suite for IBM Cloud Paks, Prometheus, Grafana, Bitnami AlertManager, Grafana Loki, OpenTelemetry, ATOSS, Microsoft Dynamics CRM, TSYS, NeoData, Thermo Scientific Chromeleon Chromatography Data System (CDS), Surfcam, SAP Fiori, Microsoft AdCenter","","","","","","",69c27f5a6ce8cd0001ae2404,3571,33324,"thyssenkrupp Materials IoT GmbH is a start-up established in September 2019, emerging from thyssenkrupp Materials Services. The company leverages 15 years of IoT experience alongside 200 years of industrial history to deliver Industry 4.0 solutions tailored for manufacturing companies. + +The company specializes in IIoT (Industrial Internet of Things) and MES (Manufacturing Execution System) platforms. Its core offering, the toii® platform, is a modular solution designed to enhance productivity through real-time data collection and transparency. It enables seamless integration with existing ERP and production IT systems, supporting the digitalization of manufacturing processes from management to packaging. The platform also includes specialized features like energy monitoring and knife assembly software, aimed at optimizing operations in steel service centers and other manufacturing environments.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6767bfe35a001900014add63/picture,thyssenkrupp (thyssenkrupp.com),610de34b1b659300da43395f,"","","","","","","" +TUM Chair for Strategy and Organization,TUM Chair for Strategy and Organization,Cold,"",18,higher education,jan@pandaloop.de,http://www.tumcso.com,http://www.linkedin.com/company/tumcso,"","",21 Arcisstrasse,Munich,Bavaria,Germany,80333,"21 Arcisstrasse, Munich, Bavaria, Germany, 80333","b2b, inclusion, innovation, industry partnerships, technology transformation, consulting, digital transformation, high-impact research, talent management, organizational structures, project studies, blockchain, blockchain adoption, strategy formulation, management consulting, ai impact on business, leadership in digital age, startups, education, ai in software development, quantitative methods, venture success prediction, organization, ai in customer interactions, venture success forecasting, ai, gender diversity startups, sustainability, quantitative-empirical research, conflict resolution in teams, coaching, co-founder matching, industry collaborations, international conferences, demographic team composition, decentralized autonomous organizations, student thesis, dei in science, diversity, research publications, digital workplace gamification, empirical research, research and development, leadership development, digital technologies, corporate practice, services, digital leadership, web3, other scientific and technical consulting services, higher education, digital innovation, predictive analytics, empirical methods, strategy, corporate innovation, research, artificial intelligence, environmental services, renewables & environment, research & development, education management, information technology & services, enterprise software, enterprises, computer software",'+49 89 28914430,"MailJet, Gmail, Google Apps, Vercel, Slack, Mobile Friendly, MailChimp, Facebook Custom Audiences, Adobe Media Optimizer, Google Tag Manager, Google Maps (Non Paid Users), Google Maps, Ubuntu, WordPress.org, Google Dynamic Remarketing, Personify, Horde, reCAPTCHA, Facebook Login (Connect), DoubleClick, Piwik, Woo Commerce, Wordpress.com, Google Font API, TYPO3, AngularJS, Hotjar, Cedexis Radar, Gravity Forms, Drupal, DoubleClick Conversion, Facebook Widget, Multilingual, Vimeo, Bootstrap Framework, Nginx, Django, Eventbrite, Workday Recruit, YouTube, Linkedin Marketing Solutions, Moodle, Apache","","","","","","",69c27f5a6ce8cd0001ae2406,8732,54169,"The TUM Chair for Strategy and Organization is part of the TUM School of Management at the Technical University of Munich, led by Prof. Dr. Isabell M. Welpe. This academic chair focuses on research and teaching in strategy, organization, and digital technologies. The team, consisting of around 17 members, conducts research on contemporary challenges in the business landscape, including startup success, technological innovation, and diversity, equality, and inclusion (DEI). + +Research is centered on three main areas: strategy and entrepreneurship, digital technologies, and DEI. The chair employs quantitative-empirical methods to generate insights and collaborates with organizations like BCG to address AI integration in business. Prof. Welpe teaches courses on strategy, digital transformation, leadership, and organizational design, while also providing academic services to students. The chair aims to deliver high-impact solutions for the challenges faced in the digital era.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/695ba3c2e808b6000179eb3c/picture,"","","","","","","","","" +XITASO,XITASO,Cold,"",200,information technology & services,jan@pandaloop.de,http://www.xitaso.com,http://www.linkedin.com/company/xitasogmbh,https://facebook.com/XitasoGmbH,https://twitter.com/xitasogmbh,35 Austrasse,Augsburg,Bavaria,Germany,86153,"35 Austrasse, Augsburg, Bavaria, Germany, 86153","automization, ios, consulting, android, mvc, sharepoint, project, iphone, aspnet, app development, technical software, html5, dynamics crm, mobile development, embedded systems, microsoftnet, robotics, ipad, it services & it consulting, cloud engineering, team management, forschung in robotik, cybersecurity, cloud solutions, services, devops, softwareentwicklung, public sector, ki-technologien, it-security, kundenorientierung, government, software-modernisierung, computer vision, it/ot-konvergenz in industrie 4.0, standorte, digitalisierung, digitaler produktpass, verwaltungsschale, usability engineering, industrie 4.0, b2b, digitaler zwilling, self-organization, cloud computing, software & it services, nachhaltigkeit, computer systems design and related services, machine learning, software development, ki-gestütztes wissensmanagement, qualitätsstandards, mnestix, manufacturing, high-end software engineering, medizintechnik, automatisierung, eclipse, forschung und innovation, zertifizierungen, xr, verwaltungsschale aas, sicherheitszertifikate, medtech, partnernetzwerk, künstliche intelligenz, data science, agiles projektmanagement, teamführung, dpp, industrial automation, asset administration shell, healthcare, mobile, internet, information technology & services, mobile devices, apps, embedded hardware & software, hardware, mechanical or industrial engineering, enterprise software, enterprises, computer software, artificial intelligence, health care, health, wellness & fitness, hospital & health care",'+49 821 8858820,"Outlook, Jira, Atlassian Confluence, Atlassian Bitbucket, GitLab, Slack, Adobe Media Optimizer, Google Tag Manager, Cedexis Radar, WordPress.org, Vimeo, DoubleClick, Mobile Friendly, Nginx, Shutterstock, Ansible, Terraform, Kubernetes, Prometheus","","","","",23000000,"",69c27f5a6ce8cd0001ae2410,7375,54151,"XITASO GmbH is a German software engineering company founded in 2011, based in Augsburg, Bavaria. The company specializes in high-end, customized digital solutions for complex digitalization projects across various industries, including mechanical engineering, robotics, automotive, logistics, medical, and healthcare. XITASO positions itself as a digitalization partner, focusing on developing scalable and secure software that integrates engineering and multimedia solutions. + +The company offers a range of services, including the development of engineering software, mobile apps, web applications, and IT consulting. XITASO emphasizes user-centered design and innovation to help B2B customers optimize processes and navigate digital transformation. With a growing team of over 250 employees and multiple office locations in Germany and Spain, XITASO is committed to delivering high-quality solutions and continuous delivery. The company collaborates with industry leaders and engages in research to drive sustainable technology innovation.",2011,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e6370ee1b8ff00016ff966/picture,"","","","","","","","","" +MIG Capital,MIG Capital,Cold,"",27,venture capital & private equity,jan@pandaloop.de,http://www.mig.ag,http://www.linkedin.com/company/mig-capital-ag,"",https://twitter.com/mig__ag,102 Ismaninger Strasse,Munich,Bavaria,Germany,81675,"102 Ismaninger Strasse, Munich, Bavaria, Germany, 81675","deep tech, life sciences, venture capital, private equity, entrepreneurship, venture capital & private equity principals, investments, biotechnology & medical devices, other financial investment activities, climate tech, portfolio management, biotechnology, ai applications, energy & environment, europa, private investors, expansion funding, energy efficiency, mutual growth, industry expertise, series a, sustainable energy, funding, european startups, early stage funding, publicly accessible funds, medical technology, seed funding, technology investments, medical devices, healthcare innovation, energy innovation, biotech, fundraising, b2b, renewable energy, startups, advanced computing, long-term investments, biopharmaceuticals, venture capital & private equity, ai & iot, digital health, information technology & services, growth capital, disruptive technologies, new materials, public funds, autonomous systems, artificial intelligence, founder-centric approach, european expansion, cross-sector innovation, retail vc, energy & utilities, series b, robotics, medtech, healthcare, finance, energy_utilities, financial services, environmental services, renewables & environment, hospital & health care, fund-raising, clean energy & technology, health, wellness & fitness, mechanical or industrial engineering, health care",'+49 172 8433232,"Outlook, Google Font API, Bootstrap Framework, Vimeo, Google Analytics, Mobile Friendly, WordPress.org, Apache, Shutterstock, Remote, AI","","","","",15681000,"",69c27f5a6ce8cd0001ae23fc,6732,5239,"MIG Capital AG is a Munich-based venture capital firm established in 2004. It specializes in investing in deep tech and life sciences startups across Europe. The firm manages 18 funds with around €1.3 billion in committed capital and is recognized as the only retail VC in Germany, funded entirely by individual investors through public funds. + +MIG Capital focuses on seed and Series A investments, typically ranging from €1,000,000 to €10,000,000. The investment team comprises engineers, scientists, physicians, and entrepreneurs who leverage their expertise to evaluate business models and technologies. The firm targets sectors such as biopharmaceuticals, energy and environmental technologies, advanced computing, digital health, and medical technology. With a portfolio of 33 active companies, MIG Capital has notable exits and IPOs, including BioNTech and Hemovent.",2004,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/695f3d796c774e000172bc79/picture,"","","","","","","","","" +SEITEC GmbH,SEITEC,Cold,"",23,industrial automation,jan@pandaloop.de,http://www.seitec.info,http://www.linkedin.com/company/seitec-automation,"","","",Erfurt,Thuringia,Germany,"","Erfurt, Thuringia, Germany","industry 4.0, artificial intelligence, machine learning, digitalization, electrical engineering, automation, resource-efficient systems, sustainability, data security, automation engineering, automation solutions, manufacturing, information technology, cloud solutions, industrial ai, industrial machinery manufacturing, project management, research & development, process optimization, transportation & logistics, cloud computing, ai applications, digital twin, mechanical design, services, automation consulting, electrical design, secure ot systems, iiot, smart factories, ai-based process optimization, cloud technologies, digital ecosystem, plant engineering, industrial automation, special-purpose machinery, automation retrofitting, custom control systems, predictive maintenance, distribution, system integration, plant & machinery, cybersecurity, b2b, software engineering, edge computing, predictive analytics, custom automation, retrofits, energy & utilities, iiot infrastructures, ai, consulting, virtual commissioning, mechanical engineering, software development, digital transformation, information technology & services, environmental services, renewables & environment, computer & network security, mechanical or industrial engineering, enterprise software, enterprises, computer software, productivity",'+49 3673 8654670,"Outlook, Microsoft Office 365, Apache, Google Places, WordPress.org, Multilingual, Google Maps, Mobile Friendly, Google Font API, Google Tag Manager, Gravity Forms, Vimeo, AC500 PLC, Siemens SIMATIC HMI (Human Machine Interface), Siemens SIMATIC SCADA, SS&C, SIMATIC WinCC, Siemens SIMATIC PCS 7, IBM SPSS Modeler, Siemens SIMATIC S7","","","","","","",69c27f5a6ce8cd0001ae240f,3531,33324,"Industry Automation, Industry 4.0, Digitalization, Digital Transformation, Development of Digital Business Models, App Development (MindSphere, AWS, Azure and others), Cloud Hosting, Web Hosting, AI, Cloud Solutions, UI/UX App Development",1998,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/687c112ca966ec0001e3a92a/picture,"","","","","","","","","" +Leaders of AI,Leaders of AI,Cold,"",35,education management,jan@pandaloop.de,http://www.leadersofai.com,http://www.linkedin.com/company/leaders-of-ai,"","",71 Urbanstrasse,Berlin,Berlin,Germany,10967,"71 Urbanstrasse, Berlin, Berlin, Germany, 10967","education, ai-driven marketing, ai in finance, ai in automotive, ai training, ai ethics, ai case studies, ai in energy, ai-driven education, management consulting, online learning, automation, ai in manufacturing, ai for startups, ai development, praxisorientierte weiterbildung, b2b, ai leadership, ai integration, ai in insurance, ai in education, ai in real estate, information technology, ai workshops, ai in enterprise, business intelligence, corporate training, ai in management, ki-experten-team, ai collaboration, ai for hr, data analytics, digital transformation, ai platform, ai-powered business solutions, ai for small businesses, ai in business, ki-transformation, generative ai, ai for executives, ai in digital transformation, ai tools, ai consulting, ai certification programs, ai skills, ai for entrepreneurs, ai certification, ai skills development, ai ethics training, ai in legal services, ai in customer support, ai workforce, ai projects implementation, ai in retail, ai courses, ai automation tools, ai implementation, ai community, ai in logistics, ai project management, ai strategy, artificial intelligence, colleges, universities, and professional schools, ai education, ai innovation, ai research, ai in healthcare, ai-driven learning, services, ai projects, e-learning, internet, information technology & services, computer software, education management, analytics, professional training & coaching",'+49 30 62930026,"Cloudflare DNS, Sendgrid, Gmail, Google Apps, Slack, Stripe, Trustpilot, Linkedin Marketing Solutions, Facebook Custom Audiences, Mobile Friendly, Vimeo, Facebook Login (Connect), Facebook Widget, Bootstrap Framework, Google Tag Manager, AI, Canal, Remote, Android","",Seed,0,2024-09-01,"","",69c27f2ab3c67d00013eab4a,8748,61131,"Leaders of AI is a German-language academy focused on AI transformation training. It helps entrepreneurs, business owners, and managers build teams of AI assistants to improve competitiveness and address skilled labor shortages. The academy offers practical programs led by experts, including professors and managers from well-known companies. Its innovative approach to AI education has earned recognition, including the eLearning Award 2025. + +The flagship program, Master Business with AI (MBAI®), is a 3-month online course designed for self-employed individuals and managers. It requires no prior experience and covers essential areas such as HR, marketing, and sales. Participants learn to develop deployable AI assistants and gain lifelong access to course content and community events. The program includes modules on fundamentals, innovation, marketing, sales, Microsoft tools, and leadership, ensuring participants stay updated on new tools and ethical guidelines.",2023,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6879c56e53bf3e0001f4a81e/picture,"","","","","","","","","" +Germanedge,Germanedge,Cold,"",150,information technology & services,jan@pandaloop.de,http://www.germanedge.com,http://www.linkedin.com/company/germanedge,"",https://twitter.com/ThinkGermanedge,61 Sankt-Martin-Strasse,Munich,Bavaria,Germany,81669,"61 Sankt-Martin-Strasse, Munich, Bavaria, Germany, 81669","manufacturing execution system, digital factory, manufacturing operations management, advanced planning & scheduling, advanced quality management, connected worker, it services & it consulting, b2b, predictive analytics, smart data, supply chain convergence, edge.one, prescriptive analytics, produktionsmanagement software, manufacturing, datenintegration, edge.one platform as a service, iot in der produktion, cloud plattform, data analytics, circular economy in der produktion, track and trace software, supply chain management, data management, industrie 4.0, mes/mom plattform, cloud computing in der produktion, it/ot integration, big data lösungen, prescriptive analytics lösungen, prozessoptimierung, industrial machinery manufacturing, produktionsmanagement, echtzeit-datenanalyse, qualitätsmanagement software, smart factory, paas, produktionsplanung software, services, aps-software, stammdatenmanagement software, solution-centric supply chain, künstliche intelligenz in der produktion, ki-basierte produktionssteuerung, it/ot integration software, digitaler zwilling in der produktion, cyber-physische systeme, oee - overall equipment effectiveness, iot plattform, laborplanung-software, process optimization, automatisierte qualitätssicherung, automatisierte produktionsplanung, automatisierung, lights-out-planning software, datenvisualisierung, digital twin, reaktionsfähigkeit in echtzeit, distribution, mes software, supply chain software, mom application suite, manufacturing network design, solution-oriented supply chain, information technology & services, enterprise software, enterprises, computer software, mechanical or industrial engineering, logistics & supply chain, cloud computing",'+49 89 1255650,"Cloudflare DNS, Outlook, Pardot, Microsoft Office 365, Amazon AWS, Sophos, Hubspot, Slack, Salesforce, Ubuntu, Apache, Google Dynamic Remarketing, DoubleClick Conversion, Mobile Friendly, Linkedin Marketing Solutions, Google Tag Manager, Google Analytics, Hotjar, DoubleClick, Vimeo, Remote, AI, Apache Tomcat, Personio, MAXQDA, Python, Homestead, Wider Planet, Siemens PLM, ABAP, SAP, BASE, Oracle Analytics Cloud, checkmk, Microsoft Windows Server 2012, Talentsoft, Act!, Ning, Gem, Connect","",Merger / Acquisition,0,2025-03-01,42000000,"",69c27f2ab3c67d00013eab4e,3571,33324,"Germanedge is a manufacturing software company based in Munich, Germany, founded in 2017. It specializes in digital production solutions for Industry 4.0, helping manufacturers optimize their production processes, supply chains, and quality management. The company employs over 200 people and has a presence in Europe and the United States. + +Germanedge offers a wide range of software solutions, including Manufacturing Execution Systems (MES), Advanced Planning & Scheduling (APS), Supply Chain Management (SCM), and Advanced Quality Management (AQM). Their Edge.One SaaS platform integrates these solutions into a unified production workplace, allowing companies to implement digital strategies effectively. Germanedge serves both large enterprises and small-to-medium enterprises (SMEs) in the manufacturing industry, focusing on enhancing efficiency and sustainability in production.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69ada15f3e0f84000103d61d/picture,Aptean (aptean.com),54a11e6069702d7fe6a37401,"","","","","","","" +it's OWL Cluster,it's OWL Cluster,Cold,"",20,machinery,jan@pandaloop.de,http://www.its-owl.de,http://www.linkedin.com/company/itsowl,https://www.facebook.com/itsOWL.Cluster/,https://twitter.com/itsOWL_Cluster,2 Zukunftsmeile,Paderborn,North Rhine-Westphalia,Germany,33102,"2 Zukunftsmeile, Paderborn, North Rhine-Westphalia, Germany, 33102","machine learning, internationalisation, business models, big data, digital twins, nachhaltigkeit, digitisation, systems engineering, technology transfer, future of work, digital platforms, entrepreneurship, industrie 40, industriezero, duale transformation, machinery manufacturing, consulting, technologietransfer, research and development in the physical, engineering, and life sciences, automatisierung, digitale transformation, ki-projekte, data science, smart sensors, ki-gestützte logistik, datenbasierte entscheidungsfindung, industrie. zero, digitale plattformen für innovationen, digitaler zwilling, industrie 4.0, netzwerk für mittelstand, manufacturing, technologieentwicklung, government, energieeffizienz in der produktion, innovationsplattform, b2b, ki in der produktentwicklung, start-up kooperationen, kreislaufwirtschaft, künstliche intelligenz, technology, klimaschutz, smart factory, nachhaltige produktgestaltung, forschungsprojekte, forschung und entwicklung, mensch-maschine-interaktion, wettbewerbsfähigkeit, cybersecurity in der industrie, services, research and development, digitalisierung, cloud computing, education, distribution, artificial intelligence, information technology & services, enterprise software, enterprises, computer software, mechanical or industrial engineering, research & development",'+49 5251 5465275,"Outlook, Bootstrap Framework, Mobile Friendly, WordPress.org, Apache, AI, Phoenix, IoT","","","","","","",69c27f2ab3c67d00013eab45,3531,54171,"it's OWL (Intelligent Technical Systems OstWestfalenLippe) is a prominent cluster and competence network based in Paderborn, Germany. It brings together over 220 companies, research institutions, and organizations to develop solutions for intelligent products and sustainable industrial transformation, particularly through the ""Industrie.Zero"" initiative. Recognized in the German Federal Ministry of Education and Research's Leading-Edge Cluster Competition, it's OWL is one of Europe's largest Industry 4.0 initiatives, aiming to establish OstWestfalenLippe as a model region for sustainable value creation. + +Established over ten years ago, it's OWL has coordinated around 500 projects focusing on artificial intelligence, intelligent product development, and digitalization. The network facilitates collaboration among SMEs, family-owned companies, global market leaders, and research institutions, driving research in AI, automation, and systems engineering. It offers networking, project collaboration, and strategic advisory services, supporting members in sustainable production and innovation. Members benefit from access to projects and regional ecosystem advantages, enhancing their competitiveness in the evolving industrial landscape.",2012,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670a62aaa33b6800012d3d81/picture,"","","","","","","","","" +fortiss,fortiss,Cold,"",110,research,jan@pandaloop.de,http://www.fortiss.org,http://www.linkedin.com/company/fortiss,https://www.facebook.com/fortiss.org/,"",25 Guerickestrasse,Munich,Bavaria,Germany,80805,"25 Guerickestrasse, Munich, Bavaria, Germany, 80805","autonomous driving, intuitive programming, robotics, cloud computing, smart energy, artificial intelligence, safety security, open data, trusted apps, data science, iot, software development process, forschung, ai, software engineering, data analytics, humancentered engineering, industrie40, speedfactory, software development, ki, software dependability, digitalisation, industry40, research, big data, performance engineering, knowledge based engineering, intelligent infrastructures, cognitive structures, machine learning, multicore platforms, smart city, data analysis, data mining, blockchain, sensor systems, service engineering, internet of things, techday, iiot, gen ai, providentia, safety amp security, neural networks, llm, science, kuenstliche intelligenz, research services, ki-trust, ki in der luftfahrt, model-based systems engineering, ki in der öffentlichen verwaltung, ki-standard din vde, ki-systeme, ki-qualität, software development tools, ki-standard, neuromorphic computing, ki-sicherheitsstandard, services, information technology and services, government, iot-infrastrukturen, iot engineering, research and development in the physical, engineering, and life sciences, reliable software, softwarebasierte systeme, ki-sicherheit, trustworthy ai, b2b, ki in der industrie, software & systems engineering, ki in der medizin, ki in der energie, dependable software, ki-entwicklung, security standards, system integration, ki-zertifizierung, cyber-physische systeme, digital transformation, autonomous systems, ai engineering, industrial automation, healthcare, finance, education, non-profit, manufacturing, energy & utilities, mechanical or industrial engineering, information technology & services, enterprise software, enterprises, computer software, health care, health, wellness & fitness, hospital & health care, financial services, nonprofit organization management",'+49 89 36035220,"Outlook, Microsoft Office 365, VueJS, GitLab, Salesforce, Apache, Mobile Friendly, Raspberry Pi, Azure Linux Virtual Machines, Linkedin Marketing Solutions, Instagram, YouTube","",Seed,"",2008-12-01,"","",69c27f2ab3c67d00013eab59,7375,54171,"fortiss GmbH is a research institute based in Munich, Germany, focused on software-intensive systems. Founded in 2009 as a non-profit organization, it aims to advance research and transfer ICT results into industrial practice through collaboration between practitioners and academic researchers. The institute is majority-owned by the Free State of Bavaria and partners with the Fraunhofer-Gesellschaft and Technische Universität München (TUM). + +fortiss specializes in application-driven research in areas such as cyber-physical systems, AI engineering, and IoT engineering. It conducts market-oriented research across various domains, including automotive, industrial automation, aerospace, and public administration. The institute offers services like information events, coaching, prototype development, and training, particularly for small and medium-sized enterprises (SMEs). fortiss also develops prototypes and demonstrators in areas like reliable AI and blockchain applications, emphasizing knowledge transfer and collaboration with universities and technology companies in Europe.",2008,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6712334df0824800019511e3/picture,"","","","","","","","","" +EVASIVE ROBOTICS,EVASIVE ROBOTICS,Cold,"",15,information technology & services,jan@pandaloop.de,http://www.evasive-robotics.com,http://www.linkedin.com/company/evasiverobotics,"","","",Dresden,Saxony,Germany,"","Dresden, Saxony, Germany","software development, automatic calibration, collision-free motion planning, high product variety handling, manufacturing, multi-robot systems, robotics, dynamic environment operation, kinematic integration, robot density, robot collaboration, services, constraint-based programming, vendor-independent cell design, shared workspace coordination, industrial automation, process outcome focus, real-time coordination, flexible layouts, industrial machinery manufacturing, software engineering, b2b, multi-robot motion planning, adaptive movement, collision avoidance, process automation, assembly line automation, real-time optimization, information technology & services, mechanical or industrial engineering","","Cloudflare DNS, Outlook, Microsoft Office 365, Mobile Friendly, Wix, Varnish","","","","","","",69c27f2ab3c67d00013eab49,3589,33324,"Evasive Robotics is a robotics company that focuses on intelligent multi-robot systems designed for collaborative automation in industrial settings. Their team of engineers is dedicated to enhancing the flexibility and scalability of automation, allowing robots to work together seamlessly in shared workspaces. The company aims to transform manufacturing through real-time collision-free motion planning and vendor-independent cell designs, which streamline setup and adaptation processes. + +Their core technology supports various kinematic structures and degrees of freedom, enabling automatic motion planning and adaptive movements. Evasive Robotics offers solutions for assembly, palletizing, and production optimization, helping manufacturers achieve efficient automation while minimizing floor space and integration costs. The company has showcased its technology through various demonstrators, including systems for hospitality and creative applications, highlighting its versatility across different industries.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6961e2e774acd800016cd51a/picture,"","","","","","","","","" +SpiNNcloud,SpiNNcloud,Cold,"",60,computer hardware,jan@pandaloop.de,http://www.spinncloud.com,http://www.linkedin.com/company/spinncloud-systems-gmbh,"","",37 Freiberger Strasse,Dresden,Sachsen,Germany,01067,"37 Freiberger Strasse, Dresden, Sachsen, Germany, 01067","hybrid ai, artificial intelligence, neuromorphic computing, artificial, spinnaker2, aihardware, aisoftware, highperformance computing, system design, chip design, computer hardware manufacturing, hybrid ai processors, large-scale brain-inspired computing, arm-based neuromorphic chips, energy-efficient algorithms, hybrid low-power ai processors, brain-inspired architecture, event-based communication, energy proportionality, energy bottleneck solutions, energy & utilities, ai data centers, supercomputer level scalability, brain-inspired supercomputer, ai inference hardware, brain-inspired chip architecture, scalable neuromorphic systems, spinnext, information technology, brain-inspired supercomputers, event-based computation, energy consumption reduction, b2b, scalable supercomputing, energy-efficient token processing, neuromorphic chips, democratization of ai infrastructure, energy-proportional ai hardware, low-power ai systems, event-driven ai hardware, ai inference optimization, ai hardware innovation, parallel topology, chip architecture, energy in token/s/w, semiconductor and other electronic component manufacturing, democratizing ai infrastructure, dynamic sparsity algorithms, energy efficiency, hardware for genai, ultra low energy systems, large-scale supercomputers, dynamic sparsity, energy efficiency in ai, energy-efficient ai infrastructure, energy proportional computing, scalable supercomputer systems, arm-based systems, neural-inspired computing, services, information technology & services, environmental services, renewables & environment",'+49 916 4451254,"Outlook, Slack, Google Tag Manager, WordPress.org, Bootstrap Framework, Apache, Mobile Friendly, Google Font API, Linux OS, Docker, Android, Remote, AI, Spinnaker, GitHub, Personio, Python, Barracuda MSP",5940000,Other,2750000,2025-07-01,"","",69c27f2ab3c67d00013eab4c,3621,33441,"SpiNNcloud Systems GmbH is a deep-tech company based in Dresden, Germany, founded in 2021. The company specializes in brain-inspired supercomputing platforms designed for ultra-energy-efficient AI inference and hybrid AI workloads. Its flagship product, the SpiNNcloud platform, is recognized as the world's largest commercial hybrid high-performance compute system, utilizing the SpiNNaker2 chip architecture. This innovative technology achieves significant energy efficiency, outperforming traditional GPUs. + +SpiNNcloud offers a range of hardware solutions, including Edge Kits, Desktop Kits, and Scalable Server Solutions, catering to various computing needs from edge devices to supercomputers. The company also provides IaaS cloud access for neuromorphic and hybrid AI computing, along with an open-source software stack for seamless integration. SpiNNcloud serves a diverse clientele, including research institutions, tech startups, SMEs, enterprises, and high-performance computing centers, with applications in drug discovery, optimization, and computational neuroscience.",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69adc7d322a43f0001cbba00/picture,"","","","","","","","","" +IDTA,IDTA,Cold,"",17,machinery,jan@pandaloop.de,http://www.industrialdigitaltwin.org,http://www.linkedin.com/company/industrial-digital-twin-association,"","",18 Lyoner Strasse,Frankfurt,Hesse,Germany,60528,"18 Lyoner Strasse, Frankfurt, Hesse, Germany, 60528","standardization, digitization, digital twins, automation machinery manufacturing, forschungskooperationen, b2b, automatisierte testverfahren, automatisierte prozesse, innovationsförderung, industrial iot, teilmodelle, industry 4.0 standards, industrie 4.0, software, digital twin standard, information technology, manufacturing, research and development, interoperabilitätsframework, consulting, digitale lieferkette, automation, interoperabilität, global industry network, bim integration, verwaltungsschale, asset administration shell, branchenübergreifende standardisierung, asset management, aas-spezifikationen, digitale gebäudemodellierung, kollaborative entwicklung, open source software, digitalization in industry, branchenstandard, smart factory, industrial data, digital transformation, services, industrial automation, digitale schnittstellen, cyber-physical systems, computer systems design and related services, automatisierung, digital twin, technologie community, industrial equipment, aas test tool, standardisierung, digitale produktion, industrie 4.0 plattform, technologievorsprung, submodel templates, open source, education, non-profit, information technology & services, mechanical or industrial engineering, research & development, computer software, nonprofit organization management",'+49 69 66031939,"Outlook, Mobile Friendly, Apache, Bootstrap Framework, reCAPTCHA, Vimeo, WordPress.org","","","","","","",69c27f2ab3c67d00013eab55,3571,54151,"The Industrial Digital Twin Association e.V. (IDTA) is a non-profit consortium established in September 2020. It serves as a central platform for standardizing and advancing the Industrial Digital Twin as an open-source technology for Industry 4.0. IDTA connects physical industrial assets with the digital world, enabling interoperability, real-time monitoring, and optimization across the value chain. Its mission includes building a global network, creating international standards, and fostering collaboration among various industries. + +IDTA's core technology is the Asset Administration Shell (AAS), which provides a standardized digital representation of assets. This tool supports applications like digital nameplates and asset management, ensuring uniform software structures and security for lifecycle access. The association also manages working groups to harmonize developments, offers training to facilitate industry adoption, and provides open-source resources for its members. IDTA promotes collaboration among technology leaders and organizations of all sizes to shape the future of Digital Twin technologies.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/687ce79a6739590001fd2c49/picture,"","","","","","","","","" +University of Technology Nuremberg,University of Technology Nuremberg,Cold,"",190,higher education,jan@pandaloop.de,http://www.utn.de,http://www.linkedin.com/school/technische-universit%c3%a4t-n%c3%bcrnberg,https://www.facebook.com/utn.official,https://twitter.com/utn_nuremberg,"",Nuremberg,Bavaria,Germany,"","Nuremberg, Bavaria, Germany","sustainability, interdisciplinary labs, higher education, cognitive neuroscience, international cooperation, research funding, education, ai research labs, colleges, universities, and professional schools, robotics, research and development, interdisciplinary collaboration, energy systems, future-oriented education, sustainable campus, erc starting grant, university establishment, daad awards, artificial intelligence, digital transformation, interdisciplinary research, agileteams@utn, study programs, environmental services, renewables & environment, education management, mechanical or industrial engineering, information technology & services, research & development",'+49 911 92741020,"Microsoft Office 365, Vimeo, WordPress.org, Mobile Friendly, Apache, Remote, Azure Active Directory B2C, AI, Python, C#","","","","","","",69c27f2ab3c67d00013eab58,"",61131,"The University of Technology Nuremberg (UTN) is a public technical university located in Nuremberg, Bavaria, Germany. Founded on January 1, 2021, it is the first new state-run university in Bavaria since 1978. UTN focuses on an interdisciplinary and international approach, integrating engineering and technical sciences with humanities, natural sciences, and social sciences to prepare students for future labor markets. + +The university emphasizes innovative teaching methods, with courses offered in English and a strong emphasis on collaboration between professors and students. Its core disciplines include engineering, mechatronics, and computer science, supported by specialized labs for hands-on learning. The campus is designed to accommodate up to 6,000 students and features sustainable architecture, including timber construction and green walls. The first building, Cube One, opened in fall 2024, with further development planned to be completed by 2030.",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670241471620290001ddb5cd/picture,"","","","","","","","","" +RIF Institut für Forschung und Transfer e.V.,RIF Institut für Forschung und Transfer e.V,Cold,"",34,research,jan@pandaloop.de,http://www.rif-ev.de,http://www.linkedin.com/company/rif-ev,"","",20 Joseph-von-Fraunhofer-Strasse,Dortmund,North Rhine-Westphalia,Germany,44227,"20 Joseph-von-Fraunhofer-Strasse, Dortmund, North Rhine-Westphalia, Germany, 44227",research services,"","Mobile Friendly, Apache, Remote","","","","","","",69c27f2ab3c67d00013eab5c,"","","Das RIF Institut für Forschung und Transfer, Dortmund, wurde 1990 als Zusammenschluss von Hochschullehrern aus verschiedenen technologieorientierten Universitätsbereichen als ""Dortmunder Initiative zur rechnerintegrierten Fertigung (RIF e.V.)"" zur Stimulierung des Forschungstransfers gegründet. Als eines der Johannes-Rau-Forschungsinstitute des Landes Nordrhein-Westfalen entwickelt RIF Erkenntnisse aus der Grundlagenforschung in Projekten interdisziplinär und anwendungsorientiert so weiter, dass sie von Unternehmen in der Praxis genutzt werden können. +RIF setzt im Bereich Robotertechnik neueste Forschungserkenntnisse in der Simulation und Virtual Reality Technologie unmittelbar in Produkte um. Erkenntnisse aus der Mikrostrukturtechnik, Werkstofftechnologie und –prüfung unterstützen die Verbesserung und nachhaltige Gestaltung von Produkten. Innovative Werkzeuge aus dem Qualitätsmanagement, der Arbeitswissenschaft und der Logistik sowie automatisierungstechnische Lösungen helfen Unternehmen in den verschiedensten Branchen, ihre Produktivität und die Qualität von Produkten zu steigern bzw. Herstellungskosten zu senken. Der ganzheitliche Ansatz des Instituts wird durch Projekte im industriellen Marketing, durch innovative Controlling Konzepte und moderne Methoden der Personalentwicklung sowie des Veränderungsmanagements abgerundet. Über die Konrad Zuse-Forschungsgemeinschaft ist RIF zudem in ein bundesweites, branchenübergreifendes Netzwerk von über 60 deutschen außeruniversitären, gemeinnützigen Forschungseinrichtungen eingebunden.",1990,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670392e54e57260001cefc23/picture,"","","","","","","","","" +niologic GmbH,niologic,Cold,"",18,information technology & services,jan@pandaloop.de,http://www.niologic.de,http://www.linkedin.com/company/niologic,"",https://twitter.com/niologic_de,"",Huerth,North Rhine-Westphalia,Germany,"","Huerth, North Rhine-Westphalia, Germany","predictive firefighting, neural networks, value creation with ai, industrie 40, supply chain, data science & big data, location intelligence, cloud, technical due diligence, automotive, ai & it due diligence, feuerwehr, predictive analytics, retail, logistics, strategieberatung, deep learning, technology consulting, artificial intelligence, machine learning, big data, mapping solutions, datenintegration, ai operations, google cloud machine learning, iot, datenanalyse, predictive policing, ai due diligence, it services & it consulting, data science beratung, ki automatisierung, business intelligence, data lakes, consulting, logistikoptimierung, data science, lakehouse-architekturen, digital transformation, smart analytics, machine learning teams, other scientific and technical consulting services, big data technologien, operational efficiency, e-commerce, ai plattformen, financial services, analytics, ai mergers & acquisitions, rechtssicherheit, transport and logistics, b2b, manufacturing, mlops, ki buy-&-build-strategien, public safety, predictive maintenance, data analytics, services, automation, google cloud, cloud data engineering, legal, finance, satellitendatenanalyse, it due diligence, datenschutz, data strategy, ki due diligence, dataiku plattform, smart factory, robotics, standortanalyse, data warehousing, geodatenanalyse, customer retention, distribution, transportation, information technology & services, enterprise software, enterprises, computer software, management consulting, consumer internet, consumers, internet, mechanical or industrial engineering",'+49 22 33619890,"Outlook, Microsoft Office 365, SendInBlue, Atlassian Cloud, Leadfeeder, Mapbox, Slack, Google Tag Manager, Mobile Friendly, Google Font API, Nginx, WordPress.org, IoT, Android, Remote, Circle, AI, SQL, Frame, IBM Spectrum LSF, Jira, Confluence, Gemini, containerd","","","","","","",69c27f2ab3c67d00013eab4d,7375,54169,"niologic GmbH is a German IT consulting firm founded in 2015, focusing on strategic data insights through cloud, data, and AI technologies. The company supports product teams in launching intelligent products by planning and implementing technical AI platforms and building AI development teams. niologic holds Premier Partner status with Google Cloud for Data & AI and serves as a professional cloud integrator, leveraging its extensive experience in managed hosting across various cloud providers. + +The firm specializes in AI and cloud implementation, data analytics, machine learning, and Smart Factory solutions. It offers services such as predictive modeling, sensor data processing, and secure data management architectures. niologic utilizes tools like Google Cloud, Dataiku, and Apache Spark to deliver scalable solutions tailored to business needs. The company has achieved significant milestones, including the migration of major corporations to Google Cloud and the development of specialized analytics for industries like manufacturing and logistics.",2015,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/681f43373bad6100019d84bd/picture,"","","","","","","","","" +Yaak,Yaak,Cold,"",30,information technology & services,jan@pandaloop.de,http://www.yaak.ai,http://www.linkedin.com/company/yaak-ai,"",https://twitter.com/YaakTech,152 Linienstrasse,Berlin,Berlin,Germany,10115,"152 Linienstrasse, Berlin, Berlin, Germany, 10115","search, open source, ai, robotics, embodied ai, data visualization, machine learning, spatial intelligence, software development, multimodal data, autonomous systems, safety validation, data analysis, open-source tools, developer platform, ai research, automation, scenario testing, data curation, safety metrics, automotive industry, industrial automation, agricultural robotics, cross-modal learning, unified workflows, trend discovery, data gaps, competency metrics, ai builders, platform agnostic, real-world applications, driver coaching, fleet management, advanced driver-assistance systems, large multimodal models, transparency, user control, data privacy, innovation, collaboration, safety validation automation, complex environments, petabyte-scale datasets, robotics ai, open-source models, scenario understanding, data gap analysis, causal confounder masking, multimodal data analysis, sensor modality analysis, natural language search, scenario extraction, visual codebook for images, sensor data integration, autonomous system safety, scenario catalog, prompt attack scene simulation, dataset search, multi-modal dataset augmentation, prompt-based scene generation, transportation & logistics, dataset search and analysis, autonomous vehicle safety, visualization tools, dataset unification, services, model fine-tuning, world model for safety, model alignment, open scenario map, multimodal datasets, ai model training, open-source spatial models, safety metrics estimation, multi-embodiment models, autonomous safety testing, expert demonstration logging, multimodal data unification, multi-modal model pre-training, dataset enrichment, computer systems design and related services, scenario catalog building, safety scoring, model training, embodied ai research, multi-task spatial models, dataset curation, b2b, dataset metrics, autonomous driving, out-of-distribution scene handling, dataset configuration, large-scale datasets, unseen scenario catalog, causal transformer models, open-source dev tools, self-supervised spatial intelligence, scenario search, computer software, information technology & services, mechanical or industrial engineering, artificial intelligence, data analytics",'+49 173 5173740,"Route 53, Amazon SES, Gmail, Google Apps, Amazon AWS, Mapbox, Zendesk, Mobile Friendly, YouTube, Remote",8029999,Other,0,2022-11-01,1200000,"",69c27f2ab3c67d00013eab50,3812,54151,"Yaak is a Berlin-based technology company that specializes in AI-driven platforms focused on driver safety, training, and spatial intelligence. Its core product, SafetyOS, supports multimodal data analysis for autonomous vehicles and robotics. Originally centered on driver coaching using AI and VR, Yaak has shifted to tools that unify, analyze, and validate large volumes of multimodal data, including inputs from cameras, radar, lidar, and audio. + +Founded by a team with backgrounds from notable organizations like Carnegie Mellon and Apple, Yaak aims to enhance safety in both human and autonomous driving. The company has raised €7.3M to expand its vehicle fleet and SafetyOS platform. Its offerings include the Nutron platform for analyzing multimodal datasets and tools for training spatial intelligence in embodied AI systems. Yaak collaborates with driving schools globally to implement SafetyOS, addressing the significant costs associated with ineffective training.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f82d5688a1cd0001d7c881/picture,"","","","","","","","","" +SEMRON,SEMRON,Cold,"",19,semiconductors,jan@pandaloop.de,http://www.semron.ai,http://www.linkedin.com/company/semron-ai,"","",58 Loschwitzer Strasse,Dresden,Saxony,Germany,01309,"58 Loschwitzer Strasse, Dresden, Saxony, Germany, 01309","semiconductor manufacturing, ai hardware design, genai hardware solutions, ai model deployment workflow, multi-bit precision, ai inference hardware, low power ai hardware, hardware for ai models, multi-model processing, semiconductor innovation, edge ai inference chips, manufacturing, b2b, ai hardware manufacturing, ai hardware, ai chip cost reduction, ai hardware innovation, ai hardware scaling, ai hardware ecosystem, cost-effective ai hardware, energy-efficient deep learning hardware, ai hardware startups, ai hardware for iot devices, multi-bit precision ai chips, multi-layer semiconductor, ai model deployment, generative ai, genai hardware, ai on mobile devices, low power ai chips, industrial machinery manufacturing, memcapacitive technology, energy-efficient semiconductor, wearable ai hardware, energy-efficient chips, edge ai devices, microelectronics, hardware accelerators for ai, smartphone ai chips, edge computing hardware, hardware architecture, compute-in-memory, 3d integration, capram technology, parameter density, energy efficiency, edge ai hardware, memcapacitive storage, 3d semiconductor integration, ai inference, 3d memcapacitive architecture, semiconductors, hardware, mechanical or industrial engineering, environmental services, renewables & environment",'+49 1578 5502828,"Cloudflare DNS, CloudFlare Hosting, Mobile Friendly, Linux OS, Android, Docker, Remote, Circle, React Native, Node.js, AI, IoT, Python, PyTorch, Ning, DATEV Accounting",10779999,Other,2750000,2025-02-01,"","",69c27f2ab3c67d00013eab57,3571,33324,"SEMRON is a German AI hardware startup founded in 2020 in Dresden by Aron Kirschen and Kai-Uwe Demasius. The company specializes in developing energy-efficient, 3D-scaled chips for edge AI inference, utilizing their proprietary CapRAM™ memcapacitor technology. This innovative approach allows for large AI models to run on edge devices such as smartphones, wearables, AR/VR headsets, and data glasses, reducing reliance on cloud computing. + +The CapRAM™ chips achieve impressive metrics, including 200 G OPS/mW energy efficiency and 500 M PARAMS/mm² parameter density. They are designed to address challenges like overheating and support multi-bit precision for deep learning. SEMRON's technology enables significant cost reductions and enhances performance, making advanced AI capabilities more accessible for consumer electronics. The company has garnered support from notable investors and accelerators, positioning itself within Dresden's vibrant microelectronics ecosystem.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6963e420db7fc00001cac2c3/picture,"","","","","","","","","" +ATR Software GmbH,ATR,Cold,"",16,information technology & services,jan@pandaloop.de,http://www.atr-software.de,http://www.linkedin.com/company/atr-software-gmbh,"","",5 Marlene-Dietrich-Strasse,Neu-Ulm,Bavaria,Germany,89231,"5 Marlene-Dietrich-Strasse, Neu-Ulm, Bavaria, Germany, 89231","computer vision, iot, produktionssysteme, data analytics, kuenstliche intelligenz, mes, software development, predictive maintenance, produktion 4.0, smart manufacturing, ki in der produktion, sensorfusion, prozessoptimierung, sensorintegration, distribution, manufacturing, b2b, digitalisierung, bildverarbeitungssysteme, information technology, branchenlösungen, automatisierung, predictive analytics, skalierbare lösungen, ki-gestützte wartung, forschung & entwicklung, smartfactory plattform, sicherheitsstandards, datenanalyse, maschinendaten, industrial machinery manufacturing, schnittstellen, automatisierte qualitätskontrolle, echtzeitüberwachung, retrofit industrie 4.0, consulting, automatisierungslösungen, cloud-lösungen, iot gateway, industrial automation, vernetzte produktion, iot integration, opc ua/mqtt, industrie 4.0, maschinenüberwachung, künstliche intelligenz, no-code plattform, industrieprotokolle, effizienzsteigerung, softwareentwicklung, echtzeit-datenverarbeitung, predictive quality, digitale zwillinge, edge computing, services, artificial intelligence, information technology & services, mechanical or industrial engineering, enterprise software, enterprises, computer software","","Outlook, Google Tag Manager, Mobile Friendly, Apache, WordPress.org, Android, IoT, Data Analytics, React Native, Node.js, Angular, TypeScript, Javascript","","","","","","",69c27f2ab3c67d00013eab5a,3571,33324,"Wir bei ATR Software entwickeln seit mehr als 30 Jahren innovative Software, die den Verantwortlichen und Mitarbeitern in der Produktion ihre tägliche Arbeit erleichtert. Speziell für KMU ist es aus unserer Erfahrung heraus wichtig, als Systemanbieter ein möglichst breites Spektrum an Lösungen qualitativ hochwertig anzubieten. + +Deshalb beschäftigen wir uns mit allen relevanten Bereichen der Digitalisierung in der Produktion. Mit unserer umfassenden Softwareplattform decken wir alles aus einer Hand ab, was Unternehmen zur Abbildung ihrer Prozesse zwischen dem ERP-System und den Maschinen benötigen. Schwerpunkte sind dabei die Produktionsplanung, die Kommunikation mit dem Werker und die Maschinenüberwachung. Ergänzend können dann weitere Module unserer Plattform aus den Bereichen MES, IoT, Bildverarbeitung und KI eingesetzt werden. + +Durch unser starkes Forschungsnetzwerk und unser Engagement in Branchenverbänden verknüpfen wir neueste Forschungsergebnisse mit allen relevanten Fragestellungen aus der industriellen Produktion. Die innovativen Ansätze unseres MES überzeugten zum Beispiel auch das Bundesministerium für Wirtschaft und Energie, sodass wir für InnoMES eine Förderung im Rahmen des Zentralen Innovationsprogramms Mittelstand erhalten haben. Mit einem Ohr immer am Puls der Zeit und dem anderen bei unseren Kunden, schaffen wir Lösungen, die wirklich einen Unterschied machen. + +Wenn Sie zu den Unternehmen gehören, die mutig den Sprung in die Digitalisierung wagen, stehen wir Ihnen als verlässlicher Begleiter zur Seite.",1992,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/673d6cde429c3e0001384fc7/picture,"","","","","","","","","" +Bosch Digital Twin Industries,Bosch Digital Twin Industries,Cold,"",12,information technology & services,jan@pandaloop.de,http://www.bosch-digital-twin-industries.com,http://www.linkedin.com/company/bosch-digital-twin-industries,"","","",Ludwigsburg,Baden-Wuerttemberg,Germany,"","Ludwigsburg, Baden-Wuerttemberg, Germany","software development, digital transformation, energy cost reduction, hybrid models for failure prediction, energy & utilities, condition-based maintenance scheduling, digital twin for metals processing, api integration, b2b, industrial data integration, performance diagnostics, ai, consulting, asset reliability, predictive diagnostics, operational efficiency, sensor data analytics, proactive maintenance, failure signature analysis, fault prediction, power generation, asset optimization, industrial asset management, machine learning, manufacturing efficiency, predictive maintenance, process industries, services, industrial machinery manufacturing, energy consumption optimization, predictive analytics, real-time monitoring, digital twin for power plants, digital twin, condition-based monitoring, process optimization, digital twin for chemical industries, asset health monitoring, virtual asset representation, industrial automation, asset lifecycle management, manufacturing, industrial process optimization, scalable software, synthetic data generation, cloud-based solutions, digital twin for electric vehicle manufacturing, industrial iot, energy management, energy efficiency, scalability, distribution, information technology & services, artificial intelligence, enterprise software, enterprises, computer software, mechanical or industrial engineering, oil & energy, environmental services, renewables & environment","","Outlook, Microsoft Azure Hosting, VueJS, Atlassian Cloud, SignalR, Mapbox, MongoDB, MailJet, Slack, Amazon SES, Salesforce, Google Tag Manager, Shutterstock, Mobile Friendly, Google Analytics, React, Multilingual, AppDynamics, iTunes, Facebook Login (Connect), Facebook Widget, Google Analytics Ecommerce Tracking, Twitter Advertising, SmartRecruiters, Vimeo, Cedexis Radar, ON24, Facebook Custom Audiences, Google Maps, Adobe Media Optimizer","","","","","","",69c27f2ab3c67d00013eab5d,3829,33324,"Bosch Digital Twin Industries specializes in digital transformation by creating virtual representations of physical industrial assets. Founded in 2018 in Bangalore, India, the company has grown into a global leader in digital twin technology for smart manufacturing. It operates under Bosch Business Innovations and has a strong presence in Europe, the Middle East, and the Americas. + +The company offers Integrated Asset Performance Management (IAPM) solutions that leverage artificial intelligence and machine learning. Their platform features a cyber-physical system with layers for data extraction, integration, analysis, and personalized insights. Key capabilities include predictive failure detection, condition-based maintenance, energy optimization, and overall equipment effectiveness improvement. Bosch Digital Twin Industries serves various sectors, including oil and gas, chemical manufacturing, and power generation, providing tailored software to meet the specific needs of each industry. Their solutions aim to enhance operational efficiency and reduce costs for industrial clients.",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66dec672923b000001fedee8/picture,"","","","","","","","","" +N Robotics,N Robotics,Cold,"",17,machinery,jan@pandaloop.de,http://www.nrobotics.com,http://www.linkedin.com/company/n-robotics,"","","",Berlin,Berlin,Germany,"","Berlin, Berlin, Germany","industrial machinery manufacturing, ros compatibility, diversity in robotics, robotics sustainability, 3d printing, reliable robotics products, b2b, real-time data processing, universal remote control for robots, robotics open hardware, motion planning, robot kinematics, industrial applications, open-source hardware, software engineering, legged robots, live map visualization, product customization, diversity in tech, robotics community support, remote control systems, robot ecosystem berlin, robotic software development, transportation & logistics, sustainable entrepreneurship, microcontroller firmware, industrial robotics, autonomous wheeled robots, system integration, mobile robotics ecosystem, robot ecosystem, sensor fusion, map visualization, robotics for industrial automation, robotics startup berlin, robotics innovation hub, customizable robotics, robotics, machine learning, industrial automation, research robotics, manufacturing, autonomous robots, robotic control algorithms, open-source software, perception algorithms, robot control systems, robotic hardware design, full-stack robotics, mechanical or industrial engineering, information technology & services, artificial intelligence","","Cloudflare DNS, Gmail, Google Apps, Webflow, Slack, Mobile Friendly, Remote, Autodesk Fusion 360 Manage PLM, Autodesk Inventor","",Seed,0,2024-11-01,"","",69c27f2ab3c67d00013eab51,3711,33324,"N Robotics is a mobile robotics company based in Berlin, Germany, dedicated to creating a comprehensive ecosystem around mobile robotics and artificial intelligence. The company focuses on innovation, offering purpose-built solutions that cater to researchers, developers, and makers. N Robotics emphasizes reliability, open-source software and hardware, and full customizability to meet specific needs. + +The company offers a universal remote control that is compatible with any robot using the Robot Operating System (ROS). Additionally, N Robotics provides full-stack solutions that include advanced software for seamless integration and fleet management. Their products are designed to be fully customizable, allowing users to adapt them for various applications. N Robotics is recognized for its commitment to responsible entrepreneurship and diversity, positioning itself as a key player in the evolving robotics sector.",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/686b373ec6d2230001db0a15/picture,"","","","","","","","","" +German Data Science Society (GDS) e.V.,German Data Science Society e.V,Cold,"",13,information technology & services,jan@pandaloop.de,http://www.gds-society.de,http://www.linkedin.com/company/gds-society,http://www.facebook.com/BMWGroup,http://twitter.com/BMWGroup,54 Prinzregentenstrasse,Munich,Bavaria,Germany,80538,"54 Prinzregentenstrasse, Munich, Bavaria, Germany, 80538","network, events, data science, it services & it consulting, statistical methods, data infrastructure, data science networking, data science in finance, data science in manufacturing, mlops, data science in automotive, deep learning, data science projects, b2b, education, data science in insurance, data science education, data science in industry, data science society, legal, data science in research, data engineering, data access, data science community, legal frameworks, data governance, professional development, data analytics, data analysis, consulting, data science research, industry collaboration, data science policy, data science workshops, knowledge exchange, ai in healthcare, data science for climate modeling, professional organizations, quantum computing, data science conference, research and education, data privacy, data science policy advocacy, non-profit, information technology, data visualization, artificial intelligence, ai in industry, machine learning, networking and events, services, data science in public sector, information technology & services, civic & social organization, nonprofit organization management","","Outlook, WordPress.org, Mobile Friendly, Apache","","","","","","",69c27f2ab3c67d00013eab52,8999,81392,"The German Data Science Society (GDS) e.V. is a non-profit association dedicated to supporting data scientists in Germany. Founded with input from business leaders and professors from prestigious institutions, GDS promotes professional development, networking, and collaboration among academia, industry, and research. The organization aims to enhance the field of data science by integrating university activities and establishing communication structures for its members. + +GDS organizes various events, including conferences and the German Data Science Days, to foster collaboration and share knowledge on data science topics. The society focuses on continuous education and provides information on relevant regulations through working groups and studies. Membership is open to those interested in joining the community, which includes partnerships with leading global companies like Munich Re, Allianz, and BMW, enhancing access to the latest developments in data science and AI.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f7ac469effb60001d40bc6/picture,"","","","","","","","","" +Embedded Software Engineer,Embedded Software Engineer,Cold,"",12,information technology & services,jan@pandaloop.de,http://www.embedded-software-engineering.de,http://www.linkedin.com/company/embedded-software-engineer,https://www.facebook.com/esekongress/,"",Rablstrasse,Munich,Bavaria,Germany,81669,"Rablstrasse, Munich, Bavaria, Germany, 81669","embedded software, fachzeitschrift, iso 26262, c programmierung, embedded systems, ai, embedded security, automotive software, iot, ki, safety, software engineering, technology, information & media, linux tracing infrastruktur, multicore software-implementierung, open source supply-chain-attacke, software publishing, supply chain security, information technology and services, b2b, software development, embedded software engineering, misra c:2025, iot & embedded ki, ki-gestütztes qualitätsmanagement, c/c++ für embedded, edge computing in embedded, computer systems design and related services, requirements engineering, rust in embedded, embedded linux, embedded agile, open source, echtzeitbetriebssysteme, rtos-unterstützung, automotive embedded software, hardware abstraction layer, linux realtime, trace-tools, ki in software-engineering, autonomous vehicles software, electrical equipment, appliance, and component manufacturing, softwaretest & qualitätssicherung, cybersecurity, funktionale sicherheit, services, education, embedded hardware & software, hardware, information technology & services, computer software","","Outlook, Microsoft Office 365, Linkedin Marketing Solutions, Facebook Widget, Facebook Custom Audiences, DoubleClick, DoubleClick Conversion, Google Tag Manager, Mobile Friendly, Facebook Login (Connect), Google AdSense, Google Dynamic Remarketing","","","","","","",69c27f2ab3c67d00013eab54,7375,54151,embedded-software.engineer is Germany's leading specialist information offering for embedded software professionals in all industries.,2016,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f067439fdd270001e174d0/picture,"","","","","","","","","" +Aqrose Technology,Aqrose Technology,Cold,"",40,machinery,jan@pandaloop.de,http://www.aqrose.com,http://www.linkedin.com/company/aqrose-technology,"","","",Berlin,Berlin,Germany,"","Berlin, Berlin, Germany","machine vision, industry inspection, ai, deep learning, vision solution consulting, automation machinery manufacturing, defect classification, ai in semiconductor industry, ai defect detection in automotive, ai algorithms, ai platform, ai defect classification, ai defect detection software, ai process automation, ai defect image batch generation, consulting, ai industrial solutions, ai quality inspection solutions, artificial intelligence, ai defect detection in electronics, computer systems design and related services, ai intellectual property, ai industrial applications, ai quality control, b2b, ai defect detection in power batteries, quality control, ai in smart manufacturing, manufacturing, industrial quality inspection, ai vision system, ai software copyrights, ai defect detection in medicine, ai deployment in factories, industrial automation, ai defect recognition, ai algorithms from tsinghua university, ai industrial defect detection, ai industrial automation, ai patents, ai defect detection, industrial ai vision, ai defect recognition in manufacturing, ai vision algorithm platform, ai defect detection in semiconductors, ai innovation awards, ai in automotive industry, ai industrial deployment, ai research and development, software development, ai product deployment, ai defect classification algorithms, ai image recognition, ai in electronics manufacturing, ai defect detection in pcb, embedded ai products, ai vision platform, ai cloud platform, ai software platform, services, ai for manufacturing, ai defect generator, healthcare, education, information technology & services, mechanical or industrial engineering, health care, health, wellness & fitness, hospital & health care",'+49 162 9665238,"Amazon CloudFront, Route 53, Amazon AWS, Outlook, Microsoft Office 365, VueJS, Slack, Nginx, Google Font API, Mobile Friendly, Google Tag Manager",28000000,Series B,20000000,2020-11-01,"","",69c27f2ab3c67d00013eab46,3829,54151,"Founded in 2017, Aqrose Technology is a leading provider of industrial AI solutions, pioneering the application of AI in manufacturing. + +We integrate AI, large models, computational imaging, and robotics to deliver a full suite of products — including AI inspection toolkits, quality inspection systems, video analysis platforms, enterprise AI models, and customized industrial solutions. + +Our solutions help manufacturers reduce defects, boost yield, and accelerate digital transformation, addressing challenges such as limited defect data, fragmented scenarios, and high robustness demands. + +We have empowered 1,200+ clients across 50+ industries with 20,000+ AI system deployments operating in 1,000+ distinct applications worldwide. + +Headquartered in Beijing and Singapore, Aqrose has branches in Suzhou, Shenzhen, Hsinchu, Berlin, Tokyo, and Seoul, serving global industry leaders with scalable and reliable AI vision systems.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6732135825f0be00012c238b/picture,"","","","","","","","","" +IWT Wirtschaft und Technik GmbH,IWT Wirtschaft und Technik,Cold,"",24,think tanks,jan@pandaloop.de,"",http://www.linkedin.com/company/iwt-bodensee,"","",14 Fallenbrunnen,Friedrichshafen,Baden-Wuerttemberg,Germany,88045,"14 Fallenbrunnen, Friedrichshafen, Baden-Wuerttemberg, Germany, 88045","elektromagnetische vertraeglichkeit, veranstaltungsmanagement, innovationsmanagement, ros, autonomes fahren, mobilitaet der zukunft, augmented reality, emobilitaet, forschung, teststrecke friedrichshafen, cloud computing, digitalisierung, innovationsvermarktung, robotik, technologietranfer, menschroboterkollaboration, weiterbildungen, information technology & services, enterprise software, enterprises, computer software, b2b",'+49 75 414029410,"Outlook, Microsoft Office 365, Mobile Friendly, Bootstrap Framework, Woo Commerce, WordPress.org, Apache, Render","","","","","","",69c27f2ab3c67d00013eab4f,"","","IWT Wirtschaft und Technik GmbH, also known as IWT, is a non-profit organization based in Friedrichshafen, Germany. It operates as a subsidiary of the Association of Supporters and Alumni of DHBW Ravensburg and focuses on networking companies and research institutions. IWT's mission is to support partners in implementing technical innovations and navigating digital transformation, while promoting vocational education and advancing science and research. + +The institute offers services across five main areas: digitalization in production and product development, digitalization in mobility, digital infrastructure, innovation networks, and continuing education and events. IWT supports regional companies in their innovation and research initiatives, leveraging a broad network of technical and innovation experts. Recent projects include the AnnA project, which focuses on autonomous harvesting and thinning. IWT collaborates with various industrial partners and is recognized as a partner of the industry-oriented university of applied sciences in Ravensburg.",2010,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/687b6b65f1d60c000116224a/picture,"","","","","","","","","" +FIM Research Center for Information Management,FIM Research Center for Information Management,Cold,"",120,research,jan@pandaloop.de,http://www.fim-rc.de,http://www.linkedin.com/company/fim-forschungsinstitut,https://facebook.com/kernkompetenzzentrumfim,https://twitter.com/fimresearch,12 Universitaetsstrasse,Augsburg,Bavaria,Germany,86159,"12 Universitaetsstrasse, Augsburg, Bavaria, Germany, 86159","strategic itmanagement, itsecurity & data protection, digital life, energy & critical infrastructure, innovation management, valuebased business process management, itsupported financial management, customer relationship management, research services, digital transformation, co2-tracking, prototyping, digitalisierung, digital technologies, process mining, digital sustainability, digital ecosystems, platform economy, socio-technical perspective, wirtschaftsinformatik, research and development in the physical, engineering, and life sciences, artificial intelligence, information technology and services, responsible digitalization, internet of things, data analytics, nachhaltigkeit, b2b, twin transformation, government, digital innovation, automation, energy transition, higher education, system development, sustainable development, green it, digital health, decarbonization technologies, interdisciplinary research, digital identity, applied research projects, blockchain, forschung, energy_utilities, crm, sales, enterprise software, enterprises, computer software, information technology & services, education management, sustainability, environmental services, renewables & environment, health, wellness & fitness",'+49 821 5984801,"Outlook, Mobile Friendly, WordPress.org, Nginx, Ubuntu","","","","","","",69c27f2ab3c67d00013eab47,8731,54171,"FIM Research Center for Information Management, based in Bavaria, Germany, is a prominent research institution focused on interdisciplinary information management and digital innovation. Established in 2002, it became a cross-university network in 2023 through a partnership between the University of Bayreuth and the Technical University of Applied Sciences Augsburg. FIM combines the expertise of 12 professors and over 100 doctoral students to tackle challenges in various sectors, emphasizing practical training in digitization. + +FIM conducts research across multiple domains, including digital business, manufacturing, health, and sustainability. Its methodological strengths include digital innovation management, strategic IT management, and user analytics. The center is well-versed in key digital technologies such as artificial intelligence, the Internet of Things, and blockchain. FIM also offers consulting services in digital innovation and IT management, alongside software development and prototyping, aiming to create practical solutions for real-world problems.",2002,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670c1355c4fdb9000162f6e3/picture,"","","","","","","","","" +Ultramarin,Ultramarin,Cold,"",40,financial services,jan@pandaloop.de,http://www.ultramarin.ai,http://www.linkedin.com/company/ultramarin-gmbh,"","",43A Schoenhauser Allee,Berlin,Berlin,Germany,10435,"43A Schoenhauser Allee, Berlin, Berlin, Germany, 10435","artificial intelligence, financial economics, finance, machine learning, software engineering, deep learning, asset management, capital markets, portfolio management, datenvisualisierung, aktienresearch, investment management, predictive analytics, datengetriebenes investment, ki-modelle lernen adaptiv, financial services, aktienstrategien, alternative investments, datenbasierte portfoliooptimierung, quantitatives asset management, ki-basierte prognosemodelle, indexfonds, quantitative investmentstrategien, diversifikation, aktive etfs, ki-gestützte indexentwicklung, nachhaltige anlagen, private mandate, investment funds, risiko-management, api-schnittstellen, datenpunkte, marktüberwachung 24/7, index-optimierung, asset allocation, risk management, performance tracking, api-integration, services, aktienmarktanalyse, maßgeschneiderte fonds, maßgeschneiderte investmentlösungen, financial technology, investmentfonds, ki-gestützte esg-integration, ki-gestützte prognosen, innovative finanzprodukte mit ki, strukturiertes produkt, performance-optimierung, automatisierte aktienanalyse, ki in asset management, nachhaltigkeit, strukturelle produkte, ki-gestützte aktienresearch-tools, esg-kriterien, index tracking error, aktive etfs mit ki-optimierung, datengetriebene risikobewertung, systematische anlageansätze, datenanalyse, b2b, globale aktieninvestitionen, securities and commodity contracts intermediation and brokerage, fundamentale risikomodelle, deep tech investment, globale aktienmärkte, indexlösungen, ki-gestützte fonds, financial advisory, automatisierte entscheidungsfindung, risk assessment, information technology & services, enterprise software, enterprises, computer software, finance technology, financial consulting, consulting, management consulting",'+49 30 555785450,"Route 53, Gmail, Google Apps, Microsoft Office 365, Amazon AWS, Mobile Friendly, AI",11000000,Venture (Round not Specified),0,2025-01-01,"","",69c27f2ab3c67d00013eab4b,6732,5231,"Ultramarin GmbH is a Vienna-based company that specializes in artificial intelligence applications for asset management. Formerly known as Othoz GmbH, Ultramarin is recognized for its innovative approach to AI-driven investment solutions. The company boasts an interdisciplinary team of experts in machine learning, asset management, computer science, mathematics, and physics. + +Ultramarin emphasizes a strong research culture to model complex financial market dynamics and integrate them with modern investment processes. This enables the company to deliver customized investment strategies that address market complexities and provide sustainable value to clients.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f9623c1c10a50001e20c68/picture,"","","","","","","","","" +MIDAS Lab,MIDAS Lab,Cold,"",12,higher education,jan@pandaloop.de,http://www.mlmia-unitue.de,http://www.linkedin.com/company/midas-lab,"","",Hoppe-Seyler-Strasse,Tuebingen,Baden-Wuerttemberg,Germany,72076,"Hoppe-Seyler-Strasse, Tuebingen, Baden-Wuerttemberg, Germany, 72076","research and development in the physical, engineering, and life sciences, machine learning, probabilistic inference, clinical workflows, medical image classification, medical classification tasks, artificial intelligence, education, spurious correlation detection, brain aging autoencoder, ai in healthcare, medical image pipelines, medical pipelines, neuroimaging, few-shot learning, meta-learning, interpretable ai, healthcare, deep learning, counterfactual explanations, health data science, medical image analysis conferences, robust machine learning, miccai learn2learn challenge, medical image reconstruction, medical imaging research, clinical decision support, autoencoder, medimeta dataset, uncertainty quantification, deep neural networks, uncertainty estimates, autoencoders, generative modeling, medical meta dataset, uncertainty in mri, medical image analysis, spatio-temporal models, medical datasets, robust ai, uncertainty propagation, cross-domain few-shot learning, interpretability, meta-dataset, generative models, interpretable machine learning, uncertainty estimation, medical image pipelines robustness, medical image classifiers, information technology & services, health care, health, wellness & fitness, hospital & health care","","NSOne, Amazon AWS, Mobile Friendly, Google Tag Manager, reCAPTCHA","","","","","","",69c27f2ab3c67d00013eab53,8099,54171,"We are an interdisciplinary research group of scientists from the Department of Diagnostic and Interventional Radiology at the University Hospital in Tuebingen, Germany and the Max Planck Institute for Intelligent Systems, Germany.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66dbeef679116e0001c50cb1/picture,"","","","","","","","","" +HITeC e.V. - Hamburg Informatik Technologie-Center,HITeC e.V,Cold,"",35,research,jan@pandaloop.de,http://www.hitec-hamburg.de,http://www.linkedin.com/company/hitec-hamburg,"","",30 Vogt-Koelln-Strasse,Hamburg,Hamburg,Germany,22527,"30 Vogt-Koelln-Strasse, Hamburg, Hamburg, Germany, 22527","it-expertise, universität hamburg, informatik, big data anwendungen, digitale stadt hamburg, ki-start-up auxiliary ai, forschung in der informatik, innovation, security, anwendungsorientierte forschung, consulting, research and development in the physical, engineering, and life sciences, technology transfer, kooperationsprojekte, universitätsnahes forschungszentrum, technology consulting, security forschung hamburg, projektmanagement, kooperationen, innovationsförderung, b2b, government, research and development in computer science, innovative it-lösungen, unternehmensgründung, technologietransfer hamburg, higher education, unabhängige forschungsorganisation, forschungszentrum, rescue-mate krisenmanagement, digitale transformation, nonprofit organization, technologieentwicklung, services, forschung, technologietransfer, education, non-profit, management consulting, education management, nonprofit organization management",'+49 40 428832612,"Mobile Friendly, Apache, WordPress.org","","","","","","",69c27f2ab3c67d00013eab48,7375,54171,"HITeC is the Research and Technology Transfer Center of the Department of Informatics at the University of Hamburg. Due to its independent status, HITeC offers flexible and professional partnership opportunities. HITeC solutions are based on the latest research results and provide advantages by innovative technologies. + +HITeC is a registered, non-profit association, which is supported by members of the Department of Informatics at the University of Hamburg. The association is affiliated with the University of Hamburg. + +Main tasks of HITeC: +- HITeC conveys the knowledge of informatics experts +- HITeC carries out professional project management +- HITeC establishes contacts between companies and students +- HITeC supports start-ups +- HITeC offers courses on job prospects and innovations + +Data Protection Statement (Datenschutzerklärung): +https://www.hitec-hamburg.de/datenschutz +Impint (Impressum): +https://www.hitec-hamburg.de/impressum/ + +Data Protection Statement and Imprint can also be found on our webpage:","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66fbd320b3860800018c0d21/picture,"","","","","","","","","" +ignite AI GmbH,ignite AI,Cold,"",11,information technology & services,jan@pandaloop.de,http://www.ignaite.de,http://www.linkedin.com/company/ignite-ai-gmbh,"","","",Hoppstaedten-Weiersbach,Rhineland-Palatinate,Germany,"","Hoppstaedten-Weiersbach, Rhineland-Palatinate, Germany","it services & it consulting, information technology & services","","Outlook, Microsoft Office 365, Varnish, Mobile Friendly, Bootstrap Framework, AI, Remote, Circle","","","","","","",69c27f2ab3c67d00013eab56,"","","ignaite develops private, locally operated AI systems for organizations that require full control and the highest level of security. We combine local language models, RAG pipelines and on premise AI assistants with our own edge AI hardware to make AI usable directly in industrial and mission critical environments. Our solutions are fully sovereign, free from external cloud services and integrate seamlessly with existing IT and OT systems. Companies choose ignaite when standard AI is not permitted, not secure enough or not sufficiently tailored to their needs.",2022,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/677e6486b3ede50001e6ae58/picture,"","","","","","","","","" +AUNOVIS GmbH,AUNOVIS,Cold,"",32,information technology & services,jan@pandaloop.de,http://www.aunovis.de,http://www.linkedin.com/company/aunovis,"","",84 Siemensallee,Karlsruhe,Baden-Wuerttemberg,Germany,76187,"84 Siemensallee, Karlsruhe, Baden-Wuerttemberg, Germany, 76187","digitalisierung, secure scrum, smart factory, industrieautomatisierung, industrie 40, internet of things, cybersecurity, softwareentwicklung, it system custom software development, api-entwicklung, services, cloud-services, prozessautomation, fachberatung, prozessoptimierung, ki, automatisierte schwachstellenanalyse, iso 9001, datenvisualisierung, smart manufacturing, systemintegration, digital twins, branchenlösungen, sicherheitszertifizierung iec 62443, cloud-lösungen, ki-gestützte fehlererkennung, datenanalyse, machine learning, ki-entwicklung, hmi, ar, industrie 4.0 sicherheitskonzepte, maßgeschneiderte softwarelösungen, branchenexpertise, edge-apps, industrieautomation, iec 62443, hmi-entwicklung, cyber resilience act, predictive analytics, vernetzte produktionsumgebungen, automatisierungssoftware, sicherheitszertifikate, information technology, prozessvisualisierung, produktionsdaten, manufacturing, datenmanagement, softwarearchitektur, b2b, vernetzte produktion, condition monitoring, iot-integration, distribution, ki-gestützte lösungen, predictive maintenance, produktionsoptimierung, automatisierungstechnik, innovationskraft, automatisierung, sicherheitsanalysen, vernetzte maschinensteuerung, forschung & entwicklung, edge computing, modulare software, systemmonitoring, iot-apps, ui/ux design, vernetzte energieverteilung, scada, iot, ar-entwicklung, industrie 4.0, custom software, sicherheitszertifizierung, ar-basierte assistenzsysteme, maßgeschneiderte entwicklung, partnernetzwerk, industrial automation, ki-basierte prozesssteuerung, smart glasses ar, iot-plattformen für industrie, nachhaltigkeit, vernetzte industrieanlagen, consulting, cybersecurity-standards, automatisierte datenanalyse, edge-apps für fertigung, edge-computing-lösungen, cloud-integration, cra-workshop, scada & hmi, individuelle software, siemens-partner, software development, industrie 4.0 plattformen, computer systems design and related services, ar-kameras kalibrierung, forschungspartner, scada-systeme, information technology & services, artificial intelligence, enterprise software, enterprises, computer software, mechanical or industrial engineering",'+49 721 9861590,"Outlook, Microsoft Office 365, Hubspot, Shutterstock, Mobile Friendly, Google Tag Manager, Apache, WordPress.org, DoubleClick, Remote, Xamarin, React Native, Node.js, IoT, AI, Javascript, Azure Data Lake Storage, .NET, Kubernetes, Argon CI/CD Security, TypeScript","","","","","","",69c27f2ab3c67d00013eab5b,3571,54151,"Wir entwickeln Software mit Leidenschaft. + +AUNOVIS vereint innovative Technologien mit spezialisierter Expertise, um maßgeschneiderte Lösungen für die Smart Industry und Smart Factory zu realisieren. + +Mit über 25 Jahren Erfahrung bieten wir umfassendes Know-how in Sachen Automatisierung und digitaler Transformation.",1999,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670c7a58500d41000188ba43/picture,"","","","","","","","","" +L3S Research Center,L3S Research Center,Cold,"",110,research,jan@pandaloop.de,http://www.l3s.de,http://www.linkedin.com/company/l3s-research-center,"","",9A Appelstrasse,Hanover,Lower Saxony,Germany,30167,"9A Appelstrasse, Hanover, Lower Saxony, Germany, 30167","web science, web science & artificial intelligence, research services",'+49 511 7625316,"Microsoft Office 365, WordPress.org, Apache, Mobile Friendly, AI","","","","",16000000,"",69c27f102c783d0001c92d52,"","","L3S Research Center is a prominent German research institute established in 2001 through a collaboration between Leibniz Universität Hannover and Technische Universität Braunschweig. Located in Hannover, it focuses on advancing artificial intelligence (AI), Web Science, and digital technologies to promote ethical and sustainable digital transformation. The center employs around 200 researchers from various fields, including computer science, law, philosophy, and sociology, dedicated to developing trustworthy AI methods. + +The research at L3S encompasses several core areas, such as text mining, natural language processing, machine learning, and scene analysis. Its applications span diverse fields, including medicine, production, mobility, energy, and education. L3S is involved in initiatives like the European Digital Innovation Hub DAISEC, which focuses on AI and cybersecurity, and KISSKI, an AI service center supporting small and medium-sized enterprises. The center collaborates with universities and industry partners across Europe, contributing to various EU projects and research consortia to drive innovation and societal impact.",2001,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6842c7f75bb2b2000150f21e/picture,"","","","","","","","","" +Institute Industrial IT,Institute Industrial IT,Cold,"",53,research,jan@pandaloop.de,http://www.init-owl.de,http://www.linkedin.com/company/initowl,"","",6 Campusallee,Lemgo,North Rhine-Westphalia,Germany,32657,"6 Campusallee, Lemgo, North Rhine-Westphalia, Germany, 32657","intelligente analyseverfahren in der automation, industrielle echtzeitkommunikation, menschtechnikinteraktion, medizinische datenbanken, industrielle automation, engineering und konfiguration, authentifikation, informationsfusion, industrielle bildverarbeitung, research services",'+49 527 18610,"Mobile Friendly, YouTube, Nginx","","","","","","",69c27f102c783d0001c92d54,"","","The Institute Industrial IT (inIT) is a prominent research institute at Technische Hochschule OWL in Germany, established in 2006. It specializes in industrial information technology, focusing on the integration of information and communication technologies with automation technology. This approach aims to enhance intelligent automation across various sectors, including mechanical engineering, food technology, manufacturing, healthcare, and digital community services. The institute's guiding principle, ""Where IT meets Automation,"" promotes seamless communication and information availability through advanced technologies like machine learning. + +inIT engages in research and development to tackle challenges in industrial communication, image processing, and human-technology interaction. It conducts publicly funded projects and industrial commissioned research, contributing to innovation in technology and education. The institute has secured over 40 million euros in funding, supporting numerous projects and producing a significant body of scientific literature. With around 65 employees, inIT emphasizes the development of self-optimizing systems and technologies for Industry 4.0, fostering collaboration with industry partners and enhancing the educational experience for students.",2006,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69a81fc63ed07f0001d2284a/picture,"","","","","","","","","" +Data Machine Intelligence,Data Machine Intelligence,Cold,"",16,information technology & services,jan@pandaloop.de,http://www.datamachineintelligence.eu,http://www.linkedin.com/company/data-machine-intelligence-solutions,"","",10 Corneliusstrasse,Munich,Bavaria,Germany,80469,"10 Corneliusstrasse, Munich, Bavaria, Germany, 80469","ai, defence, cloud, drones, synthetic data, ai training, ai certification, autonomy, aerospace, automation, explainable ai, simulation, scaling, uav, software defined defense, it system data services, consulting, research and development in the physical, engineering, and life sciences, simulation platform, real-time ai evaluation, system-of-systems simulation, ai model training, deep learning, ai engineering, government, ai development tools, b2b, human-ai teaming, ai for military applications, operator-in-the-loop testing, aerospace & defense, software engineering, high-integrity automation, information technology, system performance benchmarking, airborne special missions, certification support, software development, system integration, autonomous systems, predictive analytics, services, ai in defense systems, scalable aerospace ai, edge case creation, synthetic data generation, transportation & logistics, aviation & aerospace, information technology & services, artificial intelligence, enterprise software, enterprises, computer software",'+49 89 24417857,"Route 53, Gmail, Google Apps, Amazon AWS, Google Tag Manager, WordPress.org, Google Font API, Mobile Friendly, Nginx, Node.js, Docker, React Native, Android, IoT, Remote, AI","","","","","","",69c27f102c783d0001c92d5d,8731,54171,"Data Machine Intelligence (DMI) specializes in automation solutions for the aerospace and defense industries. The company provides AI engineering solutions that enable customers to build and update AI systems at scale. DMI aims to enhance the aerospace sector with platforms and services that ensure intelligent and safe automation of vehicles. + +DMI offers a range of services, including the Mission Automation Lab, an engineering platform for developing and optimizing safe AI systems. Their Automation Library features specialized AI models tailored for aerospace applications. Additionally, DMI provides development services that combine AI engineering expertise with human-machine interface knowledge. The company emphasizes ethical and safe AI solutions, focusing on collaboration between humans and automation for positive change. Founded by Max Najork and Martin Lederer, DMI leverages its expertise in aerospace and AI to drive innovation in the industry.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670a224b09952800013a2fb8/picture,"","","","","","","","","" +ScaDS.AI Dresden/Leipzig,ScaDS.AI Dresden/Leipzig,Cold,"",180,research,jan@pandaloop.de,http://www.scads.ai,http://www.linkedin.com/company/scads-ai,"","","",Dresden,Saxony,Germany,"","Dresden, Saxony, Germany","big data, artificial intelligence, data science, research services, ai for public policy, knowledge graphs, ai in transport and mobility, ai in medicine and healthcare, ai lecture series, ai hardware resources, neuro-inspired computing, research and development in the physical, engineering, and life sciences, data analytics, data analytics and big data, data quality assurance, consulting, ai for earth and environmental sciences, ai infrastructure, knowledge representation, data quality, knowledge engineering, big data analytics, open data, life sciences, living lab, ai support projects, data-driven innovation, machine learning, scalability, ai in environmental sciences, federated learning, engineering, data security, data management, ai in medicine, government, ai projects, ai in engineering, ai in social sciences, junior research groups, ai consulting, ai for smart cities, responsible ai, data integration, ai for climate impact, graph-based ai, scalable architectures, ai research, ai professorships, natural language processing, b2b, ai applications, research and development in artificial intelligence, software engineering, services, efficient ai algorithms, ai methodology, ai for life sciences, ai, ai and big data, interdisciplinary research, public engagement, information technology and services, open models, ai publications, ai in earth sciences, ai training, humboldt professorships, ai education, healthcare, education, enterprise software, enterprises, computer software, information technology & services, computer & network security, health care, health, wellness & fitness, hospital & health care","","WordPress.org, Mobile Friendly, Bootstrap Framework, Apache, Remote, AI","","","","",16000000,"",69c27f102c783d0001c92d5e,8731,54171,"ScaDS.AI Dresden/Leipzig is a German national competence center focused on scalable data analytics, artificial intelligence (AI), Big Data, and Data Science. With locations in Dresden and Leipzig, it operates as a permanent research facility that evolved from the ScaDS Big Data Competence Center established in 2014. The center integrates expertise from various partner institutions, including TUD Dresden University of Technology and Leipzig University, and is supported by the Federal Ministry of Research, Technology and Space and the Free State of Saxony. + +The center conducts interdisciplinary research in areas such as Big Data analytics, applied AI, and environmental risk modeling. It develops tools for time series generation, synthetic training data, and custom analytics platforms. ScaDS.AI also offers consulting, training, and collaboration opportunities for companies and professionals. Its Living Lab in Leipzig allows the public to engage with AI and Big Data through interactive demonstrations. Additionally, the center supports education and outreach initiatives to nurture young talent in the fields of AI, Machine Learning, and Data Science.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e74b4518296e00016d65b7/picture,"","","","","","","","","" +Max Planck ETH Center for Learning Systems,Max Planck ETH Center for Learning,Cold,"",23,higher education,jan@pandaloop.de,http://www.learning-systems.org,http://www.linkedin.com/company/center-for-learning-systems,"","","",Tuebingen,Baden-Wuerttemberg,Germany,72076,"Tuebingen, Baden-Wuerttemberg, Germany, 72076","neural circuit reconstruction, computervision, multi-modal foundation models, deep learning, services, micro/nano-robotic systems, computational vision, causal inference in ai, bioinformatics, control, perception-action cycle, bio-inspired robotics, internships, robust model-based control, fairness in machine learning, neuroscience, max planck society, education, artificial systems, bio-inspired systems, learning systems, natural systems, safety and societal impact of ai, micro-robotics, joint research center, learning, robotics, research and development, eth zurich, workshops, interdisciplinary collaboration, perception, bio-hybrid systems, large language models, data science, artificial intelligence, machine learning, interdisciplinary research, computer vision, research and development in the physical, engineering, and life sciences, adaption, ai research, perception in complex environments, doctoral fellowship, research exchange, doctoral program, summer schools, ai, information technology & services, biotechnology, mechanical or industrial engineering, research & development","","Mobile Friendly, WordPress.org, Ubuntu, Phusion Passenger, YouTube, Nginx, Ruby On Rails","","","","","","",69c27f102c783d0001c92d60,8731,54171,"The Max Planck ETH Center for Learning Systems (CLS) is a collaborative academic research center founded in 2015 by ETH Zurich and the Max Planck Society. It focuses on cross-disciplinary research in the design and analysis of learning systems, including machine learning and artificial intelligence. The center combines the engineering expertise of ETH Zurich with the strengths of the Max Planck Institute for Intelligent Systems in areas such as computer science, robotics, and intelligent systems. + +CLS supports a doctoral fellowship program, which is the first joint PhD initiative between ETH Zurich and the Max Planck Society. This program allows students to receive co-supervision from faculty at both institutions and earn their degrees from ETH Zurich. The center also hosts various activities, including summer schools and workshops, fostering collaboration among around 50 faculty members and numerous PhD researchers. CLS aims to advance European competitiveness in learning and intelligent systems through its research and training initiatives.",2015,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6702ce88b8d3d900012703f4/picture,"","","","","","","","","" +Produktion,Produktion,Cold,"",26,publishing,jan@pandaloop.de,http://www.produktion.de,http://www.linkedin.com/company/fachzeitung-produktion,https://facebook.com/produktion.online,https://twitter.com/Produktion_de,1 Justus-von-Liebig-Strasse,Landsberg am Lech,Bavaria,Germany,86899,"1 Justus-von-Liebig-Strasse, Landsberg am Lech, Bavaria, Germany, 86899","produktion, maschinenbau, industrie, technik, wirtschaft, book & periodical publishing, big data, co2-neutral industry, manufacturing innovation, smart factory solutions, future industry technologies, sustainability, future technologies, industrial metaverse, whitepaper reports, sensor technology, supply chain automation, ar in manufacturing, ai in industry, industrial cybersecurity, industry news, research articles, automotive, automation, industrial iot, manufacturing, b2b, industrial research, webinars, cybersecurity in industry, technology trends, industrial media platform, robotics, cybersecurity, high-tech manufacturing, vr applications in manufacturing, industrial automation, information technology, industry news and events, automation solutions, space technology in industry, digital transformation, energy, digital twin, blockchain, services, engineering, sustainable industry, consulting, industry insights, web search portals, libraries, archives, and other information services, quantum computing, electric vehicles, manufacturing technologies, cloud computing, aerospace, predictive maintenance, industrial technology, whitepapers, conferences, ai, 5g/6g connectivity, automation and robotics, machine learning, mechanical or industrial engineering, media, enterprise software, enterprises, computer software, information technology & services, environmental services, renewables & environment, clean energy & technology, artificial intelligence",'+49 819 1125359,"Amazon CloudFront, Amazon SES, Outlook, Microsoft Office 365, Amazon AWS, Open AdStream (Appnexus), Google Tag Manager, reCAPTCHA, Mobile Friendly, Apache, DoubleClick, Remote","","","","",3806000,"",69c27f102c783d0001c92d61,2741,519,"Wer das Geschehen in der Industrie nicht nur verfolgen, sondern auch verstehen will, liest die Fachzeitung ""Produktion"". Das Traditionsblatt und Flaggschiff von mi connect erreicht Industrie-Entscheider in der Vorstands- und Geschäftsführungsebene genauso wie das Top-Management aus der Produktion, der Konstruktion, der Logistik sowie aus den Gewerken, die eng mit der Produktionsleitung zusammenarbeiten. Damit deckt Produktion das komplette Buying-Center im industriellen Einkaufsprozess ab und berücksichtigt Markenentscheider ebenso wie Technologie- und Mengenentscheider. Die Redaktion bringt Technik und Wirtschaft für ihre anspruchsvollen Leser auf den Punkt: ausführliche, selbstrecherchierte Berichte zu Trends und Innovationen werden ergänzt durch Praxisberichte und Berichte über Produkt-Innovationen. Wettbewerbs- und Marktanalysen verhelfen den Lesern zu fundierten unternehmerischen Entscheidungen. Zu den wichtigen Industriemessen bietet Produktion im Stamm- wie auch in Sonderheften umfassende Überblicke für eine optimale Messevorbereitung ihrer Leser. Und soll es einmal richtig in die Tiefe gehen, punktet die Redaktion mit ihren ""Produktionsmagazinen"" zu Themen wie beispielsweise der Instandhaltung. + +Impressum: https://bit.ly/39YzVee +Datenschutz: https://bit.ly/31m8I1e",1961,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f8af17a24ad90001d91c14/picture,"","","","","","","","","" +BAIOSPHERE,BAIOSPHERE,Cold,"",18,information technology & services,jan@pandaloop.de,http://www.baiosphere.org,http://www.linkedin.com/company/baiosphere,"","",6 Friedenstrasse,Munich,Bavaria,Germany,81671,"6 Friedenstrasse, Munich, Bavaria, Germany, 81671","netzwerk & kuenstliche intelligenz, technology, information & internet, ki in umwelttechnik, ki-weiterbildung bayern, b2b, ki-events, digital transformation, ki in smart cities, ki-cluster bayern, ki-qualifikation, ki-weiterbildung, netzwerk, ki in mobilität, ki-cluster, ki-transfer, startups, hochschulen, ki-strategie, ki in smart manufacturing, higher education in computer science, forschung ki bayern, machine learning, ki in nachhaltigkeit, regulatory compliance, artificial intelligence, deep learning, pharmaceuticals, research and development in artificial intelligence, forschungsinstitute, government, ki-professuren bayern, ki-start-up förderung, künstliche intelligenz, cloud security, mobility, bayern, ki-netzwerk bayern, research and development in the physical, engineering, and life sciences, health, ki-community, ki-standortförderung, ki-investitionen, ki-professuren, ki-infrastruktur, forschung, ki-transformation, ki-ethik, innovation, data science, ki-politik, sustainability, ki-politikberatung, events, robotics, ki-workshops, ki-research, ki-ökosystem, ki-startups bayern, research, ki-forschungseinrichtungen, ki-anwendung bayern, ki-weiterbildungsangebote, ki-forschung bayern, entwicklung, ki-innovation labs, technology and innovation, ki in data science, ki-entwicklung bayern, ki-innovation bayern, ki-internationalisierung, anwendung, ki-konferenzen, ki in medizin, ki in cybersecurity, unternehmen, ki in robotik, ki-partner, ki in biomedicine, healthcare, education, non-profit, information technology & services, medical, environmental services, renewables & environment, mechanical or industrial engineering, health care, health, wellness & fitness, hospital & health care, nonprofit organization management",'+49 89 21909940,"Route 53, Outlook, Microsoft Office 365, WordPress.org, Nginx, Vimeo, Mobile Friendly, Apache, Remote","","","","","","",69c27f102c783d0001c92d55,8731,54171,"BAIOSPHERE is the central AI ecosystem in Bavaria, Germany, aimed at establishing the region as a leading hub for artificial intelligence research and application. It connects key players from science, business, and society, fostering collaboration and innovation. Established through the High-Tech Agenda by various Bavarian state ministries, BAIOSPHERE serves as a bridge between research and practical implementation of AI. + +The organization offers a range of programs to support AI initiatives, including the AI-COMPASS tool for project orientation, an AI-Innovation Accelerator, and networking groups known as BAIOSPHERE Circles. It also conducts workshops in partnership with the Speinshart Scientific Center to assist researchers in developing their ideas and securing funding. BAIOSPHERE emphasizes strategic AI development, security, and European sovereignty in AI, positioning Bavaria as a powerhouse for applied AI. The ecosystem includes partnerships with major global technology companies and regional industrial leaders, contributing to the advancement of AI across various sectors.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67596446f3c8c800013875f9/picture,"","","","","","","","","" +automatica,automatica,Cold,"",24,events services,jan@pandaloop.de,http://www.automatica-munich.com,http://www.linkedin.com/company/automatica,http://www.facebook.com/AUTOMATICAfair,https://twitter.com/automaticafair,Am Messesee,Munich,Bavaria,Germany,81829,"Am Messesee, Munich, Bavaria, Germany, 81829","automation, integrated assembly solutions, industrial robotics, machine vision, professional service robotics, robotics, assembly & handling, solutions for industry 40, service robotics, remote handling, cutting-edge research, digitalization, cloud computing, end effectors, optical technology, battery tech, industry networking, medical robotics, motion control solutions, collaborative innovation, motion damping, automation solutions, digital transformation, research and development, marketing services, robotic research collaborations, feasibility studies, high-tech platform, research collaboration, energy efficiency, robot calibration, industry decision-makers, exhibitor networking, robotic handling systems, robotic systems, system calibration, munich trade show, supply chain, renewable energy automation, developer challenges in robotics, sensor technology, ai society, technology showcase, gas springs, industrial manufacturing, logistics, robotic safety certification, industry innovation, consulting, industry collaboration, autonomous production, robot calibration services, industry sectors, robotic research from universities, sustainable production, technology transfer, predictive maintenance, robotics trade fair, innovation, optical tech in robotics, industrial innovation, all other miscellaneous manufacturing, robot control systems, international trade fair, battery and energy storage, service robots, automation consultancy, manufacturing, b2b, robotic components, robotics industry, information technology, robot programming, digital twin, robot model testing, ai society summit, technological advancements, ai in automation, robotic process automation, robotic assembly solutions, robotics simulation, international exhibitors, workshops and seminars, assembly solutions, motion control, manufacturing technology, hands-on testing, automation technologies, manufacturing automation, innovation showcase, services, industrial robots, distribution, sustainable manufacturing, manufacturing solutions, robotics research, mobility tech, ai, system integration, vibration isolation, healthcare technology, technology providers, robot safety standards, munich, robotic end effectors, robotic system retrofit, cad/cam services, robotic system certification, industrial automation, developer challenges, global industry event, renewable energies, handling systems, factory automation, exhibitor directory, assembly technology, handling technology, trends, value chain, components, systems, applications, trade fair, knowledge transfer, collaboration, event networking, press releases, accreditation, media partnerships, industry insights, future of work, green technologies, co2 neutrality, visitor experience, exhibitor shops, stand construction, market trends, visitor services, registration, digital integration, pioneering technologies, press center, trade fair photos, event schedule, accommodation services, app for attendees, mechanical or industrial engineering, information technology & services, enterprise software, enterprises, computer software, research & development, marketing & advertising, environmental services, renewables & environment, clean energy & technology, apps, public relations & communications",'+49 89 94921483,"MailJet, Eloqua, Microsoft Office 365, Microsoft Azure Hosting, Outlook, VueJS, reCAPTCHA, Google Tag Manager, Mobile Friendly, Multilingual, Bootstrap Framework, Google Analytics Ecommerce Tracking, Piwik, Smart AdServer","","","","","","",69c27f102c783d0001c92d56,8731,33999,"automatica is the leading trade fair for smart automation and robotics, taking place biennially in Munich, Germany. Organized by Messe München GmbH and VDMA Robotics + Automation, it serves as a key platform for showcasing innovations and industry trends relevant to business. The event typically occurs in June and attracts global leaders and experts from various sectors. + +The fair covers the entire value chain of industrial automation, featuring industrial and service robotics, machine vision systems, sensor technology, and assembly solutions. It addresses significant global challenges such as autonomous production, climate protection, and the shortage of skilled workers. In addition to the exhibition, automatica offers a supporting program with insights from top robotics and AI experts, along with hands-on demonstrations of current robot models. The next edition, automatica 2027, is scheduled for June 22-25, 2027.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66fa867ced79ca00019fbe6f/picture,"","","","","","","","","" +Data Spree GmbH,Data Spree,Cold,"",11,information technology & services,jan@pandaloop.de,http://www.data-spree.com,http://www.linkedin.com/company/data-spree,"","",2 Waldenserstrasse,Berlin,Berlin,Germany,10551,"2 Waldenserstrasse, Berlin, Berlin, Germany, 10551","artificial intelligence, deep learning, computer vision, it services & it consulting, surface defect detection, ai for manufacturing, embedded ai, data annotation, ai solutions, manufacturing, robotics, ai development, predictive maintenance, traffic monitoring, services, industrial automation, automotive, ai inference engine, quality assurance, industrial machinery manufacturing, model training, ai platform, automated quality inspection, data management, b2b, image processing, traffic safety ai, edge ai, machine vision, depalletization ai, semiconductor, logistics, workflow automation, food processing, distribution, information technology & services, mechanical or industrial engineering, food & beverages, consumer goods, consumers",'+49 30 22011836,"Route 53, Outlook, Microsoft Office 365, Amazon AWS, VueJS, Leadfeeder, Webflow, Slack, Mobile Friendly, Remote","","","","","","",69c27f102c783d0001c92d64,3829,33324,"Since 2018 we provide leading software technology to unleash the full potential of AI in the world of computer vision. +Our approach is capable of developing and implementing solutions for almost every vision problem along all kinds of industries.",2018,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68cf89116f2b610001164b01/picture,"","","","","","","","","" +ifib - Institut für Informationsmanagement Bremen,ifib,Cold,"",26,higher education,jan@pandaloop.de,http://www.ifib.de,http://www.linkedin.com/company/ifib-bremen,"","","",Bremen,Bremen,Germany,"","Bremen, Bremen, Germany","medienbildung, forschung, evaluation, datafizierung, forschungsdatenmanagement, it-kompetenz, algorithmische diskriminierung, government, consulting, partizipation, maschinelles lernen, digitale verwaltungsverfahren, learning analytics, erklärbare ki, education, digitale infrastrukturen in kommunen, künstliche intelligenz, data science, falschinformation erkennen, ml, ai, mensch-computer-interaktion, socio-technische innovationen, critical data studies, ki in der schule, partizipative forschung, digital literacies, public administration, bildungstechnologien, transparente ki, automatisierte text- und bildanalyse, organisationsentwicklung, research and development, services, digital-audits, science and technology studies, research and development in the social sciences and humanities, organisatorische gaps, digitale transformation, b2b, non-profit, research & development, nonprofit organization management",'+49 421 21856580,"Outlook, Microsoft Office 365, Apache, Bootstrap Framework, Mobile Friendly","","","","","","",69c27f102c783d0001c92d65,8731,54172,"The ‘Institut für Informationsmanagement Bremen GmbH (ifib)' is a research institution recognized by the state of Bremen and an affiliated institute of the University of Bremen. Our work focuses on current developments, challenges and the possibilities for designing the digital transformation in our research areas. Together with project participants we transfer our gained knowledge into products and solutions. This helps to make organizational and administrative processes more applicable and future-proof through organizational development, business process optimization and digital audits. In doing so, we take ethical, social and legal aspects into account: user orientation, participation and sharing, access, transparency, accessibility, data protection, privacy and diversity.",2002,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67765cdd9e8c230001789e11/picture,"","","","","","","","","" +GITO Media,GITO Media,Cold,"",17,publishing,jan@pandaloop.de,http://www.gito.de,http://www.linkedin.com/company/gito-mbh-verlag,"","",23 Kaiserdamm,Berlin,Berlin,Germany,14057,"23 Kaiserdamm, Berlin, Berlin, Germany, 14057","big data, customer relationship management, digitale fabrik, gito events, industiral internet of things, kundenanforderungen, product lifecycle management, produktionstechnik, wandel, prof gronau, norbert gronau, erp abloesung, automatisierung, cad, cam, cloud services, cybersecurity, internet of things, mes, produktdatenmanagement, produktentwicklung, vierte industrielle revolution, wachstum, erp projekt, erp auswahl, artificial intelligence, computer aided quality, energiemanagement, enterprise content management, human machine interface, kuenstliche intelligenz, produktion, prozesse, smart factory, automatisierung von ablaeufen, erp, fehlerquellen, fertigungssteuerung, social media, transformation, wettbewerbsfaehigkeit, industrie 40 management, factory innovation, automotive, business intelligence, digitale transformation, erp management, industrie 40, industry 40, innovationsfaehigkeit, zukunftssicher, digitalisierung, wirtschaftsinformatik, additive fertigung, cae, digitale geschaeftsmodelle, enterprise resource planning, fabriksoftware, internet der dinge, mom, produktionsmanagement, robotik, zukunft der industrie, enterpriseresourceplanning, acatech, automation, cyberphysische produktionssysteme, datengetrieben, ki, production, produktqualitaet, supply chain management, wertschoepfungskette, ai, blockchain, cax, computer aided manufacturing, dokumentenmanagement, extended reality, future factory, iiot, industrie, kostenreduzierung, prozessoptimierung, erp einfuehrung, book & periodical publishing, knowledge management, industry 4.0, digital twin, management consulting, erp systems, safety and security, b2b, cloud computing, modular learning factories, process automation, learning factories, data security, data governance, robotic process automation, description language, it architecture, cloud platforms, digital transformation, business analytics, software engineering, digital platform frameworks, manufacturing execution systems, publishing, supply chain, additive manufacturing, crm, manufacturing, manufacturing systems, big data analytics, smart knowledge services, ai in manufacturing, digitalization, knowledge modeling, it-architektur, information technology, web search portals, libraries, archives, and other information services, it infrastructure, factory management, services, enterprise software, enterprises, computer software, information technology & services, sales, consumer internet, consumers, internet, analytics, logistics & supply chain, media, computer & network security, information architecture, mechanical or industrial engineering",'+49 30 41938364,"Remote, AI, Zoho","","","","","","",69c27f102c783d0001c92d68,3571,519,"GITO mbH is a Berlin-based publishing house that specializes in industrial information technology and organization. Founded in 1994, the company focuses on bridging scientific research with practical business applications. GITO provides expert publications, journals, events, and awards that cover topics such as Industry 4.0, IIoT, IoT, Smart Factory, and ERP. + +The company offers a variety of print and online publications, including peer-reviewed journals like *Industry 4.0 Science* and *ERP Management*, as well as guides and encyclopedias. GITO also hosts specialized events that facilitate networking and knowledge sharing among industry professionals. Their awards, such as the Factory Innovation Award and ERP System of the Year, recognize excellence in the field. GITO aims to deliver practical knowledge and insights to help professionals navigate the complexities of digital transformation in manufacturing and related industries.",1994,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6782b3bb1f68260001ad39a4/picture,"","","","","","","","","" +KI Park,KI Park,Cold,"",39,think tanks,jan@pandaloop.de,http://www.kipark.de,http://www.linkedin.com/company/kipark,"","",48 Lankwitzer Strasse,Berlin,Berlin,Germany,12107,"48 Lankwitzer Strasse, Berlin, Berlin, Germany, 12107","community building, kooperation, government, research collaboration, hpc (high performance computing), ethical ai, 6g innovation, nlp, startups, regulatorik, ki ecosystem, wissensaustausch, ai research, europa, regulatory frameworks, non-profit, expert groups, research and development in the physical, engineering, and life sciences, gans, flagship projects, ki challenges, deep learning, digital twins, innovation hub, robotics in ki, technology transfer, explainable ai, ethik in ki, infrastrukturzugang, ki-infrastruktur, workshops, european ki network, innovation, services, private 5g, forschung, ki-community, technologischer fortschritt, unternehmen, quantum computing, synthetic data, anomaly detection, b2b, information technology & services, künstliche intelligenz, ki-anwendungen, datenplattformen, ai in industry, machine learning, technologieentwicklung, events, research and development, federated learning, netzwerk, sustainable ai, deutschland, ai testing grounds, consulting, quantum ai, education, natural language processing, artificial intelligence, nonprofit organization management, research & development","","Outlook, Microsoft Office 365, Slack, Hubspot, Google Tag Manager, Mobile Friendly, Nginx, WordPress.org, Quantcast, Linkedin Marketing Solutions, AI, CloudFlare, CookieYes, Google Analytics, Microsoft Application Insights, New Relic, Twitter Advertising, Wordpress","","","","","","",69c27f102c783d0001c92d53,8731,54171,"KI Park e.V. is a non-profit innovation ecosystem based in Berlin, Germany. It brings together research institutions, startups, established companies, investors, and social and political actors to advance artificial intelligence (AI) technologies. The organization aims to position Germany and Europe as leaders in AI by 2030, focusing on various technologies such as Deep Reinforcement Learning, Natural Language Processing, and Generative AI. + +As a neutral platform, KI Park fosters collaboration across sectors and organizations. It offers networking opportunities, AI real labs for testing innovations, and support for cross-sector projects. Members benefit from knowledge exchange and innovation coaching, connecting European startups with corporate partners to facilitate the production of AI solutions. The ecosystem is supported by founding members and strategic partners, including notable organizations like Start2 Group and Wilo Group, which enhance its mission and outreach.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/690667731ca8230001a51be8/picture,"","","","","","","","","" +AI.HAMBURG,AI.HAMBURG,Cold,"",12,nonprofit organization management,jan@pandaloop.de,http://www.ai.hamburg,http://www.linkedin.com/company/ai-hamburg,https://www.facebook.com/AISTARTUPHUBHAMBURG,https://twitter.com/hamburg_ai,5 Neuer Jungfernstieg,Hamburg,Hamburg,Germany,20354,"5 Neuer Jungfernstieg, Hamburg, Hamburg, Germany, 20354","artificial intelligence & machine learning, non-profit organizations, services, ai ecosystem, ai in healthcare, ai.hamburg, ai research, ai policy advocacy, ai knowledge transfer, ai application support, ai networking, hamburg, ai startups, ai in public sector, ai summit, ai community building, machine learning, information technology and services, ai digital transformation, ai events, ai promotion, ai industry collaboration, ai academy, ai in logistics, information technology & services, ai industry partners, ai in maritime industry, public administration, ai training programs, ai community, ai ecosystem hamburg, ai education, b2b, ai knowledge exchange, ai community slack, research and development in the physical, engineering, and life sciences, artificial intelligence, ai ecosystem development, applied ai hamburg, ai innovation, ai in energy sector, ai, education services, ai in manufacturing, ai project implementation, ai workshops, ai technology transfer, management consulting services, ai solutions, ai conferences, consulting, ai for smes, healthcare, education, non-profit, manufacturing, transportation & logistics, energy & utilities, nonprofit organization management, health care, health, wellness & fitness, hospital & health care, mechanical or industrial engineering",'+49 40 24822851,"Gmail, Google Apps, Hubspot, Slack, Google Tag Manager, Google Analytics, Google Font API, YouTube, Apache, Cedexis Radar, WordPress.org, Vimeo, Linkedin Marketing Solutions, Adobe Media Optimizer, Bootstrap Framework, Mobile Friendly, Remote, AI, Android","","","","","","",69c27f102c783d0001c92d57,7375,54171,"AI.HAMBURG is a not-for-profit initiative established in 2019 by Petra Vorsteher and Ragnar Kruse, aimed at enhancing the knowledge and application of artificial intelligence (AI) in the Hamburg metropolitan area. The initiative focuses on promoting AI and machine learning to boost competitiveness and economic growth among local companies and startups. AI.HAMBURG seeks to position Hamburg as a leader in AI by fostering collaboration between industry, academia, and science, while emphasizing ethical practices and data protection. + +The organization offers various platforms for networking and knowledge sharing, particularly targeting small and medium-sized enterprises (SMEs). It provides a free Slack community for members to exchange ideas, a newsletter with AI news and events, and hosts events like AI Info Breakfast and AI Summit. AI.HAMBURG also maintains a directory of local companies involved in AI technologies and supports education and training initiatives to help businesses integrate AI solutions effectively. Through its partnerships with local universities and organizations, AI.HAMBURG contributes to building a robust AI ecosystem in the region.",2019,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670a5224c24a7c0001011a2f/picture,"","","","","","","","","" +KI-Allianz Baden Württemberg,KI-Allianz Baden Württemberg,Cold,"",18,information services,jan@pandaloop.de,http://www.ki-allianz.de,http://www.linkedin.com/company/ki-allianz,"","","",Stuttgart,Baden-Wuerttemberg,Germany,"","Stuttgart, Baden-Wuerttemberg, Germany","artificial intelligence & kuenstliche intelligenz, ki-standort, ki-implementierung, non-profit, research and development in the physical, engineering, and life sciences, politik, wissensaustausch, ki in smart cities, ki-challenge, ki-modelle, digital transformation, innovation, ki-allianz baden-württemberg, ki-investoren plug-in, ki-anwendungen, public administration, community management, ki-start-ups, regionale projekte, ki in textilbranche, wissenschaft, construction & real estate, government, vernetzung, consulting, ki in mobilität, artificial intelligence, manufacturing, education, healthcare, netzwerkbildung, ki-datenmanagement, nachhaltiges wachstum, b2b, technologieförderung, regionale angebote, ki-technologien, ki-ethik, regionale zusammenarbeit, information technology, transportation & logistics, ki in produktion, digitale transformation, ki in umwelttechnik, energy & utilities, services, ki-förderung, ki-innovation lab, ki-regulierung, ki-accelerator, ki-entwicklung, ki in medizin, verwaltung, research and development, wissenstransfer, forschung und entwicklung, wirtschaft, ki-datenplattform, distribution, nonprofit organization management, information technology & services, mechanical or industrial engineering, health care, health, wellness & fitness, hospital & health care, research & development","","MailJet, Outlook, Microsoft Office 365, Slack, Apache, Mobile Friendly, Nginx, Google Tag Manager, WordPress.org, AI, Remote","","","","","","",69c27f102c783d0001c92d5a,8999,54171,"KI-Allianz Baden-Württemberg eG is a cooperative organization established in 2023, based in Stuttgart, Germany. It connects businesses, science, politics, and public administration to promote the ethical and sustainable use of artificial intelligence (AI), particularly for small and medium-sized enterprises (SMEs), startups, and public institutions. The organization aims to create a competitive AI ecosystem in Baden-Württemberg by facilitating knowledge transfer and regional collaboration. + +The alliance coordinates several application-oriented projects, including the AI Innovation Lab in Karlsruhe and the FRAI.accelerator in Freiburg, which support SMEs in developing AI-based innovations. It also leads the AI Data Platform, providing access to high-quality data sets and AI models. Through these initiatives, KI-Allianz Baden-Württemberg eG addresses the AI needs of various stakeholders, enhancing innovation and value creation across the region.",2023,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67692e05aa352b0001f1174c/picture,"","","","","","","","","" +hessian.AI,hessian.AI,Cold,"",59,higher education,jan@pandaloop.de,http://www.hessian.ai,http://www.linkedin.com/company/hessian-ai-the-hessian-center-for-artificial-intelligence,"","","",Darmstadt,Hesse,Germany,64293,"Darmstadt, Hesse, Germany, 64293","artificial intelligence, machine learning, ai projects, ai for industrial automation, ai for medical diagnostics, robotics, ai for biodiversity, ai supercomputer, ai research, ai systems, reasonable ai, government, ai ecosystem, ai startup support, ai model hub, ai education, ai for robotics, ai startups, natural language processing, ai competitions, services, big data, ai innovation, ai innovation lab, ai education programs, ai for healthcare, research and development in the physical, engineering, and life sciences, deep learning, ai in neurorehabilitation, ai consulting, ai research projects, ai for biodiversity monitoring, high-performance computing, ai infrastructure, ai for industry, b2b, ai training, third wave of ai, data science, higher education, computer vision, information technology and services, ai development, consulting, ai for society, ai supercomputing, ai for sustainable development, ai for data security, software development, research and development, healthcare, education, manufacturing, information technology & services, mechanical or industrial engineering, enterprise software, enterprises, computer software, education management, research & development, health care, health, wellness & fitness, hospital & health care","","SendInBlue, Hubspot, reCAPTCHA, YouTube, WordPress.org, Apache, Ubuntu, Mobile Friendly, AI","","","","","","",69c27f102c783d0001c92d62,8731,54171,"hessian.AI is the Hessian Center for Artificial Intelligence located in Hesse, Germany. The center focuses on advancing the third wave of AI, which emphasizes human-like communication, reasoning, and autonomous adaptation. It aims to make AI accessible and balanced, fostering economic growth and societal benefits through research, education, and practical applications. With over 60 academic members, hessian.AI collaborates with more than 40 research and industry partners across various fields, including medicine, finance, and engineering. + +The center offers an AI Innovationlab equipped with a high-performance computing cluster for machine and deep learning projects. It supports joint research initiatives, dual PhD programs, and technology transfer to enhance entrepreneurship and startup growth. Through its AI Startup Rising program, hessian.AI provides mentoring and resources for AI startups, helping them develop market-ready innovations. The center plays a crucial role in Hesse's AI ecosystem, promoting interdisciplinary collaboration and addressing economic and societal challenges through AI applications.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6769394c8bb7970001be1b13/picture,"","","","","","","","","" +relAI Konrad Zuse School of Excellence,relAI Konrad Zuse School of Excellence,Cold,"",47,research,jan@pandaloop.de,http://www.zuseschoolrelai.de,http://www.linkedin.com/company/relai-konrad-zuse-school-of-excellence,"","","",Garching,Bavaria,Germany,85748,"Garching, Bavaria, Germany, 85748","research services, ai safety standards, artificial intelligence, ai trustworthy systems, ai in robotics, reliable ai, ai in security, ai model efficiency, ai societal impact, services, ai model validation, ai model explainability, education, ai industry partners, ai model robustness, ai safety, ai research, research and development in the physical, engineering, and life sciences, trustworthy ai, ai in critical applications, ai policy and ethics, ai research funding, ai robustness testing, ai safety in critical domains, ai ethical guidelines, ai privacy-preserving, ai innovation, ai industrial exposure, ai in medicine, ai model architectures, ai in autonomous systems, data analytics, machine learning, ai risk assessment, ai collaboration, data science, ai in healthcare, ai education, ai safety research, healthcare, ai fault tolerance, ai reliability, computer vision, ai academic collaboration, ai system development, b2b, ai societal implications, ai model transparency, higher education, ai reliability metrics, ai deployment safety, ai in decision-making, information technology & services, health care, health, wellness & fitness, hospital & health care, education management","","Mobile Friendly, Nginx, WordPress.org, AI","","","","","","",69c27f102c783d0001c92d6a,7375,54171,"The Konrad Zuse School of Excellence in Reliable AI (relAI) is a graduate school operated by the Technical University of Munich (TUM) and Ludwig-Maximilians-Universität München (LMU). It is funded by the German Academic Exchange Service (DAAD) as part of Germany’s AI Strategy. The school focuses on training master's and doctoral students in computer science, mathematics, and related fields to develop reliable AI systems, emphasizing ethical, safety, security, and privacy aspects. + +relAI aims to address the reliability challenges in AI, particularly in public-interest areas like robotics safety and data confidentiality. The program offers research-based training, industrial exposure, and cross-disciplinary mentoring, integrating academic fellows with various research organizations and industrial partners. It provides scholarships for master's students and fully funded PhD positions, along with a range of training components, including lectures, internships, and soft skills courses. The research focus includes reliable AI development in fields such as healthcare, robotics, and algorithmic decision-making.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f3c3644465b3000171e7b5/picture,"","","","","","","","","" +Tübingen AI Center,Tübingen AI Center,Cold,"",56,higher education,jan@pandaloop.de,http://www.tuebingen.ai,http://www.linkedin.com/company/tuebingen-ai,"","","",Tuebingen,Baden-Wuerttemberg,Germany,"","Tuebingen, Baden-Wuerttemberg, Germany","kuenstliche intelligenz & maschinelles lernen, ai in biological systems, algorithm development, sustainability, ai in academia, ai community, ai in multi-modal systems, ai for transportation, ai startups, ai in public sector, ai in social sciences, ai for society, ai in scientific discovery, ai in cognitive science, ai education programs, continual learning, ai safety, scientific publications, ai in robotics, reinforcement learning, ai in education, innovation, ai in societal decision-making, ai tools, ai safety evaluation, ai for healthcare, elias research network, artificial intelligence, ai in autonomous vehicles, ai publications, ai workshops, ai in transportation, research and development in artificial intelligence, autonomous systems, ai in sustainability, robotics, ai conferences, ai in manufacturing, ai education, ai frameworks, european ai, computer vision, ai in real-world applications, medical ai, neural networks, machine learning, ai training programs, cyber valley startups, ai in industry, interdisciplinary ai, ai for education, research and development in the physical, engineering, and life sciences, ai innovation, sustainable ai, ai in industrial automation, ai in education technology, online learning, cyber valley, ai funding, ai ethics, ai for manufacturing, government, elias network, scientific research, ai outreach, ai for robotics, multi-disciplinary research, medical diagnostics, ai research, data management, robust ml, ai in data-efficient learning, causal ml, deep learning, higher education, ai safety and alignment, industry collaboration, ai societal impact, ai in environmental monitoring, ai ethics guidelines, robustness, ai in policy and ethics, ai in healthcare, ai in medicine, ai algorithms, ai collaboration, ai in healthcare diagnostics, ai in precision medicine, european ai ecosystem, explainable ai, ai in climate systems, ai in society, ai in human-computer interaction, ai talent development, causal inference, robust learning systems, molecular biology, eliza program, phd program, aida, digital economy, collaborative research, open-source solutions, ai applications, transfer project proposals, funding for ai projects, joint degree programs, interdisciplinary education, hands-on experience, ai competencies, language models, personalized education, ai outreach programs, community engagement, programming courses, youth education, coding competitions, advanced ai technologies, human-robot interaction, intelligent systems, ai incubator, scientific collaboration, data-driven solutions, technology transfer, project funding, ai network, international cooperation, ai in agriculture, skills training, technology partnerships, b2b, healthcare, education, environmental services, renewables & environment, information technology & services, mechanical or industrial engineering, e-learning, internet, computer software, education management, health care, health, wellness & fitness, hospital & health care",'+49 7071 2970880,"Mobile Friendly, Apache, AI","","","","","","",69c27f102c783d0001c92d59,8731,54171,"The Tübingen AI Center (TUE.AI) is a prominent research hub located at the University of Tübingen, in collaboration with the Max Planck Institute for Intelligent Systems. It consists of 25 machine learning research groups and over 300 PhD students and postdocs dedicated to advancing machine intelligence. The center focuses on developing AI systems that are robust, efficient, and accountable, with an emphasis on generalization, learning from limited examples, and inferring causal relationships. + +TUE.AI is part of Germany's national AI ecosystem and has been recognized as one of six federally funded AI competence centers since 2022. Its research spans various areas, including computer vision, AI in medicine, and sustainability. The center engages in notable projects such as AI-powered assistants for scientific discovery and collaborations in education. It aims to contribute to the public good through foundational research and open collaborations, enhancing its international reputation in the field of artificial intelligence.",2022,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6702e220bb20d9000198db28/picture,"","","","","","","","","" +SICP – Software Innovation Campus Paderborn,SICP – Software Innovation Campus Paderborn,Cold,"",21,research,jan@pandaloop.de,http://www.sicp.de,http://www.linkedin.com/company/sicp-%e2%80%93-software-innovation-campus-paderborn,"","",2 Zukunftsmeile,Paderborn,North Rhine-Westphalia,Germany,33102,"2 Zukunftsmeile, Paderborn, North Rhine-Westphalia, Germany, 33102","digital transformation, research and development in the physical, engineering, and life sciences, research projects, seamless mobility, b2b, ai research, iot development, software systems, technology transfer, digital ecosystems, research and development, ai, digital sovereignty, industry collaboration, innovation networks, smart energy, transdisciplinary collaboration, research campus, human-centered digitality, software innovation, services, software engineering, digital infrastructure, sustainable digital ecosystems, digital solutions, high-performance computing, artificial intelligence, automated systems, information technology, sustainable computing, human-machine interaction, iot, data-driven innovations, software development, interdisciplinary research, ai in energy, advanced computing, digital security, knowledge transfer, education, software projects, digital resilience, data analytics, research & development, information technology & services",'+49 5251 606053,"Mobile Friendly, Piwik, Apache, Remote","","","","","","",69c27f102c783d0001c92d69,8731,54171,"The Software Innovation Campus Paderborn (SICP) is an interdisciplinary research and innovation hub that fosters collaboration between academic institutions and industry. Established in 2013 by Paderborn University and ten regional technology companies, SICP focuses on developing software-driven and data-driven innovations. It serves as a central point for translating research into marketable solutions, bringing together over 30 member companies and professors from Paderborn University. + +SICP specializes in five core areas: Artificial Intelligence, Digital Infrastructure, Digital Security, Human-Centered Digitality, and Software and Service Systems Engineering. The campus supports innovative projects in fields such as smart energy, advanced computing, and seamless mobility. Its services include forming cross-partner project teams, facilitating research partnerships, and promoting technology transfer. Notable projects include TheaterLytics, Smart GM, and climate bOWL, which showcase the campus's commitment to interdisciplinary collaboration and practical application of research.",2013,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6700d7416b5bc900012ff832/picture,"","","","","","","","","" +MI4People,MI4People,Cold,"",14,research,jan@pandaloop.de,http://www.mi4people.org,http://www.linkedin.com/company/mi4people,https://www.facebook.com/MI4People,"",76 Maxhofstrasse,Munich,Bavaria,Germany,81475,"76 Maxhofstrasse, Munich, Bavaria, Germany, 81475","machine intelligence, advanced analytics, data for good, machine learning, deep learning, nonprofit, applied research, rpa, research, artificial intelligence, process mining, tech for good, ai for good, environmental services, public domain results, healthcare services, environmental monitoring, ai in poverty alleviation, public good sector, open-source ai tools, healthcare ai, environmental challenges, social innovation, machine intelligence for public good, poverty reduction, ai for healthcare in developing countries, impact-driven solutions, robotic process automation, data science, ai for pediatric rare diseases, data analytics, ai ethics, ai for disaster response, ethical ai, ai technologies, satellite image analysis for marine litter, ai-driven social research, project management, research projects, sustainability, cloud computing, information technology, wildlife conservation, scientific quality, ngo collaboration, ai for social impact, volunteer data scientists, tailored ai solutions, ai for environmental monitoring, services, ai for addiction therapy, other scientific and technical consulting services, ai for social good, non-profit organization, research and development, ai impact assessment, healthcare, education, non-profit, information technology & services, renewables & environment, health care, health, wellness & fitness, hospital & health care, productivity, enterprise software, enterprises, computer software, b2b, research & development, nonprofit organization management",'+49 176 24973790,"Outlook, Microsoft Office 365, Google Cloud Hosting, Varnish, Mobile Friendly, Wix, Data Analytics, Remote, AI, Canva","","","","","","",69c27f102c783d0001c92d58,8999,54169,"MI4People is a global non-profit organization focused on applied research in Machine Intelligence (MI), including artificial intelligence and data science, for the public good. The organization empowers nonprofit organizations (NPOs) to tackle humanitarian, social, and environmental challenges by providing ethical, open-source AI solutions at no cost. Founded by Dr. Paul Springer and a small team, MI4People aims to enhance MI-based solutions for public benefit and support NPOs in achieving their mission-driven goals. + +The organization employs a phased, scalable approach to foster long-term collaborations with NPOs, offering initial consultations and workshops to identify AI use cases. Key projects include the Soil Quality Evaluation System, General Computer Vision for Healthcare, and AI applications for addiction therapy and pediatric rare diseases. MI4People's services encompass applied research, end-to-end project collaboration, and a platform for project orchestration, ensuring impactful outcomes for public welfare.",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69b289fed880dc00015fe255/picture,"","","","","","","","","" +OmegaLambdaTec GmbH,OmegaLambdaTec,Cold,"",25,information technology & services,jan@pandaloop.de,http://www.omegalambdatec.com,http://www.linkedin.com/company/omegalambdatec-gmbh,"","",8 Lichtenbergstrasse,Garching,Bavaria,Germany,85748,"8 Lichtenbergstrasse, Garching, Bavaria, Germany, 85748","predictive analytics, big data analysis, smart big data, realtime analytics, custom data analytics, deep learning, simulation, data science solution, business analytics, machine learning, forecasting, optimization, it services & it consulting, co2 monitoring, climate resilience modeling, ai platform, sensor data analysis, resource optimization, ai model development, cost reduction, smart data lösungen, simulationen, predictive asset management, ai engines, scenarios simulation, künstliche intelligenz, government, physical analytics methods, data science, consulting, manufacturing, data analytics, energiewende, smart grid optimization, healthcare, ai prototyping, supply chain & logistics, resource efficiency, big data, satellite data analysis, b2b, energy transition algorithms, computer systems design and related services, digital twin, anomaly detection, information technology & services, ai libraries, supply chain scenario planning, algorithmen-as-a-service, financial services, healthcare signal processing, energy & utilities, services, high-performance ai, physical analytics, ai support services, data-driven business models, water leak detection, deeptech, autonomous systems simulation, predictive maintenance, finance, distribution, enterprise software, enterprises, computer software, artificial intelligence, mechanical or industrial engineering, health care, health, wellness & fitness, hospital & health care",'+49 89 54842520,"Outlook, Microsoft Office 365, Slack, Vimeo, Apache, Mobile Friendly, WordPress.org, IoT, Android, Render, React Native, Node.js, AI, Data Analytics",150000,Other,150000,2017-12-01,"","",69c27f102c783d0001c92d5b,7375,54151,"Sustainability aspects are an integrated part of our everyday work at OmegaLambdaTec. + +Our mission: to save valuable energy, natural resources and CO2 by using and apply data-driven insights to a specific problem and data challenge. + +Our main goal is to create pioneering smart data solutions for the key challenges of the energy transition. + +We develop breakthrough Smart Data, Physical Analytics and AI solutions in the areas of data-driven forecasting, anomaly detection, simulation-based optimisation and digital twin simulations for companies, utilities, industry partners and Smart Cities. +With a unique and leading Data Science team of research-experienced astrophysicists we find and design the best solutions for new AI data challenges, develops prototypes and demonstrators of new applications, provides automated solutions for day-to-day business operations, and offers scalable AI cockpits as Algorithm-as-a-Service (AaaS) products. +One of our core offerings is an end-to-end smart grid solution portfolio that enables distribution system operators to optimally prepare, implement and operate current and future smart low voltage grids.",2015,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6870db08b3d1c40001734db9/picture,"","","","","","","","","" +BIFOLD - Berlin Institute for the Foundations of Learning and Data,BIFOLD,Cold,"",86,research,jan@pandaloop.de,http://www.bifold.berlin,http://www.linkedin.com/company/bifoldberlin,"",https://twitter.com/bifoldberlin,10 Kantstrasse,Berlin,Berlin,Germany,10623,"10 Kantstrasse, Berlin, Berlin, Germany, 10623","research services, open source systems, explainable ai in medicine, research and development in the physical, engineering, and life sciences, open source tools, heterogeneous data streams, earth observation data, artificial intelligence applications, data marketplaces, data management systems, data science tools, open source technologies, data management, interdisciplinary research, data quality in big data, data science, consulting, data infrastructures, artificial intelligence, data integration, neuro-symbolic knowledge graphs, data security, interdisciplinary scientific research, b2b, machine learning, data privacy, distributed data processing, ai infrastructure, data infrastructure and data marketplaces, quantum molecular simulation, open source software development, federated data systems, services, research and development in data management and machine learning, ai applications, data engineering, data discovery in data lakes, big data management, ai in humanities, semantic stream processing, education, information technology & services, enterprise software, enterprises, computer software, computer & network security","","Apache, Mobile Friendly, TYPO3","","","","","","",69c27f102c783d0001c92d5f,7375,54171,"BIFOLD, the Berlin Institute for the Foundations of Learning and Data, is a prominent AI research institute located at TU Berlin. Established in 2019 through the merger of the Berlin Big Data Center and the Berlin Center for Machine Learning, BIFOLD is one of six national AI competence centers supported by the State of Berlin and the Federal Ministry of Education and Research. The institute focuses on foundational research that combines Big Data Management and Machine Learning to advance AI technologies in alignment with Germany's National AI Strategy. + +BIFOLD's research spans various areas, including database systems, machine learning, medical informatics, and big data analytics for earth observation. The institute also runs a competitive Graduate School, offering fast-track PhD programs and engaging students in research activities and skill development. BIFOLD collaborates with several prestigious institutions and aims to foster innovation, particularly for startups and interdisciplinary applications, through the prototyping of AI technologies and data science tools.",2019,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6713328a1b65de0001fb560f/picture,"","","","","","","","","" +GEMESYS,GEMESYS,Cold,"",15,computer hardware,jan@pandaloop.de,http://www.gemesys.tech,http://www.linkedin.com/company/gemesys-technologies,"","","",Bochum,North Rhine-Westphalia,Germany,"","Bochum, North Rhine-Westphalia, Germany","digital emulation, neuromorphic computing, circuit synthesis, memristive circuits, computer hardware manufacturing, edge ai, edge ai training, ai hardware research, sparse neural networks, ai hardware development, sparsity and low depth neural networks, brain-inspired hardware, memristor technology, memristor-based chip, ai hardware for mobile devices, energy efficiency, ai hardware revolution, analog chip design, analog ai chip, sustainable ai hardware, ai hardware collaboration, memristor emulation, d2c, ai hardware innovation, low power ai chips, energy & utilities, neuromorphic chip architecture, human brain inspiration, on-device ai training, ai hardware startup, semiconductor and other electronic component manufacturing, ai hardware, ai hardware for sensors, ai democratization, ai inference, ai chip design, b2c, human brain mimicry, analog ai processing, ai inference capabilities, edge computing hardware, brain-inspired architecture, manufacturing, ai training, energy-efficient edge training, ai hardware project, energy-efficient ai, neural network hardware, ai hardware industry, b2b, environmental services, renewables & environment, mechanical or industrial engineering","","Outlook, Microsoft Office 365, Mobile Friendly, Google Analytics, Apache, YouTube, Vimeo, WordPress.org, Remote, AI, Data Analytics",9460000,Seed,9460000,2024-11-01,"","",69c27f102c783d0001c92d63,3671,33441,"GEMESYS is an AI hardware company that specializes in designing neuromorphic chips inspired by the human brain's information processing. The company focuses on addressing key computing challenges in artificial intelligence by creating hardware that allows AI systems to perform at their best. + +The main product from GEMESYS is a fully analog chip that mimics biological brain architecture. This chip is unique in the market as it supports both AI training and inference capabilities at the edge, unlike most AI hardware that typically focuses on one or the other. It enables local training of AI models on devices and sensors, enhances energy efficiency, and improves data processing capabilities. GEMESYS aims to push the boundaries of AI technology by using human brain architecture as a model for its designs.",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67333c41dbda240001f2cf90/picture,"","","","","","","","","" +tracebloc,tracebloc,Cold,"",11,information technology & services,jan@pandaloop.de,http://www.tracebloc.io,http://www.linkedin.com/company/tracebloc,"",https://twitter.com/tracebloc,38 Rosenheimer Strasse,Berlin,Berlin,Germany,10781,"38 Rosenheimer Strasse, Berlin, Berlin, Germany, 10781","technology scouting, machine learning, ai, enterprise, procurement, software development, model encryption, model fine-tuning, secure ai testing, model performance metrics, consulting, information technology and services, services, data privacy, artificial intelligence and machine learning, data security and privacy, government, model leaderboard, compliance and audit logging, enterprise software, gco2e measurement, b2b, vendor model benchmarking, ai model evaluation, computer systems design and related services, fine-tuning models, federated learning, enterprise ai platform, multi-framework support, kubernetes support, secure infrastructure, model benchmarking, use case templates, healthcare, artificial intelligence, information technology & services, enterprises, computer software, health care, health, wellness & fitness, hospital & health care",'+1 425-882-8080,"Microsoft Azure Hosting, Mobile Friendly, Google Tag Manager, Remote, AI, Xamarin, Node.js, IoT, AWS Trusted Advisor, Microsoft Azure Monitor, Docker, Kubernetes, Python, Framer, Material UI, React, React Router, Recharts, Tailwind, Tor, TypeScript, Django, Pytest",2610000,Other,2610000,2025-02-01,"","",69c27f102c783d0001c92d5c,7375,54151,"Tracebloc is a private computer software company founded around 2020, focusing on AI and machine learning platforms. The company specializes in federated learning, allowing machine learning models to be trained on decentralized datasets without sharing sensitive data. This approach supports the development of robust AI algorithms through global data science competitions. + +The platform offers several key services, including hosting competitions for data scientists, secure evaluation of external AI models on client infrastructure, and tools for monitoring experiments and generating performance reports. Major components of the platform include a Model Submission Interface, a Secure Execution Layer, and an Evaluation & Reporting Engine. Tracebloc serves enterprises and research institutions that prioritize data privacy while seeking high-performing AI models. The company generates revenue through competition hosting fees, premium subscriptions, and partnerships for custom AI solutions.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f7aea944b9cb0001d90b14/picture,"","","","","","","","","" +appliedAI Institute for Europe gGmbH,appliedAI Institute for Europe gGmbH,Cold,"",40,information technology & services,jan@pandaloop.de,http://www.appliedai-institute.de,http://www.linkedin.com/company/appliedai-institute-for-europe-ggmbh,"","","",Munich,Bavaria,Germany,"","Munich, Bavaria, Germany","technology, information & internet, information technology & services",'+49 89 262025860,"Gmail, Google Apps, Microsoft Office 365, Hubspot, Slack, Bootstrap Framework, Mobile Friendly, Google Tag Manager, AI, Linkedin Marketing Solutions, Articulate, Moodle","","","","","","",69c27f102c783d0001c92d66,"","","The appliedAI Institute for Europe is a non-profit organization based in Munich, established in 2022. It operates as a subsidiary of the appliedAI Initiative and is a collaboration between UnternehmerTUM and IPAI. The Institute is led by Dr. Andreas Liebl and Dr. Frauke Goll, with support from the KI-Stiftung Heilbronn gGmbH. Its mission is to generate and share high-quality knowledge about trustworthy AI while enhancing the European AI ecosystem. + +The Institute offers a variety of services, including educational programs for small and medium-sized enterprises, research on responsible AI applications, and resources for AI tools. It also facilitates networking and collaboration among stakeholders in the AI field and publishes annual reports analyzing the AI startup landscape in Germany and Europe. Additionally, it maintains a database of AI startups to assist enterprises in finding reliable AI partners.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/684523ddb0968c00012faf7e/picture,"","","","","","","","","" +MISSION KI,MISSION KI,Cold,"",11,information technology & services,jan@pandaloop.de,http://www.mission-ki.de,http://www.linkedin.com/company/mission-ki,"","","",Berlin,Berlin,Germany,"","Berlin, Berlin, Germany","innovation, trustworthy ai, kuenstliche intelligenz, artificial intelligence, vertrauenswuerdige ki, technology, information & internet, research and development in the physical, engineering, and life sciences, ki-standards entwicklung, datenraum-interoperabilität, regulatory compliance, ai made in germany, information technology & services, metadaten-generierung ki, data spaces, vertrauenswürdige ki im gesundheitswesen, fair digital objects, ki-sicherheitsmonitoring, b2b, certifai, ki-entwicklung, ki-standards, government, digital transformation, datenräume, research and development, fraunhofer iais, urban digital twins, ki-qualitätszertifizierung, ki-forschung, pwc deutschland, machine learning, ki-standards deutschland, consulting, ki-infrastruktur, dateninfrastruktur, ki-testing, ki-qualitätsstandards, risk assessment, vertrauenswürdige ki, ki-ökosystem, ki-zentren, ki-innovation, ki-qualitätsprüfung, vde, information technology and services, ai quality & testing hub, ki-standards europa, last-mile-mobilität ki, services, ki-regulierung, healthcare, research & development, health care, health, wellness & fitness, hospital & health care","","","","","","","","",69c27f102c783d0001c92d67,8731,54171,"MISSION KI is the National Initiative for Artificial Intelligence and Data Economy, launched in summer 2023 as a collaboration between acatech and the German Federal Ministry for Digital and Transport. With a funding of €32.5 million, it aims to enhance Germany's role as a leader in AI by fostering the development of trustworthy AI applications. + +The initiative focuses on three main areas: expanding an AI innovation database, promoting trustworthy AI development through quality standards, and supporting AI innovation growth by connecting researchers, start-ups, and established companies. MISSION KI operates AI Innovation & Quality Centers in Berlin and Kaiserslautern, which provide interactive spaces and support for companies to implement AI solutions. Additionally, it offers programs like the AI Founder Fellowship and SME-AI Start-up Matchmaking to facilitate collaborations between small and medium-sized enterprises and AI start-ups. + +Through its efforts, MISSION KI has established numerous partnerships, supported AI spin-offs, and created a robust network across various sectors, all while emphasizing the importance of responsible and practical AI development.",2023,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/687b835de24b010001c49494/picture,"","","","","","","","","" +HR Tech Consulting,HR Tech Consulting,Cold,"",14,management consulting,jan@pandaloop.de,http://www.hr-tech.de,http://www.linkedin.com/company/hr-tech-consulting-gmbh,"","",5 Rheinpromenade,Monheim am Rhein,North Rhine-Westphalia,Germany,40789,"5 Rheinpromenade, Monheim am Rhein, North Rhine-Westphalia, Germany, 40789","hrtech, hr analytics, people analytics, hr arbeit, hr digital, hr consulting, hr technology consulting, hr digital consulting, hrberatung, hr tech, hr technology, business consulting & services, hr-workforce analytics, management consulting services, hr-prozessdigitalisierung, hr-prozessanalyse, management consulting, data security, hr-performance management, hr-analytics, hr-softwarevergleich, consulting, information technology, hr-datenstrategie, hr-strategie, hr-dashboard, hr-digitalisierung, b2b, automatisierte gehaltsabrechnung, hr-kennzahlen, professional, scientific, and technical services, hr-datenqualität, hr-it-strategie, ki im personalwesen, ki-potenzialanalyse, hr chatbots, prozessautomatisierung, hr-datenanalyse tools, datenvisualisierung, hr-reporting, hr-datenmanagement, hr-controlling, ki in recruiting, hr-it-beratung, hr-systemintegration, automatisierung, hr-software auswahl, hr-transformation, services, computer & network security, information technology & services",'+49 2173 2650370,"SendInBlue, Outlook, Microsoft Office 365, Hubspot, Google Tag Manager, Mobile Friendly, Nginx","","","","","","",69c27f94fba67700154d1709,8742,54161,"Wir sind HR Tech Consulting, die ausgezeichnete Boutique-Beratung für HR-Digitalisierung, People Analytics und KI in HR. Seit 2021 begleiten wir Unternehmen aus dem Mittelstand auf dem Weg zu einer modernen, datenbasierten Personalarbeit. Mit über 50 erfolgreichen Projekten verbinden wir HR-Know-how mit technologischem Verständnis. Unser Ansatz: von HR für HR – praxisnah, effizient und nachhaltig. + +👉 HR-Prozesse & Software-Auswahl: Wir analysieren und digitalisieren HR-Prozesse, zeigen Automatisierungspotenziale auf und begleiten euch bei der Auswahl und Einführung passender Software – neutral und unabhängig. + +👉 HR-Analytics: Wir helfen, HR-Daten zu analysieren, zu verknüpfen und sichtbar zu machen. Von Reporting und Controlling bis People Analytics entwickeln wir Strategien, Dashboards und Kennzahlen, die fundierte Entscheidungen ermöglichen. + +👉 Künstliche Intelligenz in HR: Wir identifizieren KI-Potenziale, entwickeln Strategien für den gezielten Einsatz und setzen Lösungen um – von Automatisierung bis zu intelligenten Analysetools. + +👉 People Analytics & Data Literacy: Unsere Trainings vermitteln praxisnahes Wissen im Umgang mit Daten und Tools wie Power BI oder Power Query. So werden HR-Teams befähigt, messbar wirksam und datengetrieben zu arbeiten. + +👉 Strategie & Transformation: Von der HR-IT-Strategie über Prozessdesign bis zur Umsetzung begleiten wir euch durch alle Phasen der Digitalisierung – strukturiert, realistisch und mit messbaren Ergebnissen. + +✅ Branchenerfahrung: Unsere Erfahrung reicht von Handel und Industrie über Healthcare bis zur öffentlichen Hand – für Lösungen, die nachhaltig. +✅ Innovation: Wir bringen Projekte strukturiert, schnell und datenbasiert ins Ziel. +✅Kundenzufriedenheit: Unsere Kunden schätzen unsere Professionalität, transparente Budgetplanung und zuverlässige Umsetzung. Wir arbeiten auf Augenhöhe, klar, nahbar und gerne mit einer Prise Humor. + +Wir freuen uns auf eure Anfrage und darauf, HR gemeinsam zukunftsfähig zu gestalten.",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6905905a86e5f5000180c9b4/picture,"","","","","","","","","" +Ritz Maschinenbau GmbH,Ritz Maschinenbau,Cold,"",17,machinery,jan@pandaloop.de,http://www.ritz-maschinenbau.com,http://www.linkedin.com/company/ritz-maschinenbau,"","","",Ostringen,Baden-Wuerttemberg,Germany,76684,"Ostringen, Baden-Wuerttemberg, Germany, 76684",machinery manufacturing,'+49 725 9910910,"Microsoft Office 365, Remote, BabtecQ","","","","","","",69c27f94fba67700154d170a,"","","Als modernes Unternehmen bieten wir eine Vielzahl an Benefits, um eine gesunde Work-Life-Balance zu ermöglichen.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e020fd0c7e5a000161eb9d/picture,"","","","","","","","","" +HANECS GmbH,HANECS,Cold,"",13,information technology & services,jan@pandaloop.de,http://www.hanecs.de,http://www.linkedin.com/company/hanecs-gmbh,https://www.facebook.com/HANECS/,"",3-5 Alfred-Herrhausen-Allee,Eschborn,Hessen,Germany,65760,"3-5 Alfred-Herrhausen-Allee, Eschborn, Hessen, Germany, 65760","autosar, safety, functional safety, automotive, autonomous driving, iot embedded systems, cyber security, embedded software, embedded systems, software defined vehicles, embedded software products, embedded linux development, resource optimization, linux for safety-critical applications, spice process, cybersecurity testing, safety degradation concepts, linux embedded systems, functional safety certification, real-time software, iot, safety architecture, adas, project management, autosar architecture, iso 26262 compliance, consumer electronics, product development, software testing and validation, platform development, automotive ethernet protocols, hardware porting, b2b, adas safety standards, embedded systems engineering, penetration testing, real-time systems, system integration, security and safety compliance, autonomous vehicle software, ai architecture consulting, computer systems design and related services, software development, embedded software development, low-power platforms, automotive software development, resource management in software, edge ai optimization, edge ai, linux-based software, cybersecurity, degradation concepts for safety, high-performance computing, safety review of work products, safety-critical software, watchdog development, consulting, asil-b safety level, autonomous vehicle safety, asil-d safety level, data security, requirements engineering, automotive ethernet, cybersecurity in embedded systems, ai in embedded systems, big data code optimization, adas sensor integration, software review, ai safety architecture, safety standards compliance, adas development, cybersecurity for vehicle control units, ai and machine learning, ai algorithms, automotive software, system testing, safety-critical systems, services, medical devices, iso 26262, education, transportation & logistics, computer & network security, information technology & services, embedded hardware & software, hardware, productivity, consumers, hospital & health care",'+49 619 62047150,"Outlook, Mobile Friendly, Apache, WordPress.org, Remote, AI","","","","","","",69c27f94fba67700154d170d,3711,54151,"Vision: +Driving innovation by smart embedded software. + +Mission: +As an embedded software development specialist, we enable our customers to accelerate their SW development & drive innovation for future mobility + + +Our company is specialized in the development of embedded software and systems with high functional safety and quality requirements. + +As your technology partner in the area of safety critical, and real-time embedded systems we will lead your project to success. We support you in the following fields: +- Functional safety - ISO 26262, IEC 61508 +- Cyber Security - ISO 21434 +- Software Defined Vehicles +- Embedded IoT +- AUTOSAR +- System, Software Engineering, and all other phases of the V-model development cycle + +We have years of experience in software development for various products in different industries. +- Automotive: + - ESC (Electronic Stability control) / Vehicle Dynamics ECU + - Electronic Theft Protection Systems + - Computer platforms for advanced driver-assistance systems and highly automated driving + - Systems for Drivetrain +- Embedded IoT: Medical Devices",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66dc37c979670900018c8a6d/picture,"","","","","","","","","" +Energy Research Centre of Lower Saxony,Energy Research Centre of Lower Saxony,Cold,"",19,research,jan@pandaloop.de,http://www.efzn.de,http://www.linkedin.com/company/efzn-energie-forschungszentrum-niedersachsen,"","",19A Am Stollen,Goslar,Lower Saxony,Germany,38640,"19A Am Stollen, Goslar, Lower Saxony, Germany, 38640","p2xtechnologien, windenergie, materialwissenschaften, gesellschaftswissenschaften, vernetzte energiesysteme sektorenkopplung, solarenergie, research services, innovation, research in energy and environmental technologies, energieforschung niedersachsen, niedersachsen, smart grids niedersachsen, gesellschaftliche aspekte energie, windenergie niedersachsen, scientific research and development, services, energieforschung, energiesysteme, verbundforschung, energiesysteme transformation, wasserstoffforschung niedersachsen, b2b, technologieentwicklung, solarenergie niedersachsen, energiethemen, research and development in the physical, engineering, and life sciences, veranstaltungen energieforschung, verbundforschung energie, higher education, interdisziplinäre forschung, gesellschaftliche dynamik energiewende, education, legal, non-profit, energy & utilities, education management, nonprofit organization management","","Microsoft Office 365, Mobile Friendly, Apache, Piwik","","","","","","",69c27f94fba67700154d170e,"",54171,"The Energy Research Centre of Lower Saxony (EFZN) is a collaborative scientific center established in 2007. It serves as a key platform for energy research, connecting universities in Braunschweig, Clausthal, Göttingen, Hannover, and Oldenburg. With over 180 researchers from 15 institutions, EFZN focuses on advancing Lower Saxony's energy system transformation toward 100% renewable energy by 2030. + +EFZN emphasizes interdisciplinary research that encompasses scientific, technical, economic, social, legal, and ethical perspectives. Key research areas include hydrogen and fuel cells, P2X technologies, materials science, battery technologies, solar and wind energy, and networked energy systems. The center also runs the TEN.efzn flagship research program, which integrates technical innovation with socio-scientific analysis across various platforms. + +EFZN fosters collaboration among academia, business, politics, and civil society, promoting projects and ideas that support the energy transition. It operates as a research service platform, focusing on knowledge exchange and interdisciplinary cooperation without producing commercial products or services.",2007,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6783eeced926930001db4b78/picture,"","","","","","","","","" +SLA Software Logistik Artland GmbH,SLA Software Logistik Artland,Cold,"",44,information technology & services,jan@pandaloop.de,http://www.sla.de,http://www.linkedin.com/company/sla-software-logistik-artland-gmbh,https://www.facebook.com/SLA.GmbH/,https://twitter.com/SLA_GmbH,30 Friedrichstrasse,Quakenbrueck,Lower Saxony,Germany,49610,"30 Friedrichstrasse, Quakenbrueck, Lower Saxony, Germany, 49610","software development, data security, process automation, fungiai pilzwachstum monitoring, data analytics, automatisierte chargenverwaltung, food processing, data management, digitale herkunftsdaten, artificial intelligence, supply chain, sustainability, predictive analytics, supply chain transparency, process optimization, food safety digitalization, globalg.a.p zertifizierung, food logistics, smart kitchen solutions, food certification platforms, rfid-technologie, logistik-digitalisierung, food production, automation, manufacturing, b2b, smart factory, foodfair plattform, traceability solutions, industry 4.0, rfid-gestützte produktverfolgung, custom manufacturing, web applications, künstliche intelligenz, visuelle klassifizierung mit ki, automatisierung, food certification, automated warehousing, datenanalyse, digital transformation, industriecomputer, food industry digitalization, services, datenmanagement, gastronomy technology, consulting, production management, erp-vernetzung, iot integration, smart manufacturing, mobile apps, automatisierte logistik, cloud computing, qualitätskontrolle, rückverfolgbarkeit, real-time data, automatisierte schlachtprozesssteuerung, digitale prozesse, predictive maintenance, computer systems design and related services, supply chain optimization, government, ki-basierte qualitätsüberwachung, business intelligence, e-commerce, distribution, information technology & services, computer & network security, food & beverages, consumer goods, consumers, environmental services, renewables & environment, enterprise software, enterprises, computer software, mechanical or industrial engineering, analytics, consumer internet, internet",'+49 543 194800,"Outlook, Google Tag Manager, WordPress.org, YouTube, Apache, reCAPTCHA, DoubleClick, Mobile Friendly, C/C++, Qt, Subversion, Amazon Linux 2, GitLab, Docker, Maven, Jenkins, ABB Robotics, Intel, Azure Linux Virtual Machines, Microsoft 365, Microsoft Windows Server 2012, VMware, Angular, Ionic, Node.js, Microsoft Office","","","","","","",69c27f94fba67700154d1710,7375,54151,"SLA Software Logistik Artland GmbH (SLA) is a German software company based in Quakenbrück, Lower Saxony, founded in 1994. The company specializes in customized IT solutions for digitalization, production, and logistics processes, primarily serving the food industry and gastronomy. With over 30 years of experience, SLA employs more than 80 staff and has a global customer base of over 450 clients. + +SLA develops a wide range of hardware and software solutions designed to optimize efficiency, transparency, and sustainability in production and logistics. Their offerings include ERP, production planning, and warehouse management systems, as well as AI-based solutions for automated data collection and smart production planning. The company also integrates RFID and robotics, mobile apps, and Business Intelligence tools. SLA's innovative technologies, such as Smarttouch terminals and advanced simulations, aim to enhance process efficiency and reduce costs, making them a dedicated IT partner in the food and hospitality sectors.",1995,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/686e1d3c4ad6a80001749a27/picture,"","","","","","","","","" +paretos,paretos,Cold,"",61,information technology & services,jan@pandaloop.de,http://www.paretos.com,http://www.linkedin.com/company/paretoscom,"",https://twitter.com/paretosai,52 Kurfuersten-Anlage,Heidelberg,Baden-Wuerttemberg,Germany,69115,"52 Kurfuersten-Anlage, Heidelberg, Baden-Wuerttemberg, Germany, 69115","software development, b2b, ai-powered forecasts, seamless integration, ai for supply chain resilience, ai algorithms, business process optimization, forecasting accuracy, retail, ai in logistics, ai for complex decision-making, ai platform, ai-driven resource allocation, supply chain planning, manufacturing, operational efficiency, cost savings, ai in pharmaceuticals, ai-powered inventory management, ai model adaptation, forecast accuracy, ai models, machine learning, digital twin, supply chain management, replenishment planning, decision intelligence, ai in retail, ai for warehouse optimization, consumer goods, business potentials, ai optimization, automation, e-commerce, cost reduction, data-driven decisions, ai for production planning, multi-model forecasting, logistics, resource planning, ai scalability, ai decision support, ai in retail logistics, cloud-based software, multi-objective optimization, demand forecasting, services, pharmaceuticals, ai in manufacturing, inventory optimization, management consulting services, predictive analytics, ai-based demand sensing, ai for procurement, data integration, data security, distribution, consumer_products_retail, transportation_logistics, information technology & services, mechanical or industrial engineering, artificial intelligence, logistics & supply chain, consumers, consumer internet, internet, medical, enterprise software, enterprises, computer software, computer & network security",'+49 221 98819852,"Cloudflare DNS, Route 53, Outlook, React Redux, Webflow, Slack, Hubspot, Google Tag Manager, YouTube, Mobile Friendly, Linkedin Marketing Solutions, AI, LinkedIn Sales Navigator, Microsoft PowerPoint",20350000,Series A,9350000,2024-10-01,"","",69c27f94fba67700154d1716,7375,54161,"paretos is an AI-based Decision Intelligence platform founded in mid-2020 and based in Heidelberg, Germany. The company was established by Fabian Rang and Thorsten Heilig and is recognized by Gartner as one of the leading Decision Intelligence providers in Europe. paretos offers an end-to-end platform that simplifies complex decision-making processes for organizations, allowing them to analyze data, generate forecasts, and derive actionable insights without needing data science expertise. + +The platform features a no-code interface for easy use by business professionals, simple integration with existing systems, and a proprietary optimization algorithm called ""Socrates."" It supports various sectors, including retail, logistics, and manufacturing, addressing challenges like forecasting and supply chain optimization. Notable clients include HelloFresh, Otto Group, and EDEKA, among others. With a focus on inclusive hiring and environmental responsibility, paretos fosters a diverse workplace culture while providing employees with flexible work arrangements.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67265a955ab0bf0001b99efa/picture,"","","","","","","","","" +Potassco Solutions,Potassco Solutions,Cold,"",14,information technology & services,jan@pandaloop.de,http://www.potassco.com,http://www.linkedin.com/company/potassco-solutions,"","",24 Sentastrasse,Werder,Brandenburg,Germany,14542,"24 Sentastrasse, Werder, Brandenburg, Germany, 14542","software development, open source solvers, industrial automation, logic modeling, distribution, optimization problems, services, reasoning tasks, system diagnosis, b2b, ai research, other scientific and technical consulting services, optimization technology, logistics optimization, ai system maintenance, problem modeling, high performance solvers, complex system diagnosis, machine learning, ai consulting, knowledge representation, enterprise ai solutions, industrial plant configuration, consulting, ai tool customization, knowledge formalization, manufacturing, industrial applications, knowledge engineering, complex scheduling, answer set programming in industry, knowledge formalization for manufacturing, system integration, large search space handling, automated scheduling in logistics, ai training services, ai development services, project management, automated reasoning, industrial ai solutions, declarative knowledge representation, knowledge-driven ai, enterprise software integration, knowledge automation, constraint solving, answer set programming, multi-domain reasoning, automotive resource planning, business intelligence, artificial intelligence, clingo system, robotic reasoning, information technology & services, mechanical or industrial engineering, productivity, analytics","","Outlook, Apache, Mobile Friendly, WordPress.org, Android, React Native, Docker","","","","","","",69c27f94fba67700154d171b,3829,54169,"We are a passionate team of experts in knowledge-driven Artificial Intelligence, having a strong research background in knowledge representation and reasoning. Our approach builds upon cutting-edge, open-source systems developed at the University of Potsdam and available at potassco.org. + +Every team member brings a wealth of experience in solving knowledge-intensive combinatorial optimization problems, both in academia as well as in industry. This expertise ranges from scientific applications in biology, embedded systems, and robotics, through to entertainment systems, and industrial applications in the automotive, logistic, and transport industries.",2023,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/695a78e57924f30001bf43c1/picture,"","","","","","","","","" +LSA | Automation,LSA,Cold,"",31,machinery,jan@pandaloop.de,http://www.lsa-gmbh.de,http://www.linkedin.com/company/lsa-automation,https://www.facebook.com/lsa.automation/,"",11 Ausserer Hofring,Wolkenstein,Sachsen,Germany,09429,"11 Ausserer Hofring, Wolkenstein, Sachsen, Germany, 09429","prozessautomation, fertigungs montageautomation, vakuumqualifizierte bewegungs positioniersysteme, reinraumautomation, hochpraezise mess pruefanlagen, spezial sondermaschinen, automation machinery manufacturing, industrial automation, b2b, robotics, software engineering, project management, consulting, autofrettageanlage, sondermaschinen, dickenmessanlage, inhouse-fertigung, hochpräzisionssysteme, turnkey-lösungen, forschung & entwicklung, services, vakuum motion automation, system integration, montageautomation, laserschwei anlage, abgleichanlage, manufacturing, softwareentwicklung, messautomation, industrial machinery manufacturing, e-motorenprfstand, automatisierung, alterungsmessplatz, mechanical or industrial engineering, information technology & services, productivity",'+49 37 3691720,"Mobile Friendly, Apache, Google Tag Manager, WordPress.org","","","","","","",69c27f94fba67700154d1718,3599,33324,"VERTRAUEN SIE AUF UNS ALS STARKEN PARTNER FÜR INDUSTRIEAUTOMATION + +Als langjähriger sowie geschätzter Automationspartner der Industrie & Forschung steht LSA für individuelle Komplettlösungen mit dem Ziel höchster Performance sowie begeisternder Individualität. Dabei reicht das Portfolio von modernen Bewegungs- und Steuerungssystemen über anspruchsvolle Montage- und Fertigungslinien sowie hochpräzisen Mess- und Prüfanlagen bis hin zu Intra-Reinraum-Lösungen für die Reinraumautomation. + +INDIVIDUELLE LÖSUNGEN MIT ANSPRUCH. VON EXPERTEN MIT LEIDENSCHAFT. + +Kreative Köpfe bringen mit glühendem Engagement ausgezeichnete Automatisierungslösungen hochspezialisierter Anwendungen für effiziente und zukunftssichere Prozesse der Montage- und Fertigungautomation sowie der Mess- und Prüfautomation höchster Ansprüche bei einem Maximum an Flexibilität und Skalierbarkeit hervor. + +KERN. KOMPETENZ. FOKUS. + +• performante Prozessautomation +• effiziente Fertigungs- und Montageautomation +• hochpräzise Mess- und Prüfanlagen +• innovative Bewegungs- und Positioniersysteme + +STARK IN DER PROZESS- & VERFAHRENSENTWICKLUNG + +Neben unserer Stärke der Prozess- und Verfahrensentwicklung liegt ein besonderer Fokus auf den essentiellen Komponenten Antriebs- und Steuerungstechnik sowie der Entwicklung hochintegrativer Automatisierungssoftware. Darüber hinaus können wir mit herausragendem Know-how sowie einer innovativen Lösungskompetenz im Bereich vakuum- und reinraumqualifizierter Bewegungs- und Positioniersysteme (für die Innovationssektoren Halbleiter, Pharma und Biotech) wie auch einer hohen Forschungs- und Entwicklungsdichte überzeugen. + +IHR VERLÄSSLICHER PARTNER IN JEDER PROJEKTPHASE + +Mit über 35-jähriger Erfahrung & Expertise begleitet LSA seine Partner in jeder Projektphase von der Konzeption über Prozess-/Verfahrensentwicklung bis hin zu Fertigung und Montage sowie vollständigen Implementierung präziser Lösungen für effiziente und wertschöpfende Prozesse – bei höchster Transparenz.",1990,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6816c9e2a57957000169a2e6/picture,"","","","","","","","","" +Maschinenbau-Gipfel,Maschinenbau-Gipfel,Cold,"",50,events services,jan@pandaloop.de,http://www.maschinenbau-gipfel.de,http://www.linkedin.com/company/maschinenbaugipfel,"","","",Berlin,Berlin,Germany,"","Berlin, Berlin, Germany","innovationsförderung, industry networking, ki in der industrieautomation, sustainability, start-up pitching, event management, startups, technologie-startups, ai applications, industrial machinery manufacturing, datenraum industrie, europa, networking, fachbeirat, automation, manufacturing, industriepolitik, automatisierungslösungen, digital ecosystems, automatisierungstechnologien, innovation, services, podiumsdiskussionen, forschung und entwicklung, predictive maintenance, ki-gestützte prozessoptimierung, nachhaltigkeit, supply chain, data systems, ki-startups, ki in der produktion, risk management, robotik, ki in der wartung, partnernetzwerk, robotics, fachkongress, ki-basierte steuerungssysteme, industry conference, data sovereignty, smart manufacturing, ki in der industriepolitik, technology transfer, technologiepartnerschaften, industry summit, ki-gestützte qualitätssicherung, machine learning, manufacturing summit, ki in robotik, transportation & logistics, ki in der lieferkette, maschinenbauindustrie, humanoide roboter, b2b, industriepolitik europa, fachkongress maschinenbau, customer engagement, künstliche intelligenz, digitalisierung, geopolitik, data exchange, b2b events, energy management, ki in manufacturing, government, industrial digitalization, fachveranstaltung, ki-gestützte steuerung, energy efficiency, manufacturing innovation, ki in der fertigung, fachbeirat maschinenbau, fachvorträge, supply chain management, factory-x projekt, robotics in industry, technologietrends, industrial iot, ki in der intralogistik, maschinenbau-gipfel 2025, european industry, ki für nachhaltige produktion, automatisierung, industrial automation, collaborative robots, digital transformation, industrie 4.0, ki-gestützte prozesse, ki in der industrie, automatisierte produktion, ki in der industrie 4.0, ki in der montage, distribution, transportation_&_logistics, environmental services, renewables & environment, events services, mechanical or industrial engineering, information technology & services, artificial intelligence, oil & energy, logistics & supply chain",'+49 69 66031544,"Amazon CloudFront, Amazon Elastic Load Balancer, Amazon AWS, Salesforce, Apache, Google Tag Manager, SynXis (Sabre Hospitality), Ubuntu, TYPO3, Mobile Friendly","","","","","","",69c27f94fba67700154d170b,3531,33324,"Der Deutsche Maschinenbau-Gipfel gilt in der gesamten Branche als richtungsweisend und impulsgebend. Als Top-Event der Industrie bringt der Maschinenbau-Gipfel Maschinenbauer, Technik-Visionäre, Digital-Trendsetter, Politiker und viele weitere Entscheidungsträger der Branche zusammen. + +Tauchen Sie während des Jahres tiefer in die Megatrends ein, vernetzen sie sich mit Experten, neuen Partnern und setzen Sie wichtige Touchpoints, um wesentliche Innovationen rechtzeitig voranzutreiben. Der Maschinenbau-Gipfel Salon bietet Ihnen dazu den exklusiven Rahmen in der Zeit vor dem nächsten großen Gipfel.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67173d7444693400010bd6f4/picture,"","","","","","","","","" +BEC Robotics,BEC Robotics,Cold,"",38,machinery,jan@pandaloop.de,http://www.bec-robotics.com,http://www.linkedin.com/company/becrobotics,https://www.facebook.com/BECRobotics/,"",195 Marktstrasse,Pfullingen,Baden-Wuerttemberg,Germany,72793,"195 Marktstrasse, Pfullingen, Baden-Wuerttemberg, Germany, 72793","fahrgeschaefte, automatisierung, robotik, medizinprodukte, agv, cncfraesen, flugsimulatoren, amr, reinraum, automation machinery manufacturing",'+49 712 19307210,"Outlook, Microsoft Office 365, CloudFlare Hosting, Hubspot, YouTube, Mobile Friendly","","","","","","",69c27f94fba67700154d1714,"","","BEC GmbH, operating as BEC Robotics, is a German technology company based in Pfullingen. It specializes in human-robot collaboration solutions across the medical, entertainment, and industrial sectors. With over 20 years of experience, BEC Robotics employs around 70 skilled professionals, including engineers and project managers, and is certified under ISO 13485 as a medical device manufacturer. + +The company offers comprehensive services, including project planning, design, production, assembly, and installation for various applications. Their expertise covers factory automation, hardware and software development, AI vision systems, and custom software for intralogistics. BEC Robotics develops a range of products, such as custom applications for industrial automation, mobile robots, and semiconductor solutions, all designed to enhance safety and efficiency in human-robot interactions. They also provide medical technology solutions, including radiotherapy systems, and showcase innovations in entertainment and metalworking automation at industry events.",2003,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68cf5ef7f245f10001d740e0/picture,"","","","","","","","","" +ITERACON GmbH,ITERACON,Cold,"",39,information technology & services,jan@pandaloop.de,http://www.iteracon.de,http://www.linkedin.com/company/iteracon-gmbh,"","",80 Talstrasse,Ubach-Palenberg,North Rhine-Westphalia,Germany,52531,"80 Talstrasse, Ubach-Palenberg, North Rhine-Westphalia, Germany, 52531","infrastructure, windows server 2016, single sign on, microsoft teams, communication, education service, cloud security, cloud strategie und projektmanagement, mobile device management, it service, windows 10, homeoffice remote service, managed service, consulting, cyber security, security, security services, cloud solutions, green it solutions, sustainable it, it-security, it consulting, it infrastructure, it-strategien, cloud soc security, cybersecurity services, it-full-service, managed services, it process automation, penetration testing, cloud computing, managed service providers, security operations center, cybersecurity, compliance, business apps, microsoft csp, it lifecycle management, security incident response, cloud services, microsoft 365, computer software and services, computer systems design and related services, services, nachhaltigkeit, it security, it strategy, container virtualization, low code business apps, vulnerability management, threat detection, sicherheitslösungen, digitale transformation, digital workplace, security monitoring, managed infrastructure, cloud management, automation, b2b, data protection, information technology and services, managed service provider, container orchestration, power platform, it lifecycle support, it security assessment, remote work solutions, non-profit, computer & network security, information technology & services, enterprise software, enterprises, computer software, management consulting, nonprofit organization management",'+49 24 519434000,"Salesforce, Outlook, Apache, Mobile Friendly, Google Tag Manager, Bootstrap Framework, Remote","","","","","","",69c27f94fba67700154d170c,7375,54151,"ITERACON GmbH is a full-service IT provider located in Übach-Palenberg, Germany. The company focuses on delivering innovative, flexible, and sustainable IT solutions to support digital transformation. With a team of around 74-75 employees, ITERACON generates approximately $9.7-50 million in revenue. + +The company offers a wide range of tailored IT services, including cloud migration, modern workplace creation, IT department support, data protection, and business process optimization. ITERACON emphasizes a customized approach to each project, ensuring that solutions align with customer needs and technology requirements. They specialize in managed services and cloud management, positioning themselves as a reliable partner throughout the digital transformation journey.",2010,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670e2870afaaa80001b61107/picture,"","","","","","","","","" +deepIng business solutions GmbH,deepIng business solutions,Cold,"",11,information technology & services,jan@pandaloop.de,http://www.deeping.de,http://www.linkedin.com/company/deeping-business-solutions-gmbh,"","","",Hanover,Lower Saxony,Germany,"","Hanover, Lower Saxony, Germany","machbarkeitsstudien, datenanalyse, transformationsbegleitung, maschinelles lernen, prozessoptimierung, itroadmap, datawarehouse, softwareentwicklung, datengetriebene unternehmensentwicklung, industrie und logistik, software development, digitalization, smart factory, mes solutions, machine learning tools, llm tools, data analytics, real-time monitoring, production optimization, consulting services, custom software, transformation consulting, data acquisition, production efficiency, adaptive technology, flexible solutions, ai integration, data-driven strategies, business intelligence, process automation, decision support, resource management, productivity enhancement, transparency in manufacturing, cloud services, data processing, material management, performance tracking, oee optimization, employee involvement, training and workshops, user-centric design, mobile application support, production planning, task management, downtime tracking, process visualization, customer success, automation, insight generation, supply chain management, business analytics, custom reporting, collaborative tools, efficiency improvement, data-driven decision making, quality control, supply chain transparency, b2b, consulting, services, information technology & services, management consulting, analytics, cloud computing, enterprise software, enterprises, computer software, productivity, logistics & supply chain",'+49 51 194000954,"Cloudflare DNS, CloudFlare Hosting, Outlook, Nginx, WordPress.org, Google Tag Manager, Mobile Friendly","","","","","","",69c27f94fba67700154d1712,3571,33324,"deepIng vereint Ansätze des maschinellen Lernens mit dem Wissen und der Umsetzungskompetenz des klassischen Ingenieurs, um eine datengetriebene Unternehmensentwicklung und Effizienzsprünge in der Lieferkette zu ermöglichen. deepIng analysiert Daten und Prozesse, erkennt Muster, entwickelt Modelle, um die besten Lösungen für unternehmerische Probleme zu finden und diese in passgenaue Softwarelösungen umzusetzen. Das erfahrene Team besteht dafür aus Lieferketten- und Digitalisierungsexperten sowie Softwareentwicklern und Wissenschaftlern.",2019,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f79ae17c0fa40001074e49/picture,"","","","","","","","","" +OODA AI,OODA AI,Cold,"",11,information technology & services,jan@pandaloop.de,http://www.ooda.ai,http://www.linkedin.com/company/ooda-ai,"","","",Munich,Bavaria,Germany,"","Munich, Bavaria, Germany","ai, paas, apis, saas, deai, ki, blockchain, defi, artificial intelligence, gpu, technology, information & internet, ai resilience, consulting, ai for finance, ai for business monitoring, machine learning, software and application development, gdpr compliance, information technology and services, gdpr-compliant ai, ai cost reduction, ai for healthcare, decentralized ai, ai development platform, ai rewards tokens, natural language processing, ai scalability, secure ai solutions, ai apis, open-source ai models, computer systems design and related services, ai for enterprises, ai security, ai applications, government, ai models, data security, data integration, decentralized gpu network, b2b, business intelligence, ai model splitting, ai democratization, ai application development, real-time analytics, software development, decentralized computing, distributed ai workloads, data visualization, data security and privacy, ai automation, privacy-first architecture, services, cloud computing, ai partnership, digital transformation, ai infrastructure, on-device ai, blockchain ai infrastructure, ai inference network, tensor parallelism, white-label ai platforms, healthcare, finance, legal, enterprise software, enterprises, computer software, information technology & services, computer & network security, analytics, health care, health, wellness & fitness, hospital & health care, financial services","","Cloudflare DNS, Gmail, Google Apps, CloudFlare Hosting, Microsoft Office 365, Mobile Friendly, reCAPTCHA, Nginx, Remote","","","","","","",69c27f94fba67700154d1719,7375,54151,"At OODA AI, we build private, secure, and compliant AI solutions designed for organizations that can't compromise on data protection or performance. Our technology stack combines a decentralized Sovereign Compute Network, Trusted Execution Environments (TEE), and blockchain-based transparency to deliver enterprise-grade security with state-of-the-art AI capabilities. + +What we deliver: + +• Intelligent Document Processing +Our high-performance API processes millions of documents annually with industry-leading accuracy. We extract structured data from unstructured text, enabling insurers, banks, and other document-heavy industries to automate complex workflows and reduce operational costs. + +• AI-Powered Customer Support +We provide a multi-channel AI support platform that cuts support costs while improving response quality. Our AI agents handle inquiries across email, chat, messaging, and more—instantly and consistently. + +• Enterprise Assistant & Search +EnterpriseGPT is our fully GDPR-compliant enterprise assistant and search engine. It helps teams find information faster, improves internal knowledge flow, and boosts productivity across the organization—all within a private, secure environment. + +• Custom AI Development +We build bespoke AI systems tailored to your exact needs. From AI-powered wellness applications with avatars to large-scale enterprise platforms with text, voice, and video capabilities—our team delivers end-to-end, production-ready solutions. + +• Private AI for Individuals +With PrivatAI, we extend secure AI technology to individual users. It's a private AI chat application that ensures full confidentiality and complete data control. + +All our solutions are modular, fully integratable, and can be delivered as white-label products to strengthen your brand. At OODA AI, we bring enterprise-grade privacy and next-generation AI together—empowering organizations and individuals to innovate without sacrificing security.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/687c017c6739590001f93fdc/picture,"","","","","","","","","" +Ubica Robotics GmbH,Ubica Robotics,Cold,"",47,industrial automation,jan@pandaloop.de,http://www.ubica-robotics.eu,http://www.linkedin.com/company/ubica-robotics,"","",20 Konsul-Smidt-Strasse,Bremen,Bremen,Germany,28217,"20 Konsul-Smidt-Strasse, Bremen, Bremen, Germany, 28217","autonome roboter, perzeption, robotik, digital twin, agv, retail, einzelhandel, bildverarbeitung, roboter, digitaler zwilling, computer vision, robotics, article position detection, inventory recognition, ki-based image processing software, retail process digitalization, sensor package with 2d and 3d cameras, european horizon 2020 project, european research, real-time data collection, ai-based image processing, real-time inventory update, autonomous scan robots, efficiency in retail, robotic in-store solutions, artificial intelligence, efficiency in store operations, store process automation, supply chain logistics, customer experience enhancement, optimized store walk paths, computer systems design and related services, proactive stock replenishment, regal compliance, b2b, price label reading, product misplacement detection, regal stock management, supply chain management, digital twin technology, efficiency improvement, laser safety technology, product placement accuracy, store layout optimization, out-of-shelf detection early warning, product recognition, price tag reading, autonomous retail robots, regal stock detection, ai-driven inventory management, cost savings in logistics, digital twin retail stores, autonomous navigation, real-time shelf monitoring, european research project, regal layout analysis, article recognition, shelf monitoring, digital twin data basis, laser navigation safety, out-of-shelf detection, supply chain optimization, distribution, information technology & services, mechanical or industrial engineering, logistics & supply chain","","Outlook, Microsoft Office 365, Apache, Mobile Friendly, WordPress.org, Google Tag Manager, Google Font API, Remote, Kotlin, AWS SDK for JavaScript, Azure Container Apps, Apache Kafka, GitLab","","","","","","",69c27f94fba67700154d171a,7389,54151,"Ubica Robotics GmbH is a dynamic startup based in Bremen, Germany, focused on developing and distributing autonomous scan robots for retail environments. As a spin-off from the University of Bremen, the company emphasizes a culture of collaboration, trust, and work-life balance, offering flexible working hours and generous vacation policies. + +The flagship product, the Ubica Scanroboter, is designed to enhance retail operations. It features advanced sensors, including 2D and 3D cameras, and utilizes AI-based image processing to perform tasks such as detecting out-of-shelf items, capturing inventory, verifying price labels, and identifying misplaced products. These robots create daily updated digital twins of store layouts, optimizing supply chain processes and improving efficiency. Ubica Robotics is supported by notable partners, including dm-drogerie markt and Markant Services International, contributing to its innovative technology ecosystem.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6820ed2bd77f0c000152ed4f/picture,"","","","","","","","","" +AMC - Analytik & Messtechnik GmbH Chemnitz,AMC,Cold,"",19,electrical/electronic manufacturing,jan@pandaloop.de,http://www.amc-systeme.de,http://www.linkedin.com/company/amc-analytik-messtechnik-gmbh-chemnitz,"","",55 Heinrich-Lorenz-Strasse,Chemnitz,Saxony,Germany,09120,"55 Heinrich-Lorenz-Strasse, Chemnitz, Saxony, Germany, 09120","industrielle computertechnik, industrielle kommunikationstechnik, test und pruefsysteme, mess und automatisierungstechnik, monitoring und prozessleitsysteme, steuerungs und uberwachungssysteme, measuring & control instrument manufacturing, distribution, energy & utilities, ethercat slave, remote-i/o-module, forschung und entwicklung, services, lwl-umsetzer, industrie-pcs, wartung und reparatur, consulting, navigational, measuring, electromedical, and control instruments manufacturing, transportation & logistics, industrielle kommunikation, gpib-produkte, weld-qm, feldbus-schnittstellen, ethernet switches, softwareentwicklung, construction & real estate, monitoring- und prozessleitsysteme, systemlösungen, online-schweiprozess-kontrolle, inbetriebnahme, manufacturing, b2b, qualitätssicherung glasindustrie, industrial automation, labor-automatisierung, hmi/scada-systeme, wifi access point, serielle device server, automatisierungssysteme, mess- und automatisierungstechnik, electrical/electronic manufacturing, mechanical or industrial engineering",'+49 371 383880,"CloudFlare CDN, CloudFlare Hosting, Google Tag Manager, Apache, Mobile Friendly, Bing Ads, IoT","","","","","","",69c27f94fba67700154d1708,3571,33451,"AMC – Analytik & Messtechnik GmbH Chemnitz ist seit 1990 ein Systemhaus für Mess-, Prüf- und Automatisierungstechnik. + +Wir bieten Produkte und Systemplattformen für die Mess- und Prüftechnik, die Steuerungstechnik sowie für die Automation. Als herstellerunabhängiger Lieferant beraten wir unsere Kunden individuell bei der Auswahl der für die konkrete Anwendung optimalen Produkte. AMC ist dabei langjähriger autorisierter Vertriebs- und/oder Systempartner namhafter Hersteller wie z.B. ADVANTECH, GANTNER Instruments, MEILHAUS Electronic, NATIONAL Instruments u.a.. + +Unser Produktlieferprogramm gliedert sich in folgende Bereiche: +• Industrielle Computertechnik +(u.a. Industrie PC, Panel PC, Touch Displays, Embedded Box PC, SBC, Portable PC), +• Industrielle Kommunikationstechnik +(u.a. Schnittstellenkarten, Geräteserver, Switche, Feldbus-/GPIB-Kontroller), +• Mess- und Automatisierungstechnik +(u.a. Remote I/O Module, Messkarten, Steuerungen, Messgeräte, Software). + +AMC bietet Ihnen für individuelle und spezifische Anforderungen auch kundenspezifische und vorgefertigte Systemlösungen an, die auf dem Stand der Technik maßgeschneidert realisiert werden. +Viele Aufgabenstellungen erfordern angepasste Lösungen, die einmalig sind und nicht „von der Stange"" geliefert werden können. Oftmals sollen dabei Prozesse automatisiert bzw. mit leistungsfähiger Messdatenerfassungstechnik kombiniert werden. Auch in der Qualitätssicherung, für die „Null-Fehler-Produktion"", zur Zustandsüberwachung von Maschinen, Anlagen und Systemen sind solche Lösungen unersetzbar. AMC realisiert Ihnen diese Systeme. Hohe Qualität, Zuverlässigkeit und Termintreue sind uns dabei selbstverständlich. + +Unsere speziellen Kompetenzfelder liegen bei Systemlösungen in den Bereichen: +• Monitoring- und Prozessleitsysteme, +• Steuerungs- und Überwachungssysteme sowie +• Test- und Prüfsysteme.",1990,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66dc09829e28ab0001dc0d97/picture,"","","","","","","","","" +HELLA Aglaia Mobile Vision GmbH,HELLA Aglaia Mobile Vision,Cold,"",110,information technology & services,jan@pandaloop.de,http://www.hella-aglaia.com,http://www.linkedin.com/company/hellaaglaia,https://www.facebook.com/HELLAGroup/,"",140 Ullsteinstrasse,Berlin,Berlin,Germany,12109,"140 Ullsteinstrasse, Berlin, Berlin, Germany, 12109","3d people counting, vehicle detection, adas, emobility, deep learning, traffic sign detection, pedestrian detection, machine learning, artificial intelligence, road safety, energymanagement, functional safety, fahrzeugausruestungweltweite testfahrten, lane detection, autonomous driving, driver assistance systems, light source detection, elektromobilitaet, pedestrian detetcion, softwareentwicklung, labeling und datenmanagement, software testing, kuenstliche intelligenz, image processing, software, funktionssicherheit im automobilbereich, bildverarbeitung, fahrerassistenzsysteme, softwaretestsadasfunktionstests, it services & it consulting, energy storage monitoring, automotive lighting, autosar, high-voltage battery control, system integration, battery management systems, services, asil safety standards, automotive manufacturing, ai-based inspection, software publishing, control units, product development, iso 26262, industry 4.0, data analytics, cloud services, anomaly detection, led technology, energy management, semiconductor and other electronic component manufacturing, automotive safety, automotive industry, failure detection, b2b, software development, dual-voltage batteries, smart lighting systems, smart building, automotive software, reliable solutions, lighting control, digital transformation, electrical equipment and components manufacturing, computer vision, segmentation, data-driven decision making, autonomous vehicles, ai solutions, object segmentation, automotive control units, ai anomaly detection, object detection, data analysis, certified software projects, energy & utilities, information technology & services, cloud computing, enterprise software, enterprises, computer software, oil & energy",'+49 180 022435523,"Microsoft Office 365, Drupal, Cornerstone On Demand, Create React App, Campaign Monitor, Slack, Salesforce, WordPress.org, Vimeo, Mobile Friendly, ASP.NET, Google Dynamic Remarketing, DoubleClick, Adobe Media Optimizer, Linkedin Marketing Solutions, Citrix NetScaler, Google Tag Manager, DoubleClick Conversion, Cedexis Radar, Remote","","","","",40000000,"",69c27f94fba67700154d1711,3829,33441,"HELLA Aglaia Mobile Vision GmbH is a Berlin-based company that operates within the HELLA Group. It specializes in intelligent visual sensor systems, people sensing technology, and advanced software development for the automotive sector and related industries. The company manages a global network of software teams across Germany, India, and Romania through its Global Software House division, which coordinates software activities and drives innovation. + +The company offers a range of solutions, including people sensing technologies for retail analytics, passenger counting, and occupancy detection. It also focuses on creating a robust software foundation with uniform methods and reusable components to enhance development efficiency. Additionally, HELLA Aglaia develops AI-driven smart solutions and visual sensor systems that support trends in software-defined vehicles and new business models. The company is dedicated to advancing competitive software standards and exploring new markets beyond its core automotive operations.",1998,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69a6b8e141c1bd0001cbaff1/picture,FORVIA HELLA (hella.com),5b149be9a6da98712765f7f7,"","","","","","","" +Autark GmbH,Autark,Cold,"",16,information technology & services,jan@pandaloop.de,http://www.autark.com,http://www.linkedin.com/company/autark-gmbh,"","","",Baunatal,Hesse,Germany,34225,"Baunatal, Hesse, Germany, 34225","it system custom software development, systemintegration, data management, automatisierte lagerverwaltung, prozessvisualisierung, steuergeräteprogrammierung, lagerlogistik, sensorintegration, automatisierte materialverwaltung, inventory management, datenintegration, datenbasierte transparenz, netzwerktechnologien, prozessleitsysteme, datenmanagement, leitrechnertechnologie, erp-anbindung, sensorintegration in der automobilproduktion, automatisierungslösungen, bergbau, industrie 4.0 plattformen, datenbasierte automatisierung, automobilindustrie, mes-system, fernwartung, industrie 4.0 lösungen, schnittstellenentwicklung, datenakquisition, sps-programmierung, netzwerktechnik, maschinenbau, industrieautomation, webservice, vertraulichkeitsmanagement, industrial machinery manufacturing, produktionsüberwachung, fabrik der zukunft, vernetzungslösungen, tisax-zertifizierung, supply chain management, international aktiv, prozessvisualisierung in der automobilindustrie, automatisierungssoftware, prozessoptimierung, prototypenschutz, manufacturing, luftfracht, b2b, datenstandardisierung, automatisierung im bergbau, datenvalidierung, software development, datenanalyse, datenübertragung, qualitätsdaten, pharma, sensoren, industriezweige, steuerungstechnik, produktionsprozesse, softwareentwicklung, automatisierte flash-programmierung, services, datenvisualisierung, automatisierte steuergeräteprogrammierung, transportation & logistics, high-speed-messtechnik, rest api, mes-software, automatisierte hochregallager, automation, fernzugriff, distribution, automatisierte steuergeräteflash, webinterface, datenverschlüsselung, system integration, prozesssteuerung, lebensmittelindustrie, automatisierte qualitätskontrolle, automatisierungsstationen, automotive, application development, datenbasierte produktionssteuerung, automatisierte steuerungssysteme, industrial automation, industrie 4.0, automatisierungstechnik, hochgeschwindigkeitsmessung, analytics, information technology & services, mechanical or industrial engineering, logistics & supply chain, app development, apps","","Outlook, Microsoft Office 365, Slack, Mobile Friendly, Google Font API, Apache, Bootstrap Framework, IoT, Remote, Microsoft Hyper-V Server, VMware, Bevywise MQTT Broker, CPI, Amazon Inferentia, AVEVA Historian, AWS Cloud Development Kit (AWS CDK), InTouch, ManageEngine Desktop Central, .NET, Siemens PROFIBUS, Siemens SIMATIC S7, Siemens SIMATIC STEP 7","","","","","","",69c27f94fba67700154d1713,3589,33324,"Autark is your partner in the field of networking solutions, host computer technology, process visualization, data acquisition and high-speed measurement technology since 1990. With our MES system, we offer a complete solution for your control task and ensure transparency throughout the entire production process.",1990,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68729cbf96d5f400018359c3/picture,"","","","","","","","","" +Motek Messe,Motek Messe,Cold,"",50,events services,jan@pandaloop.de,http://www.motek-messe.de,http://www.linkedin.com/company/motek-messe,"","",Messepiazza,Leinfelden-Echterdingen,Baden-Wuerttemberg,Germany,70629,"Messepiazza, Leinfelden-Echterdingen, Baden-Wuerttemberg, Germany, 70629","predictive maintenance, smart manufacturing, production automation, virtual commissioning, assembly automation, data management, robotics, additive manufacturing in automation, automation, distribution, automation software, ki in automation, sustainable manufacturing, manufacturing, b2b, robotics integration, sensor technology, digital twin, industrial communication, object recognition with trevista line scan, system integration, cobot technology, human-robot collaboration, smart logistics, automation solutions, digital transformation, sensors, quality assurance, laser marking systems, ai in production, industrial machinery manufacturing, industry 4.0 integration, reconfigurable automation, process optimization, material flow, consulting, handling technology, process control, machine vision, supply chain management, manufacturing technology, industrial automation, industrial handling, smart factory, assembly systems, supply chain automation, automated parts detection, process automation, services, industrial iot, mechanical or industrial engineering, information technology & services, hardware, logistics & supply chain",'+49 7025 92060,"Nginx, Mobile Friendly, Google Tag Manager, Vimeo, WordPress.org, reCAPTCHA, CNC Software, Facebook, Google Maps, Instagram, Twitter Advertising, YouTube, Google Analytics","","","","","","",69c27f94fba67700154d1715,3546,33324,"Motek Messe is the organizer of the Motek international trade fair, a prominent event focused on automation in production and assembly. Held biennially at Messe Stuttgart in Germany, the next edition is scheduled for October 6-8, 2026, alongside Bondexpo, which highlights bonding technology. This event serves as a key platform for showcasing industrial manufacturing solutions. + +With a history of over 40 editions, Motek has become a significant player in the trade fair landscape for automation technologies. It attracts exhibitors and expert visitors from various sectors, including machine building, automotive, electronics, and medical technology. The fair features live demonstrations, technical discussions, and networking opportunities, allowing participants to explore intelligent solutions in production automation, material flow, and handling technology. + +Motek emphasizes the importance of in-person experiences, fostering dialogue and innovation among manufacturing stakeholders. The event provides access to multiple trade fairs with a single ticket, enhancing the value for attendees seeking efficient automation solutions.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66fcfa386ae6e80001c0317f/picture,"","","","","","","","","" +SDX AG,SDX AG,Cold,"",40,information technology & services,jan@pandaloop.de,http://www.sdx-ag.de,http://www.linkedin.com/company/sdx-ag,https://www.facebook.com/SDX.AG,"",1 Westhafenplatz,Frankfurt,Hesse,Germany,60327,"1 Westhafenplatz, Frankfurt, Hesse, Germany, 60327","mobile development, bizzcontact app, microsoft application platform, microservices, architekturberatung, architektur, generative ki, cloudnative development, cloudsecurity, prozessdigitalisierung, business intelligence, consulting, azure, crossplatform development, microsoft, m365, alm, winwebmobile development, data analytics, microsoft spezialisten, predictive analytics, digitalisierung, gpt, universal windows platform, application modernization, power apps, app development, power automate, blazor, automatisierung, agentic ai, data governance, devsecops, cloud computing, enterprise mobility, net development, xamarin development, devops, employee mobility, web app clouderization, poc, cloud security, softwarearchitektur, security, azure developer services, iot, software architektur, data platforms, nativescript, business intelligence winwebmobile development alm crossplatform development devops net development n, powerplatform, digitale transformation, artificial intelligence, copilots, digitale souveraenitaet, kubernetes, ai in customer service, modern frontends, azure services, security in cloud, ai in finance, computer systems design and related services, automation tools, azure cloud, customer satisfaction, ai compliance gdpr, genai applications, microfrontends, hybrid cloud, cloud-native development, b2b, ai in logistics, azure cost optimization, software engineering, ai-powered solutions, cloud migration, enterprise software, software architecture, azure devops, application innovation, azure openai, scalable applications, ki, ai in hr, genai-infused applications & agents, services, data science, microsoft azure, data pipelines, containerization, ai integration, azure ai copilot, ai in enterprise automation, software development, application development, api design, ai frameworks, ai in risk management, microsoft technologies, semantic kernel, innovation services, information technology, data engineering, generative ai, agile methodology, finance, transportation & logistics, analytics, information technology & services, enterprises, computer software, apps, financial services","","SendInBlue, Outlook, Microsoft Office 365, MouseFlow, Google Tag Manager, Apache, Vimeo, DoubleClick Conversion, WordPress.org, Google Dynamic Remarketing, Mobile Friendly, DoubleClick, Xamarin, Microsoft Azure Monitor, Microsoft Fabric, PowerBI Tiles, Python, AI","","","","","","",69c27f94fba67700154d1717,7375,54151,"SDX AG is an IT services company based in Frankfurt am Main, Germany, founded in 2003. The company specializes in developing custom business applications for Windows, Web, and Mobile platforms, as well as Data Analytics platforms. With a team of approximately 27-29 employees, SDX AG reported an annual revenue of $18.3 million in 2025. As a Microsoft Partner, the company focuses on innovative solutions using the Microsoft technology stack, particularly Azure. + +SDX AG offers a range of services, including cloud-native software development, intelligent applications powered by generative AI, and data analytics solutions. The company emphasizes high-quality, scalable implementations and employs technologies like JavaScript, HTML, and PHP to create attractive and performant enterprise solutions. Notable clients include Lufthansa, Dachser, Klüber, DekaBank, DZ BANK, and Union Investment, showcasing SDX AG's commitment to long-term partnerships and successful project delivery.",2003,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68726760934856000137a16a/picture,"","","","","","","","","" +4IoT,4IoT,Cold,"",15,information technology & services,jan@pandaloop.de,http://www.4iot.de,http://www.linkedin.com/company/4iot,"","","",Freiburg,Baden-Wuerttemberg,Germany,"","Freiburg, Baden-Wuerttemberg, Germany","it services & it consulting, industrial automation, chargenbeschriftung, industrie 4.0 lösungen, cloud security, manufacturing, mqtt, cybersecurity, heterogene it/ot geräte, qualitätsdatenmanagement, fertigungsdigitalisierung, sap-addons, sicherheitsrichtlinien, digitale etiketten mit e-ink, it-infrastruktur, heatmap sicherheitsanalyse, netzwerksicherheit, b2b, nis2 workshop, cybersecurity check, edge-server, wartungsinformationen, digitale etiketten, fabrikautomation, hsms, prozessberatung, it-risikoanalyse, iot konzepte, computer systems design and related services, fertigungs- und labornetzwerke, sicherheits-workshops, it-automatisierung, fertigungsnetzwerk, iot maschinenanbindung, fertigungslogistik, it-sicherheitsberatung, sap s/4hana, opc ua, automatisierung, blinkende leds, prozessdaten, schwachstellen-scan, alarmmanagement, maschinenstatusüberwachung, shopfloor integration, digitale chargenetiketten, cloud-integration, distribution, legacy-systeme, cyber resilience act, information technology & services, mechanical or industrial engineering",'+49 76 121638901,"Outlook, Microsoft Azure Hosting, Mobile Friendly, Bootstrap Framework, Google Font API, Remote","","","","","","",69c27f94fba67700154d171c,3571,54151,"Die 4IoT GmbH ist Ihr erfahrener Partner für IT-Beratung mit dem klaren Fokus auf Digitalisierung und Security in der Fertigung. +Mit unserem engagierten Team von 15 Spezialisten begleiten wir Unternehmen kompetent und zielsicher bei der digitalen Transformation ihrer Produktionsprozesse. + +Unser Leistungsspektrum umfasst maßgeschneiderte SAP- und IT-Infrastruktur-Lösungen, speziell zugeschnitten auf die besonderen Anforderungen der Fertigungsindustrie. +Wir verbinden Geschäfts- und Fertigungsprozesse nahtlos miteinander - immer mit dem Ziel, Ihre Produktivität nachhaltig zu steigern und maximale Transparenz zu schaffen. + +Unsere Experten verfügen über tiefgehendes Know-how in allen fertigungsnahen SAP-Modulen, von PP, PM, MM, QM bis hin zu HCM-PEP. Unsere SAP-Kompetenz ergänzen wir durch individuelle Entwicklungen in ABAP, BTP-RAP & CAP sowie spezialisierte Lösungen für Formulare und Labels mit Adobe Document Services (ADS). + +Darüber hinaus bieten wir leistungsstarke Datenauswertungen und Dashboards auf Basis von Power BI und KI-gestützter Analyse, um Ihre Fertigungsdaten optimal zu nutzen. + +Die IT-Infrastruktur in der Fertigung stellt besondere Anforderungen: Zwischen der Welt der IT und der operativen Technologie (OT) sorgen unsere Infrastruktur-Experten für effizienten und sicheren Betrieb. Egal ob komplexe Client-Strukturen, vielfältige Softwarestände oder hybride Accounts - wir kennen Ihre Herausforderungen und bieten maßgeschneiderte Lösungen in Cyber-Security sowie umfassende Workshops zu NIS2, Discovery und Schwachstellenmanagement. + +Als aktiver Partner im Forschungsprojekt PROFIT (Productivity Review and Optimization for Factory Improvement and Transformation), gemeinsam mit den Hochschulen Offenburg und Neu-Ulm, gestalten wir die Zukunft von Industrie 4.0 aktiv mit: https://www.industry40-done-right.de/ + +Mehr Informationen zu unseren Projekten und Lösungen unter: https://www.4iot.de/",2023,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f8699b351d580001965e25/picture,"","","","","","","","","" +Konstruktion & Entwicklung,Konstruktion & Entwicklung,Cold,"",11,information technology & services,jan@pandaloop.de,http://www.konstruktion-entwicklung.de,http://www.linkedin.com/company/konstruktion-entwicklung,"","","",Augsburg,Bavaria,Germany,"","Augsburg, Bavaria, Germany","technology, information & media, robotik, sensorintegration, automatisierung, forschungsprojekte, robotics, digitalisierung, recycling, maschinenbau, zahnstangengetriebe, recycling alter pv-anlagen, waam-verfahren, konstruktion, antriebstechnik, industrial machinery manufacturing, sichere robotikantriebe, supply chain management, forschung, präzise positioniersysteme, esim für iot, sustainability, prüftechnik, leichtbau, consulting, materials, sensorintegrierte kupplungen, co2-bilanzierung, development, distribution, additive fertigung, manufacturing, sensors, additive fertigung im metallbereich, künstliche intelligenz, open-source-software, services, recycling von altpulver, hybrid-maschinen für 3d-druck, digitale transformation, research, hardware, ki-videoanalysen, energy efficiency, ki-gestützte systeme, silikon für dlp-druck, hardwareentwicklung, automation, predictive maintenance, industrie 4.0, softwareentwicklung, komponentenfertigung, sensorik, technology, automatisierungskomponenten, digitale produktpässe, software, klimafreundliche chemie, maschinensicherheit, automatisierungslösungen, construction, b2b, information technology & services, mechanical or industrial engineering, logistics & supply chain, environmental services, renewables & environment","","Route 53, Amazon AWS, Google Tag Manager, Criteo Publisher Marketplace, Criteo, NuggAd, Google Font API, Mobile Friendly, Adition Technologies - Advertisers, WordPress.org, Adition Technologies - Publishers, Nginx","","","","","","",69c27f94fba67700154d170f,3546,33324,"Konstruktion & Entwicklung: Trends, Märkte, Macher und Technologien aus den Bereichen Maschinen- und Anlagebau, Antriebs- und Steuerungstechnik, Automatisierung, Messtechnik, Elektronik und vielem mehr. + +Impressum & Datenschutz verlinkt unter Website.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/680e05a2c501a400017b3f2d/picture,"","","","","","","","","" diff --git a/leadfinder/data/apollo_ellamedia_lookalikes.csv b/leadfinder/data/apollo_ellamedia_lookalikes.csv deleted file mode 100644 index 9401ba1..0000000 --- a/leadfinder/data/apollo_ellamedia_lookalikes.csv +++ /dev/null @@ -1,84 +0,0 @@ -Company Name,Company Name for Emails,Account Stage,Lists,# Employees,Industry,Account Owner,Website,Company Linkedin Url,Facebook Url,Twitter Url,Company Street,Company City,Company State,Company Country,Company Postal Code,Company Address,Keywords,Company Phone,Technologies,Total Funding,Latest Funding,Latest Funding Amount,Last Raised At,Annual Revenue,Number of Retail Locations,Apollo Account Id,SIC Codes,NAICS Codes,Short Description,Founded Year,Logo Url,Subsidiary of,Subsidiary of (Organization ID),Primary Intent Topic,Primary Intent Score,Secondary Intent Topic,Secondary Intent Score,Qualify Account,Prerequisite: Determine Research Guidelines,Prerequisite: Research Target Company -octonomy,octonomy,Cold,"",90,information technology & services,jan@pandaloop.de,http://www.octonomy.ai,http://www.linkedin.com/company/octonomy,"","","",Cologne,North Rhine-Westphalia,Germany,"","Cologne, North Rhine-Westphalia, Germany","software development, ai performance optimization, analytics, information technology & services, fast deployment, ai model development, ai in mittelstand, ki für support mit hoher antwortqualität, deutsche entwicklung, support-automatisierung, consulting, information technology and services, services, ai in support systems, support automation, business intelligence, ki für komplexe supportfälle, ki für support in mehreren sprachen, deutsche ki-cloud, artificial intelligence, ai system management, eu ai act konform, enterprise ai, skalierbare ki, multilinguale unterstützung, business services, automatisierte support-chatbots, ki-agenten, prozessautomatisierung, enterprise software, ai scalability, b2b, ai compliance, ki für peak-management, ai mit menschlicher qualität, business process outsourcing, computer systems design and related services, secure ai platform, multilingual ai, ki für support bei hoher fluktuation, datenschutzkonform, ki für support in echtzeit, ai consulting, custom ai solutions, customer support ai, kundenservice, human-like ai, ai training, customer engagement, cloud-based ai, ai-as-a-service, data security, digital transformation, ai automation, ai integration, complex knowledge processing, enterprises, computer software, computer & network security","","Route 53, Amazon SES, Outlook, Microsoft Office 365, Amazon AWS, Cloudflare DNS, Gmail, Google Apps, CloudFlare Hosting, Hubspot, Python, Postman, Swagger UI, Linkedin Marketing Solutions",25500000,Seed,20000000,2025-11-01,"","",69b2d5215d92a4000119eee9,7375,54151,"Octonomy is an AI startup based in Cologne, Germany, founded in 2024. The company specializes in developing agentic AI platforms designed to automate complex technical support and service workflows in heavy-equipment and industrial sectors. With a focus on achieving over 95% accuracy on unstructured data, Octonomy addresses challenges such as aging workforces and intricate documentation in industries like manufacturing, insurance, and pharmaceuticals. - -The core product is an agentic AI platform that functions as a ""digital coworker"" for technical support and field service. It features a multi-agent architecture that includes support agents for simple queries, consultancy agents for advanced tasks, and a supervisor agent for efficient request routing. The platform integrates seamlessly with existing enterprise systems, processes data directly, and can be deployed in under three weeks. Octonomy's solutions enhance operational efficiency by resolving issues in real-time and providing documented solutions quickly. The company has raised $25 million in funding to support its expansion in Europe and the USA.",2024,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69a4b3170dd2370001d5a30d/picture,"","","","","","","","","" -Titanom Solutions,Titanom Solutions,Cold,"",38,information technology & services,jan@pandaloop.de,http://www.titanom.com,http://www.linkedin.com/company/titanom-solutions,"","","",Germering,Bavaria,Germany,82110,"Germering, Bavaria, Germany, 82110","it services & it consulting, bildungssoftware, schulische ki-lösungen, ki-gestützte lernplattformen, interaktive lernspiele, e-learning, ki-gestützte schul- und kinderprodukte, sicheres ki-training für unternehmen, bildungsllm, ki-gestützte sprachtrainingsplattformen, services, ki-gestützte lehrmittel, ui design, deutsche ki-plattformen, sicherer ki-betrieb in deutschland, education technology, ki-gestützte sprachlernplattformen, bildungsllm speziell für schulen, schüler- und lehrerunterstützung, schul- und kinderbildung, innovative lernmethoden, sprechende ki-kuscheltiere, forschung in bildungstechnologie, ki-gestützte lernmanagementsysteme, ki-basierte bildungslösungen, educational services, colleges, universities, and professional schools, ki-gestützte unterrichtsplanung, ki-gestützte lern- und lehrprodukte, b2b, forschung und entwicklung in ki, ki in bildung, ki-technologien, software development, personalisierte lernangebote, lernprodukte, datenschutzkonforme ki, künstliche intelligenz in schulen, ki-kuscheltiere für kinder, unternehmensweiterbildung, ki-gestützte wissensvermittlung, artificial intelligence, bildungsinnovationen, online-vertretungsstunden, ki-gestützte experimente und animationen, digitale bildungsprodukte, ki-basierte lernspiele für kinder, ki-tutor, deutschlandgpt, mymilo, b2c, education, information technology & services, internet, computer software, education management","","Route 53, Outlook, Slack, Google Font API, Mobile Friendly, WordPress.org, Bootstrap Framework, Nginx, Typekit, Vimeo, Android, Remote, AI, Acumatica, TypeScript, Next.js, React, Python, Fastapi, Mode, Visio, Azure Data Lake Storage, .NET, Linkedin Marketing Solutions, Metabase, Tailwind, Node.js, Nestjs, REST, GraphQL, Prisma, PostgreSQL, AWS Trusted Advisor, Microsoft Azure Monitor, Docker, Kubernetes, Playwright, GitHub Actions, Instagram, TikTok","","","","","","",69b862eac63906001d70c08b,8731,61131,"Titanom Solutions GmbH is a technology company based in Germering, Germany, focused on developing digital products and AI solutions that enhance understanding of complex topics, particularly in education. The company prioritizes practical and sustainable solutions, emphasizing clear goals and user-centric design in their work. - -Titanom offers comprehensive services in AI product development, including strategy, user experience, engineering, and operations. They specialize in creating secure, multi-tenant platforms and provide support for nationwide deployment, ensuring stability and continuous improvement based on user feedback. One of their notable products is telli, an AI chatbot designed for school environments, which integrates with existing school management systems to facilitate safe and effective communication. - -The company collaborates closely with educational institutions, including partnerships with FWU and various German federal states, to enhance educational experiences through innovative technology.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6982dd31a1bb1f0001738e7f/picture,"","","","","","","","","" -Humanizing Technologies,Humanizing,Cold,"",17,information technology & services,jan@pandaloop.de,http://www.humanizing.com,http://www.linkedin.com/company/humanizing411,https://facebook.com/humanizingtechnologies,https://twitter.com/Humanizing411,"",Cologne,North Rhine-Westphalia,Germany,"","Cologne, North Rhine-Westphalia, Germany","robotics, engineering, digital humans, ai, ai chatbots, humanoid robots, lowcode platform, chatbots, software development, app development, pepper robot, workflow builder, conversational ai, technology, telepresence robotics, avatars, artificial intelligence, service robotics, keynote speaker, sprachsteuerung, ki-gestützte avatare, customer journey, indoor navigation, multichannel-integration, customer experience, interaktive kommunikation, barrierefreie avatare, services, cloud-basierte plattform, automatisierung, skalierbarkeit, dsgvo-konform, retail, prozessoptimierung, datenschutz, consulting, automatisierte check-in, customer support, systemintegration, mobile integration, virtuelle empfangsmitarbeiter, barrierefreiheit, ki-avatare, digitale assistenten, workflow-automatisierung, mehrsprachige sicherheitsunterweisung, government, automatisierte prozesse, hardware-kompatibilität, content management, information technology and services, automatisierte sicherheitsunterweisung, digitale personalisierung, interaktive wissensvermittlung, web widget, personalisierte customer journey, knowledge base, logistics, user experience, healthcare, api-schnittstellen, information technology & services, emotionalisierung, digitale wegführung, hybrid event support, computer systems design and related services, mehrsprachigkeit, b2b, public administration, event management, self-service, financial services, sensoren & iot, b2c, e-commerce, finance, education, legal, non-profit, manufacturing, distribution, consumer_products, public_services, mechanical or industrial engineering, apps, ux, health care, health, wellness & fitness, hospital & health care, events services, consumer internet, consumers, internet, nonprofit organization management",'+49 221 71597575,"Outlook, Microsoft Office 365, BuddyPress, Microsoft Power BI, Microsoft Azure, Hubspot, Slack, JivoSite, YouTube, Multilingual, Google Dynamic Remarketing, Mobile Friendly, Google Font API, DoubleClick Conversion, WordPress.org, Apache, Google Tag Manager, DoubleClick, Android, IoT, Remote, AI","","","","","","",69b2d7109601710001721502,7375,54151,"Humanizing Technologies is a technology company that specializes in AI avatars, digital self-service assistants, interactive agents, and robotics software. Founded in 2016, the company operates from locations in Germany and Austria and employs around 26 people. Its mission is to enhance service interactions and automate routine tasks, making technology more human-like. - -The company develops personalized 3D avatars and AI agents that improve customer experiences by automating tasks such as check-ins and product consultations. Their robotics software focuses on humanoid robots, particularly the Pepper robot, and integrates with existing systems in various sectors, including banking and public services. Humanizing Technologies aims to address labor shortages and support industries with innovative solutions that prioritize simplicity and scalability.",2016,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66fbac81034c570001b265f6/picture,"","","","","","","","","" -ATVANTAGE GmbH (ehem. X-INTEGRATE),ATVANTAGE,Cold,"",31,information technology & services,jan@pandaloop.de,"",http://www.linkedin.com/company/atvantage-1,"","",2 Im Mediapark,Cologne,North Rhine-Westphalia,Germany,50670,"2 Im Mediapark, Cologne, North Rhine-Westphalia, Germany, 50670","business integration, mom, eai, esb, soa, open standards, websphere, mq, message broker, process server, partnergateway, datapower, ilog, cloud integration, java, jee, open source, integrationasaservice, genai, ai, cplex, enterprise search 20, bpm, bpmn, spss modeler, it services & it consulting, computer software, information technology & services",'+49 221 973430,"","","","","","","",69b2d7d1bc38e00001996d18,"","","Wichtige Neuigkeit: Wir sind jetzt ATVANTAGE! -Ab dem 1. Oktober 2025 treten die Unternehmen ARS Computer und Consulting GmbH, Brainbits GmbH, TIMETOACT Software & Consulting GmbH und X-Integrate Software & Consulting GmbH gemeinsam als neue Brands unter dem neuen Namen ATVANTAGE auf. -Unsere Leistungen, unser Team und unsere Kontakte bleiben unverändert – Sie erreichen uns weiterhin zuverlässig über unser neues Profil: ATVANTAGE -Wir freuen uns darauf, unsere Zukunft gemeinsam mit Ihnen unter einer starken Marke zu gestalten.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/691b134564c88b0001e77832/picture,"","","","","","","","","" -Synthflow AI,Synthflow AI,Cold,"",72,information technology & services,jan@pandaloop.de,http://www.synthflow.ai,http://www.linkedin.com/company/synthflowai,https://www.facebook.com/profile.php,"","",Berlin,Berlin,Germany,"","Berlin, Berlin, Germany","technology, information & internet, voice ai for retail, hipaa compliant, real-time call management, customer engagement, ai for high-volume call centers, consulting, call quality assurance, enterprise security, voice biometrics, voice recognition, no-code platform, secure voice platform, call logging, call center integrations, automated complaint handling, natural language understanding, call flow design, lead qualification, call monitoring, voice ai for banking, ai-powered customer service, crm integrations, ai call center solutions, call management, call center scalability, natural language processing, call recording, voice-enabled troubleshooting, voice cloning, data encryption, gdpr compliant, automated info capture, virtual assistant, call routing, call routing algorithms, virtual receptionist, real estate, speech-to-text, management consulting services, call handling software, bpo, call center optimization, cost reduction in call centers, contact center, workflow automation, ai-driven customer engagement, ai call transfer, data protection, call scripting, multilingual voice ai, api integrations, automated follow-ups, automated service request, voice ai integration, voice-based surveys, call center workforce automation, voice ai for real estate, voice-enabled crm, customizable voice agents, healthcare, webhooks, multilingual support, automated billing support, government, call center analytics, call escalation, voice analytics for support, call center software, helpdesk integration, call handling automation, scalable saas, call center automation, b2b, voice-enabled customer feedback, retail, user experience, voice ai for healthcare, call performance, manufacturing, banking, call transfer, ai-driven helpdesk, call scheduling, voice-enabled appointment booking, telephony apis, ai-powered call monitoring, high-volume call handling, call transcription, enterprise voice ai, cloud telephony, call center ai chatbot, automated outbound calls, multilingual voice agents, ai voice agents, call automation tools, call management system, automated customer onboarding, telephony integration, crm integration, automated order processing, api access, data security, customer support automation, automated reminders, low latency voice, call flow builder, hospitality, call automation, soc2 certified, human-like voice, call center ai, multi-channel support, call analytics, voice ai for hospitality, enterprise-grade security, services, voice synthesis, government services, voice-based lead generation, education, helpdesk tools, ivr system, voice ai for government services, appointment scheduling, call volume scaling, call transfer automation, automated phone calls, conversational ai, ai receptionist, ai answering service, integrations, hipaa compliance, real-time interactions, 24/7 service, outbound calls, inbound calls, custom voice agents, automation tools, agency solutions, healthcare ai, real estate ai, recruitment ai, scheduled communications, customer inquiries, ai for dealerships, ai for solar companies, appointment management, business automation, workflow optimization, customer service enhancement, sentiment analysis, call transcripts, tailored solutions, no-code platforms, efficiency gains, cost savings, scalability, instant lead follow-up, dormant lead activation, custom integrations, finance, information technology & services, artificial intelligence, health care, health, wellness & fitness, hospital & health care, ux, mechanical or industrial engineering, financial services, computer & network security, leisure, travel & tourism",'+49 1573 7656452,"Cloudflare DNS, Gmail, Google Apps, CloudFlare Hosting, Instantly, Hubspot, Zendesk, Google Analytics, Pingdom, Twitter Advertising, YouTube, Google Maps, Google Maps (Non Paid Users), Wistia, Ruby On Rails, Facebook Login (Connect), DoubleClick Conversion, Google Font API, Stripe, WordPress.org, Google Dynamic Remarketing, reCAPTCHA, DoubleClick, Linkedin Marketing Solutions, Vimeo, Facebook Custom Audiences, Google Tag Manager, Hotjar, Intercom, Facebook Widget, Woo Commerce, Mobile Friendly, AI, WebRTC, Spiceworks IP Scanner, Oracle Communications Session Border Controller (SBC), Trend Micro Smart Protection, React, TypeScript, Tailwind, Cisco VoIP, Claude, go+, ebs",29050000,Series A,20000000,2025-06-01,"","",69b862eac63906001d70c08c,7375,54161,"Synthflow AI is a Berlin-based company founded in 2023, specializing in a no-code platform for creating and managing customizable voice AI agents. These agents automate inbound and outbound phone calls, providing human-like interactions. The platform is designed for mid-market and enterprise companies, contact centers, BPO providers, and SMBs, enabling them to handle high call volumes efficiently and cost-effectively. - -Since launching its first product version in early 2024, Synthflow AI has experienced significant growth, processing over 5 million calls monthly and achieving a 90% retention rate among enterprise customers. The company offers a comprehensive Voice AI Operating System that includes tools for building automated workflows, real-time monitoring, and seamless integrations with popular CRMs like Salesforce and HubSpot. Synthflow AI is recognized for its innovative technology, which supports over 50 languages and is compliant with HIPAA and GDPR regulations.",2023,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69ad54533e0f840001016f07/picture,"","","","","","","","","" -telli,telli,Cold,"",26,information technology & services,jan@pandaloop.de,http://www.telli.com,http://www.linkedin.com/company/tellitechnologies,"",https://twitter.com/tellimarin,"",Berlin,Berlin,Germany,"","Berlin, Berlin, Germany","advertising, search, communities, local advertising, social media, consumer internet, internet, information technology, technology, information & internet, workflow automation, operational efficiency, ai call automation, market research, services, information technology and services, call transcription, automatic callbacks, data security and compliance, customer experience, customer retention, crm integration, ai voice agents, multilingual voices, b2b, automated call handling, lead qualification, human-like conversations, multi-channel communication, utilities, customer journey, call analytics, industry-specific ai agents, healthcare, dynamic number rotation, real estate, call operations platform, financial services, customer engagement, natural language processing, management consulting services, sentiment analysis, appointment scheduling, real-time call monitoring, saas, b2c, finance, consumer_products_retail, energy_utilities, construction_real_estate, marketing & advertising, consumers, information technology & services, health care, health, wellness & fitness, hospital & health care, artificial intelligence, computer software","","Cloudflare DNS, Amazon SES, Gmail, Google Apps, MailChimp SPF, Microsoft Office 365, CloudFlare Hosting, Hubspot, Zendesk, Slack, Mobile Friendly, Google Tag Manager, BugHerd, Multilingual, Micro, Android, Node.js, IoT, Remote, AI, n8n, Zapier, TypeScript, React, Akamai Connected Cloud (formerly Linode), Python, Google AlloyDB for PostgreSQL, Linkedin Marketing Solutions",3730000,Seed,3600000,2025-04-01,"","",69b862eac63906001d70c08e,7375,54161,"telli technologies GmbH is a Germany-based SaaS startup that launched in late 2024. The company offers an AI-powered call automation platform designed for sales enablement, focusing on AI voice agents that automate outbound phone calls and customer engagement for B2C businesses. Founded by CEO Finn, CTO Seb, and COO Philipp, telli is backed by Y Combinator and aims to help sales-driven companies convert leads into sales opportunities. - -The platform automates various call operations, including lead qualification, appointment booking, and customer re-engagement. Key modules include telli qualifier for lead qualification, telli booker for scheduling, telli engager for ongoing customer engagement, and telli reacher for smart calling strategies. With features like 24/7 call answering, real-time analytics, and multi-channel communication, telli enhances engagement and reduces operational costs. The company serves a diverse range of industries, including energy, real estate, and financial services, and has processed nearly a million calls, significantly boosting engagement and efficiency for its clients.",2024,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/695a2f9e7924f30001bd5214/picture,"","","","","","","","","" -ETECTURE GmbH,ETECTURE,Cold,"",65,information technology & services,jan@pandaloop.de,http://www.etecture.de,http://www.linkedin.com/company/etecture,https://www.facebook.com/ETECTURE,https://twitter.com/etecture,31 Voltastrasse,Frankfurt,Hesse,Germany,60486,"31 Voltastrasse, Frankfurt, Hesse, Germany, 60486","uxdesign, support, quality assurance, project management, iadesign, devops, ios, maintenance operation, outsourcing, business analysis, pirobase, java, mobile apps, software architecture, liferay, php, gigya, it consulting, net, digital transformation, c, agile, it rolloutmanagement, drupal, soft development, react, perl, requirements engineering, blockchain, kotlin, javascript, automotive, android, logistik, data analytics, blockchain dlt, forecasting, data management, avatar chatbot, customer journey mapping, software development, predictive analytics, deep learning, platform development, lean ux, microservices, process optimization, software engineering, consulting services, natural language processing, data science, digital operational excellence, information technology and services, customer experience, system integration, automation, it infrastructure, b2b, experience design, ai & machine learning, microservices architecture, no-code platforms, ai engineering, digital strategy, ocr, cloud solutions, explainable ai, technology consulting, chatbots, user experience, prototyping, innovation, process mining, federated learning, services, consulting, business models, data lakes, experience architecture, cloud computing, predictive maintenance, computer systems design and related services, agile methodology, smart contracts, machine learning, e-commerce, finance, distribution, productivity, mobile, internet, information technology & services, management consulting, enterprise software, enterprises, computer software, artificial intelligence, marketing, marketing & advertising, ux, consumer internet, consumers, financial services",'+49 72 1989732601,"Route 53, Outlook, Microsoft Office 365, YouTube, Apache, Mobile Friendly, Ubuntu","","","","",459000,"",69b862eac63906001d70c090,7375,54151,"ETECTURE GmbH is a German IT services and consulting company that specializes in digital transformation. Founded in 2003, the company operates as a holistic service provider, developing digital strategies, business models, and software architectures across various industries. Headquartered in Frankfurt am Main, ETECTURE has additional locations in Karlsruhe, Düsseldorf, Berlin, and Stuttgart, and is part of the Sigma Technology Group, which enhances its global tech expertise. - -The company offers a wide range of services, including strategic consulting, software development, and specialized solutions such as AI-powered process optimization and application management. ETECTURE focuses on delivering user-friendly digital products and services, particularly in finished vehicle logistics, with tools for route optimization and real-time data analytics. With a commitment to agile methodologies and customer involvement, ETECTURE has successfully completed over 500 projects in sectors like automotive, manufacturing, logistics, and banking.",2003,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6873e975d8f9ea0001d0cdaf/picture,"","","","","","","","","" -arconsis,arconsis,Cold,"",43,information technology & services,jan@pandaloop.de,http://www.arconsis.com,http://www.linkedin.com/company/arconsis,"","",6 Am Storrenacker,Karlsruhe,Baden-Wuerttemberg,Germany,76139,"6 Am Storrenacker, Karlsruhe, Baden-Wuerttemberg, Germany, 76139","software engineering, transparency, deep learning, mobile development, agile & digital transformation, open communication, cloud native, digital product ideation, technological excellence & passion, android, scrum, agile software development, ios, ai, mobile, mobile enterprise, machine learning, adaptive enterprise, mobile software engineering, business apps, aiscale, it services & it consulting, ai@scale, cloud-native, scalability, resilience, api-driven, devops, smart shopping companion, ai operational readiness, machine learning engineering, data strategy, mobile solutions, backend for frontend, ar/vr integration, conversational interfaces, digital experience, prototyping, user-centered design, innovation, data analytics, data engineering, digital transformation, real-time data processing, cloud architecture, turnkey ai solutions, application development, enterprise integration, growth strategy, cloud services, data governance, performance optimization, technology consulting, customer success, user experience, digitalization, education programs, team collaboration, media hub, smart data capturing, intelligent automation, event management solutions, field data harvesting, vehicle inspections, cross-functional teams, ai-driven solutions, b2b, consulting, services, artificial intelligence, information technology & services, internet, enterprise software, enterprises, computer software, app development, apps, software development, cloud computing, management consulting, ux",'+49 72 19897710,"Cloudflare DNS, Outlook, Microsoft Office 365, Slack, Mobile Friendly, Google Tag Manager, Android, React Native, Docker","","","","","","",69b862eac63906001d70c091,7375,54151,"arconsis IT-Solutions GmbH is a German software engineering company founded in 2005 by Achim Baier and Wolfgang Frank. The company specializes in custom digital solutions that incorporate technologies such as AI, cloud-native systems, and mobile applications. With a focus on agile development, arconsis aims to align business objectives with effective IT execution. - -Headquartered in Karlsruhe, arconsis has expanded its presence with branches in Stuttgart, Frankfurt, Munich, Pforzheim, and Greece. The company has experienced steady growth, emphasizing innovation, collaboration, and a team-oriented culture. It supports startups through angel investments in early-stage tech ideas. - -arconsis offers a range of services, including enterprise-ready AI initiatives, scalable cloud solutions, and user-centered digital product ideation. Their portfolio features bespoke software products, such as a mobile shopping app for a major drugstore group and a cloud-based platform for quality management in agriculture. The company is dedicated to blending technology with solid engineering to deliver impactful solutions across various industries.",2006,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6884d9ec47d93500013ea4ec/picture,"","","","","","","","","" -SUSI&James GmbH,SUSI&James,Cold,"",38,information technology & services,jan@pandaloop.de,http://www.susiandjames.com,http://www.linkedin.com/company/susi&james-gmbh,https://www.facebook.com/susiandjames/,"",8 Turley-Strasse,Mannheim,Baden-Wuerttemberg,Germany,68167,"8 Turley-Strasse, Mannheim, Baden-Wuerttemberg, Germany, 68167","digitale mitarbeiter, der channel telefonie ermoeglicht uns die anbindung einer kuenstlichen intelligenz an die telefonie, hoehere flexibilitaet, intelligente sprachdialoge, prozessoptimierung, digitalisierung, deeplearning maschinelle lernverfahren, dokumentenklassifikation, geschaeftsprozesse mit sprache steuern, it services & it consulting, ai digital employees, voice ai, healthcare, ai in retail and service, ai process optimization, software development, ai in logistics, ai in hospitality, ai predictive analytics, knowledge management, deep learning, data security, deep learning applications, real-time data analysis, ai in quality control, ai user interface, ai in predictive maintenance, ai in automotive testing, ai in public administration, process automation, ai for manufacturing, ai in smart cities, retail ai, real-time analytics, ai-driven process optimization, data security in ai, public sector ai, hybrid ai systems, logistics, ai in customer feedback analysis, ai in healthcare diagnostics, ai-powered digital employees, ai in legal document processing, energy ai, manufacturing ai, ai in smart manufacturing, ai in industrial automation, enterprise knowledge management, business process automation, quality control ai, process digitalization, ai data analysis, ai in public services, ai in industrial robotics, ai multilingual support, consulting, b2b, hybrid ai technology, ai for healthcare, ai security standards, ai in supply chain management, ai performance monitoring, ai for supply chain, ai model deployment, machine learning solutions, ai scalability, ai api access, retail & service, computer systems design and related services, business services, ai customer engagement, ai in legal services, hospitality ai, supply chain ai, ai compliance, machine learning, ai in automotive industry, healthcare ai, ai integration, legal ai, predictive analytics, ai for customer service, ai in production, retail, industrial automation ai, chatbot integration, ai in retail, logistics ai, ai chatbot, multichannel ai communication, production ai, process optimization, services, ai in energy sector, ai workflow automation, customer communication automation, manufacturing, ai in energy management, ai voice assistant, artificial intelligence, ai training data, ai cloud solutions, natural language processing, automotive ai, enterprise ai solutions, customer communication, business process digitalization, workflow automation, industry, multichannel communication ai, customer service ai, ai customization, ai real-time processing, ai for automotive testing, automotive, legal, distribution, information technology & services, health care, health, wellness & fitness, hospital & health care, computer & network security, enterprise software, enterprises, computer software, mechanical or industrial engineering",'+49 621 48349342,"Outlook, Microsoft Office 365, React Redux, Slack, Hubspot, Mobile Friendly, Shutterstock, DoubleClick, YouTube, Apache, Google Analytics, Google AdSense, Google Tag Manager, WordPress.org, Javascript, Python","","","","","","",69b862eac63906001d70c092,7375,54151,"SUSI&James GmbH is a German AI technology startup founded in 2014 and based in Mannheim, Baden-Württemberg. The company specializes in cross-platform AI-based software solutions that automate and optimize communication-heavy business processes through its digital assistants, SUSI and James. With a team of around 38-39 employees, SUSI&James reported an annual revenue of $4 million in 2024. - -The company focuses on digital voice assistance, computer linguistics, machine learning, and hybrid AI technologies. Its core offerings include AI-powered digital employees for handling interaction-intensive tasks, Voice AI and Conversational AI for contact centers, and SmartOfficeAI for knowledge management and process automation. The EVA automation platform enhances AI accessibility, and the AI Callbot provides cross-industry support. SUSI&James serves various industries, including automotive, health/medical, transportation, and business productivity, aiming for broad adoption of its solutions across Germany and the EU.",2014,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670307b1ee45bc0001b5818a/picture,"","","","","","","","","" -Onsai,Onsai,Cold,"",13,information technology & services,jan@pandaloop.de,http://www.onsai.com,http://www.linkedin.com/company/onsai-intelligence,"","",22 Petersstrasse,Leipzig,Saxony,Germany,04109,"22 Petersstrasse, Leipzig, Saxony, Germany, 04109","software development, information technology & services",'+49 30 585847900,"Route 53, Gmail, Google Apps, CloudFlare Hosting, Hubspot, Mobile Friendly, WordPress.org, Google Tag Manager, Google Font API, reCAPTCHA","","","","","","",69b862eac63906001d70c08f,"","","Onsai is a Berlin-based startup founded in 2024 that specializes in developing Agentic AI solutions for the hospitality industry. The company creates digital employees designed to automate guest communication, optimize hotel operations, and address labor shortages. Named after the Japanese word for ""voice,"" Onsai aims to be ""The Voice of Hospitality"" by providing AI agents that operate autonomously and integrate with hotel systems, handling tasks in up to 25 languages. - -The company offers a range of AI-powered tools, including Onsai Voice, which automates a significant portion of incoming calls, and Onsai Chat, a messaging agent for platforms like WhatsApp. These solutions enhance efficiency, reduce staff workload, and improve guest experiences. Onsai has secured over €1 million in growth capital and has been recognized with the IHA Startup Award 2025 for its innovative voice solutions. Notable clients include McDreams Hotels and HOMARIS, showcasing the effectiveness of its technology in various hospitality settings.",2024,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/690b35b614df4800013ec170/picture,"","","","","","","","","" -skillbyte GmbH,skillbyte,Cold,"",32,information technology & services,jan@pandaloop.de,http://www.skillbyte.de,http://www.linkedin.com/company/skillbyte-ki,"","",57 Zollstockguertel,Cologne,North Rhine-Westphalia,Germany,50969,"57 Zollstockguertel, Cologne, North Rhine-Westphalia, Germany, 50969","cybersecurity, data, kubernetes, devops, terraform, spring boot, gcp, ai, generative ai, software development, openshift, aws, spark, docker, deep learning, java cloud native, kafka, ki, mobile app entwicklung, iac, machine learning, blockchain, gitops, azure, microservices, devsecops, ansible, llm, ml, kuenstliche intelligenz, it services & it consulting, ai for sustainability reporting, process automation, ai integration, ai data structuring, ki-workshop, ai for process automation in mittelstand, artificial intelligence, proof of concept, ai for production planning, ai in logistics, roi-analyse, prozessoptimierung, industrieller mittelstand, ai project planning, custom ai solutions, ai roi estimation, maßgeschneiderte ki-lösungen, ai project management, logistics, ki-beratung, data analysis, manufacturing, b2b, operational research algorithms, ai for resource allocation, ai for administration, ai pilot project, ai technology, industrial ai, ai compliance gdpr, ai in administration, datenanalyse, esg reporting automation, ai for manufacturing, services, consulting, ki-implementierung, ai strategy, ai in production, datenexploration, ai in zulassungsverfahren, computer systems design and related services, ai consulting, ai for logistics, ai development, data quality check, distribution, information technology & services, data analytics, mechanical or industrial engineering",'+49 225 17847115,"MailJet, Gmail, Google Apps, Amazon AWS, SendInBlue, WordPress.org, Mobile Friendly, reCAPTCHA, DoubleClick, Nginx, Google Dynamic Remarketing, Google Tag Manager, DoubleClick Conversion, Docker, Remote","","","","","","",69b2d7109601710001721509,3571,54151,"We are one of the leading AI service providers for German SMEs. For more than 10 years, we have been developing trustworthy digital solutions that facilitate and optimise business processes and everyday working life. We consider ourselves not just a provider but a strategic partner in the implementation of big data projects and translate the current AI hype into use cases with measurable results for administration and production.",2012,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/681f8e568300a90001d0a8ee/picture,"","","","","","","","","" -ellamind,ellamind,Cold,"",16,information technology & services,jan@pandaloop.de,http://www.ellamind.com,http://www.linkedin.com/company/ellamind,"",https://twitter.com/ellamindAI,8P Konsul-Smidt-Strasse,Bremen,Bremen,Germany,28217,"8P Konsul-Smidt-Strasse, Bremen, Bremen, Germany, 28217","artificial intelligence, ai, ki, kuenstliche intelligenz, it services & it consulting, custom large language models, data protection, synthetic data generation, data privacy, model safety, b2b, synthetic data engine, model evaluation, performance metrics, model scalability, information technology and services, multi-language llms, ai pipelines, ai collaboration, discoresearch, ai research, ai model integration, content-aware applications, software development, open-source ai models, model fine-tuning, edge deployment, model robustness, domain adaptation, domain-specific fine-tuning, ai evaluation and optimization, public-private ai partnerships, data analytics, on-premise deployment, model benchmarking, model version control, retraining with synthetic data, machine learning, research and development, multi-modal ai, model transparency, ai models, tailored ai solutions, ai research collaboration, european ai projects, model performance monitoring, open-source datasets, data sovereignty, large-scale ai projects, non-english language models, research and development in the physical, engineering, and life sciences, multilingual large language models, model resilience, healthcare, finance, education, legal, non-profit, information technology & services, research & development, health care, health, wellness & fitness, hospital & health care, financial services, nonprofit organization management","","Cloudflare DNS, Outlook, Microsoft Office 365, Slack, Mobile Friendly, AI, Luminate, Anthropic Claude, OpenAI, Python, Hugging Face, PyTorch, Harness, Frame, SLURM Workload Manager, Liferay, Apache Parquet, Django, React, Next.js, PostgreSQL, Docker, Kubernetes, Argon CI/CD Security, TypeScript","","","","","","",69b862eac63906001d70c08d,7375,54171,"ellamind GmbH is an AI company based in Bremen, Germany, founded in 2024. The company specializes in developing, evaluating, and optimizing advanced AI models tailored for enterprises, with a focus on data sovereignty and security. They prioritize European values, ensuring sensitive data remains within client networks through on-premise deployment. - -The team at ellamind has a strong background in open-source AI, having developed widely used models that have achieved top placements on the global Open LLM Leaderboard. They offer customized AI solutions for process automation across various regulated industries, including finance, healthcare, and public services. Key products include the elluminate AI evaluation platform, custom large language models, advanced retrieval-augmented generation pipelines, and a synthetic data engine for generating high-quality training data. The company collaborates with partners like JAAI Group and has experience with European Commission projects, showcasing their commitment to innovation and reliability in AI solutions.",2024,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67132afedd15730001333cec/picture,"","","","","","","","","" -dynabase Technologies GmbH,dynabase,Cold,"",21,information technology & services,jan@pandaloop.de,http://www.dynabase.de,http://www.linkedin.com/company/dynabase-technologies-gmbh,"","","",Cologne,North Rhine-Westphalia,Germany,"","Cologne, North Rhine-Westphalia, Germany","technische beratung strategie, prototyping mvpentwicklung, systemintegration apis, custom software development, ai data loesungen, digitale produktentwicklung, ki, fullservice, digitale transformation, ecommerce shop loesungen, talent sourcing recruiting, web cloud platforms, softwareentwicklung, uxui design, it services & it consulting, api development, on-premises software, consulting, full-stack development, ai services, services, product lifecycle support, computer systems design and related services, web applications, design thinking, distributed systems, cloud computing, configurators, international rollouts, prototyping, dashboards, devops, iot systems, cloud solutions, b2b, cloud infrastructure, software development, ai-powered services, custom software, agile methodology, information technology and services, artificial intelligence, team augmentation, embedded software, fleet management, digital transformation, user feedback, long-term support, custom ai models, security, information technology & services, enterprise software, enterprises, computer software, internet infrastructure, internet",'+49 221 5883070,"Gmail, Google Apps, Cloudflare DNS, CloudFlare Hosting, Mobile Friendly, Hubspot, IoT, Android, React Native, Xamarin, Node.js, Remote, Docker, Aircall","","","","","","",69b2d6c44396f7000180e5ba,7375,54151,"🌟 dynabase: Your guide to the digital age - -How can I seamlessly integrate technologies and effectively manage distributed systems? How do I design strategic and future-proof business models? Questions that inevitably arise in the digital transformation. But worry not - dynabase has the clear and concise answers you need to move forward. - -🛠 What is dynabase? - -dynabase is your trusted partner in digital transformation, offering a holistic approach from conception to long-term maintenance. We value long-term partnerships, personal growth and innovation. - -🌎 Why is this important to us? - -We strongly believe that agility, quality and scalability are the keys to success. We are motivated by solving complex problems and helping our clients achieve their goals. - -💼 How do we do that? - - -Understanding needs 🔍: Analysing people, processes and real business problems. -Developing solution approaches 💡: Combining design thinking and innovative strategies to create real USPs. -Prototyping 🛠: Rapid development and adaptation of prototypes through user labs. -Strategic planning 📈: Creation of clear roadmaps and budget planning. -Agile development 🚀: Short development cycles with autonomous, expert-driven teams. -Measure and adapt 📊: Automated feature tracking and continuous user interviews. -Continuous learning 🔄: Constant strategy adaptation and promotion of a dynamic corporate culture. - -🤝 At dynabase, we believe in working with you to create sustainable and future-proof solutions that are tailored to your individual needs. Discover the difference a collaborative partnership can make and let us plan your next step into the digital future together. - -📧 mail@dynabase.de -📞 +49 221 588 307 0",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/695f82278e5947000131b49e/picture,"","","","","","","","","" -Charamel GmbH,Charamel,Cold,"",17,information technology & services,jan@pandaloop.de,http://www.charamel.com,http://www.linkedin.com/company/charamelgmbh,https://www.facebook.com/CharamelGmbH,https://twitter.com/Charamel,60 Aachener Strasse,Cologne,North Rhine-Westphalia,Germany,50674,"60 Aachener Strasse, Cologne, North Rhine-Westphalia, Germany, 50674","humanmachine, avatar, 3d, animation, artificial intelligent, menmachine, hmi, character, virtual human, ai, digital assistant, realtime animation, sign language, it services & it consulting, human-machine interaction, 3d animation, information technology and services, emotion recognition, software engineering, interactive applications, virtual event hosts, virtual assistants, gesture translation, emotionale assistenten, digital empathy systems, software development, webgl development, avatar-based training, b2b, research and development, digital avatars, computer systems design and related services, digital media, user-friendly interfaces, ai-based communication, avatar as moderator, sprach- und gebärdensprachübersetzung, services, multimedia storytelling, natural language processing, cloud-based platforms, government, avatar development, virtual trainers, education, information technology & services, research & development, artificial intelligence",'+49 22 1336640,"Route 53, Outlook, Microsoft Office 365, Pipedrive, React Redux, Slack, Nginx, Mobile Friendly, Ubuntu, Android, React Native, Remote, AI","","","","","","",69b2d7bac749280001a72788,7375,54151,"Charamel is a IT company based in Cologne/Germany. The company vision is to bring more human touch into interactive applications by using virtual humans called avatars. Charamel is developing software for interactive and multifunctional digital assistants for a better communication between human and machine. Avatars are the next generation of a multimodal and user-friendly HMI interface face to face! - -Charamel offers a variety of software products and services. - -- Digital Avatar Solutions like Digital recepionist, Concierge or Check -in Agent -- Automatic AI-based Sign Language translation products and service for text to sign language (www.gebaerdensprach-avatar.de) - -- Virtual Trainer (www.virtual-trainer.de) is an innovative cloud-based training solution for legally prescribed trainings for companies to instruct ther employees in occupational safety, fire safety, energy, hygiene and other contents. It is easy to use in administration and documention of all instructions and user-friendly by using an avatar as virtual trainer. - -- VuppetMaster is currently the only cloud-based software to bring 3D interactive avatars on websites or into applications. It enables the visualization of digital assistants, chatbots, AI-systems and helps to increase the user experience. Using emotions, movements and speech the avatar is able to interact in real-time with users. - -- R&D - Additional research and development work in collaboration with partners sponsored by the European Commission or the German Federal Ministry of Education and Research provide new experiences and developments in artificial intelligence and help Charamel shape the future. - -Ask us for further information!",1999,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/687433328454e1000120a9ef/picture,"","","","","","","","","" -Talentship,Talentship,Cold,"",96,information technology & services,jan@pandaloop.de,http://www.talentship.io,http://www.linkedin.com/company/talentshipio,"","","",Cologne,North Rhine-Westphalia,Germany,"","Cologne, North Rhine-Westphalia, Germany","managed talent, next generation offshoring, it consulting services, managed services, managed centers, ai development, top tech teams, managed teams, interim cto services, ki consulting, software development, scale up it organizations, digitalization, top tech talent, ki services, it services & it consulting, it staffing, software development lifecycle, hybrid outsourcing, it-projektmanagement, top it talent india, cybersecurity, deutsche qualität, european it leadership, it project leadership, it-consulting, offshore-teams, digital transformation, high-performance teams, data & bi development, it-talentsourcing, offshore development, team augmentation, it service delivery, india it market, it resource management, it team building, european ctos, cto-leadership, it workforce solutions, computer systems design and related services, iso 27001 & iso 9001, remote agile teams, offshore cto support, nearshore development, top 5% it-fachkräfte, saas development, data analytics, services, it consulting, software engineering, agile methodology, cloud & devops, kosteneffizienz, cost optimization, hybrid offshoring, offshore software modernization, german-style quality offshore, b2b, top 5% engineers india, legacy modernization, offshore software development, it talent data-driven selection, hybrid offshore model, ai & automation, remote teams, high-performance offshore culture, it outsourcing, it infrastructure, it talent acquisition, cloud computing, consulting, remote management, quality assurance, information technology and services, information technology & services, staffing & recruiting, management consulting, outsourcing/offshoring, enterprise software, enterprises, computer software","","Route 53, Rackspace MailGun, Outlook, Hubspot, WordPress.org, Mobile Friendly, Ubuntu, Apache, Google Tag Manager, Typekit, Android, Remote","","","","","","",69b2d6c44396f7000180e5bf,7371,54151,"Talentship operates as a multifaceted organization with a focus on HR consulting, recruiting, and career coaching. As a Woman Owned Small Business (WOSB) in a HUB zone, Talentship LLC connects talent with leadership, leveraging over 20 years of experience in government contracting and commercial sectors. The company is dedicated to driving business and career growth through skilled recruiting and staffing services, including finding rare talent and managed teams. - -Talentship.io specializes in tech talent and team scaling, providing access to the top 5% of engineers led by experienced European CTOs. This service emphasizes cost-effective scaling and efficiency, with a methodology that enhances quality output while reducing costs. Additionally, Talentship.com offers a performance management platform designed to improve team performance and development, providing alternatives to traditional performance reviews. The company also supports training and development, career coaching, and proposal assistance for government contracting.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69ac3cba45172b00019f3ddb/picture,"","","","","","","","","" diff --git a/leadfinder/data/apollo_emla.csv b/leadfinder/data/apollo_emla.csv new file mode 100644 index 0000000..0fe0473 --- /dev/null +++ b/leadfinder/data/apollo_emla.csv @@ -0,0 +1,1164 @@ +Company Name,Company Name for Emails,Account Stage,Lists,# Employees,Industry,Account Owner,Website,Company Linkedin Url,Facebook Url,Twitter Url,Company Street,Company City,Company State,Company Country,Company Postal Code,Company Address,Keywords,Company Phone,Technologies,Total Funding,Latest Funding,Latest Funding Amount,Last Raised At,Annual Revenue,Number of Retail Locations,Apollo Account Id,SIC Codes,NAICS Codes,Short Description,Founded Year,Logo Url,Subsidiary of,Subsidiary of (Organization ID),Primary Intent Topic,Primary Intent Score,Secondary Intent Topic,Secondary Intent Score,Qualify Account,Prerequisite: Determine Research Guidelines,Prerequisite: Research Target Company +Titanom Solutions,Titanom Solutions,Cold,"",38,information technology & services,jan@pandaloop.de,http://www.titanom.com,http://www.linkedin.com/company/titanom-solutions,"","","",Germering,Bavaria,Germany,82110,"Germering, Bavaria, Germany, 82110","it services & it consulting, bildungssoftware, schulische ki-lösungen, ki-gestützte lernplattformen, interaktive lernspiele, e-learning, ki-gestützte schul- und kinderprodukte, sicheres ki-training für unternehmen, bildungsllm, ki-gestützte sprachtrainingsplattformen, services, ki-gestützte lehrmittel, ui design, deutsche ki-plattformen, sicherer ki-betrieb in deutschland, education technology, ki-gestützte sprachlernplattformen, bildungsllm speziell für schulen, schüler- und lehrerunterstützung, schul- und kinderbildung, innovative lernmethoden, sprechende ki-kuscheltiere, forschung in bildungstechnologie, ki-gestützte lernmanagementsysteme, ki-basierte bildungslösungen, educational services, colleges, universities, and professional schools, ki-gestützte unterrichtsplanung, ki-gestützte lern- und lehrprodukte, b2b, forschung und entwicklung in ki, ki in bildung, ki-technologien, software development, personalisierte lernangebote, lernprodukte, datenschutzkonforme ki, künstliche intelligenz in schulen, ki-kuscheltiere für kinder, unternehmensweiterbildung, ki-gestützte wissensvermittlung, artificial intelligence, bildungsinnovationen, online-vertretungsstunden, ki-gestützte experimente und animationen, digitale bildungsprodukte, ki-basierte lernspiele für kinder, ki-tutor, deutschlandgpt, mymilo, b2c, education, information technology & services, internet, computer software, education management","","Route 53, Outlook, Slack, Google Font API, Mobile Friendly, WordPress.org, Bootstrap Framework, Nginx, Typekit, Vimeo, Android, Remote, AI, Acumatica, TypeScript, Next.js, React, Python, Fastapi, Mode, Visio, Azure Data Lake Storage, .NET, Linkedin Marketing Solutions, Metabase, Tailwind, Node.js, Nestjs, REST, GraphQL, Prisma, PostgreSQL, AWS Trusted Advisor, Microsoft Azure Monitor, Docker, Kubernetes, Playwright, GitHub Actions, Instagram, TikTok","","","","","","",69b862eac63906001d70c08b,8731,61131,"Titanom Solutions GmbH is a technology company based in Germering, Germany, focused on developing digital products and AI solutions that enhance understanding of complex topics, particularly in education. The company prioritizes practical and sustainable solutions, emphasizing clear goals and user-centric design in their work. + +Titanom offers comprehensive services in AI product development, including strategy, user experience, engineering, and operations. They specialize in creating secure, multi-tenant platforms and provide support for nationwide deployment, ensuring stability and continuous improvement based on user feedback. One of their notable products is telli, an AI chatbot designed for school environments, which integrates with existing school management systems to facilitate safe and effective communication. + +The company collaborates closely with educational institutions, including partnerships with FWU and various German federal states, to enhance educational experiences through innovative technology.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6982dd31a1bb1f0001738e7f/picture,"","","","","","","","","" +Gefasoft Engineering GmbH,Gefasoft Engineering,Cold,"",12,information technology & services,jan@pandaloop.de,http://www.gefasoft-engineering.de,http://www.linkedin.com/company/gefasoft-engineering,"","",17 Prinz-Ludwig-Strasse,Regensburg,Bavaria,Germany,93055,"17 Prinz-Ludwig-Strasse, Regensburg, Bavaria, Germany, 93055","automotive, timeseries db, net, semiconducter industry automation, rms, run2run, automation, hsms, itsystems engineering, process data visulization, ai, oracle, tracking & tracing, engineering services, interpretation & analysis of process data & processes, integrator of cim mes solutions, secs, big data, predictive maintenance, embedded systems, apc, llm, industry 40, mobile entwicklung, iot, java, python, software entwicklung, software development, datenbanken, individuelle softwareentwicklung, industrieautomation, visualisierungssysteme, consulting, edge computing, skalierbare systeme, api-integration, smart data analyzer, manufacturing, iot und iiot, mobile app-entwicklung, cim viewer/designer, microservices-architektur, b2b, distribution, software-architektur, computer systems design and related services, digitale zwillinge, machine learning, cyber-physische systeme, services, software für fertigung, maßgeschneiderte software, datenmanagement, production lifecycle support system, predictive maintenance software, smart decision server, produktionsmanagement, proda fabchat, künstliche intelligenz, industrie 4.0, recipe management system, industrial automation, digitaler zwilling, plattformentwicklung, cloud-technologien, webentwicklung, secs-treiber, produktionssoftware, sicherheitslösungen, automatisierungslösungen, datenvisualisierung, industrie 4.0 plattformen, information technology & services, enterprise software, enterprises, computer software, embedded hardware & software, hardware, mechanical or industrial engineering, artificial intelligence",'+49 941 29844770,"Mobile Friendly, Nginx, Bootstrap Framework, Google Tag Manager, TYPO3, Node.js","","","","","","",69bab63bb4ad4200013c629b,7375,54151,"Solutions for Industry 4.0, long before the term was introduced. + +30+ years of experience in custom software development and design + +from PLC programing to cloud distributed AI algorithms, we offer a real fullstack experience.",1984,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66fe596448e7d900018039db/picture,"","","","","","","","","" +IconPro - A.I. Solutions,IconPro,Cold,"",28,information technology & services,jan@pandaloop.de,http://www.iconpro.com,http://www.linkedin.com/company/iconpro-gmbh,https://facebook.com/iconprogmbh,https://twitter.com/iconprogmbh,5 Am Kraftversorgungsturm,Aachen,North Rhine-Westphalia,Germany,52070,"5 Am Kraftversorgungsturm, Aachen, North Rhine-Westphalia, Germany, 52070","quality management, process data mining software, machine learning, production process data mining, consultancy, workshops, dynamic algorithms, predictive maintenance, it services & it consulting, sensor integration, ai software, ai in aerospace manufacturing, predictive analytics for chemical industry, sensor data analysis, sensor data anomaly detection, historical data analysis, root cause analysis, cloud-based ai, predictive quality, predictive models, software as a service (saas), predictive analytics, process data correlation, data management, real-time monitoring, business intelligence, condition monitoring, manufacturing optimization, industrial ai, ai dashboard, ai-driven process optimization, data correlation, consulting, process data, automation, manufacturing, data analytics, data-driven decisions, data integration, trend analysis, machine vision for inline inspection, data security, ai for energy consumption optimization, workflow automation, process control, b2b, data quality management, predictive maintenance for robotic systems, anomaly detection, machine vision, sensor data, data acquisition, data visualization, on-premise ai solutions, ai in manufacturing, ai for metal forming quality, data analysis, industrial iot, quality control, machine learning models, production data, data processing, process optimization, process improvement, energy & utilities, time-series forecasting in production, real-time data, quality assurance, services, predictive quality in automotive, data storage, operational efficiency, quality prediction, machinery manufacturing, energy_utilities, artificial intelligence, information technology & services, management consulting, enterprise software, enterprises, computer software, analytics, mechanical or industrial engineering, computer & network security","","Outlook, Gmail, Google Apps, Slack, Sisense, Domo, Remote, KNIME, AI","","","","","","",69bab63bb4ad4200013c628d,3571,333,"IconPro GmbH is a German industrial AI software company founded in 2018, originating from RWTH Aachen University. Based in Aachen, Germany, with a presence in London, IconPro specializes in data management and analytics tailored for manufacturing. The company focuses on enhancing machine efficiency, reducing costs, and improving performance and quality through its AI solutions. + +IconPro offers a range of services, including predictive quality and maintenance, machine vision, and data management. Their tools analyze production processes to identify improvements, monitor machine conditions to minimize downtime, and facilitate the digitization of applications like energy consumption monitoring. IconPro's solutions are designed for seamless integration into existing production environments, supporting various industries. The company collaborates with notable partners, including Bernard KRONE Holding, MAN Trucks, and Microsoft, to deliver advanced AI strategies and solutions.",2018,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e625a2a985df00017076c7/picture,Hexagon Asset Lifecycle Intelligence,5e6a859873b61d0124fda667,"","","","","","","" +DAI-Labor der TU Berlin,DAI-Labor der TU Berlin,Cold,"",28,research,jan@pandaloop.de,http://www.dai-labor.de,http://www.linkedin.com/company/dai-labor,https://www.facebook.com/DaiLaborTU/,https://twitter.com/dai_labor,7 Ernst-Reuter-Platz,Berlin,Berlin,Germany,10587,"7 Ernst-Reuter-Platz, Berlin, Berlin, Germany, 10587","artifiical intelligenz, distributed artificial intelligence, network systems, health, information security, cybersecurity, autonomous systems, testroad for autonomous vehicles in berlin, egoverment, agent technologies, smart space, invisible interaction, mobility, kuenstliche intelligenz, information retrieval, vernetzte welt, digitalisierung, research services, multi-modal interaction, testbeds, robotics, data analytics, multi-agent systems, smart city applications, autonomous vehicles, social robots, energy & utilities, environmental modeling, intelligent transportation, ai systems, sensor integration, research and development in the physical, engineering, and life sciences, digital health, edge computing, humanoid robots, healthcare technology, gesture recognition, smart home automation, transportation & logistics, smart environments, ai in public safety, ai in healthcare, health monitoring, ai for energy optimization, validation platforms, smart energy systems, b2b, energy management, software engineering, interdisciplinary research, autonomous driving, research and development in engineering and technology, machine learning, ai research, digital transformation, autonomous drones, ai for urban mobility, information technology and services, government, cloud computing, real-world testing, predictive maintenance, human-robot interaction, ai-driven diagnostics, services, ai in elderly care, cybersecurity solutions, healthcare, education, transportation_logistics, energy_utilities, computer & network security, information technology & services, mechanical or industrial engineering, health, wellness & fitness, oil & energy, artificial intelligence, enterprise software, enterprises, computer software, health care, hospital & health care",'+49 30 31474000,"WordPress.org, Mobile Friendly, Apache, Ubuntu","","","","","","",69bab63bb4ad4200013c628f,8731,54171,"DAI-Labor der TU Berlin, or the Distributed Artificial Intelligence Laboratory, is a research institute at Technische Universität Berlin, established in 1992. It focuses on developing and testing distributed artificial intelligence solutions for smart systems and services. Led by Prof. Dr. Sahin Albayrak, the lab bridges academic research and industry applications by creating autonomous AI entities that enhance intelligent, user-friendly systems. + +The lab specializes in areas such as smart spaces, autonomous systems, predictive cybersecurity, and mobility solutions for urban environments. Research is organized into three pillars: Competence Centers that develop scientific foundations, Application Centers that create interdisciplinary solutions, and Testbeds that validate these solutions in real-world scenarios. DAI-Labor employs around 60 researchers and 60 student assistants, collaborating closely with industry and government partners to ensure practical outcomes. + +Key projects include the DIGINET-PS autonomous vehicle platform and various electric mobility initiatives, which aim to integrate intelligent charging and smart energy solutions. The lab's work extends beyond theoretical research, actively contributing to the development of national standards for autonomous vehicles and smart infrastructure.",1992,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f79fe06ce80100013cf4cd/picture,"","","","","","","","","" +KYP.ai,KYP.ai,Cold,"",63,information technology & services,jan@pandaloop.de,http://www.kyp.ai,http://www.linkedin.com/company/kypai,https://facebook.com/kypai-111305060648724,"",14 Nuernberger Strasse,Berlin,Berlin,Germany,10789,"14 Nuernberger Strasse, Berlin, Berlin, Germany, 10789","digital transformation, future of work, ssc, productivity 360, process mining, productivity mining, operations steering, work telemetry, gcc, gen ai potential detection, bpo, gbs, software development, technology usage analytics, gen ai use cases, workflow automation, energy consumption tracking, agentic ai, process compliance monitoring, process mining in supply chain, business case quantification, enterprise productivity, process improvement strategies, digital twin, workforce optimization, business intelligence, ai-driven process benchmarking, ai-driven insights, process standardization, workflow mapping, ai-powered decision support, ai and data analytics, transformation mining, ai for business process reengineering, process mining for customer service, ai-enabled process discovery, process mining for order management, process automation roi, process performance dashboards, business process outsourcing, consulting services, process mining for hr, data security, process bottleneck identification, information technology and services, process variance detection, b2b, ai for process compliance, automation, operational efficiency, enterprise software, sustainability, organizational change management, customer experience, process benchmarking, process mining for finance, real-time data insights, process intelligence for itsm, roi calculation, user experience, ai-powered automation, no-code automation, data analytics, energy management, process and task mining, process optimization, automation opportunities, services, process fragmentation analysis, business transformation, process optimization for shared services, hybrid work productivity, continuous improvement, process discovery, consulting, process reengineering, productivity analytics, operational data analysis, business process optimization, task mining, ai agent deployment, data-driven decision making, performance tracking, computer systems design and related services, productivity, intelligence platform, data analysis, real-time insights, workflow streamlining, ai integration, employee engagement, roi, process visibility, end-to-end visibility, genai, performance metrics, business process management, automation candidate identification, it service management, functional excellence, workforce productivity, holistic insights, data mining, technology optimization, collaboration tools, custom dashboards, data capture, lean management, insight generation, cost reduction, efficiency improvement, process excellence, human resources management, supply chain optimization, financial efficiency, compliance monitoring, finance, information technology & services, analytics, management consulting, computer & network security, enterprises, computer software, environmental services, renewables & environment, ux, oil & energy, financial services",'+49 22 116920909,"Outlook, Freshdesk, Hubspot, Mobile Friendly, Google Tag Manager, Google Font API, YouTube, Bootstrap Framework, WordPress.org, Hotjar, Linkedin Marketing Solutions, Android, Remote, AI, Apollo, Reply, Leadfeeder, Make, Wordpress, Elementor, Webflow, Claude, Bombora, LinkedIn Ads, Google Analytics 4 (GA4), Google Search Console, Zapier, Skypark CDN",37399625,Series A,18699625,2023-09-01,2230000,"",69bab63bb4ad4200013c6296,7375,54151,"KYP.ai is a Germany-based AI company founded in 2018, focused on productivity intelligence software. Headquartered in Cologne, with operations in Berlin, KYP.ai has developed the Productivity 360 platform, which analyzes workforce, processes, and technology interactions to provide real-time insights and optimization opportunities. The company employs around 50-60 people and has raised approximately EUR 17.5M to $18.7M in Series A funding. + +KYP.ai offers a plug-and-play cloud SaaS solution that enhances visibility across business systems. The Productivity 360 platform collects real-time data to generate actionable insights, prioritize automation, and track ROI. The company also provides GenAI-driven tools for identifying productivity opportunities and optimizing AI agents. Their process intelligence and mining capabilities deliver significant efficiency gains and cost savings for clients. KYP.ai serves a diverse range of sectors, including technology, insurance, healthcare, and logistics, and is recognized as a leader in various industry reports.",2018,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69ada0f7f6866800014afa36/picture,"","","","","","","","","" +CodeCamp:N,CodeCamp:N,Cold,"",67,information technology & services,jan@pandaloop.de,http://www.codecamp-n.com,http://www.linkedin.com/company/codecamp-n,"","","",Nuremberg,Bavaria,Germany,"","Nuremberg, Bavaria, Germany","rapid prototyping, chatbots, lean startupmethoden, kuenstliche intelligenz, websites, agile methoden, digitale transformation, versicherungen, apps, design thinking, mehrwertservices, finanzen, sprachassistenzsysteme, digital health, it services & it consulting, angular, data & ai, software lifecycle, cloud native, flutter, software engineering, user & design, consulting, business intelligence, digital solutions, microservices, machine learning, software architecture, it system modernization, ai chatbots, tailwind, software testing, it strategy, react, devops, sustainable it, it analysis, java, services, it infrastructure, digital transformation, node.js, devops tools, ki consulting, it governance, artificial intelligence, bootstrap, test automation, it modernization, computer systems design and related services, cloud computing, cloud-native development, cloud solutions, synthetic test data, microsoft azure, digital energy management, human & method, cloud security, cloud infrastructure, kubernetes, terraform, it project management, legacy system modernization, data visualization, regulatory compliance, automated testing, user experience design, containerization, agile organization, nextjs, it transformation, automated code documentation, energy efficiency, performance optimization, vuejs, custom software development, energy-efficient software, software quality, it consulting, automated testing frameworks, digitalization, cloud services, cloud deployment, information technology and services, ai solutions, cloud migration, software quality assurance, data analytics, b2b, data strategy, digital workflows, sustainable it solutions, digital strategy, api development, regulatory compliant ai, process automation, process optimization, amazon web services, software development, cloud cost optimization, agile methods, finance, health, wellness & fitness, information technology & services, analytics, enterprise software, enterprises, computer software, internet infrastructure, internet, environmental services, renewables & environment, management consulting, marketing, marketing & advertising, financial services",'+49 911 27448523,"Cloudflare DNS, Route 53, Outlook, Atlassian Cloud, Microsoft Azure, TikTok, Webflow, SendInBlue, Slack, Google Tag Manager, Mobile Friendly","","","","","","",69bab63bb4ad4200013c6299,7371,54151,"CodeCamp:N is an IT consulting and implementation firm based in Nürnberg, Germany. The company specializes in responsible and sustainable digitalization, focusing on measurable business outcomes. They aim to modernize IT landscapes, enhance software quality, automate processes, and leverage data and AI to create data-driven environments. CodeCamp:N emphasizes a comprehensive approach, guiding clients through consulting, development, and post-launch support. + +Their services include consulting for software development strategies, cloud solutions on platforms like Microsoft Azure and AWS, user-centered design, software quality enhancement, and process automation using RPA technologies. They also support organizational agility and development, helping businesses respond faster to customer needs. CodeCamp:N employs agile methods such as SCRUM and Kanban, and their tech stack includes modern frameworks and cloud technologies. + +The company showcases various projects, including an automated process optimization platform, a chatbot for finance inquiries, and a knowledge management system for tax services. These projects demonstrate their expertise in enhancing efficiency and user satisfaction across different sectors.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/690d8b86abb0040001573a6e/picture,"","","","","","","","","" +beON consult,beON consult,Cold,"",49,information technology & services,jan@pandaloop.de,http://www.beon.net,http://www.linkedin.com/company/beon-consult-it,"","",116 Nordstrasse,Duesseldorf,North Rhine-Westphalia,Germany,40477,"116 Nordstrasse, Duesseldorf, North Rhine-Westphalia, Germany, 40477","itbeon, bigdata, bots blockchain, machine learning, consulting, artificial intelligence, integration & automation, deep learning, data visualization, sap application development, telecommunications, enterprise analytics solutions, red hat technologies, sap s4 hana, it solutions, connected devices & systems solutions, entreprise mobility, insurance, beonit, sap btp, suse, aws, infrastructure, sap bw, sap hana, it security, openshift, technology platform, kubernetes, iot analytics, iot event streaming processing, banking, devops, cicd, hybrid cloud, erp, ifrs, beonconsult, azure, consulting services, technology strategy delivery, architecture, cloud development, sap basis, financial services, management consulting, storage, red hat linux, kafka, event streaming, it services & it consulting, risk management, information technology and services, blockchain, enterprise architecture, it governance, cloud & devops, services, ai & machine learning, manufacturing, hybrid cloud solutions, cloud transformation, b2b, data management, digital transformation, it consulting, real-time data processing, e-commerce, infrastructure as code (iac), sap transformation, iot competency, ai-powered chatbots, predictive analytics, logistics, business intelligence, custom software development, computer systems design and related services, ransomware resilience, big data analytics, finance, distribution, information technology & services, computer & network security, mechanical or industrial engineering, consumer internet, consumers, internet, enterprise software, enterprises, computer software, analytics",'+49 431 5568050,"Outlook, Amazon AWS, Vimeo, Apache, Mobile Friendly, WordPress.org, Gravity Forms, Google Tag Manager, Remote, Kubernetes, Google Cloud Knative, Istio, Linkerd, go+, Python, TensorFlow, PyTorch, Kubeflow, Microsoft Azure Monitor, Google Cloud, Apache Kafka, Connect, Ansible, Jenkins, GitHub, GitLab, Prometheus, Grafana, ELK Stack, Fluentd, HELM, SAP Fiori, , SAP Cloud Platform Integration, SAP Analytics Cloud, SAP, SAP Basis, SAP Solution Manager, Jira, Confluence, Microsoft Dynamics 365 Finance, Dynamics 365 Project Operations, Microsoft Dynamics, Microsoft Excel, vSphere, Horizon, VMware ESXi, VMware vCenter Server, VMware Horizon Client, Citrix VDI-in-a-Box, Conversant (ValueClick), HPE Blade Servers, IBM Cognos Analytics, Microsoft Windows Server 2012, Azure Linux Virtual Machines, Microsoft PowerShell, Terraform, Akamai CDN Solutions, Cisco VPN, Cisco Secure Firewall Management Center, AWS Application Load Balancer, Gem, .NET, Microsoft Dynamics 365, Dynamics 365 Finance, Microsoft Dynamics 365 HR, Dynamics 365 Sales, Dynamics 365 Customer Service, Apache Airflow, AWS Trusted Advisor, Bevywise MQTT Broker, dbt, DC Storm, GRPC, Homestead, IBM ILOG CPLEX Optimization Studio, MLflow, Modbus, PowerBI Tiles, REST, Siemens SIMATIC SCADA, SQL, SAP S/4HANA, Microsoft PowerPoint, Salesforce CRM Analytics, Argo CD, Microsoft Power Apps, Microsoft Power Automate, Docker, AWS CloudFormation, AWS Cloud, XGBoost, NLP Catpcha, Flash Appointments, Limelight Video Platform, Amazon Web Services (AWS), Microsoft Azure, Google Cloud Platform, Salesforce Service Cloud, Intel, LinkedIn Recruiter","","","","","","",69bab63bb4ad4200013c629c,7375,54151,"beON consult is an IT consultancy based in Kiel, Germany, focusing on digital transformation projects for sectors such as insurance, financial services, banking, and manufacturing. The company serves clients primarily in the DACH region (Germany, Austria, Switzerland) and employs a team of IT strategists, consultants, developers, and other specialists to deliver tailored solutions. + +Founded to provide innovative IT services, beON consult offers a range of services including IT strategy, cloud transformation, IT security, and data management. The company emphasizes a client-first approach, aiming to enhance performance and drive digital innovation. With a commitment to transparency and teamwork, beON consult supports clients in leveraging technology for efficiency and competitive advantage. The company has reported significant employee growth and operates independently to meet diverse client needs.",2010,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670e0d95687f9a0001f92783/picture,"","","","","","","","","" +eoda GmbH,eoda,Cold,"",30,information technology & services,jan@pandaloop.de,http://www.eoda.de,http://www.linkedin.com/company/eoda-gmbh,https://facebook.com/datenwissennutzen,https://twitter.com/datennutzen,2 Universitaetsplatz,Kassel,Hesse,Germany,34127,"2 Universitaetsplatz, Kassel, Hesse, Germany, 34127","statistical analysis, data mining, generative ai, predictive analytics, machine learning, r, consulting, data science, advanced analytics, customer analysis, big data, predictive maintenance, data analysis, training, it services & it consulting, ai consulting, ai in finance, data science projects, natural language interaction, ai in invoice processing, ai in insurance, data culture, digital twin in industry, data science training, data analytics software, data science infrastructure, sales forecasting ai, ai in industry, ai in business, data engineering, ai deployment, ai in manufacturing, ai for churn prediction, mlops, ai use cases, artificial intelligence, information technology and services, predictive maintenance ai, data scalability, deep learning, data infrastructure, data science consulting, data analysis infrastructure, trusted ai, ai in invoice verification, guinan platform, ai in customer segmentation, ai in energy, consulting services, energy & utilities, anaconda, services, automation, data automation, cloud data platforms, ai for quality management, data governance, sales forecast ai, manufacturing, ai for condition monitoring, data science methodology, exasol, data science tools, ai in logistics, ai in retail, finance, ai infrastructure, computer systems design and related services, data science in industry, gpt platform, ai in predictive maintenance, ai in fraud detection, ai in energy sector, data security, data science use cases, ai in sales forecasting, natural language processing, data science and analytics, logistics, ai for customer segmentation, retail, fraud detection, shiny for python, ai solutions, chatbot, r shiny, data visualization, data culture inspiration, cloud infrastructure, digital twin, ai for fraud detection, data analytics, data-driven decision making, data science solutions, ai training, ai for site planning, retrieval augmented generation, b2b, data-driven business, data strategy, ai development, ai in site planning, ai in quality management, education, distribution, consumer_products_retail, transportation_logistics, energy_utilities, enterprise software, enterprises, computer software, information technology & services, management consulting, mechanical or industrial engineering, financial services, computer & network security, internet infrastructure, internet",'+49 561 87948370,"Outlook, MailChimp SPF, Microsoft Office 365, WordPress.org, Mobile Friendly, Google Font API, Nginx, Google Tag Manager, Shutterstock, Data Analytics, AI, Python","","","","",3810000,"",69bab63bb4ad4200013c629d,7375,54151,"eoda GmbH is a German IT company founded in 2010 and based in Kassel. The company specializes in data science and AI services, offering consulting, software development, and training. With a focus on empowering businesses, eoda has successfully completed over 1,800 projects across various industries, from small businesses to large enterprises. + +The interdisciplinary team at eoda covers the entire workflow, from data acquisition and analysis to result interpretation and integration. Their services include developing data science and AI strategies, real-time analytics, and custom software solutions using technologies like Exasol and Anaconda. eoda also provides analytics services for predictive maintenance and process optimization, along with training seminars on topics such as data analytics and quantum computing. As part of VIVAVIS AG, eoda is committed to security and quality, adhering to ISO 27001 certification.",2010,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6844ee62410d5e00016a1445/picture,"","","","","","","","","" +Tobit,Tobit,Cold,"",86,information technology & services,jan@pandaloop.de,http://www.tobit.com,http://www.linkedin.com/company/tobitlabs,"","",41 Parallelstrasse,Ahaus,North Rhine-Westphalia,Germany,48683,"41 Parallelstrasse, Ahaus, North Rhine-Westphalia, Germany, 48683","software development, kommunale angebote, smart governance, computer systems design and related services, smart city plattformen, standard-software, cloud-software, kommunale datenplattformen, smart city solutions, kommunale anwendungen, kommunale digitalisierung, datenschutz, consulting, sensorintegration, information technology & services, government, bürgerdienste, digital signage, kommunale apps, mobile apps, e-government, digitale stadt, digitale verwaltung, kommunale infrastruktur, softwareentwicklung, api, api schnittstellen, automatisierungstools, kommunikationstechnologie, digitalisierung, b2b, digitales fundament, kommunale services, automatisierung, digitale bürgerdienste, services, digital transformation, chayns, iot integration, cloud-basiertes betriebssystem, kommunale plattformen, ki-gestützte anwendungen, ki-chat-system, cloud software, digitale bürgerbeteiligung, open source, smart city, verwaltungssoftware, smart city lösungen, api-integration, dsgvo-konform, information technology and services, non-profit, computer software, nonprofit organization management","","Cloudflare DNS, Slack, Mobile Friendly, Google Play, IoT, Remote, Cisco VPN, Cisco Secure Firewall Management Center, AWS Identity and Access Management (IAM), Secured MVC Forum on Windows 2012 R2, Amazon Linux 2, AWS VPN, Barracuda Spam Firewall, Google Cloud Identity & Access Management (IAM)","","","","","","",69bab63bb4ad4200013c629e,7375,54151,"Tobit Laboratories AG, also known as Tobit.Software, is a German software company founded in 1986 and headquartered in Ahaus, Westphalia. With around 200 employees, Tobit focuses on the research, design, development, and marketing of standard software aimed at digitalization and connectivity. The company operates as a private stock corporation, emphasizing innovation and collaboration through its unique structure. + +Tobit's core platform, chayns®OS™, is a free, open, cloud-based operating system that supports web apps and digitalization. It is utilized by over 100,000 companies and organizations, providing access to thousands of applications. Key offerings include tools for website creation and management, messaging and collaboration solutions, and advanced AI services for enterprises. Tobit also contributes to smart city initiatives, showcasing its technology in urban digitalization projects. The company is supported by a network of over 2,000 authorized partners for consulting and adaptations.",1986,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/683ba8829c18880001b1b062/picture,"","","","","","","","","" +beebucket,beebucket,Cold,"",11,information technology & services,jan@pandaloop.de,http://www.beebucket.ai,http://www.linkedin.com/company/beebucket-ai,"","",22 Neunkirchenweg,Ulm,Baden-Wuerttemberg,Germany,89077,"22 Neunkirchenweg, Ulm, Baden-Wuerttemberg, Germany, 89077","edge ai, machine vision, iiot analytics, consulting, data lake, object detection, ai appliance, lifecycle management, artificial intelligence, purpose build ai, agentic ai, data science, value cocreation, software development, machine learning, kigestuetzte sicherheitsloesungen, applied ai, full managed ai, computer vision, data catalogue, data licensing, ai in cloud, ai compliance, iot edge, ai applications, high analytical quality, ai in traffic management, data privacy compliance, container visibility edge, ai deployment, services, ai in monitoring, ai runtime, eu data act compliance, ai in edge and cloud, fisheye object detector, ai in data analysis, information technology and services, devops, ai in city safety, iot data license, viral safety monitoring, ai in edge computing, vandalism detection ai, traffic control, automated training, traffic analysis, ai in logistics and traffic, ai development environment, edge data densification, data densification, frand licensing, ai security and compliance, logistics and supply chain, digital companion ulm, b2b, computer software, ai security standards, ai in urban development, smart city, security and surveillance, safety and security, security, proprietary build pipeline, adaptive cleansed snapshots, ai security, data privacy, city safety solutions, government, ai development, data security, full managed service, data localization, data management, visionpier marketplace, container management, urban security ai, ai in logistics, gpu, cpu, fpga, ai in security, ai optimization, logistics, ai automation, sustainable operation, it security, ai in public transport, data integrity (pii), ai efficiency, edge, hybrid, cloud, aiops, computer systems design and related services, traffic monitoring, legal, transportation_logistics, information technology & services, logistics & supply chain, computer & network security",'+49 731 38863418,"Outlook, Google Font API, reCAPTCHA, WordPress.org, Mobile Friendly, Apache","","","","","","",69bab63bb4ad4200013c628b,7375,54151,"beebucket ist ein junges, innovatives Tech-Unternehmen mit Sitz in Ulm, das sich auf die Entwicklung und Implementierung maßgeschneiderter KI-Lösungen spezialisiert hat. Unsere Mission ist es, Unternehmen durch intelligente Automatisierung zu datengetriebene Entscheidungen zu verhelfen. Mit unserer proprietären Toolchain ermöglichen wir eine effiziente Entwicklung, Optimierung und Wartung von KI-Anwendungen – sicher, skalierbar und branchenspezifisch.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670a4b20eccd2f00014b5037/picture,"","","","","","","","","" +Finanz-DATA GmbH,Finanz-DATA,Cold,"",83,information technology & services,jan@pandaloop.de,http://www.fida.de,http://www.linkedin.com/company/finanz-data-gmbh,https://www.facebook.com/FIDA.IT/,"",3 Helenenstrasse,Gotha,Thuringia,Germany,99867,"3 Helenenstrasse, Gotha, Thuringia, Germany, 99867","business intelligence, softwareentwicklung, testmanagement, trainings, agiles arbeiten, prozessberatung, data science, kuenstliche intelligenz, data analytics, muster und regelerkennung, business consulting, regressionstests, rules engine, it services & it consulting, data warehouse, python courses, financial technology, data management, services, legacy system modernisierung, regelbasierte betrugserkennung, ki in der lebensversicherung, data analytics schulungen, betrugserkennung, data governance, data modeling, data infrastructure, data science zertifikate, data warehouse migration, data migration, data processing, education, deep learning, data solutions, data science in versicherungen, ai consulting, data-driven decision making, government, data science für kmu, data quality, automatisierte datenanalyse, computer systems design and related services, open-source data analytics, ki schulungen, data integration, data architecture, information technology and services, legacy systeme, financial services, b2b, data visualization, data strategy, data security, data science training, data science kurse, regressionsanalyse, data automation, data platform, data analysis, software development, machine learning, data engineering, ai training, consulting, finance, analytics, information technology & services, management consulting, finance technology, artificial intelligence, enterprise software, enterprises, computer software, computer & network security",'+49 362 145100,"Outlook, , Microsoft Office 365, React Redux, Mapbox, Hubspot, Mobile Friendly, Apache, Remote, Salesforce CRM Analytics","","","","","","",69bab63bb4ad4200013c62a2,7375,54151,"Finanz-DATA GmbH, operating as FIDA Software & Beratung, is a medium-sized consulting and software company based in Gotha, Germany. With over 30 years of experience, the company specializes in providing customized digital solutions for insurance companies, the public sector, and small to medium-sized enterprises (SMEs). FIDA focuses on computer consultancy, advising clients on organizational and information systems development, with a strong emphasis on AI-driven tools and data analytics. + +The company offers a range of specialized software solutions designed to tackle digital challenges, including AI assistants, fraud detection systems, and customizable data analytics tools. FIDA also provides comprehensive consulting services, including AI consulting, custom web and app programming, and data analytics to help clients transform their data into actionable insights. Their commitment to high-quality development and consulting projects is evident in their tailored approach, which prioritizes client trust and industry-specific needs.",1991,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/673dc02fb4e1f00001a13e22/picture,"","","","","","","","","" +Aequitas Software GmbH & Co. KG,Aequitas Software GmbH & Co. KG,Cold,"",23,information technology & services,jan@pandaloop.de,http://www.aequitas-software.de,http://www.linkedin.com/company/aequitas-software-gmbh-&-co--kg,https://www.facebook.com/aequitassoftware,"",13 Hermannstrasse,Hamburg,Hamburg,Germany,20095,"13 Hermannstrasse, Hamburg, Hamburg, Germany, 20095","software beschaffung, software asset management, itstrategieberatung, enterprise architekturen, itprocurement, it service management, digitale transformation, government, software-implementierung, workflow automation, software allianz, consulting, it-netzwerk hamburg, services, it-projektunterstützung, computer systems design and related services, rpa, it-beratung, elektronische signatur, robin digitaler mitarbeiter, camunda bpm, software-lösungen, it-service, cloud computing, software-architektur, it-strategie, process automation, softwareentwicklung, b2b, workflow management, software development, prozessautomatisierung, it-consulting, elektronische unterschrift, information technology and services, robotic process automation (rpa), software-testing, it-netzwerk, it-fachkräfte, it consulting, it-expertise, it-projekte, it-unterstützung, enterprise software, enterprises, computer software, information technology & services, management consulting",'+49 40 334615460,"Outlook, Microsoft Office 365, Remote","","","","","","",69bab63bb4ad4200013c628c,7375,54151,"Aequitas Software GmbH & Co. KG is an IT consulting firm based in Hamburg, Germany, founded in 2015. The company specializes in the digitalization of business processes, offering expertise in software architecture, development, testing, and client management. With a team of around 22 employees, Aequitas generates approximately $1 million in revenue and operates nationwide, including locations in Cologne and Aachen. + +The firm provides a range of IT consulting services, focusing on software architecture, development, testing, and client management. Aequitas emphasizes reliable and partnership-based services, supporting clients through analysis, conception, and implementation of innovative solutions. Their key offerings include Robotic Process Automation (RPA), electronic signature solutions, and workflow automation, all aimed at optimizing processes and addressing digitalization needs.",2015,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66fa380ba27ea2000136d73e/picture,"","","","","","","","","" +Manex AI,Manex AI,Cold,"",26,information technology & services,jan@pandaloop.de,http://www.manex.ai,http://www.linkedin.com/company/manex-ai,"","",187A Schleissheimer Strasse,Munich,Bavaria,Germany,80797,"187A Schleissheimer Strasse, Munich, Bavaria, Germany, 80797","intelligent testing, efficient testing, manufacturing, home appliances, industrial ai, electronics, chemistry, machine learning, industry 40, quality management, software development, artificial intelligence, automotive, ai-powered defect detection, production efficiency, rework reduction, defect prediction, warranty cost reduction, industrial machinery manufacturing, real-time process insights, defect detection accuracy, predictive analytics, process monitoring, ai manufacturing optimization, quality improvement, cost savings in manufacturing, process automation, quality assurance, multi-plant scalability, robotics integration, autonomous factories, b2b, security certifications, data integration, services, automation in manufacturing, reduction of scrap rates, ai in quality control, manufacturing optimization agents, industrial automation, industry-specific use cases, real-time data analysis, end-to-end process optimization, automated defect documentation, microservice architecture, mechanical or industrial engineering, computer hardware, hardware, information technology & services, enterprise software, enterprises, computer software",'+49 1523 2783077,"Outlook, Amazon AWS, Hubspot, Mobile Friendly, Google Tag Manager, Vimeo, Apache, WordPress.org, Google Font API, AI, Snowflake, CallMiner Eureka, Azure Linux Virtual Machines, Kubernetes, Amazon EC2 Container Service",8800000,Seed,8800000,2025-06-01,"","",69bab63bb4ad4200013c628e,3556,33324,"Manex AI is a Munich-based startup founded in 2023 that specializes in AI-driven manufacturing optimization. The company aims to enable autonomous factories through its flagship platform, Qualitatio. This platform integrates real-time and historical data from various systems, including ERP and quality management, to optimize efficiency, reduce defects, and enhance quality throughout the manufacturing process. + +Co-founded by a team with experience from BMW, Manex AI has quickly grown to over 20 engineers. The company has secured €8 million in seed funding and is advised by experts from notable organizations like Google DeepMind and Mercedes-Benz. Qualitatio acts as a central nervous system for manufacturing, utilizing reinforcement learning and AI agents for root cause analysis and process optimization. It significantly reduces inspection volumes while improving delivery quality, making it suitable for factories with varying levels of digital maturity.",2023,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6960c58516c8f3000174078d/picture,"","","","","","","","","" +Honda Research Institute Europe,Honda Research Institute Europe,Cold,"",82,research,jan@pandaloop.de,http://www.honda-ri.de,http://www.linkedin.com/company/honda-research-institute-europe-gmbh,"","",30 Carl-Legien-Strasse,Offenbach,Hesse,Germany,63073,"30 Carl-Legien-Strasse, Offenbach, Hesse, Germany, 63073","ethics in ai, humanmachine interaction, machine learning, prediction, intelligent cyberphysical systems, cooperative intelligence, knowledge representation, engineering psychology, quantum computing, systems optimization, smart materials, deep learning, energy balance in e-mobility, human-robot interaction, energy systems integration, personalization in hri, adversarial optimization, causal understanding for human-robot cooperation, academic and industry collaboration, system optimization, autonomous vehicles, research and development in artificial intelligence and robotics, energy storage, control algorithms, multi-objective configuration optimization, research and development in the physical, engineering, and life sciences, ai research, digital twins, optimization algorithms, cooperative behavior, predictive control, human-centered robotics, energy management and smart systems, smart mobility, energy systems, simulation tools, data analytics, robotics, robotics ergonomics, energy management, system architecture, heterogeneous data integration, b2b, intuitive human-robot interaction, robust control architectures, self-adjusting memory sam, risk assessment, lifelong learning systems, education, transportation & logistics, energy & utilities, artificial intelligence, information technology & services, oil & energy, mechanical or industrial engineering",'+49 69 89011750,"Outlook, Microsoft Office 365, WordPress.org, Mobile Friendly, Apache, AI",370000,Other,370000,2016-01-01,"","",69bab63bb4ad4200013c6292,8731,54171,"Honda Research Institute Europe GmbH (HRI-EU) is a research subsidiary within the global Honda Research Institutes network, employing around 50 scientists and researchers. Established in 2003, HRI-EU focuses on advancing Artificial Intelligence (AI) and intelligent systems, guided by the philosophy of ""Innovate through Science."" The institute conducts early-stage research to support Honda's technology roadmap, particularly in the area of Cooperative Intelligence, which aims to enhance interactions between intelligent systems and humans. + +HRI-EU's research spans several core areas, including Robotics, Advanced Driver Assistance Systems (ADAS), energy management, and Human-Machine Interfaces (HMIs). The institute works on projects that develop technologies for cooperative driving, human-robot cooperation, and resource efficiency. HRI-EU collaborates with academic partners and maintains a European Graduate Network for students, contributing to various co-funded projects across Europe. Its research outputs include novel technologies and insights that support Honda's internal initiatives and the broader field of AI and robotics.",2003,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/672473a4bf74470001268c58/picture,"American Honda Motor Company, Inc. (honda.com)",5c26425ef65125e2956a848e,"","","","","","","" +endlich OHG,endlich OHG,Cold,"",21,information technology & services,jan@pandaloop.de,http://www.endlich.it,http://www.linkedin.com/company/endlich,https://de-de.facebook.com/endlichgmbh/,https://twitter.com/endlichferien,33 Moststrasse,Fuerth,Bavaria,Germany,90762,"33 Moststrasse, Fuerth, Bavaria, Germany, 90762","it process management, application management, cmdb, oracle apex, datenanalyse, it services & it consulting, data privacy, it security frameworks, it consulting, data pipelines, phishing awareness training, data security & privacy training, data security, security operations center (soc), data lifecycle, data warehouse, data modeling, consulting services, data quality improvement, data governance frameworks, consulting, data import & migration, data integration, data automation, regulatory compliance it, cloud migration, cyber security, cybersecurity, data quality, ai & data projects, data management, data visualization, data analytics, it project management, data transformation, computer systems design and related services, projektmanagement, information technology services, b2b, ai & data, machine learning, data governance, data strategy, data warehouse solutions, data reporting, data standardization, data infrastructure, data analytics tools, cyber risk assessment, etl-services, data-driven decision making, natural language processing, data optimization, data insights, data compliance, data analysis in healthcare, configuration management database (cmdb), it-services, itil/itsm consulting, services, big data, it-prozessmanagement, information technology & services, management consulting, computer & network security, enterprise software, enterprises, computer software, artificial intelligence","","Microsoft Office 365, Apache, YouTube, Mobile Friendly, WordPress.org, Circle","","","","",90000,"",69bab63bb4ad4200013c6290,7379,54151,"Die endlich OHG steht Ihnen sowohl bei der Planung, als auch bei der Durchführung Ihres Projektes zur Seite. Hierbei setzen wir auf erfolgreiche Teamarbeit, damit Ihre anspruchsvollen Projekte zur höchsten Zufriedenheit ausgeführt werden. Im Jahr 2007 kamen durch den Zusammenschluss zweier Kompetenzen, neue Leistungsbereiche zu unserem Portfolio dazu.",2007,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e023181e471400010b7313/picture,"","","","","","","","","" +Gosign,Gosign,Cold,"",23,information technology & services,jan@pandaloop.de,http://www.gosign.de,http://www.linkedin.com/company/gosign-%e2%80%93-die-wohl-schnellste-digitalagentur-der-welt,"","",8 Hallerstrasse,Hamburg,Hamburg,Germany,20146,"8 Hallerstrasse, Hamburg, Hamburg, Germany, 20146","typo3, sap integration, cloud architecture, enterprise ai infrastructure, content marketing, mehrsprachige websites und shops, artificial intelligence, magento, agent engineering, decision automation, gdpr compliance, ai compliance, ai governance, workflow orchestration, technology, information & internet, it services & it consulting, content management systems, system integration, computer systems design and related services, ai training, content management, automated workflows, b2b, ai model hosting, ai model catalog, system connectivity, automatisierte prozesse, custom ai infrastructure, multilinguale websites, digital transformation, enterprise solutions, multilingual cms, ai infrastructure, ai deployment, security patches, content localization, datensicherheit, digitale plattformen, services, maßgeschneiderte lösungen, ki-infrastruktur, content management system, enterprise software, web development, cloud hosting, enterprise ai solutions, information technology and services, ai system integration in it, it security, ai models, ai-powered content management, it consulting, consulting, dsgvo-konformität, digital strategy, software development, enterprise security, cloud infrastructure, enterprise cms, web hosting, ai in corporate environment, ai model cost reduction, data security, ai security standards, ai model deployment in business, ki-modelle, it-integration, digitale transformation, custom solutions, multilingual websites, ai model training gdpr, webentwicklung, ai assistants, finance, transportation & logistics, marketing & advertising, information technology & services, enterprises, computer software, cloud computing, computer & network security, management consulting, marketing, internet infrastructure, internet, financial services",'+49 40 609407940,"Cloudflare DNS, Gmail, Outlook, Google Apps, Nginx, Mobile Friendly, Google Tag Manager, Gravity Forms, WordPress.org, AI","","","","","","",69bab63bb4ad4200013c6291,7375,54151,"Gosign builds enterprise AI infrastructure and agent architectures for regulated environments. Based in Hamburg, Germany. Founded in 2001. + +For over two decades, we have designed and operated complex enterprise systems. Today, we build AI agent architectures that integrate into existing corporate landscapes – securely, auditably, and under full customer control. + +What we build: + +→ AI agent infrastructure in the customer's environment (Azure, GCP, self-hosted) +→ Decision Layer architectures for Finance and HR processes +→ Governance by Design: audit trail, RBAC, versioning, bias monitoring +→ Human-in-the-Loop systems for critical business decisions + +Our Decision Layer eliminates hidden decision risks. Rule logic becomes explicit, versioned and auditable. + +Designed to align with enterprise architecture boards and existing security review processes. +→ Agent Builder and Agent Library for employee-driven agent development +→ Integration with SAP, DATEV, SharePoint, Teams and existing enterprise systems + +How we work: + +We deploy in your infrastructure, authenticate via your Entra ID, and respect your security policies. Complete source code and all prompts belong to the customer. No vendor lock-in. Models are swappable. + +Our goal is enablement: after 12–18 months, your teams operate and extend the AI infrastructure independently. + +References: Pilot Gruppe (media, agentic infrastructure, GDPR legal opinion), Roser Group (legal/tax/audit, finance agent), international corporations (architecture consulting). + +We work with CIOs, CHROs and IT leadership in regulated environments. Infrastructure, not tools. + +https://www.gosign.de",2001,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/674b61f73e1d150001438298/picture,"","","","","","","","","" +REBMANN RESEARCH GmbH & Co. KG,REBMANN RESEARCH GmbH & Co. KG,Cold,"",16,information technology & services,jan@pandaloop.de,http://www.rebmann-research.de,http://www.linkedin.com/company/rebmann-research,https://www.facebook.com/RebmannResearch/,https://twitter.com/rebmannresearch,8 Gewerbepark H.A.U.,Schramberg,Baden-Wuerttemberg,Germany,78713,"8 Gewerbepark H.A.U., Schramberg, Baden-Wuerttemberg, Germany, 78713","telemedicine, daten management, radiology, ambulanter gesundheitsmarkt, wissensportal, marktstudie, standortanalysen, kundentargeting, health economic research & analysis health 20 minimally invasive innovations rapid diagnostic produ, praxisplanung, praxismanagement, praxis, dental market, arztberatung, ambulatory care, medizintechnik, dentalmarkt, minimally invasive innovations, praxisabgabe, software as a service, health care trends, health 20, gesundheitswirtschaft, praxiscontrolling, health economic research analysis, content management, heilberufeberatung, case management, marktdaten, health economic research amp analysis, praxisgruendung, it system custom software development, regionale versorgungskonzepte, regionale marktanalysen, datenvisualisierungstools, tax planning, markt- und standortdaten, datenbasierte entscheidungen, consulting, markttrends in europa, benchmarking-software, market research, praxiscontrolling-tools, marktanalyse, praxisentwicklung, vertriebslösungen, wirtschaftlichkeitsanalysen, machine learning, patientenzufriedenheit, marktforschungsberichte, information technology, praxismanagement-software, regionale analysen, gesundheitswesen, wirtschaftlichkeit, services, praxisoptimierung, automatisierte auswertung, medizintechnik-analysen, praxisentwicklungsplanung, praxisbewertungssysteme, praxisoptimierungstools, wettbewerbsanalyse, finanz- und risikoanalyse, markttrends-analysen, healthcare data, market analysis, data analytics, healthcare, wettbewerbsvorteile im gesundheitswesen, medizinische versorgung, datenbasierte entscheidungsfindung, datenbank, branchenberichte, vertriebs- und marketingtools, branchen-insights, praxisentwicklungskonzepte, financial services, praxiscontrolling-software, ki-gestützte praxissteuerung, ki-basierte prognosen, automatisierte berichte, praxisbewertungstools, datenvisualisierung, ki-analysen, benchmarking, wachstumsmarkt, datenmanagement, datenintegrationstools, branchendaten, wettbewerbsanalyse-tools, regionale versorgungsplanung, business intelligence, strategieberatung, medical equipment & supplies, gesundheitsökonomie, praxisbewertung, datenvisualisierung für praxen, finanzplanung, gesundheitsdatenbanken, regionale daten, beratungstools, gesundheitsmarkt, b2b, wachstumsanalysen, marktforschung, finanzberatung, innovative software, vertriebs- und marketinganalyse, praxis-standortplanung, gesundheitsdatenanalyse, datenintegration, ki-gestützte analysen, standortanalyse, markttrends, ki-basierte prognosemodelle, gesundheitsbranche, gesundheitsmarkt-reports, praxiscontrolling in echtzeit, gesundheitsökonomie-studien, digital tools, kundenbindung, financial consulting, automatisierte praxisbewertung, gesundheitsmarkt europa, datenanalyse, wettbewerbsbeobachtung, standortanalyse-software, automatisierte berichte für praxen, management consulting services, practice management, markt- und standortdatenbanken, vertriebskonzepte, wirtschaftlichkeitsanalyse, praxisplanungstools, finance, distribution, technology, health care information technology, health care, health, wellness & fitness, hospital & health care, saas, computer software, information technology & services, artificial intelligence, analytics, management consulting",'+49 74 22952040,"Microsoft Office 365, Google Analytics, Nginx, MailChimp, Google Tag Manager, Mobile Friendly, WordPress.org, Remote","","","","","","",69bab63bb4ad4200013c6294,8731,54161,"We visualizes data, +and brings different markets to life, +so that you can decide successfully. + + + +REBMANN RESEARCH is a leading provider of economic data and digital services for the healthcare markets as well as liberal professions and SMEs. + +With online platforms like ATLAS MEDICUS®, Praxis to go®, Select Sales, E-Marktwissen und E-Assistenten we offer our knowledge to the financial sector, consultants, practice owners, the industry and public institutions. + +Headquarters Schramberg (Schwarzwald) + +REBMANN RESEARCH GmbH & Co. KG +Gewerbepark H.A.U. 8 +78713 Schramberg + ++49 7422 9520-40 +info@rebmann-research.de + +Office Berlin (Charlottenburg) + +REBMANN RESEARCH GmbH & Co. KG +Mommsenstraße 36 +10629 Berlin + ++49 30 3230153-00 +berlin@rebmann-research.de",1999,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68441157c69f7a00012de26d/picture,"","","","","","","","","" +Neofonie Mobile GmbH,Neofonie Mobile,Cold,"",17,information technology & services,jan@pandaloop.de,http://www.neofonie-mobile.com,http://www.linkedin.com/company/neofonie-mobile-gmbh,https://www.facebook.com/Neofonie/,https://twitter.com/neofonie,4 Robert-Koch-Platz,Berlin,Berlin,Germany,10115,"4 Robert-Koch-Platz, Berlin, Berlin, Germany, 10115","mobile strategy, mobility, leading agency, voice assistants, machine learning, kotlin multiplatform, digital publishing, healthcare apps, mobile developer, ios, ar, mr, mobile app development, app, vr, healthcare, ux, ai, swiftui, jetpack compose, development of tablet apps, agency, mobile apps, apps, android developer, ui, ios developer, development of ipad apps, development of ios apps, android, flutter, consulting, kotlin, app developer, mobile agency, development of android apps, crossplatform publishing, hybrid app development, swift, it services & it consulting, artificial intelligence, information technology & services, media, mobile, internet, software development, health care, health, wellness & fitness, hospital & health care",'+49 30 24627150,"Amazon AWS, Gmail, Google Apps, Google Play, Mobile Friendly, DoubleClick Conversion, Google Dynamic Remarketing, Google Tag Manager, WordPress.org, DoubleClick, Android, Remote","","","","",766000,"",69bab63bb4ad4200013c6297,"","","Neofonie Mobile GmbH is a digital product agency that specializes in mobile apps and scalable platform solutions. Founded in 1998, it is part of the Neofonie Group, which has over 25 years of experience in digital product development. The company is headquartered in Berlin and has a presence in Warsaw, delivering projects across more than 12 countries, including Europe, the USA, and Asia. With a team of over 119 experts, Neofonie Mobile has completed more than 1,150 projects focused on mobile, web, and complex system landscapes. + +The agency excels in creating mobility-focused digital solutions, offering services that include live location tracking and driving behavior analysis. Neofonie Mobile tailors its offerings to meet client needs, ensuring effective performance through precise, industry-specific development. Its portfolio features high-performance mobile apps that handle real-time data processing and provide contextual user experiences, along with comprehensive platform solutions for complex systems.",2008,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69642bfc4ed3170001d2c95d/picture,"","","","","","","","","" +Plattform Lernende Systeme - Germany's AI Platform,Plattform Lernende Systeme,Cold,"",16,nonprofit organization management,jan@pandaloop.de,http://www.plattform-lernende-systeme.de,http://www.linkedin.com/company/plattform-lernende-systeme,"","",4C/O Karolinenplatz,Munich,Bavaria,Germany,80333,"4C/O Karolinenplatz, Munich, Bavaria, Germany, 80333","vernetzung wissenschaft und wirtschaft, lernende systeme, innovation, policy consultation, artificial intelligence, selflearning systems, politikberatung, kuenstliche intelligenz, networking of sciency & economy, learning systems, ai in industrial automation, information technology, ai for rare disease diagnosis, energy & utilities, ai in society, ai in precision medicine, ai in deep sea inspections, ai in environmental monitoring, ai in smart mobility, services, ai in business models, ai law, ai in smart manufacturing, legal services, ai education, ai in industry, ai in energy efficiency, ai applications, data science, ai in autonomous vehicles, ai in data security, ai in mobility, ai innovation, other scientific and technical consulting services, ai in digital transformation, ai development, ai startup ecosystem, ai research, ai strategies, ai policy germany, ai research map, ai in medicine, ai in transportation, ai in autonomous systems, ai in disaster management, healthcare, ai in smart systems, ai in public sector, ai opportunities, ai startups, ai in law, research and development, government, ai in robotics competitions, ai ethics framework, education, generative ai, ai challenges, ai in law and ethics, ai in energy from waste, ai in education, ai in data science, ai monitoring, ai policy, ai in sustainability, b2b, ai deployment, ai monitoring tools, ai regulation, ai in germany, ai in healthcare diagnostics, transportation & logistics, ai research germany, ai strategy germany, ai safety, ai in legal frameworks, ai case studies, ai in healthcare, self-learning systems, ai in cybersecurity, medical technology, it security, ai regulation law, ai transfer, ai in robotics, technology, ai in machine learning, ai in innovation management, ai in democratic society, ai in human-machine interaction, ai ethics, ai research institutions, ai in public policy, legal, non-profit, information technology & services, health care, health, wellness & fitness, hospital & health care, research & development, computer & network security, nonprofit organization management",'+49 89 52030963,"Mobile Friendly, Apache, Shutterstock, Remote, AI","","","","","","",69bab63bb4ad4200013c62a1,8731,54169,"Plattform Lernende Systeme (Learning Systems Platform) is Germany's national AI platform, established in 2017 by the Federal Ministry of Education and Research. It serves as an independent network of nearly 200 experts from various sectors, including science, industry, and civil society, to promote the development and application of trustworthy AI. + +The platform facilitates interdisciplinary exchange and cooperation among stakeholders, aiming to position Germany as a leader in learning systems and AI. Its core objectives include designing self-learning systems that improve quality of life, fostering sustainable jobs, and translating research into practical applications. The organization is structured around a steering committee and seven working groups that focus on themes such as technological enablers and application scenarios across different sectors. It produces various outputs, including AI monitoring reports, white papers, and educational content, to support responsible AI use and address challenges in the field.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e28b2c939d2300019be097/picture,"","","","","","","","","" +TEAMONE | GROUP,TEAMONE,Cold,"",68,management consulting,jan@pandaloop.de,http://www.teamone-group.com,http://www.linkedin.com/company/teamonegroup,"","","","","",Germany,"",Germany,"testing, after sales, engineering, training, consulting, project management, automotive, business consulting & services, regulatory compliance, sustainable manufacturing, industry standards, single source solution, risk mitigation, logistics strategy, ai recruiting, automation, cost-benefit analysis, market research, management consulting, strategic partnerships, product development, supply chain optimization, b2b, technology integration, market entry strategies, consulting services, ai talent sourcing, cost efficiency, cost reduction, machine learning algorithms, sustainable product manufacturing, quality standards, supply chain resilience, quality assurance, data analysis, ai-based scouting, full-scale service, product lifecycle solutions, digital transformation, automated testing, supply chain management, environmental sustainability practices, customer relationship management, manufacturing, intellectual property guidance, engineering solutions, logistics, procurement, digitalization, engineering services, operational efficiency, risk assessment, machine learning, product lifecycle management, digital supply chain transparency, strategic procurement partnerships, services, distribution, productivity, data analytics, logistics & supply chain, crm, sales, enterprise software, enterprises, computer software, information technology & services, mechanical or industrial engineering, artificial intelligence","","Outlook, Microsoft Office 365, Google Cloud Hosting, Mobile Friendly, Nginx","","","","","","",69bab63bb4ad4200013c6298,3531,54133,"TEAMONE | GROUP is a technology-driven company that specializes in AI-based scouting and recruiting solutions. They utilize machine learning algorithms to analyze large volumes of data, enhancing recruitment efficiency for businesses. The company provides a comprehensive range of services aimed at helping organizations remain competitive and scale effectively. + +Their offerings include consulting services that leverage AI tools for faster and more efficient talent acquisition, as well as engineering support focused on product development. TEAMONE | GROUP also features a B2x Alliance service that simplifies procurement processes and fosters strategic partnerships, helping businesses reduce costs and improve flexibility. Additional capabilities encompass research and development, manufacturing, sales, and after-sales support, all tailored to meet diverse business needs. + +Overall, TEAMONE | GROUP is dedicated to optimizing recruitment and business processes through innovative technology and expert guidance.",2009,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6761820cd0b3450001e9fcad/picture,"","","","","","","","","" +BotCraft,BotCraft,Cold,"",16,information technology & services,jan@pandaloop.de,http://www.botcraft.de,http://www.linkedin.com/company/botcraft,"","","",Munich,Bavaria,Germany,"","Munich, Bavaria, Germany","robotic process automation, connectivity, robotics, ai, deeptech, robots, it services & it consulting, b2b, simulated embedded os, edge device integration, ki-basierte entscheidungsfindung, embedded systems, consulting, software development, off-the-shelf bots, cloud native, iot connectivity, iot platforms, manufacturing, automatisierungslösungen, konfigurierbare softwarebausteine, edge computing, iiot konnektoren, mobile robot development, workflow automation, smart manufacturing, xil testing, autonomous systems, data analytics, mobile robot simulation, performance testing, datenintegration, sil testing plattform, algorithm development, maschinenvernetzung, ki-integration, simulationsplattform, industrial automation, ci/cd automation, process automation, industrie 4.0 software, sensor- und aktorenschnittstellen, regressions-testing, automatisierte regressionstests, computer systems design and related services, robotics plattform, predictive maintenance, services, os-integration, sensor integration, cybersecurity in ot, industrie 4.0 plattformen, data security, prozessautomatisierung, prozessoptimierung in der fertigung, mechanical or industrial engineering, information technology & services, embedded hardware & software, hardware, computer & network security",'+49 89 32966474,"Gmail, Google Apps, Mobile Friendly, Nginx, Remote, IoT","","","","","","",69bab63bb4ad4200013c6293,7375,54151,"BotCraft ist ein spezialisierter Dienstleister für Konnektivitätslösungen an Maschinen, Bauteilen oder Produkten. Diese Lösungen bilden den Unterbau an Schnittstellen für AIoT, iRPA oder Industrie 4.0 Systeme. Basierend auf seinem IIoT-Framework entwickelt BotCraft sichere und intelligente Robotic-Process-Automation Software für Industrieprozesse (iRPA) sowie AIoT Lösungen, die die Leistungsfähigkeit einer Prozessautomatisierung durch Advanced Robotics noch weiter verbessern. + +Durch das langjährige Know-How kann BotCraft viele fertige Blaupausen für Schnittstellen und weitere Herausforderungen im Bereich Konnektivität anbieten. Zudem umfasst das Portfolio integrierte Produkte wie eine hochflexible und rekonfigurierbare Connectivity-Plattform (IIoT) und eine RPA-Lösung für industrielle Prozesse (iRPA) zur Testautomatisierung am HIL oder für die Überwachung von Produktionsprozessen. Daneben bietet BotCraft Predictive-Maintenance Lösungen basierend auf Vibrationssensorik (AIoT), ein Assistenzsystem das bei der Roboterprogrammierung die Achsenpositionierung hinsichtlich Energieverbrauch und Ausführgeschwindigkeit optimiert sowie eine RobotMES-Lösung für eine intelligente autonome Produktion.",2018,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/682a5d9d5d2d070001111052/picture,"","","","","","","","","" +embraceable Technology GmbH,embraceable Technology,Cold,"",14,information technology & services,jan@pandaloop.de,http://www.embraceable.ai,http://www.linkedin.com/company/embraceableai,"","",21 Gablonzer Strasse,Karlsruhe,Baden-Wuerttemberg,Germany,76185,"21 Gablonzer Strasse, Karlsruhe, Baden-Wuerttemberg, Germany, 76185","machine learning, dataops, apache kafka, apache flink, kubernetes, aiproduction, onpremise ai, advanced reasoning, dev ops, paas, apache iceberg, deep learning, cloud, mlops, apache pinot, open source ai, microservices, apache superset, event streaming, cognitive systems, software development, ki-sicherheitszertifikate, multi-stage workflows, research and development in the physical, engineering, and life sciences, european ki-technologie, ki für komplexe automatisierung, deduktive ki, ki-entwicklungstools, kognitive kontrolle, ki für öffentliche verwaltung, regulatory compliance, ki-workflow-management, logical inference, ki-compliance, ki-workflow-builder, information technology & services, ki-backends, ki-validierung, european data sovereignty, b2b, ki-systeme, ki mit logischer konsistenz, ki-dokumentation, ki für compliance-anwendungen, lora finetuning, transparente entscheidungswege, ki in regulierten branchen, kausalität, ki-sicherheit, government, cognitive ai, logisches schlussfolgern, api-integration, automatisierung kritischer prozesse, ki-integration, ki-überwachung, research and development, ki für industrieautomation, low-profile ki, ki für finanzdienstleistungen, cloud infrastructure, ki-architektur, ki-transparenz, automatisierung komplexer prozesse, kognitive architekturen, ki-reduktion von halluzinationen, consulting, ki-controller, ki-entwicklung in europa, data security, api-kompatibilität, automatisierte entscheidungsfindung, ki-trainingsdaten, artificial intelligence, transparente ki, synthios trainingsdaten, ki-sicherheitsstandards, kausale modelle, ki für rechtssysteme, enterprise software, ki-optimierung, services, reasoning models, finance, legal, cloud computing, enterprises, computer software, research & development, internet infrastructure, internet, computer & network security, financial services",'+49 631 34358150,"Cloudflare DNS, Outlook, CloudFlare Hosting, Mobile Friendly, Google Font API, Google Tag Manager, Nginx, Linkedin Marketing Solutions, WordPress.org","",Seed,0,2024-10-01,"","",69bab63bb4ad4200013c629f,7375,54171,"embraceable Technology GmbH is a German software and AI company founded in 2018, operating under the embraceableAI brand. The company focuses on integrating artificial intelligence into business contexts in a practical way. Headquartered in Germany, it employs a diverse team of AI specialists, cloud engineers, and software engineers to develop reliable AI solutions inspired by biological principles. + +The company's flagship innovation is a novel AI architecture that includes a Cognitive Control Unit (CCU), which enhances large language models by organizing and controlling thought processes. This architecture supports auditable and verifiable reasoning, making it suitable for high-stakes domains like law, medicine, and energy. embraceableAI offers solutions for automating tasks, optimizing processes, and accelerating innovation, utilizing proprietary reasoning engines and a mix of in-house and open-source software. The company emphasizes European digital sovereignty with a fully European shareholder structure and GDPR-compliant infrastructure.",2018,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6958ef3584749700018da06b/picture,"","","","","","","","","" +Gestalt Automation,Gestalt Automation,Cold,"",30,machinery,jan@pandaloop.de,http://www.gestalt-automation.com,http://www.linkedin.com/company/gestaltautomation,https://facebook.com/gestaltrobotics/,https://twitter.com/gestaltrobotics?lang=en,26 Schlesische Strasse,Berlin,Berlin,Germany,10997,"26 Schlesische Strasse, Berlin, Berlin, Germany, 10997","automotive, smart factory, robot programming, artificial intelligence, deep learning, automation, industrial, security defence, infrared, scene understanding, security, industry 40, aerospace, rail, hyperspectral, ai, packaging, smart inspection solutions, inspection, integrator, multispectral, hyperspectral ai, automation machinery manufacturing, prozessoptimierung, ocr, ki in der pharma- und lebensmittelindustrie, generative ki für fehler-simulation, industrielle automatisierung, laborautomatisierung mit ki, predictive maintenance, fehlerklassifikation, visuelle inspektion, ki-gestützte materialanalyse, autonome mobile inspektionssysteme, services, automatisierte dokumentation, hyperspektraltechnologie, qualitätskontrolle, government, ki-basierte qualitätssicherung, ki-technologie, ki-basierte end-of-line-inspektion, b2b, industrial machinery manufacturing, anomalie-detektion, ki-modelle, industrielle inspektion, prozesskosten senken, collaborative robots, no-code plattform, fehlerdiagnose, computer vision, automatisierte inspektion, ki-gestützte prozessüberwachung, few shot learning, end-of-line-inspektion, mobiler roboter für inspektionen, ki-automation, laborautomatisierung, manufacturing, inline-qualitätskontrolle in echtzeit, smart inspection, mobile roboter, distribution, visuelle inline-inspektion, fehlererkennung, ki-basierte visuelle fehlererkennung, information technology & services, shipping, logistics & supply chain, mechanical or industrial engineering",'+49 30 61651560,"Outlook, Microsoft Office 365, Amazon AWS, Multilingual, Mobile Friendly, WordPress.org, YouTube, Remote","",Merger / Acquisition,0,2024-03-01,2300000,"",69bab63bb4ad4200013c6295,3829,33324,"Gestalt Automation GmbH is a Berlin-based company founded in 2016, specializing in AI-powered industrial automation. The company focuses on Smart Inspection Solutions that integrate artificial intelligence with advanced imaging technologies, such as hyperspectral sensors, to enhance quality control in manufacturing. With a team of 51-200 employees, Gestalt Automation aims to transform production lines globally by providing solutions that detect defects early, reduce waste, and improve performance in real time. + +The company offers a range of services, including automated visual inline inspection, AI-based end-of-line inspection, and mobile inspection routines using autonomous robots. These solutions are designed to optimize manufacturing processes by minimizing inspection efforts and costs while ensuring high-quality standards. Gestalt Automation emphasizes measurable ROI, ensuring that its AI implementations drive tangible business results. In 2024, the company joined INDUS Holding AG to further accelerate its growth in the field of AI-driven industrial automation.",2016,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69a7e3c05a45270001631aec/picture,INDUS (indus.eu),55ed9b9ff3e5bb74c50038e3,"","","","","","","" +Tensora GmbH,Tensora,Cold,"",16,information technology & services,jan@pandaloop.de,http://www.tensora.co,http://www.linkedin.com/company/tensora,"","",70 Norderstrasse,Norderstedt,Schleswig-Holstein,Germany,22846,"70 Norderstrasse, Norderstedt, Schleswig-Holstein, Germany, 22846","it services & it consulting, digital transformation, management consulting services, microsoft 365 & sharepoint, ai technology transfer, data-driven optimization, ai in healthcare, management consulting, damage detection, software outsourcing, image captioning, cloud engineering, consulting, business intelligence, information technology and services, ai solutions, ai ecosystem integration, data analytics, machine learning models, ai microservices, ai model reuse, b2b, code generator, ai services & solutions, government, ai model training, ai tool integration, ai trend adaptation, ai tool customization, data science consulting, process automation, open source ai tools, ai consulting, cloud solutions, software development, nearshore development, ai models, ai prototyping, ai model deployment, ai project support, document q&a, pii anonymization, video to text, ai chatbot, ai and data science consulting, data quality enhancement, ai use case development, services, healthcare, information technology & services, analytics, cloud computing, enterprise software, enterprises, computer software, health care, health, wellness & fitness, hospital & health care",'+49 173 18667704,"Outlook, Microsoft Office 365, WordPress.org, Wordpress.com, Bootstrap Framework, Mobile Friendly, Nginx, AI, Python, Azure Analysis Services, Azure Functions, Azure App Service","","","","","","",69bab63bb4ad4200013c629a,7375,54161,"Tensora is a data and AI consulting firm focussing on intelligent and pragmatic solutions for our clients. Our work starts with advising on AI strategy, conducting workshops and identifying business cases that can be automated with Machine Learning. We build custom data solutions for our clients and general purpose AI tools that target a variety of different customers.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/671b5e97a293b700017b3b2f/picture,"","","","","","","","","" +FairDigital 24|7 GmbH,FairDigital 24|7,Cold,"",20,information technology & services,jan@pandaloop.de,http://www.fairdigital24-7.com,http://www.linkedin.com/company/fairdigital-gmbh,"","",7 Langer Anger,Heidelberg,Baden-Wuerttemberg,Germany,69115,"7 Langer Anger, Heidelberg, Baden-Wuerttemberg, Germany, 69115","csrd, ai, rpa, ki, datenplattform, nachhaltigkeit, esg, crm, esg reporting, customerrelationshipmanagement, it services & it consulting, b2b, automatisierte rechnungsprüfung, cybersecurity, energieprognosen, redispatch 2.0, ai-basierte systeme, prognosen, testautomatisierung, consulting, datenanalyse, blockchain smart contracts, rechnungskorrektur, datenverarbeitung, ki-gestützte datenanalyse, datenüberwachung, energy & utilities, machine learning, automatisierung, regulatory compliance, automatisierte berichte, artificial intelligence, sap-testautomatisierung, prozessautomatisierung, datenstrategien, zählerstandsplausibilisierung, esg-nachhaltigkeitsberichte, process optimization, regulatorische anforderungen, datenstandardisierung, automatisierte datenverarbeitung, robotic process automation, software development, künstliche intelligenz, automatisierte bankverbindungsänderung, automatisierte workflows, lastgangdaten-normierung, cloud-basierte lösungen, information technology & services, datenverarbeitung in europa, prozessoptimierung, services, azure openai service, blockchain-technologie, energiedatenmanagement & prognosen, datenübertragungssicherheit, smart contracts, blockchain, data security, energiebedarfsvorhersage, computer systems design and related services, domain-specific language model, dezentrale datenbanken, predictive maintenance, it-support für crm, energiebranche, netzverluste, zeitreihenmanagement, energy, domain-specific language model für energie, esg-berichte, energiedatenmanagement, regulatorische compliance, it-support, crm-anwendungen, sap integration, datenqualität, datenmanagement, cloud computing, data privacy, kundenservice-optimierung, datenintegration, energy_utilities, sales, enterprise software, enterprises, computer software, computer & network security","","Outlook, Microsoft Office 365, Bootstrap Framework, Mobile Friendly, Nginx","","","","","","",69bab63bb4ad4200013c62a0,7375,54151,"FairDigital 24|7 GmbH is a technology company located in Heidelberg, Germany, with additional offices in Leipzig and Aachen. The company focuses on IT services and software production, employing a team of 19 professionals. It is managed by Agata Wilengowski and Ulrike Keller. + +The company specializes in artificial intelligence (AI) and robotic process automation (RPA). FairDigital 24|7 offers RPA solutions that automate business processes using software bots. Additionally, it provides AI-powered solutions to enhance business operations and comprehensive IT support for CRM applications, ensuring systems remain stable, secure, and efficient.",2024,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68731987e1b31a0001698a2f/picture,"","","","","","","","","" + +MotionsCloud,MotionsCloud,Cold,"",18,insurance,jan@pandaloop.de,http://www.motionscloud.com,http://www.linkedin.com/company/motionscloud,https://web.facebook.com/MotionsCloud/,https://twitter.com/motionscloud,13 Atelierstrasse,Munich,Bavaria,Germany,81671,"13 Atelierstrasse, Munich, Bavaria, Germany, 81671","computer vision, machine learning, fleet management, saas, insurance claims, airlines, insurtech, ai, image recognition, mobile, productivity software, insurance, information technology, internet, damage assessment in hours, automated damage detection, damage detection platform, damage evaluation engine, damage inspection ai, damage analysis for property, mobile web app, damage severity ai, ai damage pre-scanning, damage evaluation ai, services, damage analysis software, damage recognition, web-based damage assessment, damage recognition system, damage assessment solution, damage assessment for rentals, damage assessment engine, claim automation, property damage ai, claims management, damage evaluation system, damage assessment tool, damage analysis ai, b2b, damage estimation, damage severity detection, baggage damage assessment, web-based inspection app, damage detection without app, insurance agencies and brokerages, property management, damage report generation, damage analysis, damage inspection platform, damage severity analysis, ar inspection, vehicle damage ai, ai damage evaluation, damage detection for insurance, damage detection system, inspection process automation, damage detection, damage identification, damage recognition in real-time, no app download, damage detection technology, damage recognition ai, damage report ai, damage detection for vehicles, damage report automation, automotive, ai computer vision, ai damage assessment, damage detection ai, ai damage recognition, insurance claim ai, finance, artificial intelligence, information technology & services, computer software, insurance agencies & brokerages, enterprise software, enterprises, financial services",'+49 1521 1636107,"Cloudflare DNS, Gmail, Google Apps, GoDaddy Hosting, Zoho Email, Slack, Varnish, reCAPTCHA, Google Font API, Google Tag Manager, Google Analytics, Mobile Friendly, WordPress.org, Hotjar, Remote, Circle",2040000,Seed,2000000,2022-04-01,3000000,"",69bab6252f85590001dcd6d0,7389,52421,"MotionsCloud automates visual inspections for insurers and mobility and airlines. Our modular platform combines mobile self-service capture, AI computer vision and live video inspections to evaluate damage across property, vehicle, fleet, and airlines workflows. MotionsCloud plugs into existing operations systems to accelerate decisions, reduce cycle time from days to minutes, lower processing costs up to 75%, and improve the customer experience. We serve clients across the US, Europe, and Southeast Asia.",2016,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e9433900a62b00019df4ca/picture,"","","","","","","","","" +Milestone Consult GmbH & Co. KG,Milestone Consult GmbH & Co. KG,Cold,"",47,information technology & services,jan@pandaloop.de,http://www.milestone-consult.de,http://www.linkedin.com/company/milestone-consult,"","",19 Carl-Friedrich-Gauss-Strasse,Kamp-Lintfort,North Rhine-Westphalia,Germany,47475,"19 Carl-Friedrich-Gauss-Strasse, Kamp-Lintfort, North Rhine-Westphalia, Germany, 47475","bestandsmanagement, datawarehouse dhw, modern data warehouse, mes pharma industrie, supply chain management, quality assurance, bestandsueberwachung, business intelligence, softwareanwendungsentwicklung, software qualitaetsmanagement, master batch records, kuenstliche intelligenz, business analytics, data lake, chatbots, data analytics, big data, it services & it consulting, consulting, data architecture, generative ki, architecture strategy, azure data factory, information technology and services, data science, data democratization, test automation, it-projektmanagement, data modelling, ai chatbots, data quality, custom software development, cloud solutions, power bi, data harmonization, incident management, computer systems design and related services, big data handling, azure, data security, self-service bi, data integration, data transformation, b2b, advanced analytics, cloud service, data lake concepts, data warehouse, knowledge management, generative ai, ai on openai/gpt, microsoft fabric, data visualization, powerbuilder, data management, ai, data ingestion, data governance, services, azure synapse analytics, requirements engineering, logistics & supply chain, analytics, information technology & services, enterprise software, enterprises, computer software, cloud computing, computer & network security",'+49 2842 927930,"Cloudflare DNS, Outlook, Google Tag Manager, Mobile Friendly, AI","","","","","","",69bab6252f85590001dcd6c9,7375,54151,"Milestone Consult is one of the leading provider for Business Intelligence solutions (BI), software engineering and IT-consulting. Established in 1989 and continuously developed, Milestone Consult with its range of services is now partner of major enterprises and concerns. + +Milestone Consult is run by its owner and financially independent. We employ more than 50 employees. With our flat hierarchies and short ways of decisions we gain a high satisfaction along our customer and employees. + +With creativity, competence and consulting quality we get a cooperative partnership with our customers, who thereby gain competitive advantages and grow their market position. + +Milestone is specialized on conception, implementation and support of innovative solutions with the best available standard tools and liability to quality. + +Our customer benefit from our established industry knowledge, long-term experience of our employees and our competence in realizing projects. We are neutral in the choice of technologies and tools, but distinct on Microsoft tools. We have deep knowledge in handling big data, which are combined and prepared from several databases. + +Customer/References +Well-known companies from the chemical industry, pharmaceuticals and high-tech like Bayer, EMI, Lufthansa, Henkel, Vodafone and many more belong to our customers. + +Keywords: BI, KI, Software-Engineering, Controlling Sales, Business Intelligence, AI, Dashboard, Project, Reporting, Quality Assurance, MES Pharma, Power BI, Hana, SAP, Powerbuilder, ETL, Microsoft Azure, Business Analytics, Advanced Analytics, Supply Chain Solution, Self Service BI, BIG DATA, Data Lake, Nordrhein-Westfalen, Enterprise BI, Deutschland, NRW, Moers, Channel inventory, Bayer, Henkel, Delvag, Big Data & Analytics, DWH, Data Warehouse, Hana,",1989,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670b2de34341970001fc52f5/picture,"","","","","","","","","" +appliedAI Initiative GmbH,appliedAI Initiative,Cold,"",90,information technology & services,jan@pandaloop.de,http://www.appliedai.de,http://www.linkedin.com/company/appliedai-initiative,"","",25 August-Everding-Strasse,Munich,Bavaria,Germany,81671,"25 August-Everding-Strasse, Munich, Bavaria, Germany, 81671","ai compliance, ai ecosystem, artificial intelligence, genai, ai training, ai use case, ai strategy, ai consulting, ai solutions, kuenstliche intelligenz, trustworthy ai, ai conferences, reinforcement learning, technology, information & internet, ai in technology sectors, mlops, ai software development, ai governance forums, innovation, ai governance tools, ai-driven automation, ai societal benefits, ai regulation compliance, ai compliance frameworks, ai in data privacy, ai in critical infrastructure, ai in healthcare, ai partnership networks, ai use cases, ai in european markets, ai in smart systems, ai project acceleration, ai in high-tech industries, research and development in the physical, engineering, and life sciences, mlops support, ai regulation, ai in engineering, ai in digital ethics, ai in education, regulatory compliance, education, ai in public policy, ai innovation, ai in data analytics, automotive, consulting, ai in manufacturing, ai lab, ai ethics, ai governance frameworks, science and engineering, manufacturing, generative ai, software development, ai in automation, ai in software, information technology, ai prototype development, ai partnerships, ai regulatory support, ai in industry sectors, eu ai act compliance, finance, ai for societal impact, ai prototypes, ai project support, ai in innovation ecosystems, european ai ecosystem, ai partnership programs, ai in data science, ai in robotics, ai training programs, ai ethics and standards, ai societal impact, ai for industry, services, ai education and training, ai in finance, ai in research, ai solutions development, ai compliance tools, b2b, ai standards, ai in cybersecurity, healthcare, ai in digital transformation, ai in technology, ai strategy development, ai standards development, ai risk classification, ai in cloud computing, ai in iot, sme ai support, ai ethics frameworks, ai governance, ai in public sector, ai in europe, ai in cross-sector applications, ai for smes, ai workforce upskilling, ai prototyping, ai for sustainable development, robotics, ai standards and ethics, ai use case identification, ai engineering solutions, eu ai act, ai workforce training, ai in big data, ai innovation initiatives, ai in industrial applications, ai automation solutions, ai prototype creation, ai in societal development, ai in industrial automation, ai in software engineering, ai forums, ai lab and prototyping, ai for responsible innovation, government, ai in automotive, ai risk management, ai implementation, ai risk assessment, ai data analytics, ai in sustainable tech, life sciences, public sector, data analytics, european ai standards, ai in regulatory environments, ai transformation services, ai compliance management, mlops implementation, ai maturity assessment, customized ai solutions, ai use case development, ai efficiency improvement, autonomous ai systems, ai system integration, ai project management, ai knowledge sharing, ai-driven decision making, ai technology partnerships, data-driven insights, scalable ai solutions, ai training pathways, ai best practices, ai implementation support, ai operationalization, ai maturity compass, ai-driven transformation, ai performance tracking, ai for competitive advantage, human-centered ai, ai ethical considerations, ai project lifecycles, ai business models, ai ecosystem collaboration, ai user support, ai return on investment, ai training and development, ai industry collaborations, ai research initiatives, legal, non-profit, distribution, construction, information technology & services, mechanical or industrial engineering, financial services, health care, health, wellness & fitness, hospital & health care, nonprofit organization management",'+49 89 262025855,"Outlook, Microsoft Office 365, VueJS, Netlify, DigitalOcean, Mapbox, Slack, Hubspot, Adobe Media Optimizer, Google Tag Manager, Google Dynamic Remarketing, Vimeo, DoubleClick, Shutterstock, Linkedin Marketing Solutions, CPX Interactive, Cedexis Radar, Mobile Friendly, DoubleClick Conversion, Micro, AI, Copilot, Langchain, Make, n8n, Python, Docker, Kubernetes, Terraform, Pulumi, Argon CI/CD Security, Forcepoint TRITON, Open Neural Network Exchange (ONNX), MLflow, LangGraph, Microsoft Office, CallMiner Eureka, Azure Data Lake Storage, Flow, Microsoft Power Automate, NLP, Mode, Cloud Foundry, Notion, Weights & Biases, Articulate, Moodle","","","","","","",69bab6252f85590001dcd6d6,7375,54171,"appliedAI Initiative GmbH is a Munich-based company founded in 2017, focused on developing trustworthy AI applications for various industries. As Europe's largest initiative of its kind, it aims to enhance the continent's competitive edge in AI through partnerships, products, and services. The company became a distinct entity in July 2022 and operates with around 109 employees, emphasizing sustainable and responsible AI use. + +The company offers a wide range of AI-related services, including customized AI implementations, strategy development, and training programs. Its key focus areas are AI Academy, Engineering, and Strategy, which involve training decision-makers and project managers, prototyping with deep learning hardware, and facilitating joint projects among partners. appliedAI also provides compliance support for AI regulations and implements machine learning operations to validate business value. The company collaborates with over 50 partners from various sectors, fostering an ecosystem that empowers businesses to lead with AI.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69ad430355cc360001f59902/picture,"","","","","","","","","" +"deepset, makers of Haystack",deepset makers of Haystack,Cold,"",83,information technology & services,jan@pandaloop.de,http://www.deepset.ai,http://www.linkedin.com/company/deepset-ai,"",https://twitter.com/deepset_ai,1 Zinnowitzer Strasse,Berlin,Berlin,Germany,10115,"1 Zinnowitzer Strasse, Berlin, Berlin, Germany, 10115","opensource, conversational ai, information extraction, document similarity, artificial intelligence, vetorbased search, neural networks, machine learning, ai, named entity recognition, sentiment analysis, generative ai, ai consulting, transformers, deep learning, large language models, question answering, natural language processing, process automation, nlp, open source, llms, questionanswering, semantic search, software development, compound ai systems, ai training resources, ai workflow automation, ai in customer insights, ai in retail personalization, ai security standards, haystack, ai compliance standards, intelligent document processing, deepset ai platform, ai agent debugging tools, ai in retail, ai security and privacy, ai workflows, ai multi-source data integration, ai collaboration tools, ai explainability tools, operational efficiency, ai enterprise software, enterprise-grade ai, ai in document management, custom ai solutions, ai integration tools, modular ai pipelines, ai deployment, ai application development, data analytics, retrieval augmented generation, ai in government intelligence, ai orchestration, ai in media content generation, consulting, saas ai platform, ai in healthcare diagnostics, ai real-time decision making, ai in media, multi-tool ai agents, ai in finance, ai expert support, ai resource management, ai in regulatory compliance, custom ai development, ai performance optimization, healthtech, llm-powered solutions, healthcare, ai multimodal processing, ai platform, customer engagement, ai in legal document analysis, on-premise ai deployment, financial services, business intelligence, ai transparency, enterprise software, ai in defense, computer systems design and related services, ai development tools, open-source framework, ai in legal, ai scalability solutions, ai compliance automation, ai control, services, ai orchestration framework, ai agent orchestration, ai monitoring, llm, ai in decision support, ai in automation, ai scalability, ai agent lifecycle management, ai in operational efficiency, ai in customer service, ai in sensitive data environments, innovation, government and defense, ai industry solutions, enterprise search, ai trust, ai in document extraction, cloud solutions, ai multi-user collaboration, ai compliance and governance, ai decision systems, ai in government, ai agents, retail, b2b, ai compliance, open-source haystack, ai in healthcare, ai secure deployment, technology, ai customization, ai security, ai custom component development, ai solutions, government, ai model customization, legal, ai in high-stakes environments, ai engineering, ai in knowledge management, ai in finance risk management, retail and consumer goods, ai development platform, ai multi-language support, ai data privacy, finance, enterprise ai, text-to-sql, media and publishing, ai in data analysis, ai knowledge graph integration, ai framework, ai integration, ai deployment guides, vector-based search, nlp framework, ai development, data integration, rapid prototyping, model-agnostic, rag, document processing, automated workflows, enterprise applications, pipeline management, cloud-native architecture, data lifecycle management, user feedback, performance metrics, model fine-tuning, cross-functional teams, data retrieval, auto-scaling, api integration, document retrieval, model benchmarking, document embedding, content generation, knowledge management, real-time monitoring, pipeline components, customer insights, ai applications, custom prompts, automated testing, security compliance, multimodal processing, enterprise-grade solutions, deployment automation, data visualization, feedback loops, information technology & services, computer software, health care, health, wellness & fitness, hospital & health care, analytics, enterprises, cloud computing","","Salesforce, Cloudflare DNS, Route 53, Gmail, Google Apps, Microsoft Office 365, Vercel, Figma, Hubspot, Mobile Friendly, Google Tag Manager, Google AdWords Conversion, DoubleClick Conversion, DoubleClick, Google Dynamic Remarketing, Linkedin Marketing Solutions, Remote, AI, Python, Rise, Kubernetes, Terraform, HELM, Azure Linux Virtual Machines, Argon CI/CD Security, JTL-Shop 3, Akamai CDN Solutions, Prometheus, Grafana, OpenTelemetry, ELK Stack, Bash, React, TypeScript, SQL, IDC, SAM, Javascript, Docker",45600000,Venture (Round not Specified),30000000,2023-08-01,2000000,"",69bab6252f85590001dcd6d8,7375,54151,"deepset is a Berlin-based enterprise software company founded in 2018, focusing on tools for developers to create AI and natural language processing (NLP) systems. The company is known for its open-source Haystack framework, which supports the development of scalable AI applications and has become a standard in the industry. deepset also offers the Haystack Enterprise Platform, a commercial solution that facilitates the entire AI lifecycle, from prototyping to deployment. + +In addition to its frameworks, deepset provides custom AI solutions tailored to various industries, including automotive, education, healthcare, and finance. These solutions enhance workflows with features like conversational interfaces and contextual search. The company also offers professional services, including assessments, implementation, and training, to support organizations in adopting AI technologies effectively. Notable clients include the European Commission and Oxford University Press.",2018,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69a54a75f37d5400011fe836/picture,"","","","","","","","","" +Hilker Consulting,Hilker Consulting,Cold,"",11,management consulting,jan@pandaloop.de,http://www.hilker-consulting.de,http://www.linkedin.com/company/hilker-consulting,https://facebook.com/Hilker.Consulting,https://twitter.com/claudiahilker,17 Scheibenstrasse,Duesseldorf,North Rhine-Westphalia,Germany,40479,"17 Scheibenstrasse, Duesseldorf, North Rhine-Westphalia, Germany, 40479","business modell innovation, digitales marketing, social selling, onlinemarketing, content marketing, coaching, innovationsmanagement, linkedin marketing, socialmediamarketing, b2b akquise, digital marketing, thought leadership, digitalisierung, personal branding, kitools, trainer, reputationsmanagement, salesfunnel, community aufbau, b2b kunden gewinnen, marketing strategie, expertenpositionierung, speaker, social business, marketingberatung, digitale transformation, digitale sichtbarkeit, strategieberatung, public relations, corporate influencer, wachstum, social media marketing, online business, berater, plattformokonomie, marketingstrategien, business consulting & services, content creation, unternehmensberatung, e-learning, online learning, management consulting, ki-weiterbildung, customer engagement, ki-management, b2b, b2b marketing, management consulting services, lead generation, ki-beratung, ki-workshop, ki-tools, digital transformation, education, ki-akademie, ki-implementierung, ki-berater-zertifizierung, ki-training, ki-strategie, ki-projekte, consulting, ki-fernstudiengänge, ki-ethik, it consulting, künstliche intelligenz, ki-manager-kurs, ki-strategie-workshop, ki-kompetenzen, services, marketing & advertising, consumer internet, consumers, internet, information technology & services, computer software, education management, sales",'+49 177 6057849,"Outlook, CloudFlare, Facebook Widget, Facebook Login (Connect), Google Tag Manager, Bootstrap Framework, DoubleClick, YouTube, Facebook Custom Audiences, WordPress.org, Google Font API, Hubspot, Linkedin Marketing Solutions, Nginx, Apache, Mobile Friendly, Google Dynamic Remarketing, DoubleClick Conversion, Remote, Circle, Render, AI, Semrush, PEO","","","","",468000,"",69bab6252f85590001dcd6d5,8742,54161,"Entfalte das volle KI-Potenzial (Künstliche Intelligenz) für dein B2B-Unternehmen – mit Beratung, Umsetzung,Schulung durch KI-Vorreiter Hilker Consulting",2002,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6702900dcb66a30001420058/picture,"","","","","","","","","" +SMA Development GmbH,SMA Development,Cold,"",14,information technology & services,jan@pandaloop.de,http://www.sma-dev.de,http://www.linkedin.com/company/sma-development,"","",1 Leutragraben,Jena,Thuringia,Germany,07743,"1 Leutragraben, Jena, Thuringia, Germany, 07743","datengetriebene optimierung, social media, webapplikationen, microsites, data science, predictive analytics, business intelligence, brand communities, selbstlernende algorithmen, kuenstliche intelligenz, machine learning, it services & it consulting, ai-modelle, data-driven business models, ki-gestützte entscheidungsfindung, data automation, big data, digital transformation, ki-basierte lösungen, customer journey, custom software development, services, data-driven automation, data security, information technology and services, big data projects, digital innovation, data autonomy framework, data autonomy, data-driven insights, data-driven decisions, process optimization, künstliche intelligenz, b2b, ai research, data strategy, ai in business, ai framework, natural language processing, data literacy, data management, computer systems design and related services, ai solutions, data analytics, automatisierte datenanalyse, data potenzialanalyse, data science forschung, data integration, software development, data quality, artificial intelligence, automation, digitale transformation, consulting, data infrastructure, data fusion, consumer internet, consumers, internet, information technology & services, enterprise software, enterprises, computer software, analytics, computer & network security",'+49 36 413169987,"Amazon SES, Outlook, MailChimp SPF, Microsoft Office 365, Atlassian Cloud, GitLab, Mobile Friendly, Hubspot, WordPress.org, Google Tag Manager, Nginx, Remote, React Native, Android, Google Ads","","","","","","",69bab6252f85590001dcd6d7,7375,54151,"Digitalization and innovation must be data-driven and value-creating. + +Since 2012, we empower companies to recognize their data potential and transform it into intelligent products and applications that add value. + +As an innovation partner, we create the perfect connection between industry and research, resulting in unique data products and AI solutions that are built on independent infrastructures and deliver sustainable added value.",2012,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68cd0950086d38000156fcca/picture,"","","","","","","","","" +PROCURE TO PAY - DTSE,PROCURE TO PAY,Cold,"",17,telecommunications,jan@pandaloop.de,http://www.dtse.group,"","","","",Cologne,North Rhine-Westphalia,Germany,"","Cologne, North Rhine-Westphalia, Germany","energy management, ai-powered solutions, künstliche intelligenz, accounting services, process automation, ai in network modeling, ai for energy management, cloud solutions, smart building solutions, analytics, telecommunications, mobile app development, energy efficiency, logistics, smart building technology, procurement services, data analytics, digital innovation, regulatory compliance, test automation, robotic process automation, digital services, accounting, financial services, agile methods, mobile services, ai for project management, customer success, ai shared services, computer systems design and related services, services, procurement, ai in finance, ai for asset management, cloud-based solutions, public sector solutions, digital transformation, financial services support, ai services, human resources, enterprise data, ai for energy efficiency, cloud-based software, sustainability, financial risk management, global presence, data mining, digital workplace, enterprise data management, it support, ai for compliance monitoring, it support services, ai for supply chain, ai for public administration, b2b, public sector digitalization, information technology and services, workflow automation, process optimization, supply chain management, public sector, data-driven decision making, government, cloud software, esg compliance, hr services, consulting, ai for real estate, esg reporting, supply chain compliance, finance, education, non-profit, distribution, transportation & logistics, oil & energy, cloud computing, enterprise software, enterprises, computer software, information technology & services, software development, environmental services, renewables & environment, logistics & supply chain, nonprofit organization management","","","","","","","","",69bab6252f85590001dcd6de,7375,54151,"PTP stands for the end-to-end process from procurement (Procure) to payment (Pay). The entire business process from the purchase requisition, order, goods receipt, invoice to the processing of the payment is mapped. + +We are a Service Line of Deutsche Telekom Serivces Europe SE. + +PTP consists of #passionate people who love to share their daily work. Enjoy reading and feel free to contact us with any questions, concerns, etc. at any time. + +WE WON'T STOP UNTIL EVERYONE IS CONNECTED.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6555362a9d65a1000183f3fa/picture,"","","","","","","","","" +targenio GmbH,targenio,Cold,"",13,information technology & services,jan@pandaloop.de,http://www.targenio.de,http://www.linkedin.com/company/targenio-gmbh,"","",3 Industriestrasse,Nuremberg,Bavaria,Germany,90441,"3 Industriestrasse, Nuremberg, Bavaria, Germany, 90441","beschwerdemanagement, ki, ai agent, software fuer kundenservice, digitaler agent, ai, selfservice software, assistentenplattform, end 2 end, assistenten, agent, engpassmanagement, industrieller service, software development, ki für komplexe flle, distribution, automatisierung, industrial automation, ki für airlines, ki für maschinenbau, agentic web, operational efficiency, ai agenten, datenschutz compliant, automatisierte kundenproblemlösung, consulting, ki skills, domainwissen, ai agents, ki im industriellen service, computer systems design and related services, services, cloud solutions, business intelligence, ki in der ersatzteillogistik, low code, eu-entwickelt, api-integration, ki-assistenten, ki-basiertes wissensmanagement, kundenservice, ki skills entwicklung, b2b, machine learning, live betrieb, prozessautomatisierung, ki-modelle, ki-assistenten-plattform, systemanbindung, agentic ai, wissensmanagement, chatbots, self service, manufacturing, ki für automotive, ki-plattform, ki-gestützte problemlösung, digital transformation, customer relationship management, no code, supply chain management, digitale assistenten, customer service, information technology & services, mechanical or industrial engineering, cloud computing, enterprise software, enterprises, computer software, analytics, artificial intelligence, crm, sales, logistics & supply chain",'+49 911 597960,"SendInBlue, Outlook, Microsoft Office 365, Google Tag Manager, Vimeo, Typekit, Google Font API, Nginx, Hotjar, Gravity Forms, WordPress.org, Mobile Friendly","","","","","","",69bab6252f85590001dcd6ca,7375,54151,"Satisfy customers | Save time | Spare nerves Employees in customer service are only happy when they feel they have taken enough time to let their customers leave the contact with positive impressions. Customer service is particularly successful if it is also designed efficiently. targenio creates the link between these two areas of tension. We understand customer service processes in medium-sized businesses as well as in globally operating groups. This enables us to simplify demanding end-2-end processes in a digitalised and automated way. This not only makes employees and customers happy, but also saves time and saves nerves.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/695b529f2cad82000147b980/picture,"","","","","","","","","" +TCC GmbH,TCC,Cold,"",48,hospital & health care,jan@pandaloop.de,http://www.tcc-clinicalsolutions.de,http://www.linkedin.com/company/tcc-solutions,https://www.facebook.com/tccgmbh/,"",67A Humboldtstrasse,Hamburg,Hamburg,Germany,22083,"67A Humboldtstrasse, Hamburg, Hamburg, Germany, 22083","remote critical care, facharztexpertise, telemedizin, digitalisierung, ml, aidevelopment, neuronural networks, deep learning, hospitals & health care, artificial intelligence, information technology & services, hospital & health care","","Outlook, Microsoft Office 365, Apache, Mobile Friendly, WordPress.org, Remote, ANGEL LMS",22000000,Venture (Round not Specified),0,2025-03-01,"","",69bab6252f85590001dcd6cb,"","","TCC GmbH, based in Hamburg, is a medtech startup founded in 2020 by Prof. Dr. Christian Storm and David Barg. The company specializes in an AI-powered telemedicine platform that offers 24/7 remote digital intensive care unit (ICU) services. This platform connects central tertiary care centers with smaller hospitals, utilizing a hub-and-spoke model to process real-time patient data for proactive and predictive care. + +TCC provides comprehensive tele-ICU support, including consultations by trained intensivists and specialists, AI-guided predictions for patient outcomes, and real-time dashboards for monitoring and communication. Their core platform combines telehealth and AI technology to deliver standardized care and proactive treatment. TCC serves a range of hospitals, focusing on enhancing ICU care quality and staff satisfaction, with notable clients including Unfallkrankenhaus Berlin and Netcare South Africa. The company is committed to addressing specialist shortages and improving healthcare delivery through innovative solutions.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e8f14e352f330001d0abd2/picture,"","","","","","","","","" +staff-eye,staff-eye,Cold,"",14,information technology & services,jan@pandaloop.de,http://www.staff-eye.com,http://www.linkedin.com/company/staff-eye-gmbh,https://www.facebook.com/staffeyeGmbH/,https://twitter.com/EyeGmbh,72 Dresdner Strasse,Chemnitz,Saxony,Germany,09130,"72 Dresdner Strasse, Chemnitz, Saxony, Germany, 09130","offshoring, frondend, c, sql, catia, sps, blockchain, nearshoring, cis, vir, automotive, vr, personal, carla, hmi, headhunting, augmentedreality, ukraine, russland, backend, softwareentwicklung, stm32, plc, python, it services & it consulting, ki, software development, mobile anwendungen, deep learning, smart technologies, technologieberatung, transportation & logistics, software engineering, sensorbasierte kollisionswarnung, prozessoptimierung, natural language processing, produktportfolio in ar, neural networks, it-consulting, sensorik, information technology and services, branchenübergreifend, it-lösungen, projektmanagement, autonome plattformen, manufacturing, b2b, drohnen, künstliche intelligenz, iot, automatisierung, digitalisierung, it consulting, outsourcing, ar-erlebnisplattform, chatbots, digital transformation, webentwicklung, innovation, hinderniserkennung software, medizinische sterilisation ar, services, custom software development, effizienzsteigerung prozessmanagement, consulting, notfallmanagement in nutzfahrzeugen, hybridarbeit, cloud computing, explosionsgeschützte telefone atex, fahrspurassistenz software, ar/vr, computer systems design and related services, datenvisualisierung, uav, it outsourcing, machine learning, transportation_logistics, staffing & recruiting, information technology & services, artificial intelligence, mechanical or industrial engineering, management consulting, enterprise software, enterprises, computer software, outsourcing/offshoring",'+49 371 33716366,"Outlook, Google Tag Manager, Nginx, WordPress.org, Mobile Friendly, Google Font API, Esri, Remote, AI","","","","","","",69bab6252f85590001dcd6cf,7375,54151,"staff-eye GmbH is a technology and consulting company based in Chemnitz, Germany, founded in 2017. The company specializes in IT-driven solutions, focusing on software engineering, industrial consulting, and personnel services. Its mission is to help businesses succeed by leveraging technology across both physical and virtual environments. + +The company offers a range of services, including industrial consulting, software development, and recruitment. staff-eye GmbH develops and sells software while also providing personnel services and creating personnel concepts. Additionally, the company engages in the trade of textiles, raw materials, and cosmetics. With a commitment to enhancing client success, staff-eye GmbH utilizes advanced technologies such as web and mobile applications, PaaS, and front-end development.",2018,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68c552038ab6cf0001bad93f/picture,"","","","","","","","","" +Retresco,Retresco,Cold,"",35,information technology & services,jan@pandaloop.de,http://www.retresco.de,http://www.linkedin.com/company/retresco,"",https://twitter.com/retresco,44A Gruenberger Strasse,Berlin,Berlin,Germany,10245,"44A Gruenberger Strasse, Berlin, Berlin, Germany, 10245","artificial intelligence, text automation, frageantwortsysteme, seo, process optimisation, semantic, hybrid nlg, generative ai, rewrite, rag, themenmanagement, natural language processing, sprachmodelle, textmodell, semantik, user engagement, content automation, text generation, content generation, qa, technologies, robot journalism, natural language understanding, generative ki, large language model, topic management, nlg, natural language generation, gpt, it services & it consulting, automatisierte immobilienexposés, content recommendations, retail, transkriptionen, seo-optimierung, content personalization, question-answering-systeme, ki-gestützte content-strategie, data-to-text, consulting, information technology and services, content management, automatisierte video-transkriptionen, e-commerce, b2b, automatisierte textgenerierung in asiatischen sprachen, automatisierte sportberichterstattung, ki-basiertes wissensmanagement, ai content assistant, content analytics, media and publishing, archivklassifikation, api-integration, ki-assistenzsysteme, mehrsprachige textgenerierung, content optimization, content clustering, automatisierte produkttexte, content distribution, web search portals, libraries, archives, and other information services, content tagging, in-text-verlinkungen, personalisierte inhalte, hyperpersonalisierung, content scalability, digital content creation, chatbots, automatisierte berichterstattung, services, education, distribution, information technology & services, search marketing, marketing, marketing & advertising, consumer internet, consumers, internet",'+49 30 609839600,"Outlook, Hubspot, WordPress.org, Mobile Friendly, Nginx, Google Tag Manager, Bing Ads, YouTube, Google Dynamic Remarketing, DoubleClick, Linkedin Marketing Solutions, Hotjar, DoubleClick Conversion, AI, Vincere, Remote","",Series B,"",2016-06-01,2500000,"",69bab6252f85590001dcd6d4,7375,519,"Retresco GmbH is a Berlin-based company founded in 2008, specializing in AI-driven language technologies and natural language processing. The company develops semantic applications that include intelligent search, big data analytics, content classification, recommendation systems, and natural language generation. With over 15 years of experience, Retresco focuses on automating content processes and optimizing editorial workflows to enhance engagement and unlock revenue potential. + +The company offers flexible AI toolboxes and automation solutions for content analysis, generation, and management. Its flagship product, textengine.io, transforms structured data into engaging, multilingual text, suitable for various applications like product descriptions and news articles. Retresco also provides consulting services for customized AI implementations across media, e-commerce, and publishing sectors. The company emphasizes GDPR compliance and offers modular solutions for easy integration, supporting digital transformation for its clients.",2008,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e7a47b15fb230001a8e06c/picture,"","","","","","","","","" +NELTA,NELTA,Cold,"",35,information technology & services,jan@pandaloop.de,http://www.nelta.de,http://www.linkedin.com/company/nelta-germany,"","",43 Harvestehuder Weg,Hamburg,Hamburg,Germany,20149,"43 Harvestehuder Weg, Hamburg, Hamburg, Germany, 20149","it services & it consulting, cloud computing, data analysis and ai, cyberattack schutz, cybersecurity schulungen, ki-modelle, b2b, testdatenmanagement, fehlererkennung, computer systems design and related services, data science, prozessautomatisierung, testmanagement, predictive analytics, software development, softwarequalität, digital transformation, strategic it partnership, interaktive dashboards, crm solutions, cybersecurity, quality assurance, it-optimierung, consulting, ki-gestützte testautomatisierung, data security, sap services & solutions, automatisierte tests, it-beratung, big data, sicherheitsanalysen, test auf barrierefreiheit, testautomatisierung, cyber security, ki im software-testing, information technology and services, datenmigration, services, information technology & services, enterprise software, enterprises, computer software, computer & network security",'+49 40 23687800,"Cloudflare DNS, Gmail, Google Apps, Amazon AWS, CloudFlare, Netlify, Webflow, Salesforce, Facebook Login (Connect), Mobile Friendly, Google Analytics, Facebook Custom Audiences, Facebook Widget, Google Tag Manager, Bing Ads, Intercom, Remote, Selenium, Amazon EC2 Auto Scaling, Confluence, Jira, Postman, AWS SDK for JavaScript, JUnit, Jenkins, Docker, Maven, AWS Analytics, SAP Data Quality Management, microservices for location data, Cucumber, SAP, REST, GraphQL, Apache HTTP Server","","","","","","",69bab6252f85590001dcd6da,7375,54151,Willkommen bei NELTA. Wir verbinden strategische Beratung und technologische Kompetenz zu individuellen Lösungen für mehr Zukunftssicherheit und mehr Wachstum.,2019,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69b4dd5cb5c7e300019eabf0/picture,"","","","","","","","","" +NoscAi,NoscAi,Cold,"",17,information technology & services,jan@pandaloop.de,http://www.nosc.ai,http://www.linkedin.com/company/noscai-gmbh,"","",34 Jungfernstieg,Hamburg,Hamburg,Germany,20354,"34 Jungfernstieg, Hamburg, Hamburg, Germany, 20354","medical software, highly efficient custom software, fullstack software development, ai embedding, it system custom software development, software development, ki in radiologischen systemen, ki-basierte diagnoseunterstützung, clinicos, ki in medizin, medizinische software, praxissoftware schnittstellen, sicheres datenmanagement, patientenversorgung, digitale praxisprozesse, dicom schnittstellen, saas, fortbildungskurse, regulatory compliance, praxisdigitalisierung, it für arztpraxen, it-administration, schnittstellenentwicklung, healthcare software, digital health, cloud solutions, network security, medizinische it, praxismanagement, b2b, medizinische digitalisierung, information technology, computer systems design and related services, ki-lösungen, automatisierung, datenmanagement, healthcare technology, business intelligence, praxissoftware entwicklung, digital transformation, schulungen für praxisteam, praxissoftware, online-präsenz, digitale transformation, it-support, praxisautomatisierung durch ki, praxismarketing, consulting, healthcare, praxis-workflow-optimierung, healthtech, data security, praxiswebseite, gdt/ldt schnittstellen, ki-gestützte diagnostik, datenschutz, praxisautomatisierung, gesundheitstechnologie, healthcare analytics, medizinische ki-anwendungen, online-terminbuchung, automatisierte prozesse, individuelle schnittstellenlösungen, digitale gesundheitsversorgung, ki-gestützte therapieplanung, patientenmanagement, artificial intelligence, datensicherheit, praxisdatenintegration, services, education, information technology & services, computer software, health, wellness & fitness, cloud computing, enterprise software, enterprises, analytics, health care, hospital & health care, computer & network security",'+49 40 238316901,"Cloudflare DNS, Amazon AWS, Google Tag Manager, Mobile Friendly, Copilot, Claude","","","","","","",69bab6252f85590001dcd6df,3571,54151,"Founded by former CEO of AMP Engineering GmbH (AMPTech®), and Sohrab Shojaei Khatouni (reasearcher and scientist from Hamburg University of Technology and Medical Center Hamburg-Eppendorf).",2023,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66ebb390841d330001c815d3/picture,"","","","","","","","","" +Systemhaus Ulm GmbH,Systemhaus Ulm,Cold,"",34,computer & network security,jan@pandaloop.de,http://www.systemhaus-ulm.de,http://www.linkedin.com/company/systemhaus-ulm,https://www.facebook.com/Systemhaus-Ulm-GmbH-127906550661520/,"",37 Wiblinger Strasse,Neu-Ulm,Bavaria,Germany,89231,"37 Wiblinger Strasse, Neu-Ulm, Bavaria, Germany, 89231","system integration, mssp, mcafee security partner, microsoft server, application develompent, microsoft azure, microsoft office 365, network security, endpoint security, backup monitoring services, virtualization, microsoft csp tier1 partner, cybersecurity, cloud services, ai lösungen, it infrastructure, it-projekte, datenschutzkonforme ki, services, netapp storage, it-architektur, cyber-security technologien, cloud solutions, information technology and services, industrie 4.0, datenmanagement, computer systems design and related services, migrationen, it-sicherheit, ki in der produktion, managed services, it-management, it-security, data loss prevention, systemintegration, it-support, it-services, cloud-migration, application development, cyber-security, consulting, virtualisierung, ki-assistent ohne internetverbindung, it-unternehmen, backup / monitoring, generative ki im mittelstand, it-partner, it-beratung, managed security services, privategpt, fsas technologies ki champion, b2b, ki in der medizin, ki in der fertigung, it-infrastruktur, ds-gvo services, industrieanbindung, mobile apps, datenschutz, cloud migration, it-region, data management, it-optimierung, risk assessment, cybersecurity services, ki-lösungen, netapp partner, ki für wissensmanagement, dasu data science, cyber security, ki in unternehmen, ki datenschutz, it-lösungen, it consulting, ki für datenmanagement, applikationsentwicklung, managed it services, technology consulting, it services, it-projektmanagement, it-consulting, fsas technologies, privategpt lokal im unternehmen, backup / monitoring services, dasu transferzentrum, ki für dokumentensuche, it-sicherheitskonzepte, it support, software development, non-profit, information technology & services, cloud computing, enterprise software, enterprises, computer software, app development, apps, computer & network security, management consulting, nonprofit organization management",'+49 73 193406440,"Outlook, ExactOnline, Exact Online, Microsoft Azure, SendInBlue, Google Maps, Mobile Friendly, Typekit, Google Analytics, WordPress.org, Google Tag Manager, Apache, Ubuntu, Google Font API, YouTube, Google Play, AI, Android, Remote, Sisense, Domo","","","","","","",69bab6252f85590001dcd6db,7371,54151,"Systemhaus Ulm GmbH - Ihrer kompetenter und sympathischer IT-Full-Service-Anbieter in Ulm, um Ulm und um Ulm herum. + +Seit 1994 begleiten wir europaweit die IT-Infrastruktur unserer Kunden, angefangen bei den klassischen Client-Server-Lösungen bis hin zu komplexen und innovativen Cloud-Lösungen. Unsere Schwerpunkte liegen in den Bereichen Cloud-Dienste, Systemintegration, IT-Sicherheit und Applikationsentwicklung. Für unsere Kunden aus dem Mittelstand und dem Konzernumfeld bieten wir im Rahmen von „Managed Services"" die teilweise, oder auf Wunsch auch vollständige Betreuung ihrer IT-Infrastruktur an. Im Rahmen von Projekten setzen wir außerdem auch besonders hohe Anforderungen in den verschiedensten Bereichen um, darunter Migrationsszenarien oder die Anbindungen von Industrieanlagen im Produktionsumfeld. Als Partner für IT-Sicherheit mit langjähriger Expertise garantieren wir eine bedarfsgerechte Planung und Umsetzung der bestmöglichen Schutzmaßnahmen für die IT-Systeme unserer Kunden. Hierbei setzen wir auf den Einsatz neuester Sicherheitstechnologien. + +Systemhaus Ulm GmbH +Max-Planck-Straße 24 +89250 Senden + +Telefon: +49 (0)7307 9 547 601 +Fax: +49 (0)7307 9 547 602 +E-Mail: info@systemhaus-ulm.de + +Sitz der Gesellschaft: Senden +Registergericht Memmingen HRB 14515 +Umsatzsteuer-IdNr.: DE 275 669 463 + +Geschäftsführung: Dipl. Betriebswirt Martin Mayr +Rechtsform: Gesellschaft mit beschränkter Haftung",1994,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66de61ff612cfa0001bebdcb/picture,"","","","","","","","","" +eduBITES,eduBITES,Cold,"",17,e-learning,jan@pandaloop.de,http://www.edubites.com,http://www.linkedin.com/company/edubites,"","",6 Oberwallstrasse,Berlin,Berlin,Germany,10117,"6 Oberwallstrasse, Berlin, Berlin, Germany, 10117","e-learning providers, content creation tools, content production services, corporate training, ai-driven learning platform, ai-powered knowledge management, employee training and upskilling, synthetic video and audio, multimodal learning experiences, multilingual content, content templating, corporate knowledge management, voice cloning, multimedia content creation, knowledge transfer solutions, knowledge capture and transformation, content scaling, ai-powered content revitalization, user engagement analytics, ai scriptwriting, information technology and services, content repurposing and engagement, corporate training automation, large language models, learning experience platform (lxp), services, speech recognition, custom avatars, tacit knowledge extraction, data security, knowledge management, knowledge sprints, content onboarding solutions, content creation, natural language processing, knowledge sprint customization, b2b, software development, ai interview tool, multilingual learning experiences, content analytics, corporate academy development, multilingual ai learning, professional and management development training, e-learning, knowledge management in enterprise, ai content editing, synthetic media and avatars, ai content generation, ai didactics and content design, synthetic media avatars, education, internet, information technology & services, computer software, education management, professional training & coaching, artificial intelligence, computer & network security",'+49 1511 8440018,"Gmail, Outlook, Google Apps, Microsoft Office 365, DigitalOcean, BuddyPress, OneTrust, Zendesk, Slack, Google Font API, WordPress.org, Google Tag Manager, Bootstrap Framework, Nginx, Shutterstock, Mobile Friendly, Woo Commerce, MailChimp, Data Storage, Android, Remote, AWS Trusted Advisor, Claude, Cursor, Figma, Javascript, Next.js, React, TypeScript",2310000,Merger / Acquisition,0,2025-11-01,"","",69bab6252f85590001dcd6cc,7375,61143,"eduBITES is an AI-driven company based in Berlin, Germany, founded in 2021. It specializes in knowledge management and corporate learning solutions. The company develops platforms that capture, transform, and manage both explicit and tacit knowledge. This results in automated, bite-sized, multimodal, and multilingual learning units designed to support onboarding, upskilling, and employee performance. + +The core offerings of eduBITES include three AI-powered suites: interactive knowledge capture, knowledge transformation, and knowledge management. These suites help make enterprise knowledge accessible, repurpose existing content into engaging learning units, and facilitate personalized learning experiences. Additionally, eduBITES provides bespoke digital corporate academies that integrate advanced content and technology while ensuring data security and GDPR compliance. + +Targeting corporations across various sectors, eduBITES focuses on enhancing learning and knowledge sharing, particularly in the HR Tech space. The company has raised $2.22 million in funding, with notable investors including Redstone and IBB Beteiligungsgesellschaft.",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/681f256d6fe17d00012d2d3e/picture,"","","","","","","","","" +ICONPARC GmbH,ICONPARC,Cold,"",17,information technology & services,jan@pandaloop.de,http://www.iconparc.de,http://www.linkedin.com/company/iconparc-gmbh,https://www.facebook.com/ICONPARC,"","",Munich,Bavaria,Germany,"","Munich, Bavaria, Germany","sales app, grosshandel, ecommerce, ebusiness, digitale transformation, haendlerplattformen, disruptive innovationen, digitaler service, omnichannel, individualsoftware, digitale geschaeftsmodelle, middleware, pim, b2b, digitale services, b2b apps, digitale produkte, database, softwareentwicklung, b2c, digitale haendlerpalttformen, replatforming, individuelle software, franchise, digitale innovationen, b2b2c, b2b plattformen, software development, recommandation engine, interactive digital signage, database publishing, ai & data analytics, search & filter, security & data protection, b2b2c multi dealer platform, real-time sales dashboard, devops & continuous deployment, franchise network solutions, voice recognition & processing, personalized katalog generator, omnichannel plattform, e-procurement, information technology & services, digital services, devops, work order management, ai text & image generators, product information management, e-commerce, api integration, performance optimization, multi language & multi currency, b2b e-commerce, customer self-service portal, d2c, webanwendung & plattformentwicklung, e-commerce & retail, digital transformation, content management system, services, custom software development, consulting, automated product recommendations, computer systems design and related services, mobile sales app, distribution, consumer internet, consumers, internet",'+49 89 15900643,"Mobile Friendly, Google Tag Manager, Apache, Google Maps, Google Maps (Non Paid Users), Remote","","","","","","",69bab6252f85590001dcd6d1,7375,54151,Wir entwickeln maßgeschneiderte Software für Unternehmen und Konzerne,1998,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6729a39ff463670001950310/picture,"","","","","","","","","" +Levity,Levity,Cold,"",36,information technology & services,jan@pandaloop.de,http://www.levity.ai,http://www.linkedin.com/company/levityai,https://facebook.com/LevityAI/,https://twitter.com/levityai,17 Grosse Hamburger Strasse,Berlin,Berlin,Germany,10115,"17 Grosse Hamburger Strasse, Berlin, Berlin, Germany, 10115","no code, natural language processing, computer vision, machine vision, automation, machine learning, deep learning, artificial intelligence, business process automation, software development, cost reduction, data privacy, ai rule application, ai in logistics, error elimination, workflow monitoring, background workflow automation, email analytics, invoice follow-up, order entry automation, operational visibility, ai for freight tendering, email automation, ai for last-mile delivery, customer follow-up automation, scalability, ai for load building, load check-ups, soc 2, workflow automation, services, driver communication automation, cloud hosting, operational efficiency, enterprise logistics ai, data analytics, custom prompts, quote response automation, logistics automation, phone workflows, resilience, compliance, load automation, automation scaling, transportation & logistics, ai-powered logistics control, b2b, customer satisfaction tracking, data security, multi-lingual support, customer relationship management, enterprise-grade security, hosted in europe, multilingual logistics ai, security standards, enterprise security, phone ai, workflow builder, computer systems design and related services, real-time insights, carrier updates, call automation, logistics workflows, email workflows, ai workflows, ai in supply chain, automated carrier communication, cloud security, email and phone automation in logistics, edge case detection, load tracking, automated load response, ai for freight quoting, ai automation, automation control, multi-channel automation, ai for freight management, logistics efficiency, performance tracking, real-time analytics, system integration, gdpr compliance, automated follow-ups, iso 27001, load building automation, ai for customer csat, automation roi, control tower, quote automation, background automation, multi-language ai, ai integration, ai in freight, ai rule engine, ai rule-based automation, tracking automation, security certifications, multi-lingual ai, ai fallback logic, distribution, information technology & services, cloud computing, enterprise software, enterprises, computer software, computer & network security, crm, sales","","Cloudflare DNS, SendInBlue, Gmail, Google Apps, Microsoft Office 365, Amazon AWS, Webflow, Google Tag Manager, YouTube, Google Analytics, Cloudinary, Facebook Custom Audiences, Google Dynamic Remarketing, Google Font API, Facebook Widget, Hubspot, DoubleClick Conversion, DoubleClick, Hotjar, Typekit, Mobile Friendly, Linkedin Marketing Solutions, Facebook Login (Connect), Remote, AI",10000000,Seed,8300000,2022-10-01,1000000,"",69bab6252f85590001dcd6d2,7375,54151,"Levity is a Berlin-based technology company founded in 2018 that specializes in no-code AI-powered workflow automation software. The company aims to help businesses automate repetitive tasks, such as email and phone operations, without requiring coding expertise. Levity's platform features modular AI blocks and a drag-and-drop Flow Builder, allowing users to create customized automations for tasks like text extraction, categorization, and workflow routing. + +The company focuses on sectors such as global logistics and freight operations, providing solutions like Control Tower for analyzing operations, AI Flows for managing high-volume communications, and Phone AI for automating calls. Levity emphasizes data privacy and reliability, ensuring secure integrations and compliance through annual audits. With a commitment to innovation, Levity supports operations in over 10 languages and is backed by notable investors.",2019,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69adfe1b3e0f84000106e19e/picture,"","","","","","","","","" +viind GmbH,viind,Cold,"",16,information technology & services,jan@pandaloop.de,http://www.viind.com,http://www.linkedin.com/company/viind,"","","",Wuerzburg,Bavaria,Germany,"","Wuerzburg, Bavaria, Germany","digitalisierung, chatbots, messaging, ticketsysteme, recruiting, messenger, mobile recruiting, digitale bürgerbeteiligung, datenschutz, mehrsprachigkeit, customer service, sicherheitsstandards, public administration, data security, effiziente bürgerberatung, verwaltungsdigitalisierung, nutzererlebnis, branchenlösungen, automatisierte anfragen, barrierefreie chatbots, kundenbindung, effizienzsteigerung, kundeninteraktion, e-government, chatbot-entwicklung, government, kommunikationslösung, automatisierung, ki-basierte kommunikation, services, utilities, social media integration, digitaler wandel, ki-integration, sprachverarbeitung, automatisierte verwaltungsprozesse, sicherheitszertifikat, ki-gestützte automatisierung, server in deutschland, dsgvo, multichannel kommunikation, maßgeschneiderte chatbots, kundenkommunikation, kundenservice-chatbots, verwaltungs-chatbots in deutschland, whatsapp, information technology & services, datenschutzkonform, computer systems design and related services, nlp, kundenservice, dsgvo-konform, barrierefreiheit, financial services, education, voicebots, effizienzsteigerung in verwaltungen, webchat, b2b, b2c, datenschutzkonforme chatbots, kundenservice automatisierung, deutschlandbasiert, digitale verwaltung, healthcare, effizienz, facebook messenger, verwaltung, multichannel, künstliche intelligenz, social media, digital transformation, mehrsprachige chatbots, verwaltungsprozesse, e-government-lösungen, mehrsprachigkeit in chatbots, kommunikation in öffentlichen verwaltungen, verwaltungs-chatbots, ki-basierte bürgerkommunikation, bürgerdialog, lead generation, finance, non-profit, energy_utilities, computer & network security, natural language processing, artificial intelligence, health care, health, wellness & fitness, hospital & health care, consumer internet, consumers, internet, marketing & advertising, sales, nonprofit organization management",'+49 93 173040399,"SendInBlue, Outlook, Microsoft Office 365, Atlassian Cloud, Slack, Facebook Login (Connect), Facebook Widget, Nginx, Mobile Friendly, WordPress.org, Google Tag Manager, Facebook Custom Audiences, Android","","","","","","",69bab6252f85590001dcd6d3,7375,54151,"viind GmbH is a German IT services company based in Würzburg, specializing in AI-based chatbot solutions for public administration and enterprise customer service. Founded in 2021, the company has its roots in a university project from 2019. With a team of 1-50 employees, viind is dedicated to enhancing communication between citizens and government entities. + +The company offers modular chatbot systems that facilitate automated communication across various channels, including webchat solutions, social media integration, and ticketing systems. Their software supports multilingual capabilities and is developed in compliance with data protection regulations in Germany. viind's chatbots are designed to efficiently handle recurring inquiries, providing 24/7 communication and reducing maintenance efforts. + +viind serves multiple sectors, including public administration, enterprise customer service, and IT consulting. The company has gained recognition for its innovative approach, winning the German CEO Excellence Awards in 2022. Their solutions have been particularly beneficial for public health authorities, helping manage high volumes of citizen inquiries, especially during the COVID-19 pandemic.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66ee5639fe828f00019ab14a/picture,"","","","","","","","","" +SB Digital Automation GmbH,SB Digital Automation,Cold,"",20,mechanical or industrial engineering,jan@pandaloop.de,http://www.sbdat.com,http://www.linkedin.com/company/sb-digital-automation-gmbh,"","",3 Franz-Josef-Delonge-Strasse,Munich,Bavaria,Germany,81249,"3 Franz-Josef-Delonge-Strasse, Munich, Bavaria, Germany, 81249","railway vehicles, mechanical design, industrial service, information technology & services, emobility, electrical system, transportation, automation, mobile development, product development, windows applications, aerospace, embedded system, custom software development, web application development, engineering, business process automation, cloud support, cloud computing, digital workflow automation, cloud security, manufacturing, consulting, business services, software development, product design, digital solutions, web development, cloud platform integration, cloud migration, cloud infrastructure, services, web app deployment, artificial intelligence, regulatory compliance, industrial automation, project management, it solutions, enterprise cloud solutions, computer systems design and related services, technology services, cloud services, web design, b2b, custom software, digital transformation, business automation, cloud infrastructure support, process optimization, web application, process automation, enterprise it, it consulting services, system integration, it consulting, automation tools, cloud infrastructure management, information technology, devops support, enterprise software, enterprises, computer software, mechanical or industrial engineering, internet infrastructure, internet, productivity, management consulting",'+49 89 24206855,"GoDaddy Hosting, Mobile Friendly, Google Font API, Apache, WordPress.org, Android, React Native","","","","","","",69bab6252f85590001dcd6d9,7375,54151,"SB Digital Automation was established in July 2017 based on the special European customer requests by experienced industry experts. Our focus is to provide innovative solutions for customer needs by safeguarding nature thereby ensuring a positive impact on customer business/products. +SB Digital Automation provides One-Stop-Solution to the customer requirements ranging from Conceptualization to Product realization through Robotic Process Automation (RPA) and Artificial Intelligence (AI). +Our key success factors are outstanding project management, bespoke consultation, clear communication, close collaboration, Learning-By-Doing, optimal budget, fine quality, schedule, and adaptability.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f095e10ef82e0001415332/picture,"","","","","","","","","" +colayer,colayer,Cold,"",13,management consulting,jan@pandaloop.de,http://www.colayer.io,http://www.linkedin.com/company/colayer-decentrally-owned,"","",Heinrich-Roller-Strasse,Berlin,Berlin,Germany,10405,"Heinrich-Roller-Strasse, Berlin, Berlin, Germany, 10405","digital product development, company building, design sprints workshops, interimsmanagement, consulting coaching, marketing growth, business consulting & services, on-demand experts, ai-powered solutions, team extension, website development, fast matching algorithm, predictive analytics, cloud solutions, consulting, services, digital consultant, data scientist, crisis resolution, information technology and services, business intelligence, technology consulting, system architecture, tech transformation, sustainable growth, interims management, customer relationship management, project management, b2b, data-driven decision making, outcome guarantee, financial consulting, computer systems design and related services, software development, ai solution deployment, performance monitoring, talent acquisition, change management, scalable solutions, tech landscape re-architecture, rapid prototypes, fair pricing, product designer, vetted talents, high-quality resources, ai transformation, system integration, business growth, management consulting, process optimization, mobile development, kpi definition, top 1% experts, automation, custom software development, data science, product manager, software implementation, digital transformation, web development, information technology & services, enterprise software, enterprises, computer software, cloud computing, analytics, crm, sales, productivity, financial services","","Sendgrid, Gmail, Google Apps, Amazon AWS, Google Font API, Google Tag Manager, Mobile Friendly, Bootstrap Framework, Android, Remote, Node.js, AI, IBM Data Warehouse, Puppeteer, , GitHub Copilot, Google Publisher Tag (GPT), Dell EMC PowerStore","","","","","","",69bab6252f85590001dcd6dc,7375,54151,"Colayer is a decentrally owned tech talent network that connects companies with vetted software engineers, designers, product managers, and AI experts. Based in Zurich-Kloten, Switzerland, with a development center in Pune, India, Colayer specializes in talent acquisition and team augmentation services. + +Founded in 2000 by Markus Hegi, Colayer operates as a talent marketplace, offering services such as tech talent placement, custom development, and AI solutions. The company provides AI experts for various projects and conducts workshops to educate businesses on AI fundamentals. Colayer emphasizes quality by vetting all talents, ensuring they represent the top 1-3% of tech professionals. The company also guarantees compliance and scalability, enhancing project outcomes through direct ownership and accountability.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6959596eeb51f1000186d3f7/picture,"","","","","","","","","" +coac GmbH,coac,Cold,"",40,chemicals,jan@pandaloop.de,http://www.coac.de,http://www.linkedin.com/company/coac-gmbh,"","",18c Krefelder Strasse,Cologne,North Rhine-Westphalia,Germany,50670,"18c Krefelder Strasse, Cologne, North Rhine-Westphalia, Germany, 50670","predictive analytics, keci, mobile development, data warehousing, reach reporting, hse, osha, ohs, data science, digital product design, business intelligence, data management, data quality, data transparency, consulting, big date analytics, artificial intelligence, digital transformation, design sprints, compliance management, environment health amp safety, mobile apps, digital platforms, ehs, design thinking, etl, ehamps, compliance solutions, data harmonization, product safety, safety data, data integration, environment health safety, supply chain, circular economy, substance volume tracking, mobile application development, ghs reporting, data transformation, product stewardship, asset management, regulatory affairs, regulatory compliance, supply chain management, chemical manufacturing, information technology & services, enterprise software, enterprises, computer software, b2b, analytics, mobile app development, software development, logistics & supply chain, chemicals",'+49 221 16830131,"Cloudflare DNS, Outlook, Microsoft Office 365, Mobile Friendly, reCAPTCHA, Google Tag Manager, Hotjar, Data Analytics, Remote, AI, DATEV Accounting, LinkedIn Ads, AWS SDK for JavaScript, TapClicks",390000,Other,390000,2021-10-01,"","",69bab6252f85590001dcd6c7,"","","coac GmbH is a data-driven innovation and digital transformation consulting company based in Cologne, Germany, with an additional office in Berlin. The company focuses on helping organizations co-create and scale digital innovations within their core business operations. Founded within a co-creation space, coac combines industry expertise, methodology, and digital technology to drive business growth and digital transformation. + +coac offers a range of services, including strategic consulting on digital technologies, robotic process automation through its proprietary platform ROBOTS, and custom solutions for digitalization initiatives. The company has developed several software products, such as the MOSAIK Smart Plug for efficient device management, the SAIFTY Platform for product safety information management, and the SEP for equipment and inspection management. coac has received recognition for its commitment to innovation and collaborates with various partners and start-ups to enhance its offerings.",2013,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68246e4f6a5c730001025255/picture,"","","","","","","","","" +conventic GmbH,conventic,Cold,"",13,information technology & services,jan@pandaloop.de,http://www.conventic.com,http://www.linkedin.com/company/conventic-gmbh,"","",69 Burgstrasse,Bonn,North Rhine-Westphalia,Germany,53177,"69 Burgstrasse, Bonn, North Rhine-Westphalia, Germany, 53177","kubernetes, react, nodejs, devops, ai, docker, android, openstack, cloud, angular js, cloud transformation, kuenstliche intelligenz, prozesse, compliance as a service, ki, ml, genai, llm, large language models, it services & it consulting, gdpr compliance, data privacy compliance, it consulting, compliance, ai security architecture, cloud services, services, multi-model-workflows, access control, user rights management, content access rights, multi-model ai management, datenschutz, ai integration, consulting, cloud solutions, compliance solutions, ai security, data security, ai models, secure hosting, data analytics, content management, content segmentation, zugriffsrechte, generative ki, machine learning, software development, content access, information technology and services, data management, data protection, it-beratung, user experience, secure generative ai, computer systems design and related services, b2b, application development, digital transformation, ai deployment, data privacy, mobile, internet, information technology & services, management consulting, cloud computing, enterprise software, enterprises, computer software, computer & network security, artificial intelligence, ux, app development, apps",'+49 22 876376970,"Route 53, Gmail, Google Apps, Microsoft Office 365, Amazon AWS, Netlify, Slack, Nginx, Google Tag Manager, Mobile Friendly, Xamarin, Node.js, Android, React Native, Remote","","","","","","",69bab6252f85590001dcd6c8,7375,54151,"conventic GmbH is a software development company based in Bonn, Germany, with a team of around 13 employees. The company specializes in software engineering, cloud consulting, and generative AI solutions, focusing on data security and compliance. + +The core expertise of conventic GmbH lies in software development and the associated processes. The firm combines technical software skills with domain knowledge to deliver tailored solutions. Led by Geschäftsführer Bernd Maurer, the team includes specialists like Clemens Peters, who focuses on cloud consulting. The company is recognized for its secure and compliant AI tools designed to address data security challenges.",2009,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e540366da38c0001cfaaca/picture,"","","","","","","","","" +Perfect Timing Technologies,Perfect Timing,Cold,"",13,information technology & services,jan@pandaloop.de,http://www.ptt.technology,http://www.linkedin.com/company/perfecttimingtechnology,https://www.facebook.com/perfecttimingtechnolgies/,https://twitter.com/pttglobal,"",Duesseldorf,North Rhine-Westphalia,Germany,"","Duesseldorf, North Rhine-Westphalia, Germany","it services & it consulting, digital transformation, custom solutions, project management, automation tools, customer engagement, enterprise solutions, edge computing, secure systems, e-commerce solutions, software engineering, it services, web and mobile apps, digital workplace solutions, education technology, consulting services, industry-specific it solutions, seo services, cloud infrastructure, smart technologies, manufacturing technology, consulting, it consultancy, information technology and services, cybersecurity, enterprise resource planning (erp), technology consulting, data analytics, computer systems design and related services, digital marketing, cloud computing, b2b, iot implementation, e-commerce, client-focused, enterprise software, government, professional team, mobile app development, digital marketing automation, digital innovation, innovative technology, timely delivery, it support, cyber threat protection, global presence, automation, financial technology, generative ai, ui/ux design, cyber threat mitigation, iot, staff augmentation, hyperautomation, ai and ml services, digital strategy, web development, quality management, ai and ml, ai-powered solutions, real-time data analytics, it security, cloud solutions, low-code/no-code platforms, seo, software development, healthcare it, it solutions, blockchain, custom software, client success, business consulting, services, big data, it infrastructure, healthcare, finance, education, manufacturing, distribution, information technology & services, productivity, consumer internet, consumers, internet, e-learning, computer software, education management, management consulting, search marketing, marketing, marketing & advertising, enterprises, internet infrastructure, it consulting, finance technology, financial services, computer & network security, health care, health, wellness & fitness, hospital & health care, mechanical or industrial engineering",'+49 93 19897692,"WordPress.org, Multilingual, Google Tag Manager, reCAPTCHA, Google Font API, Mobile Friendly, Apache, Woo Commerce, AI, Remote, Android, React Native","","","","","","",69bab6252f85590001dcd6cd,7375,54151,Creating the future,2022,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6826e835f30977000174d283/picture,"","","","","","","","","" +AICU,AICU,Cold,"",24,information technology & services,jan@pandaloop.de,http://www.aicuflow.com,http://www.linkedin.com/company/aicuflow,"","",1 Bildungscampus,Heilbronn,Baden-Wuerttemberg,Germany,74076,"1 Bildungscampus, Heilbronn, Baden-Wuerttemberg, Germany, 74076","software automation, xai, data insights, rd, innovation, ai agents, software development, multimodal ai, biotechnology, automated outlier detection, secure data management, research and development in the physical, engineering, and life sciences, data management, operational efficiency, data curation, healthcare it, data enrichment, data integration, ai in r&d, real-time data sync, ai explainability, outlier detection, multimodal ai in biology, iso27001 upcoming, life sciences, b2b, retrieval-augmented generation (rag), ai for clinical data, research data management, predictive analytics, gdpr compliant, ai-driven data analysis, explainable ai, data pipeline automation, multimodal data processing, digital transformation, data security standards, ai model deployment, machine learning, data quality assessment, automated data workflows, healthcare, data security, data visualization, real-time dashboards, model performance monitoring, data source integration, ai-powered research workflows, ai model explainability, ai model monitoring, prompt optimization, ai automation tools, workflow automation, healthcare analytics, fine-tuning foundation models, explainable ai in healthcare, life science research, low-code ai platform, pharmaceuticals, services, information technology & services, enterprise software, enterprises, computer software, artificial intelligence, health care, health, wellness & fitness, hospital & health care, computer & network security, medical",'+49 23 4567890,"Route 53, Gmail, Google Apps, Instantly, Hubspot, Slack, Mobile Friendly, Facebook Custom Audiences, Facebook Login (Connect), reCAPTCHA, Google Tag Manager, Facebook Widget","",Other,0,2024-10-01,"","",69bab6252f85590001dcd6ce,8731,54171,"AICU GmbH is a German software company founded in 2023 and based in Heilbronn. The company specializes in AI-driven tools for research and development (R&D), aiming to support innovation-driven teams with automation and AI solutions. + +Their flagship product, aicuflow, is a versatile platform that allows users to create explainable AI workflows using various data types. It enables the deployment of these workflows as APIs and supports the hosting of professional AI models. AICU emphasizes the importance of explainable AI to enhance R&D processes and offers resources on applying AI to improve workflows through their blog. The company actively participates in industry events, showcasing its commitment to advancing AI in research.",2024,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69afc8a2776edc0001d82f8e/picture,"","","","","","","","","" +Lamarr Institute,Lamarr Institute,Cold,"",64,research,jan@pandaloop.de,http://www.lamarr-institute.org,http://www.linkedin.com/company/lamarr-institut,"","","",Dortmund,North Rhine-Westphalia,Germany,"","Dortmund, North Rhine-Westphalia, Germany","ml auf quantencomputern, vertrauenswuerdiges ml, kuenstliche intelligenz, ressourcenbewusstes ml, hybrides ml, maschinelles lernen, ki, ai for societal impact, machine learning, interdisciplinary research, ai for healthcare, ai in physics, ai in health, research and development in the physical, engineering, and life sciences, context-aware ai, ai for financial crime detection, triangular ai paradigm, knowledge-based ai, ai for scientific discovery, research and development in artificial intelligence, higher education, ai in industry, hybrid machine learning, data integration, ai ethics, industrial automation, resource-aware ml, government, ai in natural language processing, resource efficiency, b2b, embodied ai, trustworthy ai, healthcare technology, ai for environmental protection, ai in quantum computing, ai applications, sustainable ai, ai education, ai in robotics, european ai, ai certification, ai for education, ai in logistics, ai research, ai for industrial production, logistics and supply chain, healthcare, education, manufacturing, transportation & logistics, artificial intelligence, information technology & services, education management, enterprise software, enterprises, computer software, mechanical or industrial engineering, logistics & supply chain, health care, health, wellness & fitness, hospital & health care","","Gravity Forms, Nginx, Vimeo, Mobile Friendly, WordPress.org, Cross Pixel Media, Dell EMC PowerStore, Mode, NLP, Python, Zoomdata, YouTube, Linkedin Marketing Solutions, Instagram, ChatGPT, Azure OpenAI Service, Copilot, Lexity, Microsoft PowerPoint, Excel4Apps","","","","","","",69bab6252f85590001dcd6dd,8731,54171,"The Lamarr Institute for Machine Learning and Artificial Intelligence is a prominent research institute in Germany, focused on developing high-performance and trustworthy AI and machine learning applications. Established on September 29, 2022, in Sankt Augustin, it emerged from the Competence Center Machine Learning Rhine-Ruhr and is supported by the Federal Ministry of Education and Research and the state of North Rhine-Westphalia. The institute collaborates with leading institutions like TU Dortmund University and the Rheinische Friedrich-Wilhelms University of Bonn. + +The institute's research centers around the Triangular AI (AI3) paradigm, which combines data, expert knowledge, and contextual information to create sustainable and explainable AI systems. Key research areas include hybrid machine learning, natural language processing, and applications in life sciences and sustainable energy. The Lamarr Institute also emphasizes technology transfer, educational initiatives, and collaborations with industry and government to address societal needs. With a commitment of approximately 126 million euros for research and development by 2028, it aims to enhance Germany's position in global AI research and technology.",2018,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/687f490860513200014b83cb/picture,"","","","","","","","","" + +GaussML,GaussML,Cold,"",12,information technology & services,jan@pandaloop.de,http://www.gauss-ml.com,http://www.linkedin.com/company/gauss-ml,"",https://twitter.com/GaussML,"",Stuttgart,Baden-Wuerttemberg,Germany,70178,"Stuttgart, Baden-Wuerttemberg, Germany, 70178","optimization, industry 40, robotic welding, laser cutting, machine learning, manufacturing, machine learning & optimization, machining, software development, artificial intelligence, information technology & services, mechanical or industrial engineering","","Gmail, Google Apps, CloudFlare Hosting, Bootstrap Framework, reCAPTCHA, Google Tag Manager, Mobile Friendly, IoT, Android, Remote, Avaya, Vonage, Micro, Reviews, AI","","","","","","",69bab5b72f92db0001073583,"","","GaussML, or Gauss Machine Learning GmbH, is an AI startup based in Leonberg, Germany, founded in late 2020. The company specializes in AI solutions aimed at improving manufacturing efficiency, productivity, and sustainability for businesses of all sizes. As a B2B SaaS provider, GaussML employs a unique ""small data"" technology to support machine operators, process engineers, and production managers in optimizing manufacturing processes. + +The flagship product, Optimyzer, serves as an AI copilot for production machines. It helps users find optimal machine parameters with minimal experimentation, leading to increased productivity, improved quality, and reduced resource consumption. Optimyzer is designed to enhance various manufacturing processes, including laser cutting, and enables operators to achieve expert-level performance quickly. GaussML is committed to sustainability and continuous improvement, focusing on delivering tailored solutions that respond to customer needs.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/687c57d06c6a3d00010701cf/picture,"","","","","","","","","" +Bliro,Bliro,Cold,"",24,information technology & services,jan@pandaloop.de,http://www.bliro.io,http://www.linkedin.com/company/bliro-io,"","","",Munich,Bavaria,Germany,"","Munich, Bavaria, Germany","software development, privacy-preserving conversation ai, automated follow-ups and database updates, no bot, no consent needed, customizable ai models and templates, on-site and online meetings, ai coaching, sales automation, privacy-preserving ai technology, full automation of meeting notes, information technology and services, real-time transcription and analysis, trend recognition, full transparency in conversations, automated follow-up emails, conversation analysis, data security, customer insights, meeting automation, ai coaching for sales teams, customer relationship management (crm), european servers, privacy protection, best practice sharing, transcription without audio recording, system integration, api connection, sales and marketing software, automated crm updates, crm integration and automation, gdpr-compliant conversation intelligence, data-driven customer insights, custom ai models for sales, ai meeting notes automation, b2b, meeting transcription, secure european data storage, computer systems design and related services, gdpr compliance, software as a service (saas), meeting summaries, services, crm synchronization, anonymous transcription, adaptive ai templates, no recordings, seamless platform integration, real-time transcription, integrated customer insights, information technology & services, saas, computer software, enterprise software, enterprises, computer & network security",'+49 172 2056997,"Cloudflare DNS, Route 53, Gmail, Google Apps, Microsoft Office 365, Facebook Custom Audiences, Hotjar, Google Tag Manager, Intercom, Google Font API, Mobile Friendly, Facebook Login (Connect), Vimeo, Typekit, Facebook Widget, Android, Data Storage, Seismic, SWIFT, Kotlin, Linkedin Marketing Solutions",3080000,Seed,3080000,2025-02-01,"","",69bab5b72f92db0001073584,7375,54151,"Bliro is an AI-powered conversation intelligence platform that transcribes, analyzes, and summarizes meetings and business conversations in real-time. The platform operates using proprietary audio processing technology, allowing it to transcribe conversations directly from a user's computer without creating audio recordings. This ensures GDPR compliance, as it does not require consent from all participants. Bliro integrates seamlessly with major platforms like Zoom, Microsoft Teams, Slack, and Confluence. + +Key features of Bliro include automatic real-time transcription in 15 languages, AI-generated customizable meeting summaries, automatic CRM synchronization with Salesforce and HubSpot, and sentiment analysis. The platform is designed for various user segments, including sales teams, legal and medical professionals, students, and content creators. Bliro is used by over 1,000 companies, including notable organizations such as ImmoScout24 and Telefónica Germany. It offers a free Basic plan and various paid plans, available on Mac, Windows, and iOS.",2022,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68b9342ec096600001fb81cc/picture,"","","","","","","","","" +SPREAD AI,SPREAD AI,Cold,"",96,information technology & services,jan@pandaloop.de,http://www.spread.ai,http://www.linkedin.com/company/spread-ai,"","",40C Koepenicker Strasse,Berlin,Berlin,Germany,10179,"40C Koepenicker Strasse, Berlin, Berlin, Germany, 10179","complexity management, product intelligence, aftersales, 3d visualization, automated knowledge flows, diagnosis troubleshooting, digital vehicle twin, assembly sequences, rework, diagnostics, virtual collaboration, systems integration, electronics & wiring software, virtual modelling, engineering intelligence network, digital twin, repair sequences, configuration management, artificial intelligence, simulation, engineering knowledge management, augmented engineering intelligence, variant management, engineering intelligence graph, intelligent diagnosis of car software, spreadinformation, aftersales functionalities for complex manmade products, webapplication, deep learning, automotive engineering, rd, knowledge graphs, systems engineering, engineering intelligence, 3d, ki, data infrastructure & analytics, structured data mapping, lifecycle management, gdpr compliance, manufacturing data, low-code app development, ontology, product twin, predictive maintenance, cost reduction, data integration, product architecture, change management, industrial goods & machinery, services, reusability, faster time-to-market, automotive sop risk mitigation, unstructured data analysis, complex product dependencies, ai agents for engineering tasks, variant complexity reduction, error inspector, engineering services, ai agents for engineering, component reuse, custom app building, automotive & mobility, defense system development, aerospace, data security, aerospace & defense, product twins, system dependencies, data mapping tools, low-code platform, troubleshooting, security standards, automotive industry, product data contextualization, automotive, system dependency visualization, enterprise saas, connected product data, design data analysis, product lifecycle automation, real-time synchronization, system modeling, engineering ontology, error detection and resolution, product architecture visualization, software-defined vehicles, complex mechatronic products, industrial machinery, ai automation, product lifecycle analytics, knowledge graph, manufacturing, ai-powered automation, b2b, requirements management, data federation, quality improvement, defense, ai-driven decision support, action cloud, diagnostics automation, mbse data layer, product data unification, automotive repair diagnostics, information technology & services, enterprise software, enterprises, computer software, computer & network security, mechanical or industrial engineering","","Route 53, SendInBlue, Outlook, Typeform, Webflow, Hubspot, Active Campaign, Vimeo, Multilingual, Mobile Friendly, Linkedin Marketing Solutions, Google Tag Manager, Hotjar, Docker, Remote, AI, Intel, Mode, Cloudflare Insights, GraphQL, TypeScript, React, Javascript, SQL, Salesforce, SalesLoft, LinkedIn Sales Navigator, , Jira, n8n",18860000,Seed,0,2025-09-01,12700000,"",69bab5b72f92db0001073595,3829,54133,"SPREAD AI is a Berlin-based engineering intelligence company founded in 2019. It specializes in creating a knowledge graph-based Engineering Intelligence Network, which integrates disconnected product data into virtual Product Twins. This approach makes complex product information accessible and actionable for engineering teams working on systems such as cars, aircraft, and machinery. + +The Engineering Intelligence Platform is a key offering, allowing users to visualize dependencies across various functions and components. It supports multiple use cases, from research and development to production and aftersales. The Requirements Manager transforms unstructured requirements into structured knowledge, facilitating component reuse and decision-making. SPREAD AI's solutions help accelerate time-to-market, enhance quality, and reduce inefficiencies, ultimately benefiting clients like Mercedes, Porsche, VW, and Infineon.",2019,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69a7cc3d0eef780001dc4966/picture,"","","","","","","","","" +Humanizing Technologies,Humanizing,Cold,"",17,information technology & services,jan@pandaloop.de,http://www.humanizing.com,http://www.linkedin.com/company/humanizing411,https://facebook.com/humanizingtechnologies,https://twitter.com/Humanizing411,"",Cologne,North Rhine-Westphalia,Germany,"","Cologne, North Rhine-Westphalia, Germany","robotics, engineering, digital humans, ai, ai chatbots, humanoid robots, lowcode platform, chatbots, software development, app development, pepper robot, workflow builder, conversational ai, technology, telepresence robotics, avatars, artificial intelligence, service robotics, keynote speaker, sprachsteuerung, ki-gestützte avatare, customer journey, indoor navigation, multichannel-integration, customer experience, interaktive kommunikation, barrierefreie avatare, services, cloud-basierte plattform, automatisierung, skalierbarkeit, dsgvo-konform, retail, prozessoptimierung, datenschutz, consulting, automatisierte check-in, customer support, systemintegration, mobile integration, virtuelle empfangsmitarbeiter, barrierefreiheit, ki-avatare, digitale assistenten, workflow-automatisierung, mehrsprachige sicherheitsunterweisung, government, automatisierte prozesse, hardware-kompatibilität, content management, information technology and services, automatisierte sicherheitsunterweisung, digitale personalisierung, interaktive wissensvermittlung, web widget, personalisierte customer journey, knowledge base, logistics, user experience, healthcare, api-schnittstellen, information technology & services, emotionalisierung, digitale wegführung, hybrid event support, computer systems design and related services, mehrsprachigkeit, b2b, public administration, event management, self-service, financial services, sensoren & iot, b2c, e-commerce, finance, education, legal, non-profit, manufacturing, distribution, consumer_products, public_services, mechanical or industrial engineering, apps, ux, health care, health, wellness & fitness, hospital & health care, events services, consumer internet, consumers, internet, nonprofit organization management",'+49 221 71597575,"Outlook, Microsoft Office 365, BuddyPress, Microsoft Power BI, Microsoft Azure, Hubspot, Slack, JivoSite, YouTube, Multilingual, Google Dynamic Remarketing, Mobile Friendly, Google Font API, DoubleClick Conversion, WordPress.org, Apache, Google Tag Manager, DoubleClick, Android, IoT, Remote, AI","","","","","","",69b2d7109601710001721502,7375,54151,"Humanizing Technologies is a technology company that specializes in AI avatars, digital self-service assistants, interactive agents, and robotics software. Founded in 2016, the company operates from locations in Germany and Austria and employs around 26 people. Its mission is to enhance service interactions and automate routine tasks, making technology more human-like. + +The company develops personalized 3D avatars and AI agents that improve customer experiences by automating tasks such as check-ins and product consultations. Their robotics software focuses on humanoid robots, particularly the Pepper robot, and integrates with existing systems in various sectors, including banking and public services. Humanizing Technologies aims to address labor shortages and support industries with innovative solutions that prioritize simplicity and scalability.",2016,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66fbac81034c570001b265f6/picture,"","","","","","","","","" +ATVANTAGE GmbH (ehem. X-INTEGRATE),ATVANTAGE,Cold,"",31,information technology & services,jan@pandaloop.de,"",http://www.linkedin.com/company/atvantage-1,"","",2 Im Mediapark,Cologne,North Rhine-Westphalia,Germany,50670,"2 Im Mediapark, Cologne, North Rhine-Westphalia, Germany, 50670","business integration, mom, eai, esb, soa, open standards, websphere, mq, message broker, process server, partnergateway, datapower, ilog, cloud integration, java, jee, open source, integrationasaservice, genai, ai, cplex, enterprise search 20, bpm, bpmn, spss modeler, it services & it consulting, computer software, information technology & services",'+49 221 973430,"","","","","","","",69b2d7d1bc38e00001996d18,"","","Wichtige Neuigkeit: Wir sind jetzt ATVANTAGE! +Ab dem 1. Oktober 2025 treten die Unternehmen ARS Computer und Consulting GmbH, Brainbits GmbH, TIMETOACT Software & Consulting GmbH und X-Integrate Software & Consulting GmbH gemeinsam als neue Brands unter dem neuen Namen ATVANTAGE auf. +Unsere Leistungen, unser Team und unsere Kontakte bleiben unverändert – Sie erreichen uns weiterhin zuverlässig über unser neues Profil: ATVANTAGE +Wir freuen uns darauf, unsere Zukunft gemeinsam mit Ihnen unter einer starken Marke zu gestalten.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/691b134564c88b0001e77832/picture,"","","","","","","","","" +ETECTURE GmbH,ETECTURE,Cold,"",65,information technology & services,jan@pandaloop.de,http://www.etecture.de,http://www.linkedin.com/company/etecture,https://www.facebook.com/ETECTURE,https://twitter.com/etecture,31 Voltastrasse,Frankfurt,Hesse,Germany,60486,"31 Voltastrasse, Frankfurt, Hesse, Germany, 60486","uxdesign, support, quality assurance, project management, iadesign, devops, ios, maintenance operation, outsourcing, business analysis, pirobase, java, mobile apps, software architecture, liferay, php, gigya, it consulting, net, digital transformation, c, agile, it rolloutmanagement, drupal, soft development, react, perl, requirements engineering, blockchain, kotlin, javascript, automotive, android, logistik, data analytics, blockchain dlt, forecasting, data management, avatar chatbot, customer journey mapping, software development, predictive analytics, deep learning, platform development, lean ux, microservices, process optimization, software engineering, consulting services, natural language processing, data science, digital operational excellence, information technology and services, customer experience, system integration, automation, it infrastructure, b2b, experience design, ai & machine learning, microservices architecture, no-code platforms, ai engineering, digital strategy, ocr, cloud solutions, explainable ai, technology consulting, chatbots, user experience, prototyping, innovation, process mining, federated learning, services, consulting, business models, data lakes, experience architecture, cloud computing, predictive maintenance, computer systems design and related services, agile methodology, smart contracts, machine learning, e-commerce, finance, distribution, productivity, mobile, internet, information technology & services, management consulting, enterprise software, enterprises, computer software, artificial intelligence, marketing, marketing & advertising, ux, consumer internet, consumers, financial services",'+49 72 1989732601,"Route 53, Outlook, Microsoft Office 365, YouTube, Apache, Mobile Friendly, Ubuntu","","","","",459000,"",69b862eac63906001d70c090,7375,54151,"ETECTURE GmbH is a German IT services and consulting company that specializes in digital transformation. Founded in 2003, the company operates as a holistic service provider, developing digital strategies, business models, and software architectures across various industries. Headquartered in Frankfurt am Main, ETECTURE has additional locations in Karlsruhe, Düsseldorf, Berlin, and Stuttgart, and is part of the Sigma Technology Group, which enhances its global tech expertise. + +The company offers a wide range of services, including strategic consulting, software development, and specialized solutions such as AI-powered process optimization and application management. ETECTURE focuses on delivering user-friendly digital products and services, particularly in finished vehicle logistics, with tools for route optimization and real-time data analytics. With a commitment to agile methodologies and customer involvement, ETECTURE has successfully completed over 500 projects in sectors like automotive, manufacturing, logistics, and banking.",2003,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6873e975d8f9ea0001d0cdaf/picture,"","","","","","","","","" +Alphabots,Alphabots,Cold,"",14,information technology & services,jan@pandaloop.de,http://www.alphabots.de,http://www.linkedin.com/company/alphabots-gmbh,"","",7 Neuhauser Strasse,Munich,Bavaria,Germany,80331,"7 Neuhauser Strasse, Munich, Bavaria, Germany, 80331","agent, robots, ai, artificial intelligence, robotic process automation, software development, ocr, sap, software developemend, process optimation, data science, rpa, agentic, embedded software products, workflow automation, enterprise ai solutions, video-based process learning, automated workflows, ai-driven process understanding, autonomous ai, unstructured document processing, consulting, information technology and services, digital employee, automated exception handling, computer systems design and related services, system-independent automation, deep learning, b2b, machine learning, background processing, drag & drop integration, self-updating ai models, ai for unstructured data, reinforcement learning, process automation, self-learning ai, self-adapting ai, ai process modeling, operational efficiency, services, machine learning methods, information technology & services",'+49 89 31985986,"Outlook, Microsoft Office 365, Automation Anywhere, Uipath, , AI, Micro, Avaya, CyberArk, Mitel","","","","","","",69bab5b72f92db0001073582,7375,54151,"Alphabots GmbH is a software company based in Munich, founded in 2019. The company specializes in intelligent automation through Robotic Process Automation (RPA) and Artificial Intelligence (AI). As a seed-stage startup in the IT and communications sector, Alphabots operates with a B2B SaaS business model and has a small team of 1-10 employees. + +Alphabots offers a range of AI-driven automation services, including AI automations for process optimization, managed AI services, and process mining to enhance workflows. Their technology is designed to learn from past customer orders, improving processing capabilities, especially in purchasing. The company focuses on delivering efficient automation solutions that set new standards in robot deployment for B2B applications. Key leaders include Geschäftsführer Devran Deviren and Geschäftsführerin Selina Devré.",2019,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6845e4786660e8000127c803/picture,"","","","","","","","","" +SPRYLAB,SPRYLAB,Cold,"",41,information technology & services,jan@pandaloop.de,http://www.sprylab.com,http://www.linkedin.com/company/sprylab,https://facebook.com/sprylab,https://twitter.com/sprylabTech,2 Keithstrasse,Berlin,Berlin,Germany,10787,"2 Keithstrasse, Berlin, Berlin, Germany, 10787","it services, blogging, komplexe webentwicklung, app entwicklung, strategie beratung, web applications, digital publishing, individuelle softwareentwicklung, new product development, seo, ppc, content strategy, mobile apps, android entwicklung, individual software solutions, epublishing, digital platforms, plattform entwicklung, multichannel publishing, social media, cms entwicklung, prozessdigitalisierung, endtoend publishing process, sem, web marketing, ecommerce entwicklung, ios entwicklung, hybrid app entwicklung, web app entwicklung, digitalisierung von geschaeftsmodellen, it services & it consulting, apis, computer systems design and related services, cloud-architektur, maßgeschneiderte software, real-time data, government, ki-gestützte diagnostik, ki-gestützte personalisierung, machine learning, it-beratung, voice-assistants, automatisierte workflows, data management, apps, iterative entwicklung, smart solutions, blockchain, custom software, e-learning plattformen, energy, rag (retrieval augmented generation), iot, app development, cloud services, data analytics, microservices, softwareentwicklung, prozessautomatisierung, b2b, e-commerce, digital transformation, software development, projektmanagement, datenanalyse, ki-gestützte empfehlungen, web apps, devops, containerization, headless cms, technologie innovation, kubernetes, agile entwicklung, ki-gestützte lösungen, ki in gesundheitswesen, healthtech, plattform-entwicklung, user interface design, cloud computing, artificial intelligence, künstliche intelligenz, services, user experience, technology consulting, app-entwicklung, plattformen, ki-lösungen, ki-basierte content-optimierung, prototyping, edtech, project management, dezentrale blockchain-netzwerke, scalability, consulting, technologieberatung, whitepaper & webinare, media, data security, predictive maintenance, individuelle software, saas-produkte, generative ki, healthcare technology, digitalisierung, ki-workshop, security by design, branchenvielfalt, innovative technologien, content management, information technology and services, healthcare, finance, education, non-profit, energy_utilities, information technology & services, online media, search marketing, marketing, marketing & advertising, consumer internet, consumers, internet, enterprise software, enterprises, computer software, ux, management consulting, e-learning, education management, productivity, computer & network security, health care, health, wellness & fitness, hospital & health care, financial services, nonprofit organization management",'+49 30 236258950,"Route 53, Outlook, Microsoft Office 365, Amazon AWS, Jira, Atlassian Confluence, Atlassian Cloud, MongoDB, Slack, Apache, Adobe Media Optimizer, Cedexis Radar, Mobile Friendly, Facebook Widget, DoubleClick, Hotjar, Gravity Forms, WordPress.org, Google Tag Manager, Facebook Login (Connect), Facebook Comments, DoubleClick Conversion, Facebook Custom Audiences, Twitter Advertising, Bing Ads, Linkedin Marketing Solutions, Vimeo, Google Dynamic Remarketing, Android, AI, PHP, Javascript, React, Wordpress, Amazon S3, Apache Beam, Apache Flink, AWS Trusted Advisor, Docker, Google Cloud Platform, GraphQL, Kubernetes, Python, Redshift, SQL, Terraform, Azure Blockchain Service, Purple, Google Analytics, DatoCMS",4263480,Seed,2163480,2015-03-01,"","",69bab5b72f92db0001073589,7375,54151,"SPRYLAB is a Berlin-based IT service provider founded in 2007, specializing in custom platform development, mobile app development, and AI solutions. The company serves large and medium-sized businesses across various industries, including healthcare, media, education, automotive, sports, and publishing. With a team of over 70 professionals, SPRYLAB focuses on delivering scalable digital solutions through agile processes and strong partnerships. + +The company offers a range of services, including the development of large-scale digital platforms and custom mobile applications for iOS, Android, and web. Their proprietary Purple DS platform allows for the creation of interactive e-publishing content. SPRYLAB also integrates AI and machine learning into software products to enhance user experience and engagement. They support clients throughout the project lifecycle, from ideation to ongoing development, ensuring high-quality results and timely delivery.",2011,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67270e2d6f116c0001a50cbb/picture,"","","","","","","","","" +Chinar Quantum AI,Chinar Quantum AI,Cold,"",71,information technology & services,jan@pandaloop.de,http://www.chinarquantumai.org,http://www.linkedin.com/company/chinarqai,"","","",Paderborn,North Rhine-Westphalia,Germany,"","Paderborn, North Rhine-Westphalia, Germany","generative ai, machine learning, quantum computation, natural language processing, artificial intelligence, technology, information & internet, ai ethics, consulting, ai for finance, ai product development, ai research, ai training programs, data science, ai talent development, online learning, information technology and services, education, ai for regenerative medicine, ai for healthcare, ai career support, ai for education, ai education, healthcare, deep learning, ai for healthcare diagnostics, hospitality, ai for cancer detection, ai-powered products, generative ai training, computer systems design and related services, ai products and solutions, ai research publications, ai talent nurturing, ai industry collaboration, ai ecosystem, data science training, ai skill development, ai for customer engagement, ai ethics frameworks, ai-powered chatbots, b2b, real-world projects, ai for hospitality, ai projects, ai in smart cities, ai for personalized medicine, ai solutions customization, ai innovation, ai frameworks, software development, ai consulting services, ai for automation, ai in legal tech, ai industry solutions, ai community, ai for social impact, ai training, services, research and development, ai project exposure, legal services, quantum ai, ai in legal industry, ai in agriculture, ai in remote sensing, industry partnerships, ai technology integration, ai consulting, finance, legal, information technology & services, e-learning, internet, computer software, education management, health care, health, wellness & fitness, hospital & health care, leisure, travel & tourism, research & development, financial services","","Gmail, Google Apps, Amazon AWS","","","","","","",69bab5b72f92db000107358a,7375,54151,"Chinar Quantum AI is Kashmir's first artificial intelligence company, established in early 2022 as a startup linked to the Kashmir Institute of Mathematical Sciences (KIMS). Founded by Rukhsan Ul Haq, a quantum physicist with IBM, the company aims to train local youth in AI and data science, preparing them for a future driven by artificial intelligence. + +The company offers industry training programs focused on AI skills, including educational courses and internships to help participants transition into the AI sector. Chinar Quantum AI plans to establish an AI-based lab in Kashmir to provide hands-on training and services to local organizations. The team operates remotely, with plans for an offline presence in every district of Kashmir, contributing to the region's economy through its initiatives.",2022,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69aab72b065d4700016ba0b5/picture,"","","","","","","","","" +IQONIC.AI,IQONIC.AI,Cold,"",12,information technology & services,jan@pandaloop.de,http://www.iqonic.ai,http://www.linkedin.com/company/iqonic-ai,"",https://twitter.com/iqonic_ai,50 Zimmerstrasse,Berlin,Berlin,Germany,10117,"50 Zimmerstrasse, Berlin, Berlin, Germany, 10117","habit tracking, beauty, artificial intelligence, skin health, saas, dermatology, e health, app, ai, augmented reality, mobile health, ecommerce, beautytech, cosmetics, community, mobilecommerce, entertainment shopping, digital health, it services & it consulting, data-driven personalization, lip diagnostics, skin age vs real age, software as a service, multi-channel support, e-commerce, customer experience enhancement, services, omnichannel customer journey, b2b saas software, retail, health and beauty ai, automated analysis, customer loyalty improvement, ai hair analysis, ai analysis software, high-resolution imaging, healthtech, lip condition assessment, data analytics, data aggregation, product recommendations, sales increase strategies, ai lip analysis, b2b, computer systems design and related services, b2b saas, personalized skincare, digital pharmacy solutions, scalable solutions, hair age analysis, product suggestions, gdpr compliant algorithms, gdpr compliance, beauty & personal care, ai-driven diagnostics, user-friendly interface, ai skin analysis, skin health monitoring, customer insights, skin diagnostics, personalized recommendations, data security, api integration, automated routines, hair diagnostics, customer journey mapping, personalized skincare routines, healthcare, consumer_products_retail, information technology & services, computer software, health, wellness & fitness, internet, consumer internet, consumers, apparel & fashion, communities, computer & network security, health care, hospital & health care",'+49 351 27513874,"Gmail, Google Apps, Google Cloud Hosting, Varnish, Mobile Friendly, Wix, AI, Circle",1100000,Seed,1100000,2023-11-01,1200000,"",69bab5b72f92db000107358c,7375,54151,"IQONIC.AI is an AI-driven health tech startup focused on skin, hair, and health analysis software for the beauty and healthcare sectors. Founded by Maria-Liisa Bruckert and Martin Pentenrieder, the company boasts an international team with over 50% female representation. IQONIC.AI aims to empower customers through personalized, AI-powered solutions that enhance individual care and accessibility in the beauty and health industries. + +The company offers a B2B SaaS platform featuring customizable AI analysis solutions for brands and retailers. Key services include skin and hair diagnostics developed with dermatologists, free skin screenings, and personalized product recommendations based on individual analysis. The technology allows users to upload a photo for automated analysis, providing tailored care routines while ensuring GDPR compliance. IQONIC.AI's innovative approach has led to significant business improvements for its clients, including increased online sales and enhanced customer loyalty.",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6879ec37e8bb740001572f75/picture,"","","","","","","","","" +Munich Center for Machine Learning,Munich Center for Machine Learning,Cold,"",81,research,jan@pandaloop.de,http://www.mcml.ai,http://www.linkedin.com/company/munich-center-for-machine-learning,"","","",Munich,Bavaria,Germany,"","Munich, Bavaria, Germany","machine learning & artificial intelligence, research services, higher education and scientific research, model efficiency, multimodal learning, ai continual learning, ai research, ai ethics, ai for geosciences, foundational ml, artificial intelligence, domain-specific ml, weakly-supervised learning, counterfactual explanations, ai development, ai fairness, ai ethics guidelines, ai vision models, ai fairness metrics, machine learning, ai education, transformer models, data science, ai interpretability, model merging techniques, ai for biomedical imaging, model robustness, ai in science, ai software, ai explainability methods, ai benchmarks, research and development in artificial intelligence and machine learning, ai for environmental monitoring, ai robustness testing, large language models, ai collaboration, b2b, geometric feature preservation, ai for climate action, ai in industry, multimodal remote sensing, natural language processing, perception vision nlp, bias and fairness in ai, ml research, adversarial model explanations, ai innovation, deep learning, multimodal data analysis, ai model evaluation, scientific publications, nlp, scientific research, ai foundations, benchmark datasets, data science and data analytics, industry partnership, computer vision, multimodal dataset creation, ai multimodal models, government, ai model merging, research and development in the physical, engineering, and life sciences, academic partnership, ai awards and grants, ai explainability, ai training programs, ai in healthcare, research groups, reproducible research, robotics, model compression methods, ai talent, open source tools, ai transfer, ai model compression, neural networks, ai for social sciences, ai infrastructure, model interpretability, audio-visual foundation models, ai transfer services, ai community, ai datasets, top-tier ai work, continual multimodal pretraining, ai conferences, industry collaboration, ai platforms, resource-efficient ai, medical imaging ai, top conferences, ai open source, ai healthtech, ai nlp models, multilingual ai models, ai robustness, ai tools, ai applications, higher education, interdisciplinary collaborations, machine learning applications, healthcare ai, robotic navigation, statistical learning, data mining, generative ai, explainable ai, algorithmic bias, human-centered ai, data analytics, ai in education, research partnerships, talent development, innovation ecosystem, research funding, academic collaborations, public engagement, event management, science communication, ai competence centers, data-driven decision making, robotics research, diversity and inclusion, research management, networking opportunities, ai in public administration, real-world ai solutions, ai for healthcare, insightful publications, emerging technologies, student engagement, research career opportunities, research education, phd programs, ai for business, ethics in ai, ai for social good, computational models, healthcare, education, non-profit, information technology & services, mechanical or industrial engineering, education management, enterprise software, enterprises, computer software, events services, health care, health, wellness & fitness, hospital & health care, nonprofit organization management","","Apache, Ubuntu, Bootstrap Framework, Mobile Friendly","","","","","","",69bab5b72f92db0001073590,8731,54171,"The Munich Center for Machine Learning (MCML) is a collaborative research initiative established by Ludwig-Maximilians-Universität München and Technische Universität München. Founded in August 2018, it is one of Germany's six national AI Competence Centers, receiving ongoing support from the German federal government and the Free State of Bavaria since July 2022. MCML brings together over 40 research groups, including around 60 professors and more than 330 junior researchers, to advance machine learning and artificial intelligence. + +MCML focuses on three main research areas: the foundations of machine learning, domain-specific applications, and perception, vision, and natural language processing. The center also offers various services, including consulting, entrepreneurship training, and continuing education programs for professionals. Notable initiatives like the Thinkathon and Media Innovations Impact Bootcamp connect research with practical applications, fostering innovation in AI and related fields. MCML collaborates with scientific institutions and industry partners to enhance knowledge transfer and is recognized for its significant contributions to AI research in Germany.",2018,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6828fa0ad2c92400019cfbef/picture,"","","","","","","","","" +Gauss Robotics,Gauss Robotics,Cold,"",19,information technology & services,jan@pandaloop.de,http://www.gauss-robotics.de,http://www.linkedin.com/company/gauss-robotics,"","","",Brunswick,Lower Saxony,Germany,"","Brunswick, Lower Saxony, Germany","software development, artificial intelligence, robotics, digital transformation, data security, computer systems design and related services, cloud infrastructure, technology company, cloud computing, imprint information, legal compliance, gdpr compliance, privacy, information technology and services, no third-party data exchange, machine learning, user experience, commercial register, system integration, ai, website analytics, user agent, email communication, privacy policy, data protection, website data collection, data privacy rights, german company, data management, managing director, software and technology, automation, operating system, cloud services, gdpr, ip address, germany, data erasure rights, no cookies, b2b, legal, information technology & services, mechanical or industrial engineering, computer & network security, enterprise software, enterprises, computer software, internet infrastructure, internet, ux","","Gmail, Google Apps, Microsoft Office 365, React, TypeScript, mO Jira OAuth SSO, Jira OpenID Connect SSO, Jira OIDC SSO, Cognito, JWT, ebs, Axios International, Three.js, CAT, Material UI, CSS, Eslint, Docker, Kubernetes, HELM, Git, GitHub","","","","","","",69bab5b72f92db0001073594,8731,54151,"🇬🇧 English ⬇️ | 🇩🇪 Deutsch (runterscrollen) ⬇️ + +Your Shortcut to Manufacturing Strength. + +We are working to secure the manufacturing strenght of Small and Medium-sized Enterprises (SMEs)—the backbone of our economy. + +We tackle the single biggest bottleneck in the manufacturing industry: The gap between scientific possibility and the shop floor. We unite decades of deep-tech research with hands-on industrial experience to solve this. + +Our Agentic AI replaces the costly, time-consuming model of manual system integration. + +We transform robotics from a complex service project into a scalable standard product: +- No Coding: No more need for specialized programming. +- No Waiting: Drastically cut deployment time. +- Just a Chat: Configure and manage advanced robotics by simple language. + +We empower industry pioneers to maintain their production strenght, scale production, and grow despite persistent labor shortages. + +Gauss Robotics. Your Shortcut to Robotics. + +🇩🇪 Dein Shortcut zur Produktions-Stärke + +Wir arbeiten daran, die Produktions-Stärke kleiner und mittlerer Unternehmen (KMU) zu sichern – dem Rückgrat unserer Wirtschaft. + +Wir beseitigen den größten Engpass der Fertigungsindustrie: Die Kluft zwischen wissenschaftlicher Möglichkeit und der Realität auf dem Shop Floor. Wir vereinen jahrzehntelange Deep-Tech-Forschung mit der Erfahrung aus der industriellen Praxis, um dies zu lösen. + +Unsere Agentic AI ersetzt das kostspielige, zeitraubende Modell der manuellen Systemintegration. + +Wir verwandeln Robotik von einem komplexen Dienstleistungs-Projekt in ein skalierbares Standardprodukt: +- Kein Code: Keine Notwendigkeit mehr für spezialisierte Programmierung. +- Kein Warten: Drastische Reduzierung der Bereitstellungszeit. +- Nur ein Chat: Komplexe Robotik konfiguriert und gesteuert durch einfache Sprache. + +Wir befähigen Vorreiter der Industrie ihre Produktions-Stärke zu erhalten, zu skalieren und trotz Fachkräftemangel zu wachsen. + +Gauss Robotics. Your Shortcut to Robotics.",2023,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68c4ed2f604c9f0001212355/picture,"","","","","","","","","" +bridgefield GmbH,bridgefield,Cold,"",23,information technology & services,jan@pandaloop.de,http://www.bridgefield.de,http://www.linkedin.com/company/bridgefield-gmbh,"",https://twitter.com/bridgefield,28 Jerichower Strasse,Magdeburg,Saxony-Anhalt,Germany,39114,"28 Jerichower Strasse, Magdeburg, Saxony-Anhalt, Germany, 39114","shopfloordigitalisierung, industrie 40, softwareengineering, datenerfassung, agile softwareentwicklung, ki, sicherheit, software development, factory automation solutions, industrial automation, software engineering, secure industry 4.0, digital hospital consulting, consulting, project management, system integration, innovation consulting, healthcare digitalization, digitalization services, healthcare, opc ua strategy consulting, government, b2b, ai for manufacturing, manufacturing, services, digital innovation engineering, healthcare technology, process optimization, agile project management, digital transformation, computer systems design and related services, requirements engineering, ai research, human-centered ai, cloud consulting, interdisciplinary software development, human-centered ai interfaces, industry 4.0, shopfloor digitalization, data analytics, healthcare it, information technology & services, mechanical or industrial engineering, productivity, health care, health, wellness & fitness, hospital & health care",'+49 391 7929300,"Cloudflare DNS, Outlook, Microsoft Office 365, WordPress.org, Apache, Mobile Friendly, Bootstrap Framework, IoT, Remote, AI","","","","","","",69bab5b72f92db0001073596,7375,54151,"bridgefield steht für „Brücken bauen"". Wir verstehen uns als Digitalisierungsdienstleister, der Brücken zwischen existierenden Systemen, Prozessen und Mitarbeitern und neuen Digitalen Infrastrukturen baut. + +bridgefield steht für interdisziplinäres kreatives Denken und Software Engineering höchster Qualität. + +bridgefield steht für den unbändigen Drang Innovationen strategisch zu planen und verlässlich umzusetzen. + +Unsere Innovation liegt in unseren Mitarbeitern. Wir fördern und fordern das Weiterdenken und lassen Raum für Kreativität. Unsere Basis dafür ist der kontinuierliche Wissensaustausch und die regelmäßige Weiterbildung unserer Mitarbeiter. + +Unsere Verlässlichkeit liegt in unseren Prozessen. Wir beobachten und verbessern unsere Prozesse auf allen Ebenen regelmäßig – in Projekten gemeinsam mit unseren Kunden, intern durch unsere Agile Coaches moderiert und extern durch Zertifzierungen und Audits.",2016,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/674bdee3ec58ca0001775be3/picture,"","","","","","","","","" +Spectrm,Spectrm,Cold,"",17,information technology & services,jan@pandaloop.de,http://www.spectrm.io,http://www.linkedin.com/company/spectrm,https://facebook.com/SpectrmConversationalMarketing/,https://twitter.com/spectrm_,43 Ohlauer Strasse,Berlin,Berlin,Germany,10999,"43 Ohlauer Strasse, Berlin, Berlin, Germany, 10999","personalization, marketing automation, first party data, conversational marketing, social marketing, instagram messaging, whatsapp business, chatbots, facebook messenger, enterprise software, conversational display ads, zero party data, customer experience, messaging, google business messages, performance marketing, journalism, information technology, news, media, software development, conversational ai, data-driven marketing, customer insights, automated marketing, conversational commerce, information technology and services, ai chatbots, cross-channel integration, whatsapp marketing automation, retargeting automation, natural language processing, automotive, multi-channel campaigns, chatbot platform, ai-powered responses, lead generation, computer systems design and related services, ai intent recognition, customer experience enhancement, conversion optimization, domain-specific nlp, b2b, zero-party data, facebook messenger bots, b2c, e-commerce, customer journey mapping, customer data collection, messaging channels, retail, d2c, customer engagement, marketing and advertising, services, instagram dms automation, real-time conversations, marketing automation tools, customer loyalty, omnichannel messaging, customer segmentation, consumer products & retail, marketing & advertising, saas, computer software, information technology & services, enterprises, artificial intelligence, sales, consumer internet, consumers, internet","","Cloudflare DNS, Gmail, Outlook, Google Apps, MailChimp SPF, Microsoft Office 365, CloudFlare Hosting, Route 53, Amazon AWS, Atlassian Cloud, Amazon SES, Render, Remote, Circle, AI",10970000,Merger / Acquisition,0,2024-01-01,4500000,"",69bab5b72f92db000107358d,7375,54151,"Spectrm is a conversational marketing platform that specializes in AI-powered chatbots designed for personalized customer interactions across various social media and messaging channels, including Facebook Messenger, Instagram Messenger, Google Display Network, and WhatsApp Business. The platform enables brands to create proactive marketing experiences by utilizing natural language processing (NLP) and first-party data to enhance customer engagement and drive conversions. + +The company's offerings include conversational marketing chatbots that integrate with social platforms to provide personalized messaging and product recommendations. Spectrm also offers WhatsApp Business messaging solutions for efficient customer acquisition and preference-based product discovery. Their tools focus on leveraging reliable data for targeted advertising and optimizing chatbot scripts to improve sales outcomes. Brands like Ford and Deichmann have successfully implemented Spectrm's solutions to enhance customer interactions and boost sales performance.",2016,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e78acd81df290001340c5c/picture,charles (hello-charles.com),56d560eff3e5bb1baa0018eb,"","","","","","","" +paxray,paxray,Cold,"",15,information technology & services,jan@pandaloop.de,http://www.paxray.com,http://www.linkedin.com/company/paxray,"","","",Mutlangen,Baden-Wuerttemberg,Germany,73557,"Mutlangen, Baden-Wuerttemberg, Germany, 73557","automation discovery, process analytics, desktop activity mining, task mining, automation potential, consulting, business processes, process mining, implementation services, process automation, it services & it consulting, anonymized data collection, process mapping, b2b, excel and custom app coverage, data protection, manual work reduction, workflow automation, performance metrics, software development, computer systems design and related services, gdpr-compliant, manual step detection, services, variant analysis, data-driven optimization, no api integration, digital process visibility, process optimization, workflow visualization, data security, quick deployment, business process management, ai workflow reconstruction, ai-driven analytics, information technology and services, workflow analysis, machine learning, information technology & services, computer & network security, artificial intelligence",'+49 717 18713270,"Outlook, Slack, Google Tag Manager, Apache, WordPress.org, Multilingual, Mobile Friendly, Android, Remote","","","","","","",69bab5b72f92db000107358f,7375,54151,"Paxray is a deep-tech company based in Baden-Württemberg, Germany, founded in 2021 or 2022. The company specializes in task mining technology, focusing on visualizing, analyzing, and optimizing digital business processes across various tools, teams, and systems. Paxray aims to enhance transparency in digital work by relying on actual activities rather than assumptions. + +The company offers a hybrid platform that combines process mining and task mining functionalities. Key features include the automatic capture of real workflows across different applications, identification of inefficiencies, and on-premises data analysis for secure handling of sensitive information. Paxray provides training and support options, ensuring users can effectively utilize the platform. Pricing for their services starts at $10,000, with pilot programs available depending on the project's scope.",2022,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67134743c8afdb0001da3a7e/picture,"","","","","","","","","" +Cirql One GmbH,Cirql One,Cold,"",11,information technology & services,jan@pandaloop.de,http://www.cirqlone.com,http://www.linkedin.com/company/cirql-one,"","","",Heidelberg,Baden-Wuerttemberg,Germany,"","Heidelberg, Baden-Wuerttemberg, Germany","software development, sap data integration, predictive analytics, ai roadmap for sap, automation agents, consulting, enterprise software, ai roadmap, ai services, cloud migration, services, generative ai, ai for sap fi/co, ai consulting, ai-driven analytics, real-time insights, natural language data queries, enterprise knowledge bot, computer systems design and related services, analytics platforms, natural language processing, business intelligence, data & ai strategy, ai for financial operations, operational efficiency, semantic data layer, data analytics, ai solutions for enterprise, data warehouse modernization, consulting services, enterprise ai, ai use case discovery, business value from ai, sap data ai integration, ai for data hygiene, ai for invoice processing, b2b, ai meets sap data, enterprise knowledge chatbot, ai-powered reporting, sap finance meets ai, cloud data platforms, ai-powered data observability, data warehouse migration, data & ai services, information technology and services, ai for expense analysis, ai copilots, data platform migration, ai in sap, ai for corporate knowledge management, data modernization, digital transformation, data processing and hosting, ai use case prioritization, scalable data platforms, ai solutions, ai automation, ai-driven insights, data governance, ai discovery workshop, ai for compliance and audit trail, finance, information technology & services, enterprises, computer software, artificial intelligence, analytics, management consulting, financial services",'+49 175 7241212,"Outlook, Hubspot, Mobile Friendly, WordPress.org, Apache, Google Tag Manager, SAP, ABAP, SAP Customer Care and Service (CCS), Process automation package for service request creation in SAP S/4HANA Utilities, , SAP ERP Central Component (ECC)","","","","","","",69bab5b72f92db0001073597,7375,54151,"Cirql One makes SAP data AI-ready — fast, open, and without vendor lock-in. + +Cirql One builds the business semantic intelligence layer that SAP customers have been missing. We transform complex SAP systems into AI-ready foundations, automatically discovering, codifying, and deploying the business meaning that makes AI work. + +Our platform connects directly to your SAP systems and understands their structure, meaning, and relationships. It prepares your data for AI-driven analytics, automation, and copilots, while keeping you in full control. + +- SAP-native expertise: 30+ years of deep SAP knowledge collated into +our platform +- AI-accelerated: Automated discovery reduces months of manual work +to weeks +- Platform-agnostic: Deploy to any modern data platform without lock-in +- Build once, reuse everywhere: Every semantic asset compounds value +across AI, analytics, and automation +- Open by design: Preserve flexibility across AI vendors, cloud platforms, +and SAP's own roadmap",2025,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/682ae781aa6dd60001724537/picture,"","","","","","","","","" +Deltia,Deltia,Cold,"",38,information technology & services,jan@pandaloop.de,http://www.deltia.ai,http://www.linkedin.com/company/deltia-ai,"","",3 Max-Urich-Strasse,Berlin,Berlin,Germany,13355,"3 Max-Urich-Strasse, Berlin, Berlin, Germany, 13355","manufacturing, analytics, computer vision, digitization, ai, video analytics, software development, productivity increase, energy efficiency, workflow automation, ai process optimization, semi-automated operations, industrial machinery manufacturing, cycle time reduction, manufacturing process ai, operator tracking, process insights, video anonymization manufacturing, process improvement, anonymized data, manufacturing process visualization, ai manufacturing root cause, visualization tools, automated process analysis, predictive maintenance, ai safety and privacy, factory digitalization, real-time process monitoring, b2b, ai for industrial use, manufacturing data security, video data analysis, manufacturing process visualization tools, integrated manufacturing solutions, ai-driven decision making, operational efficiency, bottleneck detection, industrial automation, ai manufacturing bottleneck analysis, machine learning, real-time video analytics, manual process improvement, root cause analysis, data analytics, manufacturing process control, process optimization, inventory management, ai dashboards, services, manufacturing intelligence, digital transformation, plant performance metrics, plant efficiency, manufacturing process analytics, ai shopfloor assistant, ai manufacturing safety, manufacturing process optimization, ai-powered manufacturing, factory automation, edge ai manufacturing, edge computing, shopfloor monitoring, data privacy, mechanical or industrial engineering, information technology & services, artificial intelligence, environmental services, renewables & environment","","Route 53, Gmail, Google Apps, Amazon AWS, Webflow, Hubspot, Facebook Widget, Linkedin Marketing Solutions, Facebook Custom Audiences, Google Font API, Facebook Login (Connect), Mobile Friendly, Google Tag Manager, Android, Remote, AI, Visio, Wider Planet, Gem",4500000,Seed,4500000,2024-04-01,"","",69bab5b72f92db000107358e,3556,33324,"Deltia.ai is a Berlin-based AI startup founded in 2022, specializing in an AI-based process analytics platform designed to enhance productivity, quality, and efficiency in manufacturing assembly lines. The company employs 11-50 people and focuses on video analytics, manufacturing digitization, and AI-driven insights for shop-floor processes. + +The platform captures real-time video data from assembly stations, analyzes it using AI and computer vision, and provides actionable insights for process engineers. It tracks various metrics such as material flows, cycle times, and productivity drops, supporting root cause analysis and predictive maintenance. Deltia's technology is designed to ensure privacy by anonymizing video footage and processing data on-site. The platform has been implemented in over 40 factories, helping customers achieve significant efficiency gains, including up to 30% productivity increases. + +Co-founded by CEO Max Fischer and CTO Dr. Silviu Homoceanu, Deltia emphasizes human-AI collaboration and is actively scaling its operations across Europe and North America. The company partners with NVIDIA and participates in industry events to further its mission in manufacturing digitization.",2022,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69a4be1e8f14f70001c05ecb/picture,"","","","","","","","","" +cognee,cognee,Cold,"",19,information technology & services,jan@pandaloop.de,http://www.cognee.ai,http://www.linkedin.com/company/cognee-ai,"","",163 Schoenhauser Allee,Berlin,Berlin,Germany,10435,"163 Schoenhauser Allee, Berlin, Berlin, Germany, 10435","it services & it consulting, software development, natural language processing, data types support, artificial intelligence, ai infrastructure, complex reasoning with graphs, graph database, graph algorithms, knowledge graph querying, customer engagement, knowledge graph construction, graph-based ai memory, data integration, graph construction, vector database, graph visualization ui, real-time visualization, services, graph data pipelines, ai data management, graph-llm integration, ai memory engine, vector search, consulting, graph exploration, graph rag, knowledge management, knowledge graph auto-tuning, on-premise deployment, semantic graph enrichment, open-source tools, data security, knowledge graphs, knowledge graph self-improvement, graph rag optimization, knowledge representation, contextual retrieval, cloud deployment, knowledge graph benchmarking, data analytics, memory layer, information technology and services, data ingestion, machine learning, knowledge graph, data management, computer systems design and related services, llm interface, b2b, user feedback loop, semantic enrichment, auto-optimization, data modeling, graph traversal, b2c, education, information technology & services, enterprise software, enterprises, computer software, computer & network security","","Gmail, Google Apps, Google Tag Manager, YouTube, Mobile Friendly, Python, Rust, Kubernetes, Neo4j, Pulumi, Terraform, Frame, Tor",9150000,Series A,7500000,2026-02-01,"","",69bab5b72f92db0001073592,7375,54151,"Cognee is an open-source AI memory engine that converts raw data into structured knowledge graphs, enhancing large language models and AI agents with persistent, context-aware memory. Based in Berlin and San Francisco, the company focuses on AI data management and has secured $1.5 million in funding from investors such as 42CAP, Angel Invest, and Combination VC. + +The core technology of Cognee serves as a memory layer for AI applications, utilizing a modular Extract, Cognify, Load (ECL) pipeline. This pipeline ingests data from various sources, enriches it through processes like entity extraction and relationship mapping, and stores it in multiple database options. Key features include self-improvement through feedback loops, custom algorithms for data cleaning, and a reasoning layer for natural language queries. Cognee's solutions support a range of applications, including adaptive retrieval systems and memory management for AI agents, achieving high accuracy in data handling.",2024,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69636c328d32930001cc8d15/picture,"","","","","","","","","" +ifm statmath gmbh,ifm statmath,Cold,"",16,information technology & services,jan@pandaloop.de,http://www.statmath.de,http://www.linkedin.com/company/ifm-statmath-gmbh,https://www.facebook.com/StatmathGmbh,"",15 An der Alche,Siegen,North Rhine-Westphalia,Germany,57072,"15 An der Alche, Siegen, North Rhine-Westphalia, Germany, 57072","big data, production planning, predictive maintenance, predictive quality, predictive analytics, supply chain management, smart data, sales forecasting, artificial intelligence, datascience, algorithms, it services & it consulting, distribution, industrial internet of things, automatisierte prozessüberwachung, ai-tools, cloud computing, services, ki-gestützte produktionssteuerung, datengetriebene qualitätskontrolle, operational efficiency, ki-basierte bedarfsplanung, consulting, process optimization, ki-algorithmen, automatisierte entscheidungsfindung, automatisierte datenanalyse, dashboard analytics, business intelligence, ki-gestützte ressourcenoptimierung, supply chain optimization, data analytics, machine learning, software development, effizienzsteigerung, industrie 4.0, data science, vorausschauende wartung in der industrie, produktionsplanung, custom software, manufacturing, data management, branchenübergreifende anwendungen, ressourcenmanagement, ki-basierte datenanalyse, sensorintegration, datenanalyse für maschinenzustände, computer systems design and related services, b2b, intelligente fertigungssoftware, industrial automation, smart data management, ki in der fertigung, digital transformation, ki in der supply chain, individuelle softwarelösungen, api-integration, enterprise software, enterprises, computer software, information technology & services, logistics & supply chain, analytics, mechanical or industrial engineering",'+49 271 31928001,"Postini, Microsoft Office 365, Microsoft Azure Hosting, Mobile Friendly, Google Tag Manager, Nginx, WordPress.org","","","","","","",69bab5b72f92db0001073588,7375,54151,"OUR SOLUTIONS FOR DIGITAL TRACING. +As a data science company from the very beginning, ifm statmath gmbh set out on a digital search for traces before the term Big Data was even born and began to collect, process and analyze large quantities of company and production data. Thus, we were able to generate real added value for our customers from the digital traces of industrial and entrepreneurial processes at an early stage. Our solutions can be used for both small and large companies along the entire supply chain management. + +We work in the heart of the Siegerland region at two locations that could not be more different. Our headquarter is located in the centre of Siegen in an old city villa dating back to 1901, while our second location is in the SUMMIT, the region's high-tech centre. The SUMMIT is the new headquarter of the high-tech and IT industry of the region.",2011,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/671727a7ab5fef0001a94c42/picture,"","","","","","","","","" +snap,snap,Cold,"",22,information technology & services,jan@pandaloop.de,http://www.snap-gmbh.com,http://www.linkedin.com/company/snapgmbh,"","","",Bochum,North Rhine-Westphalia,Germany,"","Bochum, North Rhine-Westphalia, Germany","app development, reinforcement learning, imu, embedded systems, eegmeasurements, image recognition, sensors, artificial intelligence, ki expertise, ki consulting, systemanbieter, machine learning, brain computer interface, microelectronics, bewegungsanalyse, datenbank management, qualitaetskontrolle, it services & it consulting, bci-lösungen, prüfsysteme, neuronale modelle, forschung, fehlererkennung, objekterkennung, sensorfusion, brain-computer-interface, softwareentwicklung, produktionsoptimierung, qualitätssteigerung, engineering, services, fehlerreduktion, forschungssoftware, computer vision, bildverarbeitung, effizienzsteigerung, qualitätskontrolle, ki-gestützte fehlerdiagnose, industrie 4.0, b2b, no-code ki-training, automatisierte inspektion, deep learning, neurotechnologie, eeg-synchronisation in echtzeit, ki, industrial machinery manufacturing, ki für die industrie, ki-gestützte forschung, hochschulsoftware, ki-basierte qualitätskontrolle, manufacturing, medizintechnik, automatisierung, ki-gestützte fehlererkennung, hardwareentwicklung, educational services, eeg-datenanalyse in der forschung, ki-training ohne code, forschung und lehre, eeg-datenanalyse, datenvisualisierung, ki für die lehre, research and development, sensorintegration, neurowissenschaften, lehre, data science, bildklassifikation, industrial automation, bildverarbeitungssoftware, education, apps, software development, information technology & services, embedded hardware & software, hardware, mechanical or industrial engineering, research & development",'+49 234 38877710,"Google Cloud Hosting, Hubspot, Vimeo, Wix, Varnish, Adobe Media Optimizer, YouTube, Eventbrite, Google Tag Manager, Cedexis Radar, Mobile Friendly, Remote","","","","","","",69bab5b72f92db0001073591,3829,33324,"snap GmbH is a technology company specializing in AI with more than 10 years of experience in processing machine learning algorithms. The company has a sound understanding of the processing of movement data (e.g. gesture control, movement analysis) and the processing of neurological data (e.g. control of devices, automated EEG analysis). With its AI solutions and digital assistance systems, the company is focusing on the health industry sector. SNAP GmbH also develops AI-based individual solutions (including image processing) for industrial companies. The data is hosted at SNAP on its own servers and stored and processed in accordance with GDPR. SNAP's vision for the future is the development of a user-friendly brain-computer interface. Specially developed sensors and EEG amplifiers complete the product portfolio. + +For more information, please visit our website: https://en.snap-gmbh.com + +You can find our data protection declaration at: https://en.snap-gmbh.com/datenschutz-sm",2010,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/671683304d45ed00018df075/picture,"","","","","","","","","" +Point 8 GmbH,Point 8,Cold,"",17,information technology & services,jan@pandaloop.de,http://www.point-8.de,http://www.linkedin.com/company/point-8,"","",201 Rheinlanddamm,Dortmund,North Rhine-Westphalia,Germany,44139,"201 Rheinlanddamm, Dortmund, North Rhine-Westphalia, Germany, 44139","predictive quality, ai, predictive maintenance, data science, kuenstliche intelligenz, process mining, resilienz, kollaborative intelligenz, schulungen, correlation analysis, process optimization, anomaly detection, trainings, artificial intelligence, consulting, machine learning, big data, ki, recipe optimization, statistics, deep learning, digitalisierung, datenanalyse, it services & it consulting, cloud data platforms, digital products development, data engineering, condition monitoring, data integration, services, data analytics tools, cloud computing, automation, smart assistance systems, big data processing, ai in manufacturing, manufacturing, resilience enhancement, data-driven business models, smart factory solutions, data analytics, data visualization, b2b, process mining in erp, edge computing in production, data solutions, collaborative intelligence, alarm analysis, predictive maintenance for pumps, visual inspection ai, digital transformation, transportation & logistics, physical modeling, sensor data analysis, industrial automation, additive manufacturing ai, computer systems design and related services, data-based process control, industrial ai, predictive analytics, laser cutting ml, industry 4.0, ai solutions, operational efficiency, ai model development, data matters, distribution, information technology & services, enterprise software, enterprises, computer software, mechanical or industrial engineering",'+49 231 99778418,"Microsoft Office 365, Mobile Friendly, Nginx, Remote",230000,Other,230000,2021-11-01,"","",69bab5b72f92db0001073593,7375,54151,"Point 8 GmbH is a data science company based in Dortmund, Germany, founded in 2016. The company specializes in AI, Big Data, and machine learning solutions, leveraging expertise from CERN to create data-driven applications for the mechanical engineering and manufacturing industries. With a team of approximately 16-19 employees, Point 8 focuses on process analysis, optimization, and developing user interfaces for production and business applications. + +The company offers comprehensive support, from consulting and prototyping to the integration of data-driven solutions. Their core services include predictive maintenance, downtime prevention, and smart assistance systems, all aimed at enhancing operational efficiency in manufacturing. Point 8 emphasizes collaborative intelligence, working closely with clients to address complex digital challenges and foster digital transformation in line with Industry 4.0 business models. They also provide free initial consultations to help businesses explore tailored solutions.",2016,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6755d6dbb9de6c0001680ade/picture,"","","","","","","","","" +HUBSTER.S GmbH,HUBSTER.S,Cold,"",13,information technology & services,jan@pandaloop.de,http://www.hubsters.de,http://www.linkedin.com/company/hubstersgmbh,"","",8 Hohe Heide,Grafenrheinfeld,Bavaria,Germany,97506,"8 Hohe Heide, Grafenrheinfeld, Bavaria, Germany, 97506","business intelligence, business apps, cloud services, data warehouse, cloud dwh, reporting, operational insights, cloud migration, azure services, rpa, data science, strategieberatung, data analytics, it services & it consulting, data visualization, data quality, predictive analytics, analytics, streaming analytics, power bi, operational analytics, consulting, project management, self-service bi, services, azure data platform, industrial analytics, computer systems design and related services, lakeshot, data compliance, ai-powered reports, data automation tools, data integration, data lake, real-time reporting, bi solutions, automated data infrastructure, risk management, data management, user experience, real-time data monitoring, b2b, big data, microsoft fabric, data-driven decision support, software development, ai integration, event management, data strategy, azure, cloud data platform, predictive maintenance, information technology and services, artificial intelligence, machine learning, data security, data modeling, data engineering, business process optimization, data migration, data pipeline, ai solutions, chatbot for knowledge management, data governance, customer relationship management, data automation, information technology & services, cloud computing, enterprise software, enterprises, computer software, productivity, ux, events services, computer & network security, crm, sales",'+49 1516 1573568,"Outlook, Google Cloud Hosting, Mobile Friendly, Wix, Varnish, Remote, Looker","","","","","","",69bab5b72f92db0001073585,7375,54151,"HUBSTER.S GmbH is a German IT company located in Grafenrheinfeld, specializing in business analytics, data engineering, and Microsoft Power BI solutions for mid-sized enterprises. With a team of around 12 employees, the company operates as a Microsoft Partner, providing services that integrate smoothly into clients' infrastructures. HUBSTER.S emphasizes a collaborative environment that encourages creativity and innovation in IT. + +The company offers a range of data-driven services, including business intelligence tools like Power BI dashboards, data science solutions to enhance knowledge management, and data engineering to navigate complex data environments. Their unique offerings include LAKESHOT for rapid reporting and insights, as well as the EXCHANGE HUB, a platform designed for innovation and collaboration, particularly in the construction industry. HUBSTER.S aims to elevate data strategies through tailored solutions, supporting clients in their digital transformation journeys.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e6ab0958f26500017dda01/picture,"","","","","","","","","" +Moonscale,Moonscale,Cold,"",15,information technology & services,jan@pandaloop.de,http://www.moonscale.com,http://www.linkedin.com/company/moonscaleai,"","","",Munich,Bavaria,Germany,"","Munich, Bavaria, Germany","software development, information technology & services",'+49 89 24416970,"Cloudflare DNS, Gmail, Google Apps, Mobile Friendly, CrazyEgg, Google Tag Manager","","","","","","",69bab5b72f92db0001073586,"","","Moonscale is an AI platform developed by VidLab7 GmbH, located in Munich, Germany. The company specializes in AI-driven solutions aimed at enhancing B2B sales, lead qualification, and website visitor conversion. Under the leadership of CEO Fabian Beringer, Moonscale focuses on transforming website visitors into qualified leads and automating real-time buyer engagement. + +The core offering is the AI Lead Qualification Platform, which helps build sales pipelines by engaging buyers and automating the qualification process. Moonscale also features the Digital Sales Human, an AI solution designed for instant B2B lead qualification. Additionally, the company provides AI-supported video personalization and webcam-driven avatars that enhance engagement during sales pitches. These innovations aim to accelerate sales and improve ROI for sales teams.",2024,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67527d4b9b23270001271d66/picture,"","","","","","","","","" +BBF GmbH,BBF,Cold,"",15,information technology & services,jan@pandaloop.de,http://www.bbf-soft.de,http://www.linkedin.com/company/bbf-gmbh,"","",14 Kaiserstrasse,Munich,Bavaria,Germany,80801,"14 Kaiserstrasse, Munich, Bavaria, Germany, 80801","informationmanagement, informatica, mulesoft, postgres, oracle, data integration, information design, data warehousing, etl, data management, datenbankentwicklung, information managment, datenmanagement, business intelligence, ms sql server, data strategy, data scalability, data lakes, data automation, information technology and services, data security, consulting, data documentation automation, data governance, data quality, data management and analytics, etl processes, data cost reduction, iot data management, data migration, ai-driven data management, data infrastructure, services, metadata management, 3d information management, data workflow automation, data science, management consulting, data governance framework, automation, data fragmentation reduction, performance optimization, computer systems design and related services, data optimization, it architecture, data consistency automation, data analysis, data lifecycle management, cloud data solutions, b2b, data compliance, data orchestration, data processing speed, data system modernization, it consulting, data visualization, master data management, data security compliance, hybrid data architecture, data cleansing, finance, enterprise software, enterprises, computer software, information technology & services, analytics, computer & network security, information architecture, data analytics, financial services",'+49 89 1890990,"Outlook, Facebook Login (Connect), WordPress.org, Mobile Friendly, Linkedin Widget, Facebook Widget, Apache, Linkedin Login, Remote","","","","","","",69bab5b72f92db0001073587,7375,54151,"Unser optimiertes und KI gestütztes 3D Information Management erfüllt die Anforderungen an Performance, Verfügbarkeit, Sicherheit und Compliance einer stets einsatzbereiten modernen IT. +Wir steigern Ihre Wettbewerbsfähigkeit und heben durch den systematischen und intelligenten Umgang mit Daten gewinnbringende Potentiale. +Reduzierung der Datenfragmentierung, optimierte Strukturen und Systematik sowie betriebliche Effizienz sparen Kosten und lassen Ihnen mehr Zeit für das Kerngeschäft Ihres Unternehmens. + +Besuchen Sie uns auf unserer Website, dort finden Sie weiterführende Informationen zum Unternehmen sowie Details zu unserem Portfolio, zu eingesetzten Technologien und Referenzen. + +Impressum +BBF GmbH +Kaiserstr. 14 +D-80801 München + +Tel. +49 89 189 099 0 +eMail: info@bbf-soft.de + +Geschäftsführung: +Benjamin Böhm, Erwin Grießer + +Handelsregister: +Amtsgericht München +HRB 114896 + +USt-Identifikationsnr.: +DE 183 155 463",1996,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66fd1a3b2bbd0800013f833f/picture,"","","","","","","","","" +Micropsi Industries,Micropsi Industries,Cold,"",24,machinery,jan@pandaloop.de,http://www.micropsi-industries.com,http://www.linkedin.com/company/micropsi-industries,https://www.facebook.com/micropsiindustries/,http://www.twitter.com/micropsi,16B Heinrich-Roller-Strasse,Berlin,Berlin,Germany,10405,"16B Heinrich-Roller-Strasse, Berlin, Berlin, Germany, 10405","vision, robotics, predictive maintenance, software agents, process prediction, artificial intelligence, robot control software, iot, software, aivision software, research, researchers, artificial neural networks, information technology, deep information technology, automation machinery manufacturing, ai for assembly, adaptive control, ai for pick and place, multi-robot skill sharing, factory integration, ai for ergonomic workspaces, sensorless vision, ai platform, ai infrastructure, vision system, robust automation, robot perception, no cad data required, robotic vision, semi-automatic data recording, ai system deployment, vision-based automation, ai for screwdriving, real-time adaptation, robotic applications, ai for safety and control, robotic systems, ai in manufacturing, ai development, real-time processing, ai for lab automation, robotic inspection, ai for logistics, scalable automation, ai in lab automation, industrial machinery manufacturing, handling transparent objects, consulting, edge computing, data infrastructure, innovation, manufacturing, b2b, scalability, ai software, robotic process automation, ai vision software, ai robustness, ai training data, no force-torque sensor, ai system scaling, handling reflective objects, computer vision, ai for quality control, ai-powered robotics, ai deployment, adapting to changing conditions, manufacturing automation, long-term ai infrastructure, cloud-based ai, ai robotics, services, industrial robots, transportation & logistics, automation, robustness, industrial ai, robot control system, robot training, ai-driven control, learning from messy data, machine learning, ai for industrial tasks, variance handling, industrial automation, ai solutions, robot control, ai in logistics, ai robotics software, ai vision system, factory automation, mirai software, robot mobility, real-time tracking, autonomous robots, flexible manufacturing, robotic vision systems, automation scalability, intelligent motion guidance, production tasks, machine vision, dynamic environment adaptation, automated inspection, robot efficiency, robotic assembly, precision robotics, smart manufacturing, automation solutions, data-driven automation, end-of-line testing, insertion automation, pick and place, mechanical assembly, automated screwdriving, robot skill sharing, ai system integration, automated leak detection, manufacturing optimization, robot fleet integration, robot programming, industry 4.0, assembly line automation, quality assurance robotics, adaptive robots, automation tools, robot environment sensing, augmented industrial robots, industrial ai applications, robot adaptability, collaborative robots, streamlined production processes, mechanical or industrial engineering, information technology & services",'+49 30 55571929,"Salesforce, Outlook, Microsoft Office 365, Zendesk, Amazon AWS, Leadfeeder, Webflow, Slack, Linkedin Marketing Solutions, Google Analytics, Facebook Custom Audiences, Google AdWords Conversion, Hubspot, Google Tag Manager, Hotjar, Mobile Friendly, Google Font API, Vimeo, Facebook Login (Connect), DoubleClick, DoubleClick Conversion, Google Dynamic Remarketing, Facebook Widget, Google Maps, Remote, AI",39350000,Venture (Round not Specified),0,2024-09-01,10000000,"",69bab5b72f92db000107358b,3581,33324,"Micropsi Industries specializes in AI-powered computer vision software for industrial robots. Founded in 2014 and headquartered in San Francisco, California, the company focuses on developing machine learning solutions that enhance the flexibility and adaptability of robots in dynamic production environments. Their technology allows robots to perform tasks without the need for CAD data or controlled lighting, making automation more accessible. + +The flagship product, MIRAI, equips industrial and collaborative robots with real-time adaptability. It utilizes cameras and machine learning to respond to changes in the workspace, enabling applications such as automated screwdriving, assembly with variances, and other tasks that traditional programming cannot handle. Micropsi Industries also offers integration and support services to ensure seamless implementation of their solutions. + +The company serves various sectors, including manufacturing and automation, with notable customers like Daimler, Siemens Energy, and BSH. Their technology has been recognized for boosting productivity and quality across industries such as automotive, power tools, and logistics.",2014,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69b0fac31f0bef00014e83e5/picture,"","","","","","","","","" + +dataholix solutions GmbH,dataholix solutions,Cold,"",11,information technology & services,jan@pandaloop.de,http://www.dataholix.de,http://www.linkedin.com/company/dataholix-solutions-gmbh,https://www.facebook.com/profile.php,"",5 Schlossschmidstrasse,Muenchen,Bayern,Germany,80639,"5 Schlossschmidstrasse, Muenchen, Bayern, Germany, 80639","management beratung, business intelligence, cybersecurity, kuenstliche intelligenz, software entwicklung, itconsulting, projektmanagement, it services & it consulting, hybrid cloud betrieb, support agenten, automatisierte marketingprozesse, support system, datenschutzkonforme ki, information technology and services, softwareentwicklung, prozessautomatisierung, multi-faktor-authentifizierung, ki-gestützte analyse, datenanalyse, echtzeit-analysen, datenmanagement, support agenten für support, datenschutz, automatisierte kommunikation, datensicherheit, datenschutzkonform, consulting, support automation, kostensenkung, effizienzsteigerung, automatisierte finanzprozesse, finance-software, business process automation, unternehmensautomatisierung mit ki, support agenten in der cloud, cloud-hosting, remote-work-optimierung, echtzeit-datenanalyse, unternehmenswachstum, ki-agenten, virtuelle mitarbeiter, support agenten für finance, integrierte systemanbindung, sales automation, management consulting, support-agenten, automatisierte hr-prozesse, automatisierte supportprozesse, vertriebslösungen, skalierbarkeit, support agenten für sales, ki-basierte support-lösungen, cloud-lösungen, virtuelle support-agenten, hybrid cloud ki-lösungen, hr-software, unternehmensskalierung, finance automation, software development, ki für unternehmensprozesse, skalierbare lösungen, datenkontrolle, automatisierte dokumentation, multi-user-system, kosteneinsparung, digitale lösungen, echtzeit-dashboards, automatisierte support-agenten, automatisierte support-chatbots, support agenten hybrid, ki-agenten für support, support agenten für marketing, ki-strategie, datenschutz dsgvo, hr automation, kundenbindung, unternehmensautomatisierung, marketing automation, unternehmenssoftware, hybrid-cloud, digital company, remote-arbeit, services, support agenten für hr, marketing-tools, virtuelle unternehmen, support-systeme, automatisierung, skalierbare plattform, ki-implementierung, ki-gestützte support-tools, digitalisierung, prozessoptimierung, agenten-management, it-sicherheit, support agenten lokal, schulungen, ki-gestützte supportsysteme, hybrid-hosting, digital transformation, integrierte plattform, skalierbare ki-plattform, sicherheitslösungen, b2b, computer systems design and related services, automatisierte workflows, automatisierte support-teams, automatisierte prozesse, ki-gestützte automatisierung, kundenservice, finance, analytics, information technology & services, saas, computer software, enterprise software, enterprises, marketing & advertising, financial services","","NSOne, Outlook, Amazon AWS, Mobile Friendly, Remote","","","","","","",69bab5b0b4ad4200013bc0c3,7375,54151,"🚀 Digitale Transformation neu gedacht – mit den #dXBuddies der dataholix solutions GmbH 🤖 + +Wir bei der dataholix solutions GmbH glauben: Digitalisierung ist mehr als Prozessautomatisierung – sie ist der Weg zur echten, intelligenten Unternehmenssteuerung. + +Mit den #dXBuddies wird diese Vision Realität: +👉Willkommen in Ihrer Digital Company + +Was unsere Lösung besonders macht: + +🧩 Vollständig integriertes KI-System +Die #dXBuddies sind keine Einzellösungen – sie bilden ein intelligentes, vernetztes Gesamtsystem. +Ob Kundenservice, HR, Marketing, Finanzen oder vieles mehr - alle zentralen Bereiche werden digital unterstützt und laufend optimiert. + +🤝 Smarte, digitale Teammitglieder +Jeder #dXBuddies ist ein KI-gesteuerter Agent, der sofort einsatzbereit ist. +Wiederkehrende Aufgaben? Automatisiert. Workflows? Effizient. +Ihr Team? Entlastet – für mehr Raum für Strategie und Kreativität. + +📈 Kosten senken, Produktivität steigern +Unsere Lösung hilft Ihnen, Personalkosten zu reduzieren und gleichzeitig die Effizienz zu steigern. Modular, skalierbar und passgenau für Unternehmen jeder Größe. + +🔒 Maximale Sicherheit & Datenschutz +Unsere Plattform ist DSGVO-konform und bietet flexible Hosting-Modelle (Cloud, On-Premise, Hybrid), granulare Zugriffskontrollen und Multi-Faktor-Authentifizierung. + +📊 Echtzeit-Analysen für bessere Entscheidungen +Mit integrierten Dashboards und Reports haben Sie jederzeit volle Transparenz – datenbasierte Entscheidungen waren noch nie so einfach. + +🌟 dataholix solutions GmbH ist Ihr Partner für zukunftssichere, KI-basierte Unternehmenslösungen. + +Gemeinsam gestalten wir die digitale Zukunft Ihres Unternehmens – effizient, intelligent, nachhaltig. + +👉 Erfahren Sie mehr über die #dXBuddies und Ihre Digital Company – wir freuen uns auf den Austausch! + +👉 www.dataholix.de + +Für Bewerber:innen: Check unsere Stellenanzeigen unter www.dataholix.de/jobs oder sende Deinen Lebenslauf an karriere@dataholix.de",2022,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6845cbaba1eab2000150ec88/picture,"","","","","","","","","" +Resolto Informatik GmbH,Resolto Informatik,Cold,"",17,information technology & services,jan@pandaloop.de,http://www.resolto.com,http://www.linkedin.com/company/resolto-informatik-gmbh,https://de-de.facebook.com/resolto/,"",16 Schillerstrasse,Herford,North Rhine-Westphalia,Germany,32052,"16 Schillerstrasse, Herford, North Rhine-Westphalia, Germany, 32052","energy management, product configurator, artificial intelligence, artificial intelligence on edge, configure, price, predictive analytics prognos, quote cpq, industry 40, 3d online planning tools, iot, product configurator karpion, advanced analytics, efficiency optimization, process optimization, responsive design, intelligent algorithms, machine learning, software development, computer systems design and related services, services, industrial data analysis, software integration, digital twin integration, consulting, ai for energy savings, data science, automation, automation technology, configon, digitalization, festo ax, predictive maintenance, quality prediction, on edge ai, predictive quality control, b2b, industry-specific ai solutions, predictive analytics, manufacturing, ai in automation, industrial iot, edge computing, edge ai, ai-driven maintenance, configurator for complex products, energy optimization, real-time ai, ai, 3d configurator, digital transformation, error-free configuration, industry 4.0, real-time data processing, industrial ai, predictive quality, ai solutions, ai application, industrial process optimization, industrial software, energy & utilities, product configuration, project management, ai platform, system integration, error prevention in manufacturing, industrial automation, industrial data interpretation, oil & energy, information technology & services, enterprise software, enterprises, computer software, mechanical or industrial engineering, productivity",'+49 5221 1011800,"Outlook, Microsoft Azure, Slack, Apache, Mobile Friendly",160000,Other,160000,2021-11-01,"","",69bab5b0b4ad4200013bc0ca,7375,54151,"Resolto Informatik GmbH is a German software company founded in 2003 by Tanja Maaß, specializing in artificial intelligence. The company focuses on the real-time application of AI on edge devices and became part of the Festo group in 2018, operating independently within that framework. + +Resolto combines data science and software development expertise with knowledge in industrial automation. The team consists of highly qualified professionals, including data scientists and computer scientists, who have over 15 years of industry experience. The company offers digitalization and optimization solutions for industrial companies, supporting their transition to Industry 4.0. + +Resolto provides two main intelligent solutions: CONFIGON, a 2D/3D product configurator for error-free product configuration in a browser, and Festo AX, an AI solution aimed at enhancing industrial digitalization. The company leverages Festo's extensive expertise in automation technology to serve its clients effectively.",2003,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6717401a8321e00001607ac5/picture,"","","","","","","","","" +Ancud IT,Ancud IT,Cold,"",72,information technology & services,jan@pandaloop.de,http://www.ancud.de,http://www.linkedin.com/company/ancud-it,https://facebook.com/AncudIT/,"",47 Glockenhofstrasse,Nuremberg,Bavaria,Germany,90478,"47 Glockenhofstrasse, Nuremberg, Bavaria, Germany, 90478","iot solutions, liferay goldpartner, predictive maintenance, individual entwicklungen, b2b portale, mendix partner, datascience experts, selfservice portale, intranet, mendix beratung, java entwicklung, confluent partner, atlassian platinum solution partner, webentwicklungen, predictive quality, it integration, b2b commerce loesungen, it services & it consulting, digital workplace, digital collaboration, manufacturing, transportation and logistics, liferay dxp, consulting, enterprise software, bpm with camunda, cloud migration, services, computer systems design and related services, mendix, financial services, industry x.0, aws consulting, portals, elasticsearch, chat with your data, service management, confluent, industry 4.0, cloud computing, digital twin technology, data analytics, cloud services, process automation, digital twin, data integration, consulting services, confluence llms, data science workflow, retail and e-commerce, business process management, portal technologies, b2b, h2o.ai, software development, ai integration, data-driven insights, custom software, large language models, information technology and services, data science, artificial intelligence, digital transformation, data security, automation, ai/ml consulting, it consulting, ai solutions, genai, data & ai solutions, e-commerce, finance, distribution, consumer products & retail, transportation & logistics, information technology & services, mechanical or industrial engineering, enterprises, computer software, management consulting, computer & network security, consumer internet, consumers, internet",'+49 911 2525680,"SendInBlue, Outlook, MailChimp SPF, Microsoft Office 365, VueJS, Jira, Atlassian Confluence, React Redux, Google Tag Manager, Mobile Friendly, Ubuntu, Google Analytics, Liferay, Eventbrite, Apache, WordPress.org, Remote, AI","","","","","","",69bab5b0b4ad4200013bc0cf,7375,54151,"Ancud IT-Beratung is a German IT consulting firm with over 20 years of experience in digital transformation. The company specializes in providing customized software solutions, AI/ML integration, and a range of services designed to help businesses navigate digital challenges. Ancud IT emphasizes individualized approaches, focusing on areas such as portal technologies, digital collaboration, data science, and IT integration. + +The firm offers a variety of services aimed at enhancing business efficiency and user experience. These include customer service management, agile culture implementation, business process management, and comprehensive IT service support. Ancud IT also provides advanced data science and AI solutions, along with custom portal development to improve user interactions. The company utilizes tools like Atlassian for collaboration, Liferay DXP for digital transformation, and H2O.AI for automating data science workflows. Ancud IT serves industries such as media and retail/e-commerce, supporting enterprises in their digitalization efforts.",2003,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68c60d6eeeaabb0001870d39/picture,"","","","","","","","","" +Synthflow AI,Synthflow AI,Cold,"",72,information technology & services,jan@pandaloop.de,http://www.synthflow.ai,http://www.linkedin.com/company/synthflowai,https://www.facebook.com/profile.php,"","",Berlin,Berlin,Germany,"","Berlin, Berlin, Germany","technology, information & internet, voice ai for retail, hipaa compliant, real-time call management, customer engagement, ai for high-volume call centers, consulting, call quality assurance, enterprise security, voice biometrics, voice recognition, no-code platform, secure voice platform, call logging, call center integrations, automated complaint handling, natural language understanding, call flow design, lead qualification, call monitoring, voice ai for banking, ai-powered customer service, crm integrations, ai call center solutions, call management, call center scalability, natural language processing, call recording, voice-enabled troubleshooting, voice cloning, data encryption, gdpr compliant, automated info capture, virtual assistant, call routing, call routing algorithms, virtual receptionist, real estate, speech-to-text, management consulting services, call handling software, bpo, call center optimization, cost reduction in call centers, contact center, workflow automation, ai-driven customer engagement, ai call transfer, data protection, call scripting, multilingual voice ai, api integrations, automated follow-ups, automated service request, voice ai integration, voice-based surveys, call center workforce automation, voice ai for real estate, voice-enabled crm, customizable voice agents, healthcare, webhooks, multilingual support, automated billing support, government, call center analytics, call escalation, voice analytics for support, call center software, helpdesk integration, call handling automation, scalable saas, call center automation, b2b, voice-enabled customer feedback, retail, user experience, voice ai for healthcare, call performance, manufacturing, banking, call transfer, ai-driven helpdesk, call scheduling, voice-enabled appointment booking, telephony apis, ai-powered call monitoring, high-volume call handling, call transcription, enterprise voice ai, cloud telephony, call center ai chatbot, automated outbound calls, multilingual voice agents, ai voice agents, call automation tools, call management system, automated customer onboarding, telephony integration, crm integration, automated order processing, api access, data security, customer support automation, automated reminders, low latency voice, call flow builder, hospitality, call automation, soc2 certified, human-like voice, call center ai, multi-channel support, call analytics, voice ai for hospitality, enterprise-grade security, services, voice synthesis, government services, voice-based lead generation, education, helpdesk tools, ivr system, voice ai for government services, appointment scheduling, call volume scaling, call transfer automation, automated phone calls, conversational ai, ai receptionist, ai answering service, integrations, hipaa compliance, real-time interactions, 24/7 service, outbound calls, inbound calls, custom voice agents, automation tools, agency solutions, healthcare ai, real estate ai, recruitment ai, scheduled communications, customer inquiries, ai for dealerships, ai for solar companies, appointment management, business automation, workflow optimization, customer service enhancement, sentiment analysis, call transcripts, tailored solutions, no-code platforms, efficiency gains, cost savings, scalability, instant lead follow-up, dormant lead activation, custom integrations, finance, information technology & services, artificial intelligence, health care, health, wellness & fitness, hospital & health care, ux, mechanical or industrial engineering, financial services, computer & network security, leisure, travel & tourism",'+49 1573 7656452,"Cloudflare DNS, Gmail, Google Apps, CloudFlare Hosting, Instantly, Hubspot, Zendesk, Google Analytics, Pingdom, Twitter Advertising, YouTube, Google Maps, Google Maps (Non Paid Users), Wistia, Ruby On Rails, Facebook Login (Connect), DoubleClick Conversion, Google Font API, Stripe, WordPress.org, Google Dynamic Remarketing, reCAPTCHA, DoubleClick, Linkedin Marketing Solutions, Vimeo, Facebook Custom Audiences, Google Tag Manager, Hotjar, Intercom, Facebook Widget, Woo Commerce, Mobile Friendly, AI, WebRTC, Spiceworks IP Scanner, Oracle Communications Session Border Controller (SBC), Trend Micro Smart Protection, React, TypeScript, Tailwind, Cisco VoIP, Claude, go+, ebs",29050000,Series A,20000000,2025-06-01,"","",69b862eac63906001d70c08c,7375,54161,"Synthflow AI is a Berlin-based company founded in 2023, specializing in a no-code platform for creating and managing customizable voice AI agents. These agents automate inbound and outbound phone calls, providing human-like interactions. The platform is designed for mid-market and enterprise companies, contact centers, BPO providers, and SMBs, enabling them to handle high call volumes efficiently and cost-effectively. + +Since launching its first product version in early 2024, Synthflow AI has experienced significant growth, processing over 5 million calls monthly and achieving a 90% retention rate among enterprise customers. The company offers a comprehensive Voice AI Operating System that includes tools for building automated workflows, real-time monitoring, and seamless integrations with popular CRMs like Salesforce and HubSpot. Synthflow AI is recognized for its innovative technology, which supports over 50 languages and is compliant with HIPAA and GDPR regulations.",2023,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69ad54533e0f840001016f07/picture,"","","","","","","","","" +PANTA,PANTA,Cold,"",14,information technology & services,jan@pandaloop.de,http://www.pantaos.com,http://www.linkedin.com/company/pantaos,"","",15A Grindelberg,Hamburg,Hamburg,Germany,20144,"15A Grindelberg, Hamburg, Hamburg, Germany, 20144","publishing, medien, artificial intelligence, technology, information & media, ai transparency, ai training, ai local deployment, ai certification, ai workshops, government, media ai, ai certification programs, ai in media, ai for regulatory compliance, ai development, ai governance, eu ai act, ai automation tools, ai for content automation, ai for social inclusion, consulting, ml models, b2b, ai monitoring, ai strategy, content generation, ai ethics guidelines, research and development, ai for societal acceptance, ai platform, ai projects, ai in communication, ai in public sector, ai custom models, services, ai automation, retrieval-augmented generation (rag), ai integration, ai for social good, ai research, ai scalability, ai solutions, ai consulting, ai in enterprise, ai in content creation, ai models, ai tools, ai security, ai user training, media and publishing, research and development in the physical, engineering, and life sciences, automated workflows, chatbots, content personalization, ai in marketing, ai for good, data privacy, ai regulation, ai for public institutions, ai partnerships, ai societal impact, custom gpt models, ai for media ethics, information technology and services, ai trustworthiness, ai in journalism, ai deployment, ai governance frameworks, ai innovation, ai for media, ai compliance, ai for digital transformation, dsgvo-compliant, ai cloud solutions, ai ethics, end-to-end workflows, education, non-profit, media, information technology & services, research & development, nonprofit organization management","","Outlook, Amazon AWS, Microsoft Office 365, Google Cloud Hosting, Zendesk, Google Tag Manager, Varnish, Wix, WordPress.org, Multilingual, Mobile Friendly, AI","","","","","","",69bab5b0b4ad4200013bc0c0,7375,54171,"PANTA OS is an enterprise AI platform based in Hamburg, Europe, designed for organizations that require a controlled approach to AI deployment. The platform offers a unified system for AI-powered chat, custom assistants, business process engines, and workflow automation, all built with EU compliance and enterprise security in mind. It features EU-only hosting and a GDPR-native architecture, making it suitable for businesses that prioritize compliance and security. + +Launched on January 14, 2025, PANTA OS provides a range of capabilities, including intelligent chat with multi-model support, AI-powered tools for video production and voice synthesis, and governed business process engines. The platform also includes analytics and reporting features, integrations with popular tools like Microsoft 365 and Google Workspace, and robust security measures such as end-to-end encryption and role-based access control. PANTA OS supports organizations with hands-on implementation, workshops, and ongoing product updates, ensuring a structured rollout and effective use of AI technologies.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/684451c7ca812800010e24ca/picture,"","","","","","","","","" +elunic AG,elunic AG,Cold,"",93,information technology & services,jan@pandaloop.de,http://www.elunic.com,http://www.linkedin.com/company/elunic-ag,https://www.facebook.com/elunic/,https://twitter.com/elunic,"",Munich,Bavaria,Germany,"","Munich, Bavaria, Germany","internet of things, eaas, technologie, pay per use, software, predictive maintenance, industrie 40, digitalisierung, iot, iiot, condition monitoring, deep learning, visual inspection, machine vision, computer vision, saas, ai, maschinenbau, softwareentwicklung, qualitaetssicherung, it, machine learning, i40, optical inspection, automatisierung, ki, qualitaetspruefung, technologie & predictive maintenance, it services & it consulting, microsoft copilot, maschinendatenvisualisierung, b2b, ai.see, computer systems design and related services, automatisierte bildverarbeitung, virtuelle wissensdatenbank, industrial automation, ki-gestützte gussfehlererkennung, optische fehlererkennung, supply chain management, software development, services, edge computing, manufacturing, automatisierte schliffbildprüfung, ki-gestützte qualitätskontrolle, data analytics, industrie 4.0 plattformen, consulting, industrial iot, industrie 4.0 lösungen, shopfloorgpt, ki-softwareentwicklung, ki-qualitätskontrolle, process optimization, industrie 5.0, ki-basierte riss- und porenerkennung, healthcare, distribution, information technology & services, artificial intelligence, computer software, mechanical or industrial engineering, logistics & supply chain, health care, health, wellness & fitness, hospital & health care",'+49 89 416173730,"Gmail, Google Apps, MailChimp SPF, Microsoft Office 365, Cloudflare DNS, CloudFlare Hosting, Typeform, Slack, Hubspot, Apache, YouTube, Google Analytics, Shutterstock, Mobile Friendly, MouseFlow, Linkedin Marketing Solutions, DoubleClick Conversion, WordPress.org, DoubleClick, Google Font API, Google Tag Manager, Google Dynamic Remarketing, React Native, Node.js, Android, Remote, AI, Upwork, Make, n8n, Claude, Midjourney, Copilot","","","","","","",69bab5b0b4ad4200013bc0c2,3571,54151,"elunic AG is a software company based in Munich, Germany, with over 15 years of experience in AI-based digital solutions for the Industrial Internet of Things (IIoT) and Industry 4.0. The company specializes in developing customized software solutions and digital strategies for small and medium-sized enterprises, industrial companies, and machine manufacturers. Their focus is on integrating AI into production environments to enhance efficiency and productivity. + +elunic offers a range of IIoT platforms and AI tools designed for industrial digitization. Key products include shopfloor.io, a digital machine portal for data collection and networking; shopfloor.GPT, which utilizes Azure OpenAI Service for customizable AI agents; AI.PLANTMIND™, an AI solution for optimizing operations; and AI.SEE™, which automates quality control using image processing. The company also provides services such as cloud architecture development and custom software solutions, emphasizing fast automation and seamless integration.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69b104dd94858c00019ee735/picture,"","","","","","","","","" +Augmented Industries,Augmented Industries,Cold,"",16,information technology & services,jan@pandaloop.de,http://www.augmented-industries.com,http://www.linkedin.com/company/augmented-industries,https://facebook.com/augmensys,https://twitter.com/augmensys,33 Sandstrasse,Munich,Bavaria,Germany,80335,"33 Sandstrasse, Munich, Bavaria, Germany, 80335","it services & it consulting, information technology & services","","Outlook, Microsoft Office 365, Apache, Mobile Friendly, WordPress.org, YouTube, Xamarin, Node.js, React Native, Android, Remote, YubiKey","","","","","","",69bab5b0b4ad4200013bc0c4,"","","How to empower operators and technicians at scale, and reduce time-to-problem-solve? + +We live in a manufactured world. Everything we see around us, has been manufactured. To improve the state of our world, we need to empower technicians, and transform physical operations. + +Augmented Industries offers an enterprise-grade, AI-enabled technician excellence software that helps manufacturers and machine builders to achieve their goals with knowledge management, execution guidance, and training in the flow of work. + +Need to solve your knowledge-to-action-gap in minutes? - Let's talk.",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/687c79ea6c6a3d0001079bdd/picture,"","","","","","","","","" +axxessio GmbH,axxessio,Cold,"",21,information technology & services,jan@pandaloop.de,http://www.axxessio.com,http://www.linkedin.com/company/axxessio-gmbh,https://www.facebook.com/axxessioGmbH,https://twitter.com/spirit_conf,5 Kurfuerstenallee,Bonn,North Rhine-Westphalia,Germany,53177,"5 Kurfuerstenallee, Bonn, North Rhine-Westphalia, Germany, 53177","nearshoring, development, design, controlling, voice recognition, artificial intelligence, requirements management, itarchitecture, m2m, project management, industry 40, process management, test management, quality management, infrastructure, it services & it consulting, digital workplace, api development, content management systems, enterprise software, ai in logistics, content experience management, open source technologies, security in critical infrastructure, product information management, sentiment analysis, security audits, metaverse, ai chatbots, user experience design, nlp, agile development teams, virtual reality, digital strategy consulting, it security, software maintenance, business process automation, security strategy, software project management, responsive web design, search engine technologies, ai-powered predictive maintenance, services, digitalization, ai in finance, natural language processing, ai in manufacturing, cloud computing, cybersecurity services, data analytics, ui/ux design, urban data analysis, b2b, big data, software testing, software testing automation, ai in public sector, software development, information technology and services, digital transformation, data security, custom software development, security in cloud environments, it consulting, cloud migration support, voice recognition systems, compliance management, ai, predictive analytics, voice assistants, it infrastructure optimization, government, ai-powered chatbots, consulting, augmented reality, predictive modeling, ai development, rpa, computer systems design and related services, web applications, disaster recovery planning, digital public administration, search engine optimization, mobile applications, digital twin technology, it security audits, migration strategies, open source solutions, municipal digitalization, consulting services, metaverse integration, data management, cloud security, digital strategy, data search solutions, it infrastructure, custom software, cyber security, it compliance, data-driven decision making, ai in healthcare, cross-platform app development, customer experience, system integration, cloud migration, metaverse applications, ui/ux, ai chatbots for customer service, performance monitoring, software engineering, digital innovation, nlp applications, cloud solutions, ai in government, security risk assessment, cybersecurity, incident response, native app development, security by design, cloud strategy, content management, automation, ai solutions, security training, user interface design, healthcare, finance, education, legal, non-profit, manufacturing, distribution, transportation & logistics, energy & utilities, construction & real estate, information technology & services, productivity, enterprises, computer software, computer & network security, management consulting, seo, search marketing, marketing, marketing & advertising, mobile apps, health care, health, wellness & fitness, hospital & health care, financial services, nonprofit organization management, mechanical or industrial engineering",'+49 228 7636310,"Outlook, Slack, Mobile Friendly, Nginx, AI","","","","","","",69bab5b0b4ad4200013bc0c5,7375,54151,"axxessio GmbH is an independent IT and management consultancy based in Bonn, Germany, with additional offices in Darmstadt. Founded in 2006, the company specializes in strategic software projects and digital transformation. With around 93-94 employees, axxessio generates an estimated annual revenue of $6.4 million and holds ISO 9001 and ISO 27001 certifications, demonstrating its commitment to quality and information security. + +The company offers a wide range of services, including consulting on digital transformation, IT strategy development, software solutions, database design, IT security, cloud computing, data analytics, and artificial intelligence. axxessio has a strong focus on AI and voice recognition technologies. Its product lineup includes SmartCMS, an AI-powered content management system, pirobase imperia, a content management platform, and uhp solutions, which provides web and mobile application development services. axxessio serves clients in various sectors, including telecommunications, logistics, financial services, manufacturing, and government institutions.",2006,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66efbf49b01964000176bc43/picture,"","","","","","","","","" +DGTAL,DGTAL,Cold,"",21,insurance,jan@pandaloop.de,http://www.dgtal.io,http://www.linkedin.com/company/d-g-tal,"","",8 Hohe Bleichen,Hamburg,Hamburg,Germany,20354,"8 Hohe Bleichen, Hamburg, Hamburg, Germany, 20354","insurance, actuarial analysis, machine learning, claim predictions, deep learning, artificial intelligence, claim analysis, risk assessment, multilingual data processing, customizable ai workflows, predictive analytics, ai for legacy portfolio management, reinsurance analysis, consulting, services, ai model fine-tuning, ai-driven insights, ai in brokerage, insurance data analysis, deep learning models, insurance process automation, ai for claims outlier deep dive, on-premise deployment, cloud-based ai solutions, claims processing, insurance claims audits, ai-powered risk simulation, insurance ai integration tools, ai for outlier and anomaly detection in insurance, b2b, claims outlier detection, automated claims review, ai for reinsurance portfolio analysis, claims document summarization, structured data conversion, ai in reinsurance, ai for claims audits, insurance agencies and brokerages, ai agents, large language models, secure ai environment, portfolio management, regulatory compliance in ai, ai-powered decision support, data conversion platform, risk management, regulatory compliance, ai-driven portfolio segmentation, ai augmentation, portfolio segmentation, unstructured data analysis, risk modeling, financial services, natural language processing, insurance industry, outlier detection, portfolio optimization, ai automation, generative ai, finance, information technology & services, enterprise software, enterprises, computer software, insurance agencies & brokerages",'+49 40 210916110,"Route 53, Outlook, Amazon AWS, Google Font API, WordPress.org, Bootstrap Framework, Woo Commerce, Mobile Friendly, Nginx, Google Tag Manager, Ubuntu, AI, Circle",3300000,Venture (Round not Specified),3300000,2023-09-01,"","",69bab5b0b4ad4200013bc0c9,7375,52421,"DGTAL specializes in developing and operating analytic and generative AI solutions for the insurance industry. The company combines expertise from insurance professionals, scientists, and technology experts to create tailored AI applications that enhance and automate operations. DGTAL focuses on delivering secure, regulation-compliant solutions using large language models, either on-premises or in the cloud. + +Their core offerings include AI agents and platforms designed to analyze data, provide insights, and automate processes. DGTAL excels in processing unstructured data, transforming it into AI-ready formats for faster insights. They also provide generative AI applications specifically fine-tuned for insurance use cases, emphasizing the importance of data augmentation and security. DGTAL's technology stack features proprietary models and leading large language models, ensuring flexibility in deployment options to meet the needs of insurance companies.",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/687628b3e6bc72000102cc27/picture,"","","","","","","","","" +sqior medical,sqior medical,Cold,"",29,information technology & services,jan@pandaloop.de,http://www.sqior.com,http://www.linkedin.com/company/sqior,"","",8 Hopfenstrasse,Munich,Bavaria,Germany,80335,"8 Hopfenstrasse, Munich, Bavaria, Germany, 80335","software development, interdisziplinäre kommunikation, digitalisierung im krankenhaus, echtzeitdaten, intelligente ressourcenplanung, schnittstellen zu kis-systemen, services, maschinelles lernen, kapazitätsplanung, automatisierung, klinische prozesse, ai, klinikerunterstützung, medizinsoftware, op-koordination, prozessoptimierung, krankenhausmanagement, automatisierte kommunikation, automatisierte bettenverwaltung, patientenversorgung, benutzerfreundliche interfaces, systemintegration, perioperative prozesssteuerung, echtzeit belegungsüberwachung, belegungsmanagement, medizinische workflow-optimierung, klinische workflows, prozesssteuerung, patientenmanagement, sicherer datenzugriff, machine learning, medizininformatik, digitale assistenzsysteme, healthcare, automatisierte entlassungsmeldungen, mobile anwendungen, computer systems design and related services, workflow automation, b2b, klinische entscheidungsunterstützung, digital health, intelligente softwarelösungen, krankenhaus-it-integration, ki-technologien, healthcare technology, it-integration im gesundheitswesen, medizinische assistenzsysteme, automatisierte workflows, klinikdigitalisierung, information technology & services, artificial intelligence, health care, health, wellness & fitness, hospital & health care","","Outlook, Microsoft Office 365, GoDaddy Hosting, WordPress.org, Mobile Friendly, Google Tag Manager, Google AdSense, Varnish, Vimeo, React Native, Android, Remote, Viewpoint, AI, TypeScript, Node.js, React, Kubernetes, REST, PostgreSQL, Salesforce CRM Analytics, LinkedIn Ads, Microsoft 365, Microsoft Entra ID, Microsoft Exchange Online, Cisco WebEx Teams, SharePoint, Microsoft OneDrive, AWS Single Sign-On, SAM, TUNE, Microsoft Defender for Cloud, AWS Multi-Factor Authentication",4400000,Seed,4400000,2025-03-01,"","",69bab5b0b4ad4200013bc0d0,7375,54151,"sqior medical GmbH is a Munich-based company that specializes in digital assistants for hospitals and clinics. Their focus is on automating clinical workflows to enhance operational efficiency. The company is located at Hopfenstr. 8, 80335 München, Germany, and is led by Geschäftsführer Philipp Wolf. + +The primary offering from sqior medical is digital assistants that streamline complex clinical processes, such as operating room management and occupancy management. These tools provide workflow support directly to staff's mobile devices, ensuring that critical information is accessible when needed. This approach promotes real-time transparency and improves the overall efficiency of clinical pathways.",2022,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6872f6d75093010001b336a1/picture,"","","","","","","","","" +arconsis,arconsis,Cold,"",43,information technology & services,jan@pandaloop.de,http://www.arconsis.com,http://www.linkedin.com/company/arconsis,"","",6 Am Storrenacker,Karlsruhe,Baden-Wuerttemberg,Germany,76139,"6 Am Storrenacker, Karlsruhe, Baden-Wuerttemberg, Germany, 76139","software engineering, transparency, deep learning, mobile development, agile & digital transformation, open communication, cloud native, digital product ideation, technological excellence & passion, android, scrum, agile software development, ios, ai, mobile, mobile enterprise, machine learning, adaptive enterprise, mobile software engineering, business apps, aiscale, it services & it consulting, ai@scale, cloud-native, scalability, resilience, api-driven, devops, smart shopping companion, ai operational readiness, machine learning engineering, data strategy, mobile solutions, backend for frontend, ar/vr integration, conversational interfaces, digital experience, prototyping, user-centered design, innovation, data analytics, data engineering, digital transformation, real-time data processing, cloud architecture, turnkey ai solutions, application development, enterprise integration, growth strategy, cloud services, data governance, performance optimization, technology consulting, customer success, user experience, digitalization, education programs, team collaboration, media hub, smart data capturing, intelligent automation, event management solutions, field data harvesting, vehicle inspections, cross-functional teams, ai-driven solutions, b2b, consulting, services, artificial intelligence, information technology & services, internet, enterprise software, enterprises, computer software, app development, apps, software development, cloud computing, management consulting, ux",'+49 72 19897710,"Cloudflare DNS, Outlook, Microsoft Office 365, Slack, Mobile Friendly, Google Tag Manager, Android, React Native, Docker","","","","","","",69b862eac63906001d70c091,7375,54151,"arconsis IT-Solutions GmbH is a German software engineering company founded in 2005 by Achim Baier and Wolfgang Frank. The company specializes in custom digital solutions that incorporate technologies such as AI, cloud-native systems, and mobile applications. With a focus on agile development, arconsis aims to align business objectives with effective IT execution. + +Headquartered in Karlsruhe, arconsis has expanded its presence with branches in Stuttgart, Frankfurt, Munich, Pforzheim, and Greece. The company has experienced steady growth, emphasizing innovation, collaboration, and a team-oriented culture. It supports startups through angel investments in early-stage tech ideas. + +arconsis offers a range of services, including enterprise-ready AI initiatives, scalable cloud solutions, and user-centered digital product ideation. Their portfolio features bespoke software products, such as a mobile shopping app for a major drugstore group and a cloud-based platform for quality management in agriculture. The company is dedicated to blending technology with solid engineering to deliver impactful solutions across various industries.",2006,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6884d9ec47d93500013ea4ec/picture,"","","","","","","","","" +SIC! Software GmbH,SIC!,Cold,"",13,information technology & services,jan@pandaloop.de,http://www.sic-software.com,http://www.linkedin.com/company/sic-software-gmbh,https://www.facebook.com/SICSoftwareGmbH/,https://twitter.com/sic_software,10 Im Zukunftspark,Heilbronn,Baden-Wuerttemberg,Germany,74076,"10 Im Zukunftspark, Heilbronn, Baden-Wuerttemberg, Germany, 74076","mobile software, iot, enterprise software, mobile sales solutions, bluetooth low energy, individual software, it services & it consulting, real-time monitoring, ai, machine learning, ai-basierte automatisierung, data analytics, ki-agenten, prototyping iot, smart services, consulting, computer systems design and related services, aws cloud services, ki-entwicklung, iot systemintegration, data science, software development, edge-computing, smart factory solutions, predictive maintenance, system design, services, data integration, predictive analytics, full-stack iot-lösungen, edge-device development, cloud computing, data science services, prozessautomatisierung, b2b, data infrastructure, datenmanagement services, data security, sensorik vernetzung, ki-assistenten, aws iot cloud, datenmanagement, company gpt, edge computing solutions, cloud services, cloud architecture, iot projekte, data visualization, data cleansing, data modeling, manufacturing, cloud-infrastruktur, iot retrofits, prozessdigitalisierung, data strategy, distribution, construction, enterprises, computer software, information technology & services, artificial intelligence, computer & network security, mechanical or industrial engineering","","Cloudflare DNS, Outlook, Microsoft Office 365, Mobile Friendly, Etracker, Apache, WordPress.org, Remote, Android, React Native, Xamarin, IoT, Aircall",170000,Other,170000,2014-11-01,"","",69bab5b0b4ad4200013bc0c6,7375,54151,"Als Software-Manufaktur begleitet die SIC! Software GmbH bereits seit 2006 Unternehmen bei der digitalen Transformation mit Lösungen rund um die Digitalisierung von Prozessen – von der Ideenfindung über die Konzeption bis zur erfolgreichen Umsetzung und den Betrieb. + +Insbesondere unterstützen wir unsere Kunden beim Datenmanagement, um eine konsistente und verlässliche Datenbasis mit optimaler Datenqualität sowie nahtloser Datenintegration und automatisierten Workflows sicherzustellen. Mit unseren Data Science Services helfen wir, das volle Potenzial von Daten auszuschöpfen. + +In der Sales Tool Manufaktur entwickeln wir maßgeschneiderte Software-Lösungen, die Außendienst und Innendienst unterstützen und die Zusammenarbeit mit Support und Marketing optimieren. + +In unserer IoT Manufaktur realisieren wir sowohl hochspezialisierte Teilprojekte als auch komplexe Full-Stack IoT-Lösungen, wobei unsere Kunden von unserem speziellen Know-how im Bereich Edge-Computing und AWS Cloud Services profitieren. + +Ein wesentlicher Aspekt unseres KI-Angebots ist die Entwicklung maßgeschneiderter intelligenter KI-Assistenten für Unternehmen auf Basis von ChatGPT, die den Mitarbeitern einen einfachen und direkten Zugriff auf interne Ressourcen über ein Chat-Interface ermöglichen (Company GPT) sowie KI-Agenten, um komplexe Aufgaben zu automatisieren und Prozesse zu optimieren. + +Durch den Einsatz von interdisziplinären Teams bestehend aus erfahrenen und zertifizierten Spezialisten aus den Bereichen IoT Plattform Entwicklung, Web und native App Entwicklung, Elektronik- und Embedded Entwicklung, Secure Device Connectivity sowie Ideation und UX/UI Design sichern wir den Erfolg unserer Projekte.",2006,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67155b653a57d60001dbbf7d/picture,"","","","","","","","","" +Elba Technologies,Elba,Cold,"",23,information technology & services,jan@pandaloop.de,http://www.elba-tech.com,http://www.linkedin.com/company/elba-technologies,"","",41 Schulze-Delitzsch-Strasse,Stuttgart,Baden-Wuerttemberg,Germany,70565,"41 Schulze-Delitzsch-Strasse, Stuttgart, Baden-Wuerttemberg, Germany, 70565","it services & it consulting, ai content creation, e-commerce solutions, ai, intelligent document processing, keyword discovery, automation, mobile app development, computer systems design and related services, consulting, robotics process automation, ai-powered content generation, ai in hr processes, data security, business process management, software development, e-commerce, process automation, ai development, digital marketing, ai in financial services, ai for customer onboarding, b2b, data analytics, homomorphic encryption for ai, ui/ux design, homomorphic encryption, digital transformation, ai for financial reconciliation, data analytics & bi, ai in healthcare, workflow automation, process optimization, custom software development, landing page optimization, services, information technology and services, data analytics and business intelligence, search engine optimization, customizable document processing, web & app development, web development, ai-driven digital marketing, process mining, biometric customer verification, healthcare, finance, information technology & services, consumer internet, consumers, internet, computer & network security, marketing & advertising, seo, search marketing, marketing, health care, health, wellness & fitness, hospital & health care, financial services",'+49 173 4602567,"SendInBlue, Outlook, Blue Host, Atlassian Cloud, Slack, Vimeo, Google Dynamic Remarketing, Google Tag Manager, Nginx, DoubleClick, Cedexis Radar, Mobile Friendly, DoubleClick Conversion, Adobe Media Optimizer, WordPress.org, Android, Remote, AI, Microsoft SQL Server Reporting Services, SQL","","","","","","",69bab5b0b4ad4200013bc0be,7375,54151,"Elba Technologies is a growth-stage IT services company based in Stuttgart, Germany, founded in 2018. The company specializes in Robotic Process Automation (RPA), Artificial Intelligence (AI), and digital solutions aimed at enhancing business efficiency and driving digital transformation. With a team of experienced engineers, Elba Technologies operates offices in Stuttgart, Prishtina, and Sofia, and has representatives in the US and Ireland. + +Elba offers a wide range of services, including RPA and intelligent automation solutions, AI and machine learning expertise, digital marketing tools, software development, and consulting for digital transformation. The company serves B2B clients across various industries such as Telecom, Financial Services, Facility Management, and Energy, having completed over 40 projects in collaboration with industry leaders. Elba Technologies is committed to optimizing productivity and profitability for its clients while emphasizing core values like agility, collaboration, and continuous learning.",2018,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e15a1d569b2c0001478eb2/picture,"","","","","","","","","" +SECAI School of Embedded Composite AI,SECAI School of Embedded Composite AI,Cold,"",11,research,jan@pandaloop.de,http://www.secai.org,http://www.linkedin.com/company/secai-zuse-school,"","","",Dresden,Saxony,Germany,"","Dresden, Saxony, Germany","ai compute paradigms, intelligent medical devices, nanoelectronics, composite ai, artificial intelligence, digital medicine, composite ai machine learning, composite ai symbolic ai, societal framwork for ai, bioinformatics, data science, ai methods for health, electronics, machine learning, research services, information technology & services, biotechnology, computer hardware, hardware","","Apache, Mobile Friendly, Bootstrap Framework, WordPress.org","","","","","","",69bab5b0b4ad4200013bc0c1,"","","The Konrad Zuse School of Embedded Composite Artificial Intelligence (SECAI) is a graduate school established in July 2022, focusing on AI research and education. It is a collaborative initiative led by TU Dresden and Leipzig University, along with the University Hospital Carl Gustav Carus Dresden and other partners. Funded by the German Academic Exchange Service (DAAD) through December 2027, SECAI aims to integrate academic studies with practical applications in various fields. + +SECAI emphasizes two main areas: Composite AI, which develops hybrid methods combining different AI approaches, and Embedded AI, which focuses on integrating AI algorithms into specialized microelectronics and intelligent devices. The school offers scholarships for master's and PhD students, enhances AI curricula, and supports research projects that address interdisciplinary challenges. SECAI collaborates with several regional high-tech centers and international institutions to foster innovation and knowledge transfer in AI.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e40a9e9fd08300017fa68d/picture,"","","","","","","","","" +PAICON,PAICON,Cold,"",20,information technology & services,jan@pandaloop.de,http://www.paicon.com,http://www.linkedin.com/company/paiconcom,"","",60 Kurfuersten-Anlage,Heidelberg,Baden-Wuerttemberg,Germany,69115,"60 Kurfuersten-Anlage, Heidelberg, Baden-Wuerttemberg, Germany, 69115","healthtech, diagnosticai, digitalhealth, sciencemedicine, gdpr, technology, information & media, data security, inclusive cancer data, multi-omics data, artificial intelligence, healthcare collaboration, cancer diagnostics, retrospective analysis, ai-powered diagnostics, patient stratification, biomarker discovery, diagnostic ai models, global cancer dataset, diverse datasets, real-world data, ai model training, clinical hypothesis generation, inclusive oncology ai, healthcare data integration, cancer research, ethical ai sourcing, multimodal cancer data, ai infrastructure, global oncology datasets, research and development in the physical, engineering, and life sciences, medical research, b2b, ai-driven drug discovery, data curation, cancer ai, cancer model generalization, global cancer ai, ethically sourced data, data harmonization, biotechnology, population-aware ai, precision medicine, gdpr compliance, collaborative research, clinical validation, clinical workflows, ai model benchmarking, global health equity, healthcare, ai for low-resource settings, medical data diversity, diagnostic algorithms, services, ai models, biomarker support, ai for underserved populations, democratizing cancer care, ethnic diversity in data, ethical sourcing, multi-ethnic datasets, regulatory compliance, cancer types, predictive modeling, information technology & services, computer & network security, health care, health, wellness & fitness, hospital & health care","","Route 53, Outlook, Slack, Hubspot, Mobile Friendly, Bootstrap Framework, reCAPTCHA, Apache, WordPress.org, Remote, AI, Android, React Native, Node.js",5000000,Venture (Round not Specified),"",2022-11-01,"","",69bab5b0b4ad4200013bc0d3,8731,54171,"PAICON is a Heidelberg-based digital health company founded by physicians and researchers. The company aims to create a digitized environment that promotes entrepreneurship and global collaboration in healthcare. PAICON focuses on supporting decision-making for doctors and medical researchers through a secure health-intelligence platform that utilizes artificial intelligence and machine learning. + +Specializing in oncology and cancer diagnostics, PAICON has developed a comprehensive cancer dataset containing over 620TB of harmonized data from more than 128,000 cases across 50 countries. This dataset serves as the foundation for various diagnostic AI solutions. PAICON offers end-to-end services, including data infrastructure, biomarker discovery, integrated analysis, and the development of diagnostic algorithms. Their clients include pharmaceutical companies, academic institutions, and healthcare providers, with notable partners such as the German Cancer Research Center and University Hospital Heidelberg. + +PAICON operates with ISO 27001 certified infrastructure and complies with GDPR regulations, ensuring the security and privacy of medical data. The company has received significant investment from Bertelsmann Investments, enabling further development of its digital solutions.",2011,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e96b29f20a4000016dc00b/picture,"","","","","","","","","" +paiqo,paiqo,Cold,"",57,information technology & services,jan@pandaloop.de,http://www.paiqo.com,http://www.linkedin.com/company/paiqo,"","","",Paderborn,North Rhine-Westphalia,Germany,33106,"Paderborn, North Rhine-Westphalia, Germany, 33106","data science, it services & it consulting, customer journey optimization, data & analytics consulting, sap data migration, energy & utilities, predictive maintenance, power bi, cloud computing, services, datenmigration, demand forecasting, next best offer, retail, mlops, databricks, data strategy, consulting, data lakehouse, predictive analytics, visual inspection, data security, data-driven decision making, anomaly detection, business intelligence, data infrastructure, cloudbasierte datenplattformen, data analytics, data mesh, machine learning, churn prediction, data screening, financial services industry, openai & chatgpt, data & analytics platform, data governance, microsoft azure, data management, manufacturing, data thinking, fraud detection, computer systems design and related services, ki-implementierung, b2b, ki & data science, predictive clv, financial services, finance, energy_utilities, information technology & services, enterprise software, enterprises, computer software, computer & network security, analytics, artificial intelligence, mechanical or industrial engineering","","Outlook, Slack, Adobe Media Optimizer, Cedexis Radar, Mobile Friendly, Apache, reCAPTCHA, WordPress.org, Vimeo, Azure AI Search, Azure OpenAI Service, Copilot, Delta Lake, Langchain, LangGraph, Microsoft Fabric, Azure Synapse Analytics, Unity Catalog, Azure Purview, Delta, Less, .NET, AWS PrivateLink, Azure Key Vault, Azure Active Directory, Databricks, Microsoft Azure Monitor, Azure Devops, Azure Data Factory, Bicep, GitHub Actions, Micro, Terraform, Docker, Kubernetes","","","","","","",69bab5b0b4ad4200013bc0bf,7371,54151,"paiqo GmbH is a consulting firm based in Paderborn, Germany, specializing in AI, machine learning, data science, and data platform solutions. With a presence across the DACH region, the company focuses on helping businesses leverage data for competitive advantages through digital transformation. As a Microsoft partner, paiqo collaborates with industry leaders like Microsoft and Databricks to deliver innovative solutions. + +The firm offers a range of services, including AI and machine learning consulting, custom AI solutions, and the design of cloud-based data platforms. They provide tools for demand forecasting, process automation, and intelligent data management. paiqo serves various industries, including manufacturing, retail, energy, and financial services, with a commitment to optimizing business processes and enhancing profitability through data-driven insights.",2019,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6873bb09c15f380001f711a9/picture,"","","","","","","","","" +DialogShift,DialogShift,Cold,"",15,information technology & services,jan@pandaloop.de,http://www.dialogshift.com,http://www.linkedin.com/company/dialogshift,"","",76 Rheinsberger Strasse,Berlin,Berlin,Germany,10115,"76 Rheinsberger Strasse, Berlin, Berlin, Germany, 10115","customer experience, customer communication, conversational design, conversational interfaces, guest relations, conversational ai, customer engagement, chatbot, it services & it consulting, ki-gestützte review-antworten, guest messaging plattformen, multi-channel kommunikation, automatisierung hotelservice, hotel automatisierungslösungen, ki-gestützte upselling-tools, generative ki, datenextraktion ki, multi-sprachen ki, automatisierte anfragebearbeitung, automatisierte buchungslinks, tägliche datenaktualisierung, ki-modelle von openai und anthropic, datenschutz und dsgvo, guest messaging ai, ki für gästebetreuung, ki-modelle von openai, natural language processing, hotel-charakter in datenbank, booking system schnittstellen, hotelbranche digitalisierung, hospitality, lead generation, email automation, ki-gestützte buchungslinks, chatbot hotel, proaktive gästekontakte, booking system integration, telefon ki hotel, chatbot ai, ki-gestützte preisoptimierung, hotel automatisierung, multi-property ki, automatisierte buchungsprozesse, b2b, telefon ai, automatisierte gästebetreuung, kundenzufriedenheit steigern, booking engine integration, ki für hotellerie, information technology, gästekommunikation automatisieren, hotel-charakter in ki, ki für hotelgruppen, business service centers, ki-modelle openai, software development, hotel-backend management, booking engine schnittstellen, hotel-workflow automatisierung, multi-channel gästekommunikation, automatisierte gästekommunikation, ki-tools für hotels, d2c, direktbuchungen steigern, e-mail automatisierung hotel, services, content management integration, content-management-systeme, mehrsprachige gästekommunikation, e-mail ai, dsgvo-konforme ki-lösungen, content management system, ki-basierte gästekommunikation, dsgvo-konformität, ki-gestützte gästebetreuung, hotel-ki, automatisierte gästebewertungen, kundensupport ki, customer service, kundenservice ki, distribution, transportation_logistics, information technology & services, artificial intelligence, leisure, travel & tourism, marketing & advertising, sales",'+49 30 40041715,"Cloudflare DNS, Route 53, Postmark, SendInBlue, Gmail, Google Apps, Helpscout, React Redux, React, Webflow, Slack, Mobile Friendly, Google Tag Manager, Google Font API, Android, Remote, AI, Node.js, React Native, IoT","","","","","","",69bab5b0b4ad4200013bc0c8,7011,56143,"DialogShift is a Berlin-based IT services and consulting company that specializes in AI-powered guest communication solutions for the hospitality industry. Founded in 2018, the company has around 12 employees and positions itself as the German market leader in this field. DialogShift supports approximately 1000 hotels, ranging from large chains to small family-run properties, by simplifying hotel-guest interactions through AI and conversational bots. + +The company offers a unified AI platform that automates guest communication across various channels, enhancing productivity and increasing direct bookings. Key features include a multilingual chatbot that operates 24/7, automated email responses, and a review management system. DialogShift emphasizes data security and GDPR compliance, and it integrates with platforms like Apaleo and hotelkit. With a focus on improving the guest experience, DialogShift aims to streamline communication processes and boost guest satisfaction.",2018,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69625b0821dc080001f5d521/picture,"","","","","","","","","" +Synergeticon GmbH,Synergeticon,Cold,"",21,information technology & services,jan@pandaloop.de,http://www.synergeticon.com,http://www.linkedin.com/company/synergeticon,"","",22 Hein-Sass-Weg,Hamburg,Hamburg,Germany,21129,"22 Hein-Sass-Weg, Hamburg, Hamburg, Germany, 21129","software development, data security, process automation, video analysis, data management, real-time object recognition in video, data structure analysis, predictive analytics, data-driven insights, sensor technology, data science, real-time processing, autonomous decision-making, efficiency edge, system integration, ai automation, data analysis, sensor integration, workflow automation, manufacturing, autonomous robot understanding, predictive maintenance for old machines, custom ai system development, sensor data integration, drone monitoring, robotics, object recognition, real-time data interpretation, ai solutions, mask recognition, distribution, temperature detection, industrial ai solutions, process optimization modules, mask-wearing compliance systems, data interpretation, anonymized image processing, computer vision, predictive maintenance, computer systems design and related services, process transparency, modular systems, anonymized image recognition, efficiency improvement, b2b, information technology & services, computer & network security, enterprise software, enterprises, computer software, data analytics, mechanical or industrial engineering, artificial intelligence",'+49 40 248595275,"Outlook, Microsoft Office 365, Mobile Friendly, Apache, WordPress.org, Remote, Render, AI, Linux OS, IoT, React Native, Android, Docker, Data Analytics","",Merger / Acquisition,"",2026-01-01,"","",69bab5b0b4ad4200013bc0cb,3825,54151,"Synergeticon GmbH is a software development and industrial automation company based in Hamburg, Germany. Founded in 2015, it specializes in AI solutions, intelligent digitalization, and custom software aimed at optimizing manufacturing and operational processes. With a focus on Industry 4.0 technologies, Synergeticon serves sectors such as aviation, shipping, manufacturing, transportation, logistics, and supply chain. + +The company offers tailored AI-driven solutions, including its Predict Engine for data structuring and predictive maintenance, a smart platform for workforce assistance in quality control and assembly, and image processing technology for anonymized object detection. Synergeticon emphasizes measurable outcomes, such as significant reductions in errors and improvements in efficiency. It collaborates with industry leaders like Airbus, Lufthansa Technik, and Siemens, and is part of the ZAL Techcenter and Hamburg Aviation cluster.",2015,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66dfe3cfbae21c0001b43e31/picture,"","","","","","","","","" +Gretchen AI,Gretchen AI,Cold,"",12,information technology & services,jan@pandaloop.de,http://www.gretchen-ai.com,http://www.linkedin.com/company/gretchen-ai,"","","",Berlin,Berlin,Germany,10559,"Berlin, Berlin, Germany, 10559","it system custom software development, video analysis, content verification, real-time analytics, knowledge graph integration, audio analysis, ai for media transparency, ai agents, enterprise ai solutions, cybersecurity, explainable ai, image manipulation detection, information technology and services, content automation, media bias detection, artificial intelligence, ai-driven insights, synthetic media detection, media authenticity verification, business intelligence, fact-checking automation, disinformation detection, multimodal ai analysis, deepfake detection, safety and security in ai, public sentiment analysis, b2b, computer systems design and related services, ai-powered media monitoring, deepfake forensics, government, services, media and content verification, media analysis, ai for misinformation prevention, content creation, multimedia content verification, natural language processing, media manipulation detection, information technology & services, analytics","","Slack, Mobile Friendly, Google Font API, Google Tag Manager, WordPress.org","","","","","","",69bab5b0b4ad4200013bc0d1,7375,54151,"Gretchen AI is your single entry point entry for cutting-edge AI Agent solutions on information search, verification, knowledge and business intelligence. Analyze public relations, serve customer support or dismantle false information and deepfake - all with the ease of a simple question.",2024,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67d8f60fb3cce70001783531/picture,"","","","","","","","","" +Biomax Informatics AG,Biomax Informatics AG,Cold,"",26,information technology & services,jan@pandaloop.de,http://www.biomax.com,"",https://www.facebook.com/digital.tcg/,"",2 Robert-Koch-Strasse,Planegg,Bavaria,Germany,82152,"2 Robert-Koch-Strasse, Planegg, Bavaria, Germany, 82152","semantic data integration, knowledge management, sequence analysis, bioinformatics software, health informatics, synthetic biology, systems biology, systems medicine, life science, brain science, semantic search, precision medicine, patientoriented care, digital health, software development, morphometry, data harmonization, data integration, research data connectivity, neuroxm, clinical data management, biotech platforms, healthcare analytics, information technology, biotech, research and development in the physical, engineering, and life sciences, nanotoxicology, nanosafety, biomedical literature, industrial biotech solutions, connectomics, ontology-based search, data connectivity, biotech research tools, neuroimaging, genomics, predictive modeling, semantic technologies, healthcare, bioxm environment, biomarker discovery, nanotoxicology research, digital transformation, clinical trial support, variants analysis, b2b, life sciences, brain science suite, services, machine learning, biomarkers, ai algorithms, biotechnology, connectomics data, multimodal imaging, pathways analysis, brain imaging biomarkers, health, wellness & fitness, information technology & services, enterprise software, enterprises, computer software, health care, hospital & health care, artificial intelligence",'+49 89 8955740,"Outlook, Microsoft Office 365, Amazon AWS, Atlassian Cloud, Slack, Mobile Friendly, WordPress.org, Bootstrap Framework, Google Tag Manager, Apache, Google Analytics, Vimeo, Google Font API, Nginx, Data Analytics, AI",2785570,Venture (Round not Specified),2785570,2004-10-13,32000000,"",69bab5b0b4ad4200013bc0d2,7375,54171,"Biomax Informatics AG, now operating as LabVantage-Biomax GmbH, is a German software company based in Planegg, near Munich. Founded in 1997, it specializes in bioinformatics and knowledge management solutions for the life sciences industry. The company employs around 50 professionals, including life scientists, data scientists, and software developers. Biomax holds ISO 9001 and ISO 27001 certifications, demonstrating its commitment to quality management and information security. + +Biomax develops customized bioinformatics solutions and standard products using the BioXM™ technology platform. This platform offers a configurable Knowledge Management Environment that integrates data, tools, and knowledge resources. Key features include data integration, semantic search, big data mining, and tools for generating connectivity networks and biomarker identification. The company serves various sectors, including biotech, pharmaceuticals, agriculture, food, and chemicals, as well as research institutes, focusing on enhancing decision-making and innovation in life science product development.",1997,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/65a9f0cc06478a0001e2ecee/picture,"","","","","","","","","" +Talentship,Talentship,Cold,"",96,information technology & services,jan@pandaloop.de,http://www.talentship.io,http://www.linkedin.com/company/talentshipio,"","","",Cologne,North Rhine-Westphalia,Germany,"","Cologne, North Rhine-Westphalia, Germany","managed talent, next generation offshoring, it consulting services, managed services, managed centers, ai development, top tech teams, managed teams, interim cto services, ki consulting, software development, scale up it organizations, digitalization, top tech talent, ki services, it services & it consulting, it staffing, software development lifecycle, hybrid outsourcing, it-projektmanagement, top it talent india, cybersecurity, deutsche qualität, european it leadership, it project leadership, it-consulting, offshore-teams, digital transformation, high-performance teams, data & bi development, it-talentsourcing, offshore development, team augmentation, it service delivery, india it market, it resource management, it team building, european ctos, cto-leadership, it workforce solutions, computer systems design and related services, iso 27001 & iso 9001, remote agile teams, offshore cto support, nearshore development, top 5% it-fachkräfte, saas development, data analytics, services, it consulting, software engineering, agile methodology, cloud & devops, kosteneffizienz, cost optimization, hybrid offshoring, offshore software modernization, german-style quality offshore, b2b, top 5% engineers india, legacy modernization, offshore software development, it talent data-driven selection, hybrid offshore model, ai & automation, remote teams, high-performance offshore culture, it outsourcing, it infrastructure, it talent acquisition, cloud computing, consulting, remote management, quality assurance, information technology and services, information technology & services, staffing & recruiting, management consulting, outsourcing/offshoring, enterprise software, enterprises, computer software","","Route 53, Rackspace MailGun, Outlook, Hubspot, WordPress.org, Mobile Friendly, Ubuntu, Apache, Google Tag Manager, Typekit, Android, Remote","","","","","","",69b2d6c44396f7000180e5bf,7371,54151,"Talentship operates as a multifaceted organization with a focus on HR consulting, recruiting, and career coaching. As a Woman Owned Small Business (WOSB) in a HUB zone, Talentship LLC connects talent with leadership, leveraging over 20 years of experience in government contracting and commercial sectors. The company is dedicated to driving business and career growth through skilled recruiting and staffing services, including finding rare talent and managed teams. + +Talentship.io specializes in tech talent and team scaling, providing access to the top 5% of engineers led by experienced European CTOs. This service emphasizes cost-effective scaling and efficiency, with a methodology that enhances quality output while reducing costs. Additionally, Talentship.com offers a performance management platform designed to improve team performance and development, providing alternatives to traditional performance reviews. The company also supports training and development, career coaching, and proposal assistance for government contracting.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69ac3cba45172b00019f3ddb/picture,"","","","","","","","","" +Agentiq World & Chatbot Summit,Agentiq World & Chatbot Summit,Cold,"",14,information services,jan@pandaloop.de,http://www.chatbotsummit.com,http://www.linkedin.com/company/chatbotsummit,https://www.facebook.com/chatbotsummit/,https://twitter.com/chatbotsummit,"",Berlin,Berlin,Germany,"","Berlin, Berlin, Germany","chatbots, generative ai, conversational experiences, voice assistants, machine learning, nlp, large language models, artificial intelligence, chatgpt, customer experience, agent assist, agentic ai, machine learning & conversational ai, digital transformation, customer service, conference expo, voice ai, conversational ai, contact center transformation, ai agents, agentic commerce, retail, ai scalability, ai research, software development, ai governance, ai industry, responsible ai standards, ai workshops, natural language processing, ai compliance, ai conference, ai automation workflows, information technology and services, ai security testing, ai in retail, ai event, ai automation, software publishers, financial services, b2b, ai in customer service, agentic ai platform, ai innovation, ai in enterprise, ai solutions provider, ai in insurance, customer engagement, ai summit, ai in financial services, ai security & governance, enterprise ai, ai in healthcare, ai solutions, ai networking, ai in banking, user experience, ai deployment, ai product design, ai ethics, services, ai strategy, ai data frameworks, ai in commerce, verifiable ai profiles, ai security, ai development, e-commerce, finance, consumer products & retail, information technology & services, ux, consumer internet, consumers, internet","","Gmail, Google Apps, Google Cloud Hosting, Stripe, Typeform, Slack, Varnish, AI","","","","","","",69bab5b0b4ad4200013bc0c7,7375,51321,"Chatbot Summit is a prominent international conference series focused on Conversational AI, Generative AI, and Agentic AI. Founded in 2016 by Sunrize AI, the summit aims to enhance natural language interactions and promote education, collaboration, and innovation among professionals from various sectors, including enterprises, tech companies, startups, and academia. Headquartered in Berlin, Germany, with connections to Tel Aviv, Israel, the summit attracts over 10,000 leaders from around the world. + +The event spans multiple days and features a variety of formats, including hands-on workshops, keynote speeches, panel discussions, and B2B meetings. Participants engage in skill-building sessions and explore topics such as AI-driven customer experience and transformation strategies. The summit also offers networking opportunities, peer-to-peer discussions, and a startup program to foster community integration. With a focus on practical skills and business opportunities, Chatbot Summit serves as a catalyst for digital transformation through AI.",2016,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670ae8f9cc2d4b00011718f9/picture,"","","","","","","","","" +fuseki,fuseki,Cold,"",31,information technology & services,jan@pandaloop.de,http://www.fuseki.com,http://www.linkedin.com/company/fuseki,"","",32 Schuermannstrasse,Essen,North Rhine-Westphalia,Germany,45136,"32 Schuermannstrasse, Essen, North Rhine-Westphalia, Germany, 45136","datenanalyse, datenverarbeitung, datengetriebene loesungen, energiewirtschaft, software engineering, industrie, kuenstliche intelligenz, wasserwirtschaft, itconsulting, it services & it consulting, risk management, iot, automatisierte schadenanalyse, industrie 4.0, predictive maintenance für bergbaumaschinen, nachhaltigkeit, smart city lösungen, iot-plattform, digital transformation, sensorintegration, predictive analytics, zeitreihendatenanalyse, technologieberatung, business intelligence, medizinische hilfsmittel empfehlung, condition monitoring, smart systems, künstliche intelligenz, software development, government, datenbasierte asset-management, data science, innovationsmanagement, consulting, smart monitoring, industrial automation, schadenserkennung container, artificial intelligence, it-consulting, water and wastewater management, prozessautomatisierung, data analytics, forschung & entwicklung, analytics, kommunale digitalisierung, energieprognosen, data security, digitale wasserwirtschaft, energiehandel plattform, automatisierte kundenanfragen, workflow automation, big data, digitalisierungsplattformen, b2b, computer systems design and related services, hochwasserschutz ki, machine learning, starkregenvorhersage mit deep learning, industrieautomation, cloud computing, energy, ki-gestützte prognosen, industrie 4.0 lösungen, process optimization, information technology and services, energieeffizienz, echtzeitdatenanalyse, ki-basierte warnsysteme, it-infrastruktur, automatisierung, services, datenvisualisierung, branchenspezifische software, energy management, softwareentwicklung, predictive maintenance, finance, education, manufacturing, distribution, information technology & services, enterprise software, enterprises, computer software, mechanical or industrial engineering, computer & network security, oil & energy, financial services",'+49 201 737230,"Cloudflare DNS, Outlook, Microsoft Office 365, CloudFlare Hosting, Slack, Active Campaign, Google Tag Manager, WordPress.org, Mobile Friendly, Data Analytics, Android, Remote, AI, Lytics, AWS SDK for JavaScript, TypeScript, Docker, Kubernetes",440000,Other,440000,2022-10-01,"","",69bab5b0b4ad4200013bc0cc,7371,54151,"Wir sind die Experten für Künstliche Intelligenz, Data Science und Datenanalyse. Seit 25 Jahren begleiten unsere Teams Mittelständler und DAX 40 Unternehmen, insbesondere aus der Industrie, Energie- und Wasserwirtschaft, in allen digitalen Herausforderungen.",1998,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f0b3d14ae32b0001a9010a/picture,"","","","","","","","","" +Teclead Ventures,Teclead Ventures,Cold,"",21,information technology & services,jan@pandaloop.de,http://www.teclead-ventures.de,http://www.linkedin.com/company/teclead-ventures,"","",6 Wilhelmine-Gemberg-Weg,Berlin,Berlin,Germany,10179,"6 Wilhelmine-Gemberg-Weg, Berlin, Berlin, Germany, 10179","itarchitektur, technologie coaching, itsecurity, software development, it consulting, it services & it consulting, enterprise software, energieeffizienz, branchenfokus, energieoptimierung, battery technology, system architecture, skalierung von unternehmen, energiehandel ai, energiebranche, user experience, energie-intelligenz, venture building, web development, artificial intelligence, energy market, marktinnovationen, automatisierung, technologie-stack, innovative technologien, energie-cloud-lösungen, unternehmensgründung, batteriespeicher, hybrid-arbeitsmodell, tech consulting, wissensaustausch, venture capital and startup incubation, services, energie-trading, energy storage, energie-datenanalyse, real-time data, innovation labs, cloud computing, agile methoden, weiterbildung, data analytics, api integration, energie-trading-plattformen, business innovation, energie-marktplatz, technologieberatung, tech start-ups, webentwicklung, b2b, big data, cloud infrastructure, batteriespeicherentwicklung, versicherungen, energieinfrastruktur, information technology and services, public sector, machine learning, digital transformation, nachhaltigkeit, ki & automatisierung, cloud platforms, digital ecosystems, energie-asset-management, customer engagement, unterstützung für start-ups, cloud-lösungen, predictive analytics, digital products, government, consulting, unternehmenskultur, computer systems design and related services, innovationsförderung, web applications, energieprognosen, energie-management-systeme, mobile app development, process automation, ki-anwendungen, customer-centric solutions, softwareentwicklung, softwarearchitektur, risk management, data management, technology consulting, energie-it-lösungen, smart energy solutions, prozessautomatisierung, custom software, d2c, personalentwicklung, nachhaltige energiewende, entwicklerteam, remote work, branchenvielfalt, start-up unterstützung, rekrutierungstechnologie, data-driven decisions, systemintegration, customer experience, system integration, energie-automatisierung, agile development, insurance, datenanalyse, energieprojekte, geschäftsmodelle, venture builder, software engineering, energy management, cloud solutions, maßgeschneiderte software, e-commerce, cybersecurity, energy, energie-storage-lösungen, künstliche intelligenz, energie-software, digitalisierungsstrategie, energiehandel, renewable energy, retail, finance, manufacturing, distribution, energy&utilities, information technology & services, management consulting, enterprises, computer software, ux, oil & energy, internet infrastructure, internet, consumer internet, consumers, clean energy & technology, environmental services, renewables & environment, financial services, mechanical or industrial engineering",'+49 30 22183613,"Gmail, Google Apps, Google Tag Manager, reCAPTCHA, Mobile Friendly, Node.js","","","","","","",69bab5b0b4ad4200013bc0cd,7375,54151,Wir agieren in den Gebieten IT-Consulting und technologisches Coaching.,2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670cb151753213000172558f/picture,"","","","","","","","","" +idalab,idalab,Cold,"",11,management consulting,jan@pandaloop.de,http://www.idalab.de,http://www.linkedin.com/company/idalab-gmbh,"","",68 Potsdamer Strasse,Berlin,Berlin,Germany,10785,"68 Potsdamer Strasse, Berlin, Berlin, Germany, 10785","data strategy, predictive analytics, mathematical modeling, machine learning, advanced analytics, artificial intelligence, big data, data science, business consulting & services, pharmaceuticals, ai for healthcare diagnostics, proteomics data analysis, ai strategy development, medtech, ai-powered drug target identification, services, ai regulatory strategy, ai in synthetic biology, cloud computing for biotech, ai for proteomics, ai for medical devices, ai for precision medicine, literature mining ai, market access ai, healthcare technology, large language models, medical devices, ai-powered literature mining, ai for medical imaging, research and development in the physical, engineering, and life sciences, clinical data interpretation, regulatory compliance ai, ai solutions, generative ai in biotech, drug discovery ai, ai for legacy systems, biotechnology, consulting, biotech, ai for r&d acceleration, medical device ai, workflow automation, ai strategy, data analysis pipelines, ai for biomarker discovery, ai in digital pathology, healthcare, generative ai, cloud computing, drug target discovery, ai for market access, b2b, pharma, ai for regulatory submissions, ai for hta dossiers, ai for personalized therapy, natural language processing, regulatory compliance, ai for healthcare, healthcare ai solutions, ai for clinical trial optimization, education, information technology & services, enterprise software, enterprises, computer software, management consulting, medical, hospital & health care, health care, health, wellness & fitness",'+49 30 84424500,"Gmail, Google Apps, Outlook, Squarespace ECommerce, Typekit, Linkedin Marketing Solutions, Mobile Friendly, Google Tag Manager, Vimeo, Google Analytics, AI",101015,Other,101015,2016-11-21,"","",69bab5b0b4ad4200013bc0ce,8731,54171,"idalab is an artificial intelligence consulting firm based in Berlin, Germany, specializing in the life science, healthcare, biotech, pharma, and medtech sectors. Founded in 2016, the company employs 17 people and generated $5 million in annual revenue as of 2023. idalab's mission is to help organizations leverage AI technology to tackle complex challenges in these industries. + +The firm offers a range of AI consulting services, including strategic orientation, proof-of-value design, and the development of AI-enabled solutions. They also focus on integrating AI into existing healthcare IT systems and ensuring regulatory compliance. idalab has created specialized AI-driven solutions, such as an Emerging Technology Radar for pharma R&D and a Target Discovery Engine for clinical-stage biotech. Their client portfolio includes multinational pharma companies, medical device manufacturers, and clinical-stage biotech firms, reflecting their commitment to practical and effective AI implementation.",2016,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/677e64f2b3ede50001e6b009/picture,"","","","","","","","","" + +INTELLEGAM,INTELLEGAM,Cold,"",18,information technology & services,jan@pandaloop.de,http://www.intellegam.com,http://www.linkedin.com/company/intellegam,"","",10 Giselastrasse,Munich,Bavaria,Germany,80802,"10 Giselastrasse, Munich, Bavaria, Germany, 80802","ai, api, information, nlp, platform, search, data, openai, ki, dsgvo, assistant, tech, generativ ai, datascience, saas, genai, german, saclable, customer support, europe, scaling, it system data services, ai for real estate, european data centers, natural language processing, ai integration in workflows, data integration, ai-driven process support, ai in manufacturing, ai for insurance, nlp models, ai for technical support, b2b, computer systems design and related services, customer support automation, software development, internal knowledge management, 24/7 customer service, ai compliance, process optimization, knowledge base automation, interface design, multilingual support, automated support solutions, ai knowledge management, consulting, customer service, knowledge management, ai assistants, ai self-service, artificial intelligence, information technology and services, services, manufacturing, information technology & services, computer software, enterprise software, enterprises, mechanical or industrial engineering",'+49 5257 018367,"Outlook, Microsoft Office 365, CloudFlare Hosting, Webflow, Hubspot, Slack, Android, Circle, AI, Remote",6710000,Merger / Acquisition,6710000,2025-02-01,"","",69bab5a92f92db0001071aaf,7375,54151,"Intellegam GmbH is a European AI startup founded in March 2023 by Marc Gehring, Tobias Hetfleisch, and Hannes Burrichter, with Franz Wimmer joining later. The company focuses on B2B generative AI technology that converts unstructured data into actionable insights, primarily for the retail automotive sector. + +Intellegam develops custom AI agents that provide automated, multilingual responses based on a company's information. Their solutions include customer support for contact centers, internal support for service technicians, and knowledge management systems. The company has delivered over 50 AI assistants, serving more than 1,000 daily users and handling over 500,000 requests. Their flagship Repair AI solution enhances repair data interpretation and customer experience. Intellegam also offers consulting, process integration, data quality improvement, and interface design services to optimize AI implementation.",2023,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68718167a20ff30001d3327c/picture,"","","","","","","","","" +AMAI GmbH,AMAI,Cold,"",21,information technology & services,jan@pandaloop.de,http://www.am.ai,http://www.linkedin.com/company/amai-gmbh,"","",39 Schwarzwaldstrasse,Karlsruhe,Baden-Wuerttemberg,Germany,76137,"39 Schwarzwaldstrasse, Karlsruhe, Baden-Wuerttemberg, Germany, 76137","natural language understanding, computer vision, deep learning, engineering, machine learning, big data, artificial intelligence, consulting, data science, software development, b2b, ai services, information technology and services, ki-compliance, ki-modelle, ai in logistics, ki-deployment, ai for predictive maintenance, mlops, ki-transformation, ki-implementierung, natural language processing, ai development, ai in industry, ai integration, ki-architektur, ai for business, ai performance, ai model development, management consulting, ai business case analysis, ai for risk management, ai projects, ki-skalierung, ai deployment, ai in energy, ki-entwicklung, ai consulting, ai for supply chain, cloud computing, ai governance, ai in healthcare, ai in pharma, ai in automotive, use case-katalog, ki-projektmanagement, ai assessment, ki-projekte, system integration, ki-beratung, ai implementation, ai use case workshops, ai strategy, ai optimization, ai roadmap, ki-assessment, ai in public sector, ki-roadmap, ai automation, ai for customer insights, ai in finance, ai scalability, explainable ai, ai use case evaluation, data analysis, ai for process automation, ai business case, ai use cases, services, ai project management, ai prototyping, ki-wissenstransfer, predictive analytics, ai compliance, ki-strategie, ai solutions, ai regulation, computer systems design and related services, healthcare, finance, information technology & services, enterprise software, enterprises, computer software, data analytics, health care, health, wellness & fitness, hospital & health care, financial services",'+49 721 27664476,"Cloudflare DNS, Outlook, Microsoft Office 365, VueJS, Netlify, React, Hubspot, Mobile Friendly, reCAPTCHA, Remote, AI, AWS Trusted Advisor, Microsoft Azure Monitor, Databricks, Docker, Apache Kafka, RabbitMQ, ChatGPT, Spark, Kubernetes, Red Hat OpenShift, Terraform, AWS CloudFormation, Delta Lake","","","","","","",69bab5a92f92db0001071ab3,7371,54151,"AMAI GmbH is an IT project house based in Karlsruhe, Germany, specializing in artificial intelligence (AI) and machine learning (ML). Founded in 2018, the company focuses on transforming AI concepts into scalable applications, emphasizing strategy and modern ML engineering. With a team of 13-22 employees, AMAI serves European organizations and is committed to responsible and explainable AI. + +The company offers comprehensive AI consulting and technical support, covering everything from ideation to deployment. Key services include AI strategy development, model development, system integration, and specialized topics like computer vision and natural language processing. AMAI develops custom, production-ready AI solutions tailored to client needs, including automated text recognition, real-time AI analysis, and robust voice recognition systems. Their expertise spans various industries, including automotive, finance, healthcare, and logistics, with a focus on delivering practical AI solutions that drive real-world results.",2018,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69ac6c9e0aaa6f00012e5f2e/picture,"","","","","","","","","" +ECODYNAMICS GmbH,ECODYNAMICS,Cold,"",12,management consulting,jan@pandaloop.de,http://www.ecodynamics.io,http://www.linkedin.com/company/ecodynamics-gmbh,"","",9 Rheinpromenade,Monheim am Rhein,Nordrhein-Westfalen,Germany,40789,"9 Rheinpromenade, Monheim am Rhein, Nordrhein-Westfalen, Germany, 40789","platform economy, plattformoekonomie, digital business models, ecosystem organization, digital transformation, generative ai, openai, ecosystems, platformeconomy, corporate startup services, innovation, generative ki, chatgpt, data driven business, automation, large language models, fine tuning, retrieval augmented generation, business consulting & services, ai data analysis, ki-strategie, ai-enabled automation, ki-consulting, ai automation solutions, ki-entwicklung, ai-training programs, ai-transformation roadmap, ai disruption, ai-partner network, ai-compliance, ai partner, ai-driven decision making, ki-expertise, ai-tools development, ai strategy, ai lab services, ai-compliance frameworks, ai performance optimization, prompt engineering, information technology & services, ai business solutions, ai impact assessment, ai workshops, services, ai prototyping, ai in business, ki-tools, education, ai scalability, ai-enhanced search, ki-modelle, ai trends, ai-model fine-tuning, ai search, b2b, software development, ai-data analysis, ai für unternehmen, ai training, ai content creation, ai model development, master classes, inhouse ai trainer & consultant, consulting, ki-management, ai-workflows, ki-suchoptimierung, ai-partner ecosystem, ai consulting, computer systems design and related services, ai-use case prioritization, chatgpt optimization, ki-implementierung, ai agent services, ai use cases, gen ai lab services, ai compliance, ki-partner, ai-training for executives, ai business officer, ai-transformation, ki-training, large language model fine-tuning, ai-content generation, prompt creation, ai-technology integration, ai automation, ai-use-case development, ki-transformation, ai-disruption prevention, ai-expertise, ai-performance metrics, ki-searchoptimierung, ai-disruption, ai-model evaluation, gpt-5, ai-driven business models, gen ai agent services, ai-project management, ai integration, ai-generated content, ai strategy consulting, ai-scalability, ai-impact assessment, ai-performance optimization, management consulting",'+49 160 90902026,"Cloudflare DNS, Outlook, Google Analytics, Shutterstock, Strikingly, reCAPTCHA, Mobile Friendly, Remote, AI","","","","","","",69bab5a92f92db0001071ab9,7375,54151,"ECODYNAMICS GmbH is a digital transformation and consulting agency based in Monheim am Rhein, Germany. Established in 2016, the company focuses on helping businesses navigate digital transformation with expertise in generative AI, digital business solutions, and the platform economy. With over 22 years of combined experience in financial services and IT, their team of certified professionals is dedicated to supporting organizations in adapting to the digital economy. + +The company offers a range of services, including strategic advisory on AI implementation, digital business modeling, and Salesforce platform solutions. They employ methodologies such as Rapid Design and Large Scale Scrum to deliver efficient, lean solutions. As a certified Salesforce partner, ECODYNAMICS GmbH provides consulting on Salesforce strategies and implementations. Their target audience includes C-level executives and functional departments across various industries, aiming to enhance efficiency and customer engagement through tailored digital solutions.",2016,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68cccc51adb19c00016b4266/picture,"","","","","","","","","" +Lengoo (acquired by Aleph Alpha/Xtensos),Lengoo,Cold,"",34,information technology & services,jan@pandaloop.de,http://www.lengoo.com,http://www.linkedin.com/company/lengoo,https://www.facebook.com/lengooAI,https://twitter.com/lengootweets,6 Ritterstrasse,Berlin,Berlin,Germany,10969,"6 Ritterstrasse, Berlin, Berlin, Germany, 10969","rag, summarization, transcription, subtitling, machine translation, content creation, translation, revision, aienabled services, post editing, proofreading, deep learning, custom llm, knowledge discovery, neural machine translation, ai, neural networks, unique content, marketplaces, information technology, technology, information & internet, retrieval augmented generation, data protection, ai model fine-tuning in specific domains, natural language processing, ai compliance, generative ai, ai for product descriptions, ai workflow automation, ai platform, cost reduction, ai platform management, content automation, services, custom ai solutions for regulated industries, ai consulting, automated content generation, software development, artificial intelligence, ai for content marketing, ai transformation, training data, ai for translation workflows, secure ai, on-premise ai, information technology and services, retrieval augmented generation (rag), multilingual translation, cloud deployment, multilingual ai, environmentally sustainable ai, enterprise ai, on-premise deployment, consulting, ai for enterprises, ai model updates, ai use cases, proprietary data, machine learning, cloud ai solutions, custom llms, ai productivity tools, ai for hr support, ai productivity, proprietary data use, b2b, closed feedback loops, ai for internal knowledge bases, ai security standards, ai for compliance reporting, compliance, custom language models, ai data strategy, security standards, proprietary data training, model customization, ai security, data privacy, ai for enterprise data analysis, data management, language technology, ai for customer support, scalable deployment, fine-tuning, iso certifications, ai model training, ai for technical documentation, ai automation, cost efficiency, enterprise ai solutions, ai content generation, api integration, scalable ai deployment, cloud services, knowledge retrieval, sovereign language models, computer systems design and related services, information technology & services, cloud computing, enterprise software, enterprises, computer software",'+49 721 90999763,"Salesforce, Cloudflare DNS, Gmail, Google Apps, Microsoft Office 365, CloudFlare Hosting, Braze, Webflow, Hubspot, Mobile Friendly, Google Tag Manager, Remote, AI",27600000,Series B,20000000,2021-02-01,"","",69bab5a92f92db0001071abd,7375,54151,"Lengoo was a company based in Berlin, Germany, founded in 2014 by Philipp Koch-Büttner, Christopher Kränzler, and Alexander Gigga. The company raised a total of $26.7 million in funding during its operational years. + +Before its closure, Lengoo specialized in custom generative AI solutions powered by fine-tuned language models for enterprise use. It provided a range of translation services, including document translation, real-time translation, and video subtitle translation in 25 languages. Additionally, Lengoo offered content generation and knowledge discovery capabilities, along with professional language services supported by over 2,000 expert linguists across more than 50 domains. The company also had integration capabilities with various translation management systems, content management systems, and APIs.",2012,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67019f00ed3937000131290c/picture,"","","","","","","","","" +H24,H24,Cold,"",14,information technology & services,jan@pandaloop.de,http://www.h-2-4.de,http://www.linkedin.com/company/h24ai,"","",48 Ledererzeile,Wasserburg am Inn,Bayern,Germany,83512,"48 Ledererzeile, Wasserburg am Inn, Bayern, Germany, 83512","digitalisierung, dsgvo, ki, nocode, gai, kuenstliche intelligenz, madeingermany, digitalfuture, zukunftgestalten, technologieoffen, ai, kibasiertererfolg, h24, it services & it consulting, information technology & services",'+49 807 19218870,"Cloudflare DNS, Outlook, Mobile Friendly, Wix, Varnish, Google Tag Manager, Hotjar","","","","","","",69bab5a92f92db0001071ac0,"","","H24 is a German artificial intelligence company that specializes in providing customized AI solutions for businesses and government agencies. The company emphasizes secure, data-compliant AI technologies, branding itself as ""AI made in Germany."" H24 aims to be a leading AI enterprise, guided by values of integrity, innovation, and ethical behavior. + +H24 offers two main AI platforms: VeritasGPT, designed for enterprise use, and FindusGPT, tailored for government and public sector agencies. Their platform includes various AI-powered tools such as smart chatbots, email assistants, and voicebots that help automate and streamline work processes. Key features of their offerings include no-code implementation, voice interaction, technology independence, GDPR compliance, and multilingual support. Additionally, H24 develops custom AI software to meet specific organizational needs.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670e46c5f6df82000146d7e5/picture,"","","","","","","","","" +New Elements GmbH,New Elements,Cold,"",34,information technology & services,jan@pandaloop.de,http://www.new-elements.de,http://www.linkedin.com/company/new-elements-gmbh,https://www.facebook.com/NewElements,"",10 Thurn-und-Taxis-Strasse,Nuremberg,Bavaria,Germany,90411,"10 Thurn-und-Taxis-Strasse, Nuremberg, Bavaria, Germany, 90411","machine learning, targeting, big data, behavioral targeting, visitor tracking, data mining, personalization, web analytics, digital analytics, business intelligence, realtime analytics, live chat, recommendation, digital analytics live chat business intelligence behavioral targeting targeting big data web analyti, technology, information & internet, microsoft partner, crm, analytics, ecommerce optimization, automated chat routing, web-based co-browsing, conversion optimization, real time engagement, real time campaign management, customer data platform, marketing automation, order tracking in chat, lead generation, crm integration, customer loyalty, geo-targeting, warenkorb-analyse, real time visitor tracking, data integration, data analytics, customer profiling, multidomain support, personalized content, data visualization, multimandanten support, b2c, customer behavior analysis, software development, retargeting system, customer journey mapping, customer engagement, dynamic content, computer systems design and related services, offline and online data fusion, web development, web tracking, customer experience, cross-selling & up-selling automation, services, web behavior tracking, customer management, multichannel customer interaction, customer journey, online customer service, real time data processing, dynamic offer presentation, customer feedback collection, marketing and advertising, web session replay, predictive modeling, retail, real time monitoring, crm systems, automated lead qualification, retargeting, software publishing, predictive analytics, live chat software, cloud-based software, consulting, e-commerce, information technology and services, cloud technology, d2c, business intelligence tools, b2b, behavioral analytics, behavioral-targeted content, audience segmentation, digital marketing, real time user profiling, cloud solutions, real time data, data management, cloud computing, customer relationship management, ebusiness optimization, multichannel communication, customer insights, azure websites, b2b and b2c customer profiling, online sales optimization, data-driven targeting, customer support automation, real time chat, chatbots, predictive customer insights, artificial intelligence, information technology & services, enterprise software, enterprises, computer software, sales, marketing & advertising, saas, consumer internet, consumers, internet",'+49 911 6500830,"Google Analytics, Bootstrap Framework, WordPress.org, Mobile Friendly, Apache, YouTube, Facebook Login (Connect), Remote, Logitech Video Conferencing","","","","","","",69bab5a92f92db0001071a8b,7375,54151,"New Elements offers a comprehensive strategic view in consulting for performance-oriented websites. Our approach in Web Analytics, Business Intelligence matches the business goals with the e-business strategy of our clients. +Our own software suite NewElements Constellation is a business-intelligence-ready software tool, that allows us to seamlessly document the visitors‘ actions on the website and also presents new opportunites for online sales and customer care. +Web Analytics/ Business Intelligence, information architecture, search engine optimisation, campaigns and sales now get valueable information, which accelerates the client‘s real business as well. + +New Elements is a German software company of business intelligence-based web analytics, behavioral targeting, real-time tracking and enterprise live chat systems. +The software suite NewElements Constellation provides comprehensive fully integrated online marketing and sales instruments in the following modular form: + +- NewElements SiteAnalyst (Web Analytics, Business Intelligence) +- NewElements SiteViewer (Realtime User Tracking) +- NewElements DynamicChat (Online Live Chat) +- NewElements DynamicContent (Behavioral Targeting)",2006,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f07d77f1fe8900014bfe87/picture,"","","","","","","","","" +amber,amber,Cold,"",43,information technology & services,jan@pandaloop.de,http://www.ambersearch.de,http://www.linkedin.com/company/ambersearch,"",https://twitter.com/ambersearch_,72A Juelicher Strasse,Aachen,North Rhine-Westphalia,Germany,52070,"72A Juelicher Strasse, Aachen, North Rhine-Westphalia, Germany, 52070","wissensmanagement, natural language processing, ai, search engine technology, deep learning, machine learning, software development, generative ki, enterprise search, llm, knowledge management, generative ai search, it services & it consulting, companygpt, gdpr compliance, cloud and on-premise solutions, data management, internal knowledge base, web content integration, automation, employee productivity, ocr document search, cloud solutions, automated data updates, b2b, computer systems design and related services, version control, ai agents and assistants, business intelligence, digital transformation, generative ai, role-based access, ai-powered knowledge access, data silos, data security, multilingual search, data privacy, seamless system integration, user experience, information technology and services, ai chatbots, enterprise software, services, artificial intelligence, information technology & services, enterprises, computer software, cloud computing, analytics, computer & network security, ux",'+49 24 189437059,"Cloudflare DNS, Outlook, Microsoft Office 365, Zendesk, CloudFlare Hosting, Hubspot, WordPress.org, Google Dynamic Remarketing, Google Font API, DoubleClick Conversion, YouTube, Google Tag Manager, DoubleClick, Hotjar, Mobile Friendly, Linkedin Marketing Solutions, Android, IoT, AI, Circle, Remote, Webmail, Docker, Phoenix, Aircall, Canal, Amber, Microsoft 365, Atlassian, Gem, Microsoft Windows Server 2012, Apple macOS, Adform DMP, LinkedIn Ads, VueJS, Nuxtjs, Google Ads, C/C++, Python",2310000,Seed,2310000,2025-03-01,800000,"",69bab5a92f92db0001071ab0,7375,54151,"amberSearch, founded in 2021 and based in Aachen, Germany, is an AI company that specializes in an enterprise search engine designed to help employees access and interact with internal company knowledge efficiently. The company focuses on small and medium-sized businesses (SMBs) with 50 to 2,000 employees, particularly in sectors like manufacturing, finance, and healthcare, addressing challenges related to information overload and data silos. + +The company offers a comprehensive platform that integrates search, AI assistance, and automation. Its key product, amberAI, allows employees to engage with company expertise through a chat interface. The platform features AI-powered search capabilities across various data sources, intelligent cross-language search, and automation of repetitive tasks. amberSearch emphasizes user-friendly design and compliance with standards such as ISO-27001 and GDPR. With a commitment to practical AI solutions, amberSearch aims to enhance productivity and decision-making for knowledge workers and customer support teams in complex information environments.",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6962273bde4cc000018dc094/picture,"","","","","","","","","" +SOTEC,SOTEC,Cold,"",87,information technology & services,jan@pandaloop.de,http://www.sotec.eu,http://www.linkedin.com/company/sotec-gmbhucokg,"","",11 Calwer Strasse,Ostelsheim,Baden-Wuerttemberg,Germany,75395,"11 Calwer Strasse, Ostelsheim, Baden-Wuerttemberg, Germany, 75395","big data & business intelligence with tableau software, retail technology, digitale platform, iot, automatization, ios, hardwareentwicklung, softwareentwicklung, android, hardware, big query & big data, cloud business intelligence & realtime integration, cloud platform integration optimization, web applications, systemintegration, cloud computing, ml, cloudplug, industrie 40, industrial it, machine learning, internet of things, software, it services & it consulting, data pipeline automation, scalable ai solutions, embedded systems, ai on the edge, industry 4.0 consulting, data-driven automation, computer systems design and related services, ai solutions, remote monitoring, energy & utilities, ai & machine learning, data security, predictive maintenance, azure, smart manufacturing, manufacturing, b2b, software engineering, automation, distribution, industrial iot hardware, cloudplug edge, industrial automation, sensor data analysis, cloud-architektur, data analytics, visual inspection ai, google cloud, edge ecosystems, cloud implementation, services, digital transformation, cloud platform, hardware design, iot development, mlops workflows, sensor integration, custom iot hardware, software development, system integration, predictive analytics, big data, real-time data processing, smart factory, consulting, ml model training, retail, industrie 4.0, transportation & logistics, edge computing, consumer_products_retail, transportation_logistics, energy_utilities, enterprise software, enterprises, computer software, information technology & services, mobile, internet, artificial intelligence, embedded hardware & software, computer & network security, mechanical or industrial engineering",'+49 703 354580,"Gmail, Google Apps, Shopify Plus, reCAPTCHA, Nginx, Google Tag Manager, Mobile Friendly, Shopify, WordPress.org, Android, IoT, Google Cloud","","","","",22000000,"",69bab5a92f92db0001071ab6,3571,54151,"SOTEC is a technology solutions provider that focuses on IT services, automation, and digital transformation for various industries. The company specializes in enterprise software development, hardware implementation, and cloud-based solutions, helping businesses modernize their operations. + +SOTEC offers a wide range of services, including the development of point-of-sale systems, ERP system integration, and retail hardware implementation. They also provide Industry 4.0 technologies, IoT solutions, and machine learning applications to enhance automation and smart factory development. Additionally, SOTEC delivers cloud computing services, big data management, and advanced technology consulting, including machine learning and artificial intelligence solutions. + +As a Google Cloud partner, SOTEC has certified specializations in IoT, machine learning, and data analytics. The company serves clients in sectors such as retail, automotive, industrial automation, manufacturing, and energy.",1980,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/672fc1b3eb725300012c8aef/picture,"","","","","","","","","" +Dr. Schengber & Friends GmbH,Dr. Schengber & Friends,Cold,"",89,information technology & services,jan@pandaloop.de,http://www.dsaf.de,http://www.linkedin.com/company/dsaf,https://www.facebook.com/DSaF.de,https://twitter.com/DSaF_de,14 Schorlemerstrasse,Muenster,North Rhine-Westphalia,Germany,48143,"14 Schorlemerstrasse, Muenster, North Rhine-Westphalia, Germany, 48143","kundenservice, chatservice, customer care, rezensionsmanagement, ki, messaging, service20, digitaler kundenservice, b2c kommunikation, chatbots, social media, eskalationsmanagement, sales, community management, freshworks, content monitoring, forum, customer journey, technology, information & internet, dsaf reputation management, consulting, reputation management, dsaf digital contact center, freshworks partner, customer support tools, customer support technology, dsaf multichannel support, customer service consulting, dsaf helpdesk solutions, dsaf customer experience enhancement, customer support outsourcing germany, customer support in german, information technology and services, ai chatbots, customer support for financial services, digital customer support, customer support strategy, custom software development, customer experience management, omnichannel support, customer service strategy, natural language processing, customer support automation tools, helpdesk management, customer service solutions, multichannel customer service, customer support for b2c, digital contact center, live-chat support, customer support for healthcare, backoffice outsourcing, customer service optimization, dsaf customer service outsourcing, service automation, customer support software, b2b, management consulting services, customer interaction technology, customer support analytics, b2c, customer support for e-commerce, customer satisfaction enhancement, e-commerce, customer service automation, customer support for retail, dsaf chatbot development, ai customer service, customer support for telecom, customer service team, dsaf service automation in dach, ai-powered customer support, software development, customer service outsourcing, dsaf community management, retail, d2c, dsaf ai customer support, customer experience, services, customer support outsourcing, customer engagement, customer support for b2b, messenger customer service, finance, consumer_products_retail, information technology & services, consumer internet, consumers, internet, enterprise software, enterprises, computer software, artificial intelligence, financial services",'+49 251 4845550,"Route 53, Amazon SES, Outlook, Amazon AWS, GitLab, DoubleClick, Ubuntu, reCAPTCHA, Typekit, WordPress.org, DoubleClick Conversion, Mobile Friendly, Apache, Google Tag Manager, Facebook Comments, Google Dynamic Remarketing","",Merger / Acquisition,0,2025-09-01,"","",69bab5a92f92db0001071ab8,7375,54161,"DSaF - Ihre Experten für digitalen Kundenservice. Wir bieten Kommunikationslösungen auf höchstem Niveau und betreuen mit mehr als 250 Service-Agents in Münster (Westfalen) und Essen (Ruhr) seit über 20 Jahren Online-Communities und digitale Kontaktkanäle wie Chats, Bots, Messenger oder Social Media. + +Als Ihr digitales Contact Center steigern wir die Zufriedenheit Ihrer Kunden nachhaltig. Mit individualisierten Customer Services, entwickelt aus der Symbiose von echtem Menschenverstand, technischen Tools und künstlicher Intelligenz. + +Digital. Serviceorientiert. Automatisiert. Flexibel. +Kurz: DSaF",1999,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/677aa76dabc33f00014ebe06/picture,"","","","","","","","","" +AGENTS.inc,AGENTS.inc,Cold,"",16,information technology & services,jan@pandaloop.de,http://www.agents.inc,http://www.linkedin.com/company/agentsdotinc,https://www.facebook.com/agentsdotinc,https://twitter.com/agentsdotinc,18 Otto-Suhr-Allee,Berlin,Berlin,Germany,10585,"18 Otto-Suhr-Allee, Berlin, Berlin, Germany, 10585","technology, information & internet, dashboards, cloud-based software, supply chain risk management, consulting, services, eu policy analysis, other scientific and technical consulting services, business intelligence, government, apis, business services, reports, no-code platform, customizable ai agents, regulatory tracking, scientific report generation, b2b, company sourcing, scalability, ai agents, data analysis, risk monitoring, gdpr compliance, stakeholder sentiment analysis, information technology, patent search automation, media monitoring, natural language processing, energy & utilities, data security, automated data collection, real-time insights, actionable insights, information technology & services, analytics, data analytics, artificial intelligence, computer & network security","","Outlook, Microsoft Office 365, Apache, Mobile Friendly, Google Font API, WordPress.org, Google Workspace, Remote, Data Analytics, IoT, AI, Laravel, Circle, Docker, Node.js, Android, React Native, Xamarin, Render","",Seed,"",2017-12-01,"","",69bab5a92f92db0001071abb,7375,54169,"AGENTS.inc offers AI Agents that elevate generative AI to the next level by delivering exceptional quality outcomes with high accuracy and efficiency. They ensure complete data control and security, streamline professional processes through advanced automation, and provide a user-friendly experience. These digital employees integrate internal and external data sources with knowledge graphs and AI models for real-time, reliable results, operating 24/7. The AI Agents HQ Platform offers interoperability for AI Agents, a user-friendly interface, and a scalable infrastructure for diverse agents, data sources, and AI models.",2016,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68c710c3d664aa00017767c1/picture,"","","","","","","","","" +AI.FUND,AI.FUND,Cold,"",14,venture capital & private equity,jan@pandaloop.de,http://www.ai-fund.vc,http://www.linkedin.com/company/ai-fund,"","","",Hamburg,Hamburg,Germany,20354,"Hamburg, Hamburg, Germany, 20354","invest & fund, venture capital & private equity principals, predictive maintenance, ai investment, operational efficiency, seed funding, natural language processing, ai technology, information technology & services, european ai, enterprise ai, venture capital, cloud solutions, ai ecosystem, ai startups, b2b, industrial ai, advanced ai tech, market research, securities and commodity contracts intermediation and brokerage, business intelligence, european technology, software development, digital transformation, vertical ai, international scaling, venture capital & private equity, ai solutions platforms, early-stage investments, ai application sectors, venture capital fund, artificial intelligence, scalable ai solutions, ai innovation, startup funding, cloud computing, enterprise software, enterprises, computer software, analytics",'+49 160 94494423,"Gmail, Google Apps, Apache, Mobile Friendly, WordPress.org, Google Tag Manager, YouTube, Bootstrap Framework, Hubspot, Cedexis Radar, Google Analytics, Vimeo, Linkedin Marketing Solutions, Adobe Media Optimizer, Google Font API, Remote, AI","","","","","","",69bab5a92f92db0001071abc,6732,5231,"AI.FUND is a venture capital fund based in Germany that specializes in early-stage investments in Applied AI startups. The fund aims to enhance European leadership in AI and stimulate economic growth by focusing on seed and Series A rounds for scalable companies with strong customer traction and international ambitions, particularly in the U.S. Founded by experienced entrepreneurs and investors, AI.FUND is the first specialized VC fund for AI in Germany and Europe. + +The fund's investment strategy centers on four pillars of Applied AI: Enterprise AI, Vertical AI, Industrial AI, and Advanced AI Tech & Solutions. AI.FUND seeks startups that address real-world problems with technical depth and scalable models, ensuring that AI is the core driver of their solutions. In addition to providing capital, the fund offers operational support, AI expertise, and valuable connections in the venture capital and business sectors. AI.FUND also advocates for policy changes to enhance competitiveness in the AI landscape.",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6708c3ac2a51b000019da96f/picture,"","","","","","","","","" +Soji AI,Soji AI,Cold,"",14,information technology & services,jan@pandaloop.de,http://www.soji.ai,http://www.linkedin.com/company/soji-ai,"","","",Hamburg,Hamburg,Germany,"","Hamburg, Hamburg, Germany","software development, aircraft end-of-lease process ai, diagnostic guidance, critical operation ai, industry-specific knowledge base ai, ai for aircraft maintenance manuals, aircraft llp forecasting ai, ai troubleshooting on wearables, safety standards, regulatory directives support, ai reliability, ai for mro operators, aircraft transition management, regulatory directives, ai hallucination elimination, other support activities for air transportation, regulatory compliance, aircraft downtime reduction, maintenance scheduling, ai-driven lease transition support, on-premise installation, critical operations ai, aircraft maintenance manuals, aircraft component management, regulatory directive analysis ai, aviation ai, ai engine, on-premise aviation ai deployment, technical documentation processing, predictive analytics, services, aircraft maintenance automation, aviation-specific workflows, ai workflow automation, aviation safety-critical ai, aviation safety compliance ai, data security in aviation, ai for aviation industry, predictive maintenance, b2b, ai knowledge base, security and compliance, maintenance optimization, on-premise ai, ai-assisted troubleshooting, aircraft maintenance, wearable device integration, life-limited parts forecasting, industry abbreviations processing, mobile troubleshooting support, transportation & logistics, high-precision ai, lease return management, industry-specific ai, information technology & services, enterprise software, enterprises, computer software","","Route 53, Gmail, Google Apps, Amazon AWS, Wix, Mobile Friendly, Varnish, AI, Remote","",Convertible Note,"",2025-12-01,"","",69bab5a92f92db0001071abe,3721,48819,"General-purpose AI, such as ChatGPT, falls short at 30,000 feet. Smarter aviation takes-off with specialised AI. + +Aviation professionals must deal with complex technical documents manually extracting critical data. This is time-consuming, error-prone and slows down crucial decision-making processes. + +Soji AI addresses these challenges by providing a specialised aviation AI ecosystem. At its heart is the Core AI that understands and interprets the aforementioned technical documentation. This foundation facilitates the deployment of intelligent AI agents that support various operational processes, such as End-of-Lease Management, Supply Chain Optimisation, and Maintenance Planning. Together, these agents form a connected AI ecosystem. + +Designed for Airlines, MROs, OEMs, CAMOs and lessors, Soji AI helps maximise aircraft availability and unlock operational speed. By enabling quicker and smarter access to the right data, we keep your assets moving!",2023,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/690806030b7ab8000149875c/picture,"","","","","","","","","" +Enao Vision,Enao Vision,Cold,"",12,information technology & services,jan@pandaloop.de,http://www.enaovision.com,http://www.linkedin.com/company/enaovision,"","",30 Lobeckstrasse,Berlin,Berlin,Germany,10969,"30 Lobeckstrasse, Berlin, Berlin, Germany, 10969","technology, culture, ki, innovation, cloud, predictions, nlp, manufacturing, artificial intelligence, kuenstliche intelligenz, automation, computer vision, software, dynamic pricing, ml, ecommerce, services, predictive maintenance, machine learning, ai, forecasting, quality assurance, qa, industry 40, software development, fehlerklassifikation in der serienfertigung, industrial automation, fehlererkennung in der fertigung, produktionsdaten, fehlererkennung bei oberflächenbeschaffenheit, qualitätskontrolle, iphone-basierte lösung, datengenerierung, datengenerierung mit iphone, ki-assistenz, fehleranalyse in der produktion, ios app, ki-gestützte inspektion, datenanalyse, automatisierte fehlererkennung, ki in der qualitätskontrolle, ki-gestützte qualitätskontrolle in der serienproduktion, fehlererkennung bei dachziegeln, web app, produktionsüberwachung, quality control, produktqualität, fehlerdokumentation, fehlerdiagnose, product inspection, produktionsüberwachungssystem, einfache bedienung, ki-technologie, fehlererkennung mit smartphone, industrial machinery manufacturing, ki-training, fehlererkennung bei fensterprofilen, trendverfolgung, fehlererkennung in echtzeit, ki-basierte sichtprüfung, schnelle implementierung, web app steuerung, fehlererkennung bei farbabweichungen, automatisierung, kostengünstige qualitätskontrolle, fehlerklassifikation, fehlererkennung in serienproduktion, b2b, natural language processing, information technology & services, mechanical or industrial engineering, e-commerce, consumer internet, consumers, internet",'+49 173 3296281,"Route 53, Gmail, Google Apps, Google Tag Manager, Mobile Friendly, Apple iPhone","","","","","","",69bab5a92f92db0001071ab7,3829,33324,"Enao Vision, based in Berlin, specializes in AI-powered quality control solutions for the manufacturing sector. The company, formerly known as Kineo.AI, focuses on enhancing operations for shop floor professionals while ensuring high-quality standards. Enao Vision employs a people-centric approach, inspired by ""swarm intelligence,"" to foster agility and clear communication among workers. + +The core offering is an AI-driven quality control system designed for mass production. This system automates defect detection and is user-friendly, allowing for quick deployment without disrupting production. It significantly reduces hardware costs and requires minimal training for personnel. Enao Vision also develops custom AI projects to help businesses integrate AI into their operations effectively. The team combines technical expertise with a commitment to transparency and collaboration, ensuring that their solutions support human workers in achieving collective success.",2024,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/690f64efc44a3200012e25ea/picture,"","","","","","","","","" +EDI AG - Engineering Data Intelligence,EDI AG,Cold,"",18,information technology & services,jan@pandaloop.de,http://www.edi-ag.ai,http://www.linkedin.com/company/engineering-data-intelligence,"","",Hermann-Weick-Weg,Karlsruhe,Baden-Wuerttemberg,Germany,76229,"Hermann-Weick-Weg, Karlsruhe, Baden-Wuerttemberg, Germany, 76229","prediction, artificial intelligence, cloud computing, ai, engineering data intelligence, software, intelligence, digital business models, machine automation, iot, it services & it consulting, information technology & services, enterprise software, enterprises, computer software, b2b",'+49 721 79199155,"Cloudflare DNS, Google Tag Manager, Typekit, Mobile Friendly, Hotjar, reCAPTCHA, IoT, Android, Remote, AI","","","","","","",69bab5a92f92db0001071ac1,"","","EDI GmbH, based in Karlsruhe, Germany, is an AI software company founded in November 2015 as a spin-off from the Karlsruhe Institute of Technology. The company focuses on developing AI-based solutions that optimize processes, machines, and plants, making digitalization accessible without requiring specialized AI knowledge from users. EDI emphasizes quick return on investment through seamless integration of AI into existing systems. + +At the core of EDI's offerings is the EDI hive IoT framework, a patented technology that enables rapid implementation of AI applications for process optimization and monitoring. The company provides a range of AI-driven services and products, including customized digital suites for data discovery and decision-making, as well as individual software solutions for various sectors such as Industry 4.0, autonomous driving, and health monitoring. Notable products include automated technical drawing recognition, a well-being barometer for seniors, and AI-powered inspection tools. EDI serves clients across diverse industries, aiming to enhance efficiency and innovation in their operations.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68c6d28454f9520001e73b5b/picture,"","","","","","","","","" +Ehrenmüller AI,Ehrenmüller AI,Cold,"",19,information technology & services,jan@pandaloop.de,http://www.ehrenmueller.ai,http://www.linkedin.com/company/ehrenmueller,"","",4 An der Stadtmauer,Kempten,Bavaria,Germany,87435,"4 An der Stadtmauer, Kempten, Bavaria, Germany, 87435","spark, data science, deep learning, tableau, datenvisualisierung, cloud computing, predictive analytics, data mining, datenanalyse, kuenstliche intelligenz, python, machine learning, big data, it services & it consulting, ki-analyse, ki-integration, data analytics, ki-workshop, ki-training für fachkräfte, ki-modelle, workshop, echtzeit-systeme, ki-tools, ki-forschung, artificial intelligence, software development, ki-schulungen, ki für kreislaufwirtschaft, ki für qualitätskontrolle, ki-systeme, kunststoffsortierung, ki in der medizintechnik, bildanalyse, ki-strategie, ki-entwicklung, information technology & services, kunststoffrezyklate, ki-projekte, ki-kompetenzentwicklung, ki-beratung, ki-optimierung, research and development in the physical, engineering, and life sciences, ki für mittelständische unternehmen, ki in der logistik, ki für ressourceneffizienz, monitoring, kunststoffe, b2b, sensoranalyse, eu ai act, ki-training für unternehmen, datenaufbereitung, ki für risikoanalyse, ki-kompetenz, schulung, ki-innovationen, ki in der medienbranche, ki-partner, künstliche intelligenz, prognosemodelle, ki-regulierung, ki-weiterbildung, ki-infrastruktur, reinforcement learning, ki-training, anomalieerkennung, ki-experten, ki für produktionsoptimierung, ki in der kunststoffindustrie, services, data analytics & data science, maßgeschneiderte ki-systeme, consulting, ki-implementierung, ki in der automobilbranche, ki in der tourismusbranche, e-learning, computer vision, ki-training für fach- und führungskräfte, bildklassifikation, empfehlungssysteme, ki in der energiewirtschaft, business intelligence, healthcare, education, manufacturing, distribution, energy & utilities, construction & real estate, enterprise software, enterprises, computer software, internet, education management, analytics, health care, health, wellness & fitness, hospital & health care, mechanical or industrial engineering",'+49 83 152376977,"Gmail, Google Apps, Route 53, Amazon AWS, SendInBlue, Mobile Friendly, Google Analytics, Google Tag Manager, WordPress.org, Nginx, IoT, Android, React Native, Xamarin, AI, Python","","","","","","",69bab5a92f92db0001071ac4,7375,54171,"Ehrenmüller GmbH is an AI service provider based in Germany, focusing on developing customized AI systems for medium-sized enterprises. Founded in 2019, the company has successfully completed over 100 AI projects across various industries, including mechanical engineering, medical technology, food, automotive, retail, and tourism. + +The company offers a range of services, including custom AI system development, end-to-end implementation, consulting, and training. Ehrenmüller provides tailored solutions such as forecasting models, recommendation services, and image and speech recognition. They also support businesses with expert guidance for AI initiatives and offer workshops and certifications to enhance knowledge in AI technologies. + +Ehrenmüller is committed to enhancing the competitiveness of German mid-market companies through innovative AI solutions. They actively participate in the AI ecosystem, contributing to platforms like KIKS and organizing community events to promote knowledge exchange in the field.",2019,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/683d25ba737aab0001fb485c/picture,"","","","","","","","","" +Tensor AI Solutions GmbH,Tensor AI Solutions,Cold,"",11,information technology & services,jan@pandaloop.de,http://www.tensor-solutions.com,http://www.linkedin.com/company/tensor-ai-solutions,"","",2 Magirus-Deutz-Strasse,Ulm,Baden-Wuerttemberg,Germany,89077,"2 Magirus-Deutz-Strasse, Ulm, Baden-Wuerttemberg, Germany, 89077","it services & it consulting, local explainability, ai resource efficiency, artificial intelligence, transparent ai, data science, information technology and services, resource savings, b2b, ai project support, ai system development, ethical ai, ai solutions, data assessment, global explainability, explainable ai, ai verifiability, ai regulation compliance, ai deployment, compliance, ai ethics, services, consulting, ai transparency, regulatory compliance, ai certification, computer systems design and related services, ai decision control, machine learning, information technology & services",'+49 1525 5958173,"Outlook, Microsoft Office 365, SendInBlue, Slack, reCAPTCHA, WordPress.org, Mobile Friendly, Apache, Shutterstock, Remote, IoT, AI, Android","","","","","","",69bab5a92f92db0001071ac5,7375,54151,"We provide our customers with transparent and reliable AI Solutions to automate their processes in an efficient and controllable way. With years of experience in AI systems for different branches. As a software service provider, we support our customers individually in their AI projects, from data assessment to prototyping and deployment. + +Get in touch with our Machine Learning experts!",2022,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f642fd3daf0d000129a01f/picture,"","","","","","","","","" +e-bot7 - AI for Customer Service (acquired by Liveperson Inc),e-bot7,Cold,"",11,information technology & services,jan@pandaloop.de,http://www.e-bot7.com,http://www.linkedin.com/company/e-bot7,https://www.facebook.com/ebot7page/?fref=ts,https://twitter.com/ChatbotNews,7 Perusastrasse,Munich,Bavaria,Germany,80333,"7 Perusastrasse, Munich, Bavaria, Germany, 80333","saas, webchat, customer experience, ai, livechat, whatsapp, messenger, nlp, chat, enterprise sme, crm, agent handover, chatbots, customer service, chatbot, kundenservice, lead qualification, alexa, bot, communication, rpa, conversational ai, cx, automation, kuenstliche intelligenz, automatisierung, onpremise, nlu, machine learning, zendesk, bot framework, conversational ai platform, genesys, artificial intelligence, salesforce, startup of the year, bots, process automation, virtual assistants, messaging, information technology, enterprise software, deep information technology, software, it services & it consulting, computer software, information technology & services, natural language processing, social media, consumer internet, consumers, internet, sales, enterprises, b2b",'+49 89 45231093,"Salesforce, Amazon SES, Gmail, Google Apps, Remote, AI",62060000,Merger / Acquisition,53100000,2021-06-01,3400000,"",69bab5a92f92db0001071aba,"","","e-bot7 is a technology company based in Munich, founded in 2016, that specializes in conversational AI to enhance customer service. The company offers a hybrid Agent+AI® solution that automates customer interactions by analyzing incoming messages and suggesting responses. This platform integrates seamlessly with existing CRM and support systems, allowing for efficient handling of customer inquiries. + +The core products include the Agent+AI® Customer Service platform, which tags and routes messages, and a Fully Automated Bot that provides 24/7 support for simple queries. e-bot7 also features a Contextual Dialog Editor® for process automation, enabling personalized customer experiences and quick deployment of chatbots. The company has grown to over 100 employees and serves various sectors, including banking, automotive, telecommunications, and e-commerce, with notable clients like O2 Deutschland and Audi.",2016,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/675d8613d24ef3000190ad90/picture,LivePerson (liveperson.com),55698a357369642585c25200,"","","","","","","" +solvatio AG,solvatio AG,Cold,"",17,information technology & services,jan@pandaloop.de,http://www.solvatio.ai,http://www.linkedin.com/company/solvatio,"","",5A Schuererstrasse,Wuerzburg,Bavaria,Germany,97080,"5A Schuererstrasse, Wuerzburg, Bavaria, Germany, 97080","single source, softwareprojekte, projektmanagement, troubleshooting, customer support, self service, artificial intelligence, nest best actions, softwareimplementierung, softwareentwicklung, projektdienstleistungen, telekommunikation, machine learning projekte, bot, machine learning, projektimplementierung, automation, it services & it consulting, support ai orchestration, support proactive analytics, support process optimization, support content management, support omnichannel, support content library, support real-time support, information technology & services, telecom customer service, customer journey, support ai optimization, network support solutions, support network assurance, proactive issue resolution, ai-powered troubleshooting, customer experience enhancement, support ai integration, telecom automation, support process automation, support services, support automation platform, support quality improvement, ai-driven customer journeys, support content preconfiguration, b2b, support incident management, rule-based decisioning, support case automation, support proactive detection, support self-service, support ai training, self-care automation, support network support, support channel integration, support anomaly detection, support automation, cost reduction in telecom, support ai security, support incident resolution, support workflow automation, support ai scalability, support automation tools, natural language processing, support system scalability, support data-driven support, support ai deployment, support ai customization, services, telecommunications, support customer journey, ai, support system integration, support analytics, ai customer support, telecom, ai support platform, support content automation, ai in telecom, omnichannel customer service, support customer experience, support content deployment, generative ai, support cost efficiency, transportation & logistics, energy & utilities",'+49 800 0060683,"MailJet, Outlook, Hubspot, Atlassian Cloud, Apache, Stripe, WordPress.org, Mobile Friendly, AI","","","","","","",69bab5a92f92db0001071ac2,7375,517,"solvatio AG is a German AI software company that specializes in automated troubleshooting and customer support solutions for the telecommunications industry. Founded over 20 years ago as a spin-off from the Department of Artificial Intelligence and Applied Computer Science at Würzburg University, the company is headquartered in Rimpar, Germany. It focuses on AI-driven data generation, knowledge engineering, and process advisory services to enhance operator and customer experiences while minimizing maintenance efforts and support costs. + +The company's core offerings include the HRAIZN suite, a GenAI-powered platform designed for telecom customer support automation. This platform features tools for automated diagnosis and resolution in fiber networks, as well as decision systems that integrate with existing tools to improve operational efficiency. solvatio serves communication service providers, mobile network operators, internet service providers, and wholesale operators, helping them optimize their customer operations and achieve better support outcomes.",1996,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6824115b7ee41f0001813270/picture,"","","","","","","","","" +anacision GmbH,anacision,Cold,"",17,information technology & services,jan@pandaloop.de,http://www.anacision.de,http://www.linkedin.com/company/anacision,"","","",Karlsruhe,Baden-Wuerttemberg,Germany,"","Karlsruhe, Baden-Wuerttemberg, Germany","kuenstliche intelligenz, autonomous factory, predictive maintenance, artificial intelligence, produktionsplanung, machine learning, autonome fabrik, data science, autonome produktionsprozesse, data science beratung, deep learning, industrie 40, feinplanung, data science consulting, it services & it consulting, maßgeschneiderte ki-lösungen, ki-gestützte prozessoptimierung, computer systems design and related services, natural language processing, regress ki, ki-gestützte regressbearbeitung, public sector technology, information technology & services, services, proof-of-concept, software development, regulatory compliance, ki-gestützte betrugserkennung, regressmeldeverfahren, gewerbemeldungen ki, data analytics, data integration, berufskrankheitserkennung, government, risk assessment, rehaplus, ki-gestützte unfallkodierung, ki-gestützte risikoanalyse, ki-gestützte fallanalyse, ki in der verwaltung, ki-gestützte unfallprävention, unfallstatistik ki, prozessautomatisierung, ki-gestützte risikoerkennung, ki-workshop, ki-gestützte fallpriorisierung, ki-gestützte kostenprognose, datenanalyse, ki-gestützte prävention, process optimization, automatisierung komplexer prozesse, entscheidungsunterstützung, ki-entwicklung, operational efficiency, datengetriebene entscheidungen, ki-gestützte datenvisualisierung, ki-lösungen, ki-gestützte entscheidungsfindung, consulting, ki-training, customer engagement, business intelligence, maschinelles lernen, predictive analytics, ki-gestützte entscheidungsmodelle, maßgeschneiderte ki, text mining, b2b, eu ai act, non-profit, enterprise software, enterprises, computer software, analytics, nonprofit organization management",'+49 721 509945900,"Outlook, CloudFlare Hosting, Linkedin Widget, Google Tag Manager, Mobile Friendly, Linkedin Login, Facebook Widget, Facebook Login (Connect), Hubspot, Remote, AI, Python","","","","","","",69bab5a92f92db0001071aae,7375,54151,"anacision GmbH is a German company that specializes in custom-made AI solutions, developed over nearly ten years. The company combines expertise from consulting and mechanical engineering to support specialists, streamline processes, and enhance decision-making for management and stakeholders. Their focus on complex processes and collaboration with clients allows them to identify bottlenecks and analyze workflows effectively. + +The company offers tailor-made intelligent AI solutions that prioritize transparency and efficiency. Key services include identifying major bottlenecks, immersing in complex operations, and iterating with specialist departments to achieve targeted results. Their solutions cater to various sectors, including public administration and production, helping to optimize workloads and improve decision-making. Anacision's developments have received multiple national and international awards, reflecting their commitment to delivering proven value.",2015,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68401ae68e735d0001b023ea/picture,"","","","","","","","","" +enneo.AI,enneo.AI,Cold,"",15,information services,jan@pandaloop.de,http://www.enneo.ai,http://www.linkedin.com/company/enneo-ai,"","",30 Fraunhoferstrasse,Berlin,Berlin,Germany,10587,"30 Fraunhoferstrasse, Berlin, Berlin, Germany, 10587","ki-training, automatisierte kundenanfragen, backend-integration, kundenservice effizienz, ki-wiki, lead generation, ki-kundenservice-plattform, reporting, ticketing-system, omni-channel kommunikation, energy & utilities, customer relationship management, ticketing-systeme, software development, automatisierung, ki-agenten, made in germany, energieversorger ki-lösungen, process optimization, ki-technologien, automatisierte ticketzuweisung energie, ki-gestützte kundenzufriedenheit, prozessoptimierung, predictive analytics, kundenservice-optimierung, automatisierte prozesssteuerung energie, effizienzsteigerung, kundenanfragen automatisiert, branchenfokus energie, automatisierte kundenkommunikation, automatisierte ressourcensteuerung, ki-gestützte wissensdatenbank, omni-channel routing, energy, end-to-end automatisierung, business intelligence, eu-gehostet, ki-gestützte effizienz im kundenservice, branchenspezifische ki, backend-systemintegration, b2b, computer systems design and related services, customer engagement, ki-unterstützung, ki-basierte stimmungsanalyse, datensicherheit, intelligentes routing energie, information technology & services, energiebranche, sicherheitsfeatures, services, dsgvo-konform, marketing & advertising, sales, crm, enterprise software, enterprises, computer software, analytics","","Outlook, Microsoft Office 365, Amazon AWS, Sendgrid, Mobile Friendly, Google Tag Manager, Deel, Remote","",Seed,0,2023-09-01,"","",69bab5a92f92db0001071ab1,7375,54151,Enneo offers a next generation contact center solution that transforms the interaction between agents and customers through AI.,2022,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69b29b8c3961a00001602294/picture,"","","","","","","","","" +Symanto,Symanto,Cold,"",59,information technology & services,jan@pandaloop.de,http://www.symanto.com,http://www.linkedin.com/company/symanto,https://www.facebook.com/SymantoAI/,https://twitter.com/SymantoAI,"",Nuremberg,Bavaria,Germany,"","Nuremberg, Bavaria, Germany","psychological profiling, brand monitoring, data mining, market research, social media analysis, competitor intelligence, influencer mapping, artificial intelligence, psychology, strategic insights, machine learning, consumer intelligence, consumer segmentation, ai contact center, document process optimization, roi, natural language processing, market segmentation, big data analysis, psycholinguistic profiling, benchmarking, multilanguage, network analysis, product evaluation, profiling, agentic ai, cx, competitor analysis, social media, e-commerce, big data analytics, enterprise software, consumer internet, internet, software, information technology, software development, customer feedback analysis, consulting, ai research papers, customer insights, ai research, ai virtual agents, personalized communication, information technology and services, ai chatbots, customer journey analytics, customer motivation analysis, business growth, voice of customer, emotion-driven ai, behavioral analysis, emotion detection, psychological modeling, data analytics, customer personality profiling, deep learning, emotion recognition, other scientific and technical consulting services, generative ai technology, customer communication, data security, ai-powered insights, ai partnerships, empathetic virtual agents, multilingual ai support, behavioral insights, ai reliability, b2b, data-driven decision making, psychology and ai fusion, operational efficiency, business intelligence, multilingual ai, ai text analysis, psycholinguistic algorithms, psycholinguistic models, ai research collaborations, market insights, empathy ai, customer relationship management, emotion and sentiment analysis, generative ai, customer feedback, ai for due diligence, operational cost reduction, cloud services, natural language understanding, behavioral psychology in ai, ai for market intelligence, behavioral segmentation, deep learning models, customer engagement, motivation analysis, customer experience, text analytics, predictive analytics, services, customer retention, ai security protocols, digital transformation, psychology-based ai models, business analytics, ai in contact centers, customer service, customer segmentation, sentiment analysis, enterprises, computer software, information technology & services, consumers, computer & network security, analytics, crm, sales, cloud computing",'+49 911 37846639,"Cloudflare DNS, Outlook, Microsoft Azure, Webflow, Hubspot, Slack, Mobile Friendly, Google Tag Manager, Squarespace ECommerce, Reviews, AI","","","","",12500000,"",69bab5a92f92db0001071ab2,7375,54169,"Symanto is an AI company based in Nuremberg, Germany, founded in 2010. It specializes in Human AI, integrating psychology, natural language processing (NLP), and business intelligence to analyze text data for insights into human behavior and emotions. With over 15 years of experience, Symanto partners with organizations across various industries, including automotive, healthcare, and sports, to provide multi-language analysis and actionable insights. + +The company offers a range of AI-driven tools and platforms. Its solutions include an insights platform for analyzing customer behavior and market intelligence, an AI contact center for empathetic customer interactions, and an AI accelerator for developing and deploying Agentic AI use cases. Symanto's technology excels in real-time customer behavior analysis, sentiment detection, and psychological profiling, enabling organizations to make informed decisions and enhance automation. With a diverse team of over 100 professionals from 32 nationalities, Symanto is committed to redefining human-AI interactions.",2010,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69ae0d354ca0750001c119d0/picture,"","","","","","","","","" +Beyond Presence,Beyond Presence,Cold,"",22,information technology & services,jan@pandaloop.de,http://www.beyondpresence.ai,http://www.linkedin.com/company/beyond-presence,"","",73 Balanstrasse,Munich,Bavaria,Germany,81541,"73 Balanstrasse, Munich, Bavaria, Germany, 81541","ai agent, ai sales agents, ai avatar, realtime ai avatars, virtual agents, audio to video api, humanlike ai interactions, aidriven user experience, avatars, artificial intelligence, digital humans, ai training coaching, conversational ai, multilingual ai, apiready ai, generative ai, hyperrealistic avatars, customer engagement ai, software development, personalized videos, computer systems design and related services, localization in 170 languages, hyper-realistic avatars, information technology and services, digital twins for conversations, b2b, conversational video agents, conversational avatars, ai-driven customer support, d2c, real-time conversation analysis, interactive video agents, scalable video solutions, text-to-video, services, multilingual support, on-demand personalized videos, ai-powered conversational agents, customer engagement, video creation automation, realistic avatars, interactive avatar customization, automated customer support, api integration, information technology & services","","Cloudflare DNS, Outlook, Amazon AWS, Google Tag Manager, Mobile Friendly, Linkedin Marketing Solutions",3100000,Seed,3100000,2024-10-01,"","",69bab5a92f92db0001071abf,7375,54151,"Beyond Presence is a Munich-based AI startup that specializes in creating hyper-realistic conversational video agents. These digital avatars are designed to look, sound, and interact like real humans in real-time video scenarios. Founded by Awais Shafique, the company has a strong focus on advancing computer vision, generative modeling, and real-time avatar technology. + +The platform offers developers and businesses tools to build, deploy, and scale conversational video agents. Key features include a no-code dashboard for customizing avatars and testing conversations, a REST API for programmatic integrations, and pre-built agents that can be deployed quickly. Beyond Presence emphasizes a people-first culture and supports its users with comprehensive documentation and a community on Discord. The technology enables ultra-realistic avatars with lifelike expressions and fast response times, making it suitable for various applications in engagement and automation.",2024,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69ae6dc73e0f8400010a656e/picture,"","","","","","","","","" +Kiimkern Technologies,Kiimkern,Cold,"",18,information technology & services,jan@pandaloop.de,http://www.kiimkern.com,http://www.linkedin.com/company/kiimkern-ai,"","",8 Am Rodelberg,Mainz,Rhineland-Palatinate,Germany,55131,"8 Am Rodelberg, Mainz, Rhineland-Palatinate, Germany, 55131","digital solutions, data, software engineering, process analysis, software support, digital enablement, service management, software design, cloud architecture, system integration, lowcode, digital modernization, software implementation, change management, rpa, digital innovation, ai, microsoft solutions, devops, software, creative solutions, data engineering, data modeling, infrastructure administration, artificial intelligence, cloud, consulting, robotics, digital transformation, threat detection, security engineering, nocode, technology, information & internet, b2b, dev time reduction, information technology and services, digitalization solutions, expert-led implementation, robust tools, software development, business growth, business process automation, smart business decisions, digital workflows optimization, resource maximization, automation technology, implementation support, operational efficiency, integration services, customer engagement, data management, industry expertise, secure solutions, innovation tracking, workflow automation, data analytics, agentic ai, energy efficiency, automation, resource efficiency, cost reduction, cyber security, custom digital solutions, measurable results, process automation, long-term support, productivity increase, future-proof solutions, managed services, application development, error reduction, industry-specific automation, digital advisory, digital workflows, low-code development, services, seamless deployment, intelligent automation, automation speed, sustainable growth, computer systems design and related services, energy & utilities, information technology & services, mechanical or industrial engineering, environmental services, renewables & environment, computer & network security, app development, apps","","MailJet, Sendgrid, Outlook, Microsoft Office 365, Google Cloud Hosting, Zoho Books, Salesforce, Hubspot, Slack, React Native, Android, Remote","","","","","","",69bab5a92f92db0001071ab4,7375,54151,"Kiimkern Technologies is a Germany-based company founded in 2020, located in Mainz, Rheinland-Pfalz. The company specializes in AI-powered solutions, digital transformation, and automation services aimed at enhancing business efficiency for enterprises. With a team of 10-49 employees, Kiimkern focuses on applied AI, Robotic Process Automation (RPA), and low-code development to deliver significant improvements in processing speed, error reduction, productivity, and cost efficiency. + +Kiimkern offers a wide range of services, including intelligent automation, business process automation, and custom digital solutions for workflow optimization and data security. Their proven methodology involves a four-stage process to ensure practical improvements that align with client goals. The company develops tailored digital solutions, such as intelligent assistants and next-gen automation tools, designed to drive operational excellence and sustainable growth.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68219e47ab204700019445cf/picture,"","","","","","","","","" +GRAYOAK,GRAYOAK,Cold,"",19,information technology & services,jan@pandaloop.de,http://www.grayoak.de,http://www.linkedin.com/company/grayoak-management-technology-consulting-gmbh,"","",66 Neue Mainzer Strasse,Frankfurt,Hesse,Germany,60311,"66 Neue Mainzer Strasse, Frankfurt, Hesse, Germany, 60311","data ai, itstrategie organisation, governance, business apps automation, risk compliance, it services & it consulting, consulting, management consulting, reporting & bi, automatisierte dokumentenübersetzung, post-merger-integration, microsoft partner, information technology and services, it consulting, governance, risk & compliance, cloud solutions, cloud-technologien, enterprise genai chat, azure, ai in der cloud, generative ai enablement & adoption, business apps & automation, b2b, management consulting services, it-strategieberatung, it-organisationsentwicklung, compliance in der cloud, data & ai, generative ai, software development, services, digitalisierung, ai-gestützte lösungen, digital transformation, microsoft 365, ki-gestützte prozessautomatisierung, powerplatform, information technology & services, cloud computing, enterprise software, enterprises, computer software",'+49 52 5898184,"Cloudflare DNS, Outlook, CloudFlare Hosting, Mobile Friendly, Google Tag Manager, DoubleClick, Google Font API, Typekit, Varnish, WordPress.org, Vimeo, reCAPTCHA, Microsoft Azure Monitor, Azure AI Search, Azure OpenAI Service, Azure Functions, Azure Logic Apps, Azure Data Factory, Python, Microsoft PowerShell, Microsoft Fabric, Lytics, Azure Analysis Services, H2O, SQL, Qlik Sense, AWS Trusted Advisor, Bicep, Check Point CloudGuard Harmony Connect (CloudGuard Connect), Terraform, Microsoft Power Apps, Microsoft Power Automate, Microsoft Power Platform, n8n, Pages, PowerBI Tiles, TypeScript, React, Next.js, Express, GitHub","","","","","","",69bab5a92f92db0001071ab5,8742,54161,"GRAYOAK Management & Technology Consulting GmbH is a management and technology consulting firm located in Frankfurt am Main, Germany. The company specializes in providing customized IT solutions that support clients in overcoming significant challenges and driving digital transformation. GRAYOAK emphasizes the integration of IT as a value-creating factor, focusing on team quality, community, and responsibility. + +The firm offers a wide range of consulting services, including data strategy, AI implementation, Microsoft Power Platform development, IT management, and governance, risk, and compliance (GRC). GRAYOAK is committed to hands-on implementation, helping clients leverage data and AI for competitive advantage. The company also develops proprietary tools, such as a risk management app, to facilitate compliant cloud technology usage. With a strong focus on sustainable innovation, GRAYOAK aims to foster long-term relationships and support both enterprises and SMEs in achieving their goals.",2022,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f274e473d91a00010fbab1/picture,"","","","","","","","","" +artiso solutions GmbH,artiso solutions,Cold,"",43,information technology & services,jan@pandaloop.de,http://www.artiso.com,http://www.linkedin.com/company/artiso-solutions,https://www.facebook.com/artisogmbh,"",25 Oberer Wiesenweg,Blaustein,Baden-Wuerttemberg,Germany,89134,"25 Oberer Wiesenweg, Blaustein, Baden-Wuerttemberg, Germany, 89134","webdevelopment, desktop development, full stack, react, cloud development, industrie 40, microsoft, python, agile consulting, scrum, iot, bildverarbeitung, net, mobile development, softwaredevelopment, softwareentwicklung, workshops, open innovation, ki, innovations labor, devops, agilitaet, mixed reality, kuenstliche intelligenz, machine learning, bildbearbeitung, angular, it services & it consulting, data analytics, ai in iot, cloud applications, ai in der wissensverwaltung, ai in kundenservice, ai in der sicherheitstechnik, web applications, scrum methoden, ai in der sprachverarbeitung, ai workflow automation, ai in der robotik, ai in der pflege, services, ai solutions design framework, ki-gestützte sturzerkennung, ai consulting, ai in der prozessautomatisierung, digitale transformation, software development, artificial intelligence, ai in der edge-computing-architektur, ai workshops, ai in wissensmanagement, ai-tools, ai prototyping, ai in cloud services, data extraction, ai chatbots, ki-gestützte wissensdatenbanken, ai training, consulting, computer vision, ai in edge computing, healthcare technology, ai-basierte pflegeassistenz, ai in der bild- und sprachanalyse, ai in robotik, ai in der cloud-integration, business consulting, ai in big data, ai in der datenextraktion, ai agents, mobile applications, b2b, ai in der bildverarbeitung, ai service-assistenten für kundenservice, individuelle softwareentwicklung, web development, retrieval-augmented generation (rag), ki-services, künstliche intelligenz, ai-services, individuelle software, ai solutions, ai ethics, ai in pflege, ai strategy, ai in smart devices, ai architecture, ai in der entscheidungsfindung, process automation, ai in bildanalyse, programmiersprachen (c#, javascript, python), ai workshops für prompt engineering, custom software, ai in sicherheit, information technology & services, ai automation, digital product lifecycle, ai in healthcare, ai decision making, ai in automatisierung, ai in sprachverarbeitung, cloud solutions, it consulting, digital transformation, ai in data processing, ai in der prototypenentwicklung, frameworks (angular, .net, ar core), ai in der automatisierung von geschäftsprozessen, cloud computing, llms & slms, cyber security, azure devops, ai im gesundheitswesen, computer systems design and related services, healthcare, management consulting, mobile apps, enterprise software, enterprises, computer software, computer & network security, health care, health, wellness & fitness, hospital & health care",'+49 7304 8030,"Outlook, Microsoft Office 365, Slack, Mobile Friendly, Nginx, WordPress.org, Domo, Sisense, Remote","","","","","","",69bab5a92f92db0001071ac3,7375,54151,"artiso solutions GmbH is a German IT services and consulting company that specializes in custom software development. Founded in 1991, the company has transitioned from hardware production to focus exclusively on creating tailored software solutions. Headquartered in Blaustein, Baden-Württemberg, artiso has grown to employ 65 skilled professionals. + +The company prides itself on being more than just a software provider. It positions itself as a creator of ideas and a facilitator of innovation, delivering high-quality individual software solutions. artiso solutions operates in computer facilities management and information technology consulting, offering development and distribution of information and communication technologies. The company utilizes modern technologies such as WordPress, React, and styled-components to enhance its services. + +With a commitment to talent development and a culture that values curiosity and openness, artiso solutions has built a strong reputation in the IT services sector. It serves customers globally and continues to expand its presence in the market.",1991,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/686cd71c2552a00001f7c69c/picture,"","","","","","","","","" + +NEC Laboratories Europe,NEC Laboratories Europe,Cold,"",100,research,jan@pandaloop.de,http://www.neclab.eu,http://www.linkedin.com/company/nec-laboratories-europe,"","",36 Kurfuersten-Anlage,Heidelberg,Baden-Wuerttemberg,Germany,69115,"36 Kurfuersten-Anlage, Heidelberg, Baden-Wuerttemberg, Germany, 69115","system platform, system learning, data science, generative ai, security, ai, machine learning, digital health, large language models, 5g networks, iot, blockchain, research services, information technology, ai for healthcare, uncertainty quantification, research and development in the physical, engineering, and life sciences, research and development, vaccine design, explainable ai, graph-based data representation, deep learning, vaccine prediction, information technology and services, biomedical ai, ai for disease prediction, domain adaptation, neoantigen vaccine optimization, ai for cancer treatment, edge computing, human-centric ai, text fact extraction, predictive analytics, ai model interpretability, microbiome analysis, b2b, graph neural networks, knowledge graphs, healthcare technology, ai for landmine detection, ai for microbiome analysis, ai development, tcr binding prediction, ai for vaccine development, 5g technologies, sars-cov-2 epitope mapping, natural language processing, relational learning, neural networks, ai in security, ai research, multi-modal data analysis, ai safety, artificial intelligence, telecommunications, healthcare, information technology & services, health, wellness & fitness, research & development, enterprise software, enterprises, computer software, health care, hospital & health care",'+49 622 14342155,"Outlook, AI, MoEngage, CAT, ICP, PyTorch","","","","",24200000,"",69bab5a3b4ad4200013ba87b,8731,54171,"NEC Laboratories Europe is a research and development division of NEC Europe Ltd., part of NEC Corporation. Established in 1997, the lab focuses on advancing information and communications technologies (ICT) through fundamental and applied research. Its work spans areas such as artificial intelligence, networks, security, and computing platforms, aiming to address societal challenges and support NEC's global business initiatives. + +The lab collaborates with universities, research institutes, and various European Union programs to enhance technology transfer and contribute to Europe's digital agenda. Key research areas include AI technologies like generative and explainable AI, next-generation networks including 6G, and security solutions for data privacy. NEC Laboratories Europe also serves as NEC's blockchain competence center and develops innovative communication architectures and data analytics solutions tailored to European customer needs.",1997,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68c8ffcaf57c2300019eec05/picture,NEC Corporation (nec.com),5d32796aa3ae61572e9e6dbe,"","","","","","","" +botario,botario,Cold,"",18,information technology & services,jan@pandaloop.de,http://www.botario.com,http://www.linkedin.com/company/botario,"","",8P Konsul-Smidt-Strasse,Bremen,Bremen,Germany,28217,"8P Konsul-Smidt-Strasse, Bremen, Bremen, Germany, 28217","it services & it consulting, large language models, ai model integration, kundenservice automation, ai for sensitive data, ai for support ticket automation, ai in healthcare, ai for insurance, secure cloud hosting, automated handover, automated customer service, e-commerce, ai-driven communication, chatbots, branchenlösungen, datensicherheit, voicebots, knowledge management, ai for hr systems, multi-channel ai support, gdpr compliance, ai for complex use cases, regulatory compliance, ai with modular prompts, schnittstellen zu drittanbietern, api integration, enterprise software, services, natural language processing, ai-model updates, secure data hosting, voicebot, ai-driven knowledge base, phonebot, text-to-speech, schnittstellenintegration, dsgvo-konform, ki-modelle, software development, enterprise ai, livechat, healthcare, ai for public sector, kundenzufriedenheit, ai-workflow customization, cloud-hosting, generative ai integration, insurance, data privacy, customer journey, energy, custom prompts, automatisierte wissensmanagement, information technology and services, workflow automatisierung, automation platform, interne automatisierung, generative ai, multilingual ai, customer journey mapping, automatisierte supportprozesse, skalierbarkeit, ai for energy providers, ai in high-regulation industries, ai-enhanced knowledge base, ai transkription, ai transcription, automatisierte gesprächsführung, multilingual, phonebots, on-premise solutions, effizienzsteigerung, enterprise security, public sector, flexibilität, ai for real-time communication, customer service, ai fallback logic, customer experience, data security, data encryption, customer engagement, b2b, automated ticketing, ai with no vendor lock-in, low-code development, automated response generation, ki-basierte plattform, multi-channel support, ai-nlp, ai for multilingual environments, ai model switching, systemintegration, ai for e-commerce, sprachverständnis, compliance, eu-konform, sicherheitsstandards, cloud solutions, data protection, datenschutz, ai-driven insights, ai for customer service, unternehmenskommunikation, artificial intelligence, ai-model compatibility, automatisierte textanalyse, workflow automation, computer systems design and related services, customer support automation, ai for internal support, system integration, chatbot, ai for regulatory compliance, speech-to-text, low-code-editor, multi-channel-kommunikation, automatisierung, multilingual support, ai for voice and text, on-premise, real-time transcription, role-based access, speech recognition, sicheres hosting, finance, education, legal, non-profit, distribution, information technology & services, consumer internet, consumers, internet, enterprises, computer software, health care, health, wellness & fitness, hospital & health care, computer & network security, cloud computing, financial services, nonprofit organization management",'+49 42 14088790,"Route 53, Outlook, Microsoft Office 365, Slack, Nginx, Google Tag Manager, Mobile Friendly, WordPress.org, Circle, AI, ChatBot, Gem, LiveChat, Python, ebs, REST, GRPC, CallMiner Eureka, Argon CI/CD Security, Salesforce Service Cloud","",Merger / Acquisition,0,2024-08-01,"","",69bab5a3b4ad4200013ba87c,7375,54151,botario combines LLM and corporate data for your chatbot.,"",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6959f87a7924f30001bbbe5b/picture,"","","","","","","","","" +Symate GmbH,Symate,Cold,"",14,information technology & services,jan@pandaloop.de,http://www.detact.com,http://www.linkedin.com/company/symate,"","","",Dresden,Saxony,Germany,"","Dresden, Saxony, Germany","extrusion, batterie, datenanalyse, kuenstliche intelligenz, ki, maschinendaten, big data, leitstand, kuenstliche intelligenz & big data, mes, spritzguss, software development, dashboard, prozessdaten, skalierbare ki-systeme, prozessüberwachung, mes-erweiterung, automatisierte prozessüberwachung, datenfusion, dashboard & apps, datenplattform, prozessdatenanalyse, prozessoptimierung, datenanalyse-tools, qualitätsmanagement, datenvisualisierung, echtzeit-daten, datenzusammenführung, systemintegration, automatisierte prozesssteuerung, cloud-lösungen, datenmanagement in der fertigung, cloud oder on-premise, prozesskontrolle, flexibilität, ki-apps, prozesskettenanalyse, ki-infrastruktur, cloud- oder on-premise, on-premise-lösungen, qualitätskontrolle, datenanalyse in der produktion, ki-gestützte entscheidungen, automatisierte analyse, cloud computing, prozessketten, datenfusion in der produktion, predictive analytics, wissensmanagement, prozesssteuerung, information technology, sicherheitskonzept, manufacturing, analyse-apps, datenmanagement, qualitätsdatenmanagement, qualitätssicherung, mehrsprachigkeit, automatisierte fehlerdiagnose, ki in der fertigung, kosteneffizienz, fehlererkennung, automatisierte prozesskontrolle, ki-gestützte entscheidungsfindung, predictive maintenance, skalierbare infrastruktur, automatisierung, skalierbarkeit, echtzeit-prozessüberwachung, datenmonitoring, schnittstellen, cloud-basierte industrie 4.0-lösungen, datenbasiertes management, datenquellen, echtzeit-analyse, cloud-lösung, industrie 4.0, industrie 4.0 software, erweiterbarkeit, industrial automation, objektive daten, on-premise-lösung, on-premise, ki-gestützte optimierung, ki-apps für die fertigung, ki-basierte prozessoptimierung, datenplattformen für industrie, automatisierte datenanalyse, offen für drittsysteme, industrie 4.0-kompatibilität, big data in der produktion, datenfusion in der industrie, computer systems design and related services, datenintegration, datenbasiertes qualitätsmanagement, automatisierte fehlererkennung, ki-plattform, on-premise industrie ki, b2b, enterprise software, enterprises, computer software, information technology & services, mechanical or industrial engineering",'+49 351 82126300,"Microsoft Office 365, Hubspot, Slack, Shutterstock, Google Tag Manager, Google Analytics, WordPress.org, Vimeo, Nginx, Mobile Friendly","","","","","","",69bab5a3b4ad4200013ba87d,3829,54151,"Die Symate GmbH ist ein Spezialist für Künstliche Intelligenz (KI) und Big Data sowie Hersteller des KI-Systems Detact® ‚KI-Infrastruktur & Apps‘. Detact sammelt, analysiert und verarbeitet Produktions- sowie Qualitätsdaten zur systematischen Überwachung und Optimierung von Prozessen. Das neuartige System arbeitet mit nahezu allen Datenquellen bzw. Schnittstellen und nutzt die Methoden der Künstlichen Intelligenz. Es bietet somit flexible Funktionalitäten für eine automatisierte Prozessüberwachung und nachhaltige Prozesstransparenz. Damit übernimmt Detact verschiedene Aufgaben eines klassischen MES (Manufacturing Execution System), geht aber weit darüber hinaus. Bei Bedarf kann das Softwaresystem der Symate GmbH sogar an ein bestehendes MES, BDE oder CAQ angebunden werden, um dessen Funktionalitäten gezielt zu erweitern. +Mit Detact erhalten Anwender nicht nur ein detaillierteres Prozessverständnis, sondern auch digitale Assistenten für verschiedenste Szenarien rund um ihren Fertigungsprozess. Die Basis dafür bilden mehr als 15 browser-basierte Apps, die sich für kleine, mittlere und große Anwendungen individuell anpassen lassen. Detact wird von zahlreichen Firmen aus den Bereichen Automobil, Kunststoff, Maschinenbau, Luftfahrt, Leichtbau, Medizintechnik und Additive Fertigung etc. sehr erfolgreich eingesetzt.",2012,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/673aecf44e5bdb0001ad48f3/picture,"","","","","","","","","" +Lunatec,Lunatec,Cold,"",35,information technology & services,jan@pandaloop.de,http://www.lunatec.de,http://www.linkedin.com/company/lunatec,"","",27 Schumannstrasse,Frankfurt,Hesse,Germany,60325,"27 Schumannstrasse, Frankfurt, Hesse, Germany, 60325","rpa, agentic ai, agentic orchestration, digital transformation, ai, process mining, hyperautomation, workflow automation, business process automation, process management, digitalization it, dpa, automation strategy, task mining, ipa, agentic automation, it services & it consulting, geschäftsprozessoptimierung, ki-gestützte compliance-überwachung, automatisierung im öffentlichen dienst, conversational ai, robotic process automation (rpa), business consulting, pharmaceuticals, autonome ki-agenten, automatisierungsprojekte, automatisierte reisebuchung, software development, automatisierte kundenkommunikation, automation services, technologieberatung, low-code-apps, services, information technology and services, automatisierung im personalwesen, automatisierung im einkauf, künstliche intelligenz (ki), roi-analysen, automatisierungslösungen, b2b, healthcare, agentenbasierte automatisierung, conversational ai (cai), information technology & services, legal services, consulting, systemintegration, insurance, automatisierung in der finanzabteilung, digitalisierung, prozessautomatisierung, manufacturing, prozessanalyse, ki-technologien, ki-gestützte hr-prozesse, optical character recognition (ocr), government, automatisierung im kundenservice, automatisierung, automatisierte vertragsentwürfe, computer systems design and related services, ki consulting, business transformation, ocr, automatisierte streitbeilegung, automatisierte rechnungsverarbeitung, projektmanagement, automatisierung im controlling, finance, legal, management consulting, medical, health care, health, wellness & fitness, hospital & health care, mechanical or industrial engineering, financial services",'+49 69 509547200,"Outlook, Microsoft Office 365, Hubspot, Google AdWords Conversion, Google Tag Manager, DoubleClick, DoubleClick Conversion, Mobile Friendly, Apache, Google Dynamic Remarketing, WordPress.org, Uipath, Android, Circle, Remote, AI, Microsoft Power Automate","","","","","","",69bab5a3b4ad4200013ba87f,7375,54151,"Lunatec GmbH is a German company founded in 2017, based in Frankfurt am Main, with an additional office in Dubai. It specializes in Agentic Automation and intelligent process automation, combining Robotic Process Automation (RPA) with Artificial Intelligence (AI) to create flexible automation solutions. Lunatec focuses on optimizing the strengths of both humans and machines, ensuring that new technologies serve human interests and drive efficiency across various industries. + +The company offers a range of services, including consulting for process and AI automation, implementation of automation projects, and industry-specific optimizations. Their core technologies include RPA for automating repetitive tasks, Conversational AI for enhancing corporate communications, Low-Code-App Development for rapid app creation, and Optical Character Recognition (OCR) for data extraction. Lunatec's solutions have demonstrated significant improvements in process speed and accuracy, leading to substantial cost savings for clients in sectors such as manufacturing, healthcare, and insurance.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68257b2f39c53a0001ac9844/picture,"","","","","","","","","" +telli,telli,Cold,"",26,information technology & services,jan@pandaloop.de,http://www.telli.com,http://www.linkedin.com/company/tellitechnologies,"",https://twitter.com/tellimarin,"",Berlin,Berlin,Germany,"","Berlin, Berlin, Germany","advertising, search, communities, local advertising, social media, consumer internet, internet, information technology, technology, information & internet, workflow automation, operational efficiency, ai call automation, market research, services, information technology and services, call transcription, automatic callbacks, data security and compliance, customer experience, customer retention, crm integration, ai voice agents, multilingual voices, b2b, automated call handling, lead qualification, human-like conversations, multi-channel communication, utilities, customer journey, call analytics, industry-specific ai agents, healthcare, dynamic number rotation, real estate, call operations platform, financial services, customer engagement, natural language processing, management consulting services, sentiment analysis, appointment scheduling, real-time call monitoring, saas, b2c, finance, consumer_products_retail, energy_utilities, construction_real_estate, marketing & advertising, consumers, information technology & services, health care, health, wellness & fitness, hospital & health care, artificial intelligence, computer software","","Cloudflare DNS, Amazon SES, Gmail, Google Apps, MailChimp SPF, Microsoft Office 365, CloudFlare Hosting, Hubspot, Zendesk, Slack, Mobile Friendly, Google Tag Manager, BugHerd, Multilingual, Micro, Android, Node.js, IoT, Remote, AI, n8n, Zapier, TypeScript, React, Akamai Connected Cloud (formerly Linode), Python, Google AlloyDB for PostgreSQL, Linkedin Marketing Solutions",3730000,Seed,3600000,2025-04-01,"","",69b862eac63906001d70c08e,7375,54161,"telli technologies GmbH is a Germany-based SaaS startup that launched in late 2024. The company offers an AI-powered call automation platform designed for sales enablement, focusing on AI voice agents that automate outbound phone calls and customer engagement for B2C businesses. Founded by CEO Finn, CTO Seb, and COO Philipp, telli is backed by Y Combinator and aims to help sales-driven companies convert leads into sales opportunities. + +The platform automates various call operations, including lead qualification, appointment booking, and customer re-engagement. Key modules include telli qualifier for lead qualification, telli booker for scheduling, telli engager for ongoing customer engagement, and telli reacher for smart calling strategies. With features like 24/7 call answering, real-time analytics, and multi-channel communication, telli enhances engagement and reduces operational costs. The company serves a diverse range of industries, including energy, real estate, and financial services, and has processed nearly a million calls, significantly boosting engagement and efficiency for its clients.",2024,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/695a2f9e7924f30001bd5214/picture,"","","","","","","","","" +NEXT Data Service AG,NEXT Data Service AG,Cold,"",28,information technology & services,jan@pandaloop.de,http://www.next-data-service.com,http://www.linkedin.com/company/next-data-service-ag,https://facebook.com/nextdataservice,"",102 Friedrichstrasse,Berlin,Berlin,Germany,10117,"102 Friedrichstrasse, Berlin, Berlin, Germany, 10117","data science, prediction, machine learning, web analytics, social analytics, clustering, deep learning, big data, computer vision, searchengines, classifying, software development, government, ml product development, workflow automation, consulting, services, computer systems design and related services, image recognition, ai in manufacturing, ai for waste management, data exploration, operational efficiency, mvp development, data analytics, ai-driven data solutions, prototyping, consulting services, big data analytics, b2b verticals, cloud solutions, ux design, b2b, workflow optimization, information technology and services, artificial intelligence, ai for city management, digital transformation, ai for public services, automation, data science consulting, ai solutions, ai automation, market research, data-driven services, customer engagement, ai in healthcare, healthcare, finance, manufacturing, information technology & services, enterprise software, enterprises, computer software, management consulting, cloud computing, health care, health, wellness & fitness, hospital & health care, financial services, mechanical or industrial engineering",'+49 30 683202710,"Cloudflare DNS, Outlook, Microsoft Office 365, CloudFlare Hosting, React Redux, Freshdesk, Node.js, Next.js, TypeScript, Python, GraphQL",70000,Other,70000,2021-02-01,"","",69bab5a3b4ad4200013ba875,7375,54151,"NEXT Data Service AG is a Berlin-based AI company builder established in 2018. The company specializes in creating and scaling machine learning solutions for B2B organizations, drawing on over 20 years of experience in data science, big data, consulting, and product development. With a team of approximately 26-31 employees, NEXT Data Service focuses on delivering data-driven services that include consulting, data analysis, and the development of software and hardware solutions. + +As an innovation partner, NEXT Data Service helps businesses tackle complex challenges through tailored data science and machine learning solutions. Their key offerings include company building, where they nurture viable solutions into scalable ventures, and consulting services that enhance workflows and business value. They also engage in product development, creating functional products using advanced technologies. The company aims to disrupt industries and foster a new generation of AI entrepreneurs while generating sustainable growth for their clients.",2018,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6874967542aed20001b18356/picture,"","","","","","","","","" +aicx.,aicx,Cold,"",12,information technology & services,jan@pandaloop.de,http://www.aicx.de,http://www.linkedin.com/company/we-are-aicx,"","","",Munich,Bavaria,Germany,"","Munich, Bavaria, Germany","ki beratung, digital strategy, ecommerce, venture building, agile product development, dev ops, artificial intelligence, due dilligence, customer experience, entrepreneurship, business intelligence, appliedai, digital transformation, interim management, kuenstliche intelligenz, solution architecture, sysops, scrum, saas, software development, compliance, ki-agenten, proaktive notifications, ki für prozessautomatisierung, ai in business, sicheres hosting, ki-implementierung, systemanbindung, machine learning, ai security, ki-strategie, ki für angebotsgenerierung, deutsche ki-agenten, ki-tools, ki-sicherheit, ki für den mittelstand, computer systems design and related services, ki für individuelle avatare, datenschutzkonform, ki-integration in unternehmen, ki-skills, ki für lead-qualifizierung, large language models, information technology and services, prozessoptimierung, b2b, automation, deutschland, ki-agenten software, ki-individualisierung, ki-integration, ki in der produktion, web crawling, ki für dokumentenmanagement, custom ai, ki-workflows, enterprise ai, ki für wissensmanagement, ki-management, nlp, ki-training, ki im kundenservice, ki in der fertigung, ki für marktanalysen, cloud hosting, ki-optimierung, ki für compliance, nutzerakzeptanz, management consulting, ki-entwicklung, ki für den vertrieb, ai in deutschland, ki für sichere datenhaltung, business impact, ki-beratung deutschland, mittelstand, ki-lösungen, datenschutz, innovation, ki-plattform, enterprise software, automatisierte workflows, knowledge management, unternehmenskommunikation, ki-strategieentwicklung, team collaboration, process optimization, services, business consulting, automatisierung, ki-beratung, ki für automatisierung, consulting, unternehmenssoftware, ki in der industrie, manufacturing, distribution, construction, marketing, marketing & advertising, e-commerce, consumer internet, consumers, internet, information technology & services, analytics, computer software, natural language processing, cloud computing, enterprises, mechanical or industrial engineering",'+49 1516 1666378,"Outlook, Microsoft Office 365, Amazon AWS, Wix, Varnish, Google Tag Manager, Mobile Friendly","",Seed,0,2023-01-01,"","",69bab5a3b4ad4200013ba886,7375,54151,"aicx. GmbH is a Munich-based company that specializes in AI agents and workflows tailored for mid-sized businesses in Germany. Founded by CEO Tyrel Gidinski, the company emphasizes security, transparency, and scalability, with all solutions developed in Germany. aicx. focuses on delivering business impact through AI, ensuring data protection by hosting its infrastructure locally. Their approach integrates AI directly into existing business processes, facilitating user acceptance and promoting the adoption of AI technologies. + +The company offers AI agents powered by the aicx. HEART engine, which act as ""smart digital colleagues"" that seamlessly integrate into daily operations. Key features include strong data protection measures and system integrations that enhance workflow efficiency. aicx. also provides consulting services to help businesses identify and implement AI use cases, along with software demos to showcase their solutions. Their AI agents have demonstrated measurable results in various sectors, including service, consulting, and sales, highlighting significant improvements in productivity and efficiency.",2023,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/671bdc374af61f00018ddc07/picture,"","","","","","","","","" +Langdock,Langdock,Cold,"",38,information technology & services,jan@pandaloop.de,http://www.langdock.com,http://www.linkedin.com/company/langdock,"",https://twitter.com/langdock_hq,71 Auguststrasse,Berlin,Berlin,Germany,10117,"71 Auguststrasse, Berlin, Berlin, Germany, 10117","chat interfaces, team collaboration, large language models, agents, assistants, prompting, software development, custom assistant deployment, artificial intelligence, gdpr compliance, repetitive task automation, ai assistants, generative ai platform, gdpr and iso 27001 certified, iso 27001, services, data encryption, secure data handling, multi-language support, consulting, enterprise-grade security, enterprise software, data security and compliance, soc 2 type 2, data security, data retention customization, model support, secure hosting, internal knowledge base chat, open-source models, internal knowledge integration, information technology and services, ai model hosting, external api integration, multi-model support (gpt-4, gpt-4 turbo, open-source), team prompt sharing, custom prompts, data privacy controls, computer systems design and related services, enterprise ai assistants, workflow automation, b2b, api access for models and workflows, team collaboration tools, multi-user collaboration, knowledge base integration, api integration, real-time data access, information technology & services, enterprises, computer software, computer & network security","","Cloudflare DNS, Gmail, Google Apps, Webflow, Hubspot, Slack, Mobile Friendly, Google Play, Deel, Lattice, AI, React Native, Docker, Gusto, Android, Remote, Next.js, TypeScript, Node.js, PostgreSQL, Redis, Prisma, Tailwind, Kubernetes, Terraform, Azure Container Apps, GitHub Actions, Red Hat OpenShift, AWS Trusted Advisor, IBM ILOG CPLEX Optimization Studio, Microsoft Azure Monitor, AWS CloudFormation, , Prometheus, Grafana, Microsoft Application Insights",3130000,Seed,3000000,2024-04-01,2200000,"",69bab5a3b4ad4200013ba877,7375,54151,"Langdock is an enterprise-grade AI platform based in Berlin, Germany, founded in 2023. The company focuses on helping organizations securely adopt and integrate generative AI technologies across their workforce. With over 2,000 customers and more than 100,000 monthly active users, Langdock processes over 7 million messages each month. The platform was developed to address demographic challenges in Germany, particularly the anticipated workforce reductions due to retirements. + +Langdock offers a suite of integrated products, including an AI chat interface for employee support, customizable AI assistants for various business functions, automated systems for complex workflows, and tools for automating repetitive tasks. The platform also provides unified access to multiple AI models and enterprise search capabilities. Emphasizing security and compliance, Langdock adheres to GDPR, ISO 27001, and SOC 2 Type 2 standards, ensuring that data remains under organizational control. The platform is designed for flexibility, allowing for custom workflows and integrations with existing business tools.",2023,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69b27a754a9fa300014e4e11/picture,"","","","","","","","","" +axio concept GmbH,axio concept,Cold,"",16,information technology & services,jan@pandaloop.de,http://www.axioconcept.com,http://www.linkedin.com/company/axioconcept,"","","",Kandel,Rhineland-Palatinate,Germany,76870,"Kandel, Rhineland-Palatinate, Germany, 76870","data analysis, customer analysis, c, kuenstliche intelligenz, domain driven design, maschinenbau, chemie, pharma, microsoft azure, angular, cloud native applications, chatgpt, customer experience, dxp, dynamic pricing, software architecture, digital marketing, regulatory compliance, big data, microservices, event sourcing, python, large language models, image processing, xmlfirst publishing, machine learning, predictive maintenance, xml, rechtswesen, ecm, regulatory technology, normung, it services & it consulting, compliance, on-premise ai, document automation, ai in chemical structure prediction, semantic search in standards, ai and data science, software development, ai project deployment, ai in industrial applications, ai ecosystem, knowledge management, e-commerce, industrial automation, data analytics, services, business intelligence, ai r&d as a service, ai consulting, ai in manufacturing, information technology and services, smart standards, generative ai, ai in knowledge management, data science, b2b, chemistry ai, ai in publishing, legal services, norms management, ai security, ai, ai strategy, consulting, data engineering, cloud ai, document processing, ai plug-ins, manufacturing, ai deployment, ai automation, predictive analytics, custom ai models, government, ai in document processing, ai solutions, ai in regulatory compliance, d2c, ai in industry, computer systems design and related services, ai integration, semantic search, nlp, ai in regulation, legal, mechanical or industrial engineering, chemicals, marketing & advertising, enterprise software, enterprises, computer software, information technology & services, artificial intelligence, consumer internet, consumers, internet, analytics, natural language processing",'+49 72 719899886,"Outlook, Slack, Apache, Google Tag Manager, Vimeo, Mobile Friendly, Hotjar, Ubuntu, Remote, AI","","","","","","",69bab5a3b4ad4200013ba871,7375,54151,"Practical AI for complex environments: Our solutions are built for demanding processes, sensitive data, and strict regulatory requirements.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/682029c29de56f0001f0793a/picture,"","","","","","","","","" +COMECO,COMECO,Cold,"",50,information technology & services,jan@pandaloop.de,http://www.comeco.com,http://www.linkedin.com/company/comecogmbh,https://www.facebook.com/Comeco-649763328783859,"",8 Rotebuehlplatz,Stuttgart,Baden-Wuerttemberg,Germany,70173,"8 Rotebuehlplatz, Stuttgart, Baden-Wuerttemberg, Germany, 70173","prototyping, testing, kuenstliche intelligenz, ideation, mvp, projektunterstuetzung, kiassistent, digitale transformation, software operations, kichatbot, digitalisierung, data intelligence, strategie, workshops, software entwicklung, ki, it services & it consulting, business intelligence, financial services, risk assessment, cloud solutions, mvp development, government, data analytics, predictive analytics, data management, consulting, chatbots, ki-assistenzsysteme, change management, automatisierung, ki-lösungen, artificial intelligence, b2b, it-infrastruktur, regulatory compliance, services, maßgeschneiderte ki, datenschutz, computer systems design and related services, digital transformation, skalierbare ki-systeme, information technology and services, dsgvo-konformität, machine learning, software development, finance, information technology & services, analytics, cloud computing, enterprise software, enterprises, computer software",'+49 711 1209500,"Outlook, CloudFlare Hosting, Platform.sh, Typeform, Slack, Hubspot, Facebook Custom Audiences, Facebook Widget, DoubleClick, Google Tag Manager, Google Dynamic Remarketing, Mobile Friendly, Facebook Login (Connect), DoubleClick Conversion, Linkedin Marketing Solutions, Shutterstock, React, Next.js, Node.js, Microsoft Azure Monitor, Azure Data Lake Storage","",Other,"",2021-03-01,"","",69bab5a3b4ad4200013ba878,7375,54151,"COMECO is a German technology company that specializes in custom AI solutions, digital transformation consulting, and software development. They focus on enhancing business efficiency, reducing costs, and boosting productivity through tailored digitalization projects. Their services encompass strategic consulting, bespoke software development, and the implementation of AI applications, ensuring clients are well-positioned in the digital landscape. + +The company offers comprehensive service packages that include full support from initial ideas to execution. They emphasize custom development, providing solutions that are specifically designed to meet unique business challenges. Key offerings include custom AI tools, such as the AI assistant LUNA, and individual apps and platforms that integrate seamlessly into existing systems. Successful implementations include projects with Sparda-Bank Baden-Württemberg, which improved sales and customer service efficiency.",2018,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/675f8510060d0a0001cbabaf/picture,"","","","","","","","","" +ellamind,ellamind,Cold,"",16,information technology & services,jan@pandaloop.de,http://www.ellamind.com,http://www.linkedin.com/company/ellamind,"",https://twitter.com/ellamindAI,8P Konsul-Smidt-Strasse,Bremen,Bremen,Germany,28217,"8P Konsul-Smidt-Strasse, Bremen, Bremen, Germany, 28217","artificial intelligence, ai, ki, kuenstliche intelligenz, it services & it consulting, custom large language models, data protection, synthetic data generation, data privacy, model safety, b2b, synthetic data engine, model evaluation, performance metrics, model scalability, information technology and services, multi-language llms, ai pipelines, ai collaboration, discoresearch, ai research, ai model integration, content-aware applications, software development, open-source ai models, model fine-tuning, edge deployment, model robustness, domain adaptation, domain-specific fine-tuning, ai evaluation and optimization, public-private ai partnerships, data analytics, on-premise deployment, model benchmarking, model version control, retraining with synthetic data, machine learning, research and development, multi-modal ai, model transparency, ai models, tailored ai solutions, ai research collaboration, european ai projects, model performance monitoring, open-source datasets, data sovereignty, large-scale ai projects, non-english language models, research and development in the physical, engineering, and life sciences, multilingual large language models, model resilience, healthcare, finance, education, legal, non-profit, information technology & services, research & development, health care, health, wellness & fitness, hospital & health care, financial services, nonprofit organization management","","Cloudflare DNS, Outlook, Microsoft Office 365, Slack, Mobile Friendly, AI, Luminate, Anthropic Claude, OpenAI, Python, Hugging Face, PyTorch, Harness, Frame, SLURM Workload Manager, Liferay, Apache Parquet, Django, React, Next.js, PostgreSQL, Docker, Kubernetes, Argon CI/CD Security, TypeScript","","","","","","",69b862eac63906001d70c08d,7375,54171,"ellamind GmbH is an AI company based in Bremen, Germany, founded in 2024. The company specializes in developing, evaluating, and optimizing advanced AI models tailored for enterprises, with a focus on data sovereignty and security. They prioritize European values, ensuring sensitive data remains within client networks through on-premise deployment. + +The team at ellamind has a strong background in open-source AI, having developed widely used models that have achieved top placements on the global Open LLM Leaderboard. They offer customized AI solutions for process automation across various regulated industries, including finance, healthcare, and public services. Key products include the elluminate AI evaluation platform, custom large language models, advanced retrieval-augmented generation pipelines, and a synthetic data engine for generating high-quality training data. The company collaborates with partners like JAAI Group and has experience with European Commission projects, showcasing their commitment to innovation and reliability in AI solutions.",2024,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67132afedd15730001333cec/picture,"","","","","","","","","" +IT.TEM GmbH,IT.TEM,Cold,"",25,information technology & services,jan@pandaloop.de,http://www.it-tem.de,http://www.linkedin.com/company/it.tem-gmbh,"","",4 Industriestrasse,Stuttgart,Baden-Wuerttemberg,Germany,70565,"4 Industriestrasse, Stuttgart, Baden-Wuerttemberg, Germany, 70565","infrastructure services, artificial intelligence, business consulting, it security, software engineering, it services, dsgvo, it consulting, it services & it consulting, information technology & services, b2b, management consulting, computer & network security",'+49 491 733136748,"Apache, Mobile Friendly, Bootstrap Framework, Remote","","","","","","",69bab5a3b4ad4200013ba876,"","","Unser Kunde ist das Maß aller Dinge. Kundenanforderungen und Kundennutzen stehen immer im Mittelpunkt. So denken wir. So arbeiten wir – und haben dabei eine Zielsetzung: + +Als Mitarbeiter und Mitdenker machen wir Ihr Problem zu unserer Aufgabe und finden immer die richtige Lösung. Die passende Lösung! + +Was wir einbringen: Verantwortungsbewusstes Denken. Faire Partnerschaft. Zuverlässiges Handeln. + +Was Sie dabei gewinnen: Ein junges, unkompliziertes Team mit langjähriger Erfahrung in den Bereichen IT Consulting, Software Engineering und Business Consulting. Ein Team mit Dynamik. + +Ein Team mit Leidenschaft und Kompetenz: Das treibt uns an. Das ist die Basis für unsere Qualität und Ihren Erfolg! + + +Webseite: +www.it-tem.de + +Impressum: +www.it-tem.de/service/impressum.html",2010,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e90170d0be1600016c3c71/picture,"","","","","","","","","" +SelectCode GmbH,SelectCode,Cold,"",21,information technology & services,jan@pandaloop.de,http://www.selectcode.de,http://www.linkedin.com/company/selectcode,"","","",Taufkirchen,Bavaria,Germany,"","Taufkirchen, Bavaria, Germany","kotlin, android, flutter, typescript, mvpentwicklung, itberatung, hosting, php, openshift, java, kubernetes, spring boot, llms, nuxt, vuejs, docker, micronaut, kitraining, reactjs, produktmanagement, kistrategie, c, windows net, kiberatung, kiadoption, projektmanagement, wordpress, companygpt, python, frontend, software development, ai development team, ai for public sector, cybersecurity, product studio, digital transformation, ki-plattform, enterprise software, ki-partner, ai consulting, ai analytics, ai sdks, ai in finance, ai for sustainability, healthcare, ai experts, iot, ai for hr, ai architecture, ai for content creation, big data, ai partner, ai apis, ki-tools, large language models, ki-modelle, ai frameworks, ai deployment, ki-architektur, ai platform, ai in manufacturing, consulting, ai use cases, artificial intelligence, prompt engineering, information technology and services, generative ai, ki-technologien, ki-integration, data-driven ai, ki-entwickler, non-profit, ai pipelines, ai for energy, ai automation tools, ai tools, ai for cybersecurity, nachhaltige ki-lösungen, ai automation, ai in healthcare, custom software development, enterprise ai, custom software, ki-beratung, services, data integration, ai for predictive analytics, software engineering, automation, ki-workflows, ki-schulungen, ai for data analytics, ai developers, ai security, technology consulting, ai scalability, education, sustainable ai, ai innovation, ki-experten, digital health, ai for education, ki-innovation, ai in retail, computer systems design and related services, ai model deployment, ki-frameworks, ai monitoring, ai optimization, it consulting, ai performance, ki-support, ai startup, business intelligence, ai workflows, natural language processing, financial services, ki-assistenten, ai integration, ki-readiness, ai for logistics, ki-use cases, ki-training, ki-entwicklungsteam, ai solutions, ki-projekte, ai system architecture, ki-entwicklungspartner, datenintegration, data science, ai for customer service, ai implementation, ai for non-profits, ai for supply chain, ai models, custom ai development, data analytics, ai cloud, ai training, ki-startup, ai for process automation, ai impact, b2b, ki-impact, ai support, machine learning, ai strategy, ki-entwicklung, ai development, ai for marketing, ki-strategie, ki-implementierung, ki-optimierung, cloud computing, ai for sales, ai projects, cloud solutions, ai for research, finance, manufacturing, energy & utilities, mobile, internet, information technology & services, enterprises, computer software, health care, health, wellness & fitness, hospital & health care, nonprofit organization management, management consulting, analytics, mechanical or industrial engineering",'+49 89 41327900,"Cloudflare DNS, Gmail, Google Apps, Microsoft Office 365, Amazon AWS, CloudFlare Hosting, Cedexis Radar, Mobile Friendly, Multilingual, Adobe Media Optimizer, WordPress.org, Vimeo, Remote, React Native, Android, Node.js, Xamarin, React, Ubuntu, TypeScript, Salesforce CRM Analytics","","","","","","",69bab5a3b4ad4200013ba881,7375,54151,"We are a start-up from Munich that supports companies in the field of AI. As an AI Partner & Product Studio, we build the AI apps of tomorrow that will shape the future world of work. + +In doing so, we focus on real added value for our customers. With our flagship product meinGPT, we are revolutionizing the way companies work. At the same time, we implement customized AI applications that are perfectly tailored to the individual needs of our customers. We provide advice and support - from strategy to implementation. + +Our holistic approach includes the development of customized AI strategies, practical training for employees and support for AI integrations. + +We ensure that AI is not only implemented, but also used effectively.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68456f96bc72cc00014125ea/picture,"","","","","","","","","" +aiku,aiku,Cold,"",13,information technology & services,jan@pandaloop.de,http://www.aiku.tech,http://www.linkedin.com/company/aikutech,"",https://twitter.com/aikutechgmbh,8 Friedrichstrasse,Wiesbaden,Hessen,Germany,65185,"8 Friedrichstrasse, Wiesbaden, Hessen, Germany, 65185","machine learning, strategy, prototype, custom software, data & ai, it services & it consulting, ai workshops, ai for finance, prompt engineering, ai for pharma, geographical insights, data automation, ai implementation, ai for retail, ai strategy, generative ai, ai for healthcare, ai resources, management consulting, information technology and services, ai development, ai use case discovery, ai design sprint, ai for customer insights, artificial intelligence, production process monitoring, ai optimization, ai deployment support, data mining, business intelligence, ai for manufacturing, ai for business growth, ai for automation, custom machine learning, ai for logistics, ai for r&d, ai governance, ai training, data engineering, data analytics, ai strategy consulting, predictive models, consulting, data pipelines, ai for sales, b2b, ai solutions, ai for marketing, computer systems design and related services, software development, web data sourcing, ai ethics, ai project prototyping, services, mlops, ai consulting, ai strategy development, ai for decision making, ai integration, healthcare, finance, manufacturing, distribution, consumer_products_&_retail, transportation_&_logistics, information technology & services, enterprise software, enterprises, computer software, analytics, health care, health, wellness & fitness, hospital & health care, financial services, mechanical or industrial engineering","","Gmail, Google Apps, Hubspot, Typekit, Mobile Friendly, WordPress.org, Apache","","","","","","",69bab5a3b4ad4200013ba882,7375,54151,"We are Aiku, an IT consulting company specialising in Applied Artificial Intelligence. We believe in the endless creative potential within each of us to shape the world of tomorrow. + +Aiku was founded with a mission to bring out the best in ourselves and others, focusing on the industries closest to our hearts: pharma and healthcare. + +We help companies in the healthcare and pharmaceutical industries make the process of customised AI software development more efficient and economical. In quick sprints we find concrete solutions, such as creating an AI application from concept design to prototype. + +We work with the largest data provider in the pharmaceutical industry, IQVIA. We are therefore well versed in handling data, which is predominantly used throughout the pharmaceutical industry.",2022,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6714c697a2e1e600017a2f19/picture,"","","","","","","","","" +Erium GmbH,Erium,Cold,"",13,information technology & services,jan@pandaloop.de,http://www.erium.de,http://www.linkedin.com/company/erium-gmbh,https://facebook.com/EriumGmbH/,https://twitter.com/EriumGmbH,8 Lichtenbergstrasse,Garching,Bavaria,Germany,85748,"8 Lichtenbergstrasse, Garching, Bavaria, Germany, 85748","ki, generative ki, prozessoptimierung, kuenstliche intelligenz, data science, data infrastructure & analytics, information technology & services",'+49 172 6623509,"Outlook, Google Cloud Hosting, MySMTP, Instantly, Typekit, WordPress.org, Mobile Friendly, Nginx, Linux OS, IoT, Android, Docker, Remote",1000000,Seed,"",2024-10-01,"","",69bab5a3b4ad4200013ba884,"","","Erium GmbH is a German company based in Garching bei München, specializing in AI-driven process optimization and consulting for digital transformation. The company partners with businesses to leverage artificial intelligence for enhancing efficiency and decision-making, offering customized solutions tailored to specific industries. + +Erium's main offerings include the Halerium AI platform, a software-as-a-service application that provides a comprehensive technology stack for data processing and machine learning. The platform supports various data types and ensures compliance with data protection laws. In addition to the Halerium platform, Erium provides project implementation support, consulting services, and training workshops to facilitate the effective adoption of AI solutions. The company emphasizes a service-oriented approach, combining technology with expert guidance to ensure sustainable project success.",2019,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67875aca2baed70001c78a3f/picture,"","","","","","","","","" +Merantix Momentum,Merantix Momentum,Cold,"",65,information technology & services,jan@pandaloop.de,http://www.merantix-momentum.com,http://www.linkedin.com/company/merantix-momentum,https://www.facebook.com/merantix,https://twitter.com/merantix,3 Max-Urich-Strasse,Berlin,Berlin,Germany,13355,"3 Max-Urich-Strasse, Berlin, Berlin, Germany, 13355","public, utilities, computer vision, natural language processing, artificial intelligence, legal, manufacturing, ai, chemicals, machine learning, healthcare, industrials, deep learning, automotive, logistics, publishing, pharma, deep information technology, information technology, ai solution scaling, ai for legal document analysis, ai monitoring, ai in logistics, ai consulting services, ai security certifications, ethical ai development, ai-driven solutions, ai security policies, ai infrastructure, energy & utilities, ai for cybersecurity, ai security standards, cloud ai solutions, image forensics ai, ai for smart cities, ai data management, digital media trust, ai technology stack, ai strategy, predictive maintenance ai, multimodal data, ai in public safety, industry-agnostic ai, ai ethics, ai for hr analytics, ai security, ai in retail analytics, ai technology deployment, services, ai process automation, model deployment, ai for manufacturing quality, multimodal sensor data, ai data strategy, ai transformation strategies, ai for enterprise, ai continuous deployment, ai lifecycle, custom ai solutions, enterprise ai, ai system integration, b2b, ai lifecycle management, ai-driven outcomes, ai in public sector, software development, information technology and services, ai for automotive, digital transformation, data security, public sector, ai model development, ai project management, ai for business, ai for customer personalization, ai model training, ai partnership, predictive analytics, ai for regulatory compliance, ai industry solutions, government, ai for finance, consulting, ai innovation, ai consulting, computer systems design and related services, financial services, ai enterprise solutions, ai for social good, ai partnership programs, ai regulatory compliance, ai transformation, ai for risk management, ai research collaboration, ai in industrial automation, ai in education technology, ai research to application, ai for personalized medicine, data management, ethical ai, ai compliance, ai in energy management, ai technology, ai for financial portfolios, construction & real estate, ai process optimization, ai continuous improvement, ai project acceleration, surface classification, ai for environmental monitoring, ai compliance standards, ai innovation labs, ai operations, ai deployment tools, ai industry applications, ai for healthcare, medical image analysis, automotive damage detection, ai deployment, ai in telecommunication, ai system monitoring, agentic workflows, multimodal sensor data processing, ai for disaster response, ai marketplace, ai solutions, ai research, mlops, ai for supply chain, data analysis, custom ai development, ai implementation, ai operation, automated damage assessment, supply chain efficiency, healthcare ai, automotive ai, data-driven decision making, user-centric applications, multi-modal data processing, real-time monitoring, ai training, industry-specific ai, case evaluation methods, ai use cases, technology integration, cybersecurity solutions, ai in healthcare, ai in automotive, ai in government, ai-powered analytics, ai development framework, source optimization, ai for smes, data annotation, automated quality assurance, vehicle inspection technology, ai-enabled decision support, ethical ai frameworks, cross-industry solutions, ai knowledge base, business intelligence solutions, ai collaboration, finance, education, distribution, transportation & logistics, information technology & services, mechanical or industrial engineering, health care, health, wellness & fitness, hospital & health care, media, computer & network security, enterprise software, enterprises, computer software, data analytics",'+353 1 518 7500,"Cloudflare DNS, Rackspace MailGun, Gmail, Google Apps, Microsoft Office 365, Netlify, Webflow, Hubspot, Slack, Google Tag Manager, YouTube, Mobile Friendly, Nginx, Remote, AI, Google, PitchBook, dbt, SQL, Atex, Airflow, Flyte",27000000,Other,27000000,2020-01-01,"","",69bab5a3b4ad4200013ba885,7375,54151,"Merantix Momentum is a Berlin-based AI and machine learning consultancy founded in 2019. The company specializes in creating customized AI solutions, guiding clients from identifying use cases to development and operations. It serves various industries, including healthcare, automotive, and financial services, and emphasizes ethical AI development. + +As part of the Merantix AI group, Merantix Momentum focuses on addressing business and societal challenges through artificial intelligence. The company offers end-to-end AI services, including the evaluation of AI use cases, tailored strategy development, and custom solution creation. It also provides ongoing management and ethical implementation of AI operations. Merantix Momentum prioritizes partnerships with organizations that have valuable datasets and aims to share investment risks with clients. + +The company has developed bespoke AI products, such as tools for processing multimodal sensor data and platforms for internal AI project marketplaces. Notable clients include TÜV Rheinland and ams Osram, reflecting its commitment to delivering advanced AI solutions across various sectors.",2019,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6910c6c2110ba200015978e0/picture,Merantix Capital (merantix-capital.com),5c1d9f0180f93e5d4b904ee5,"","","","","","","" +AITAD GmbH,AITAD,Cold,"",13,electrical/electronic manufacturing,jan@pandaloop.de,http://www.aitad.de,http://www.linkedin.com/company/aitad-gmbh,https://www.facebook.com/aitadgmbh/,"","",Offenburg,Baden-Wuerttemberg,Germany,"","Offenburg, Baden-Wuerttemberg, Germany","embedded ki & zukunftsbringendes gesamtkonzept, zukunftsbringendes gesamtkonzept, ai sensoren, embedded ki, computers & electronics manufacturing, sensor technology, gesture control, ai for hygiene, services, industrial manufacturing, embedded ai, microcontrollers, mechanical engineering, predictive and preventive maintenance, decentralized ai, fault detection, ai for industrial automation, ai for automotive safety, user interaction, data security, sanitary equipment, real-time processing, household appliances, sensor solutions, ai in household appliances, object recognition, person recognition, predictive maintenance, medical technology, semiconductor and other electronic component manufacturing, automotive, consulting, ultrasonic sensing, privacy-compliant ai, energy-efficient ai, machine learning, b2b, fpgas, ai in medical devices, ai in vehicles, low power ai, ai for water conservation, ai for healthcare, voice control, ai for safety, predictive analytics, healthcare, manufacturing, distribution, electrical/electronic manufacturing, mechanical or industrial engineering, computer & network security, information technology & services, artificial intelligence, enterprise software, enterprises, computer software, health care, health, wellness & fitness, hospital & health care",'+49 781 1278580,"Outlook, Hubspot, Mobile Friendly, WordPress.org, Google Tag Manager, Google Maps (Non Paid Users), Shutterstock, Apache, Google Maps, Linkedin Marketing Solutions, Amazon FreeRTOS, Oracle Bare Metal Cloud Services, Visio, Python, HPE Blade Servers, Sophos, Microsoft Application Insights, Azure Linux Virtual Machines","","","","","","",69bab5a3b4ad4200013ba872,3829,33441,"AITAD GmbH is a German company based in Offenburg, specializing in embedded AI and machine learning solutions. Founded in 2018, it has grown to over 30 employees and operates from a modern development laboratory. The company focuses on intelligent sensor systems for various sectors, including automotive and industrial applications. AITAD emphasizes structural agility and long-term goals, collaborating with technology firms, semiconductor manufacturers, and research initiatives. + +The company offers a comprehensive range of services, including consulting, data collection, development, testing, and production of AI electronics systems and sensor components. Their solutions are designed for predictive maintenance, user interaction, and object recognition, utilizing energy-efficient technologies that operate independently of cloud connectivity. AITAD produces decentralized, edge-based sensors that process data on-site, ensuring efficiency and security. Their customer base includes medium-sized companies and large corporations across multiple industries, such as automotive, mechanical engineering, and medical technology.",2018,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/672de6006233a1000180895d/picture,"","","","","","","","","" +SofTech Source,SofTech Source,Cold,"",11,information technology & services,jan@pandaloop.de,http://www.softechsource.com,http://www.linkedin.com/company/softech-source,"","","",Heilbronn,Baden-Wuerttemberg,Germany,"","Heilbronn, Baden-Wuerttemberg, Germany","enterprise resource planning, business process outsourcing, system integration, business application development, quality assurance, business intelligence, staff augmentation, cloud services, information security, digital commerce, application integration modernization, user experience, software development, automation tools, computer systems design and related services, real-time analytics, agile development, ai chatbots, ai model training, custom software, ai-powered chatbots, devops, ai development, cloud-based solutions, ai solutions, ai in manufacturing, devops solutions, ai in healthcare, software consulting, data analytics, ai in finance, big data processing, big data, data security, software deployment, cloud computing, predictive modeling, ai product development, cloud infrastructure, artificial intelligence, b2b, ai integration, ai for customer experience, services, ml operations, machine learning, digital transformation, digital innovation, custom applications, predictive analytics, ai model deployment, it consulting, cloud software, ai software development, data management, ai-driven automation, mlops, software engineering, devops automation, information technology and services, healthcare, finance, enterprise software, enterprises, computer software, information technology & services, analytics, computer & network security, ux, internet infrastructure, internet, management consulting, health care, health, wellness & fitness, hospital & health care, financial services","","Mobile Friendly, Bootstrap Framework, Google Font API, reCAPTCHA, Google Tag Manager, WordPress.org","","","","","","",69bab5a3b4ad4200013ba873,7375,54151,"SofTech Source is a results-driven software development firm specializing in Artificial Intelligence and Full-Stack solutions. We empower businesses through custom digital transformation services that are scalable, secure, and aligned with evolving market demands. + +Our team of expert AI engineers, full-stack developers, and cloud architects delivers end-to-end software solutions—from intuitive web platforms to advanced cloud-native systems. + +We follow Agile methodologies to ensure adaptability, transparency, and rapid time to market. Every solution is designed to solve complex challenges, streamline operations, and drive long-term business growth. + +Whether you're building a new digital product or modernizing legacy infrastructure, SofTech Source is your strategic technology partner for sustainable innovation and measurable results.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67517843f092da0001ac9a7f/picture,"","","","","","","","","" +Sematell GmbH,Sematell,Cold,"",51,information technology & services,jan@pandaloop.de,http://www.sematell.com,http://www.linkedin.com/company/sematell-gmbh,https://www.facebook.com/sematell,https://twitter.com/sematell_com,1 Neugrabenweg,Saarbruecken,Saarland,Germany,66123,"1 Neugrabenweg, Saarbruecken, Saarland, Germany, 66123","artificial intelligence, clientservice, emailmanangement, helpdesk software, clientmanagement, ki, contact center software, customer experience management, response management, customer interaction management, multichannel management, omnichannel software, kuenstliche intelligenz, customer service software, omnichannel kundenkommunikation, automatisierung kundenkommunikation, kundenservice software, it services & it consulting, multi-channel-management, kundenfluktuation reduzieren, workflow automation, kundenkommunikation, software development, automatisierte routing, managed services, services, iso 27001 zertifiziert, automatisierung im kundenservice, information technology and services, chat integration, performance monitoring, consulting, chatbot, dsgvo-konform, e-mail management, kontaktkanäle, customer experience, pick-up-vorgang, kundenanfragen klassifikation, systemintegration, ki-basierte kundenservice software, ki-gestützte themenerkennung, revisionssichere archivierung, ki-algorithmen, multichannel-kommunikation, automatisierte priorisierung, kundenbindung, cloud software, b2b, drittsysteme integration, saisonale spitzenzeiten, computer systems design and related services, ki-gestützte analyse, sicheres hosting, automatisierung, telefonie integration, themenerkennung, datenschutz, automatisierte tarifwechsel, prozessmodellierung, reporting & analytics, kundenservice-optimierung, retail, e-commerce, fallmanagement, api schnittstellen, automatisierte antworten, customer service, distribution, information technology & services, consumer internet, consumers, internet",'+49 681 857670,"Salesforce, Outlook, Jira, Atlassian Confluence, Hubspot, React Redux, Slack, WordPress.org, Ubuntu, Apache, Mobile Friendly, Linkedin Marketing Solutions, Google Tag Manager, YouTube, Remote, AI, Gem, Reply","",Merger / Acquisition,0,2022-01-01,"","",69bab5a3b4ad4200013ba87a,7375,54151,"Sematell GmbH is a German software company that specializes in AI-driven customer service automation. The company has developed the ReplyOne platform, which streamlines support processes across various channels, focusing on precision, compliance, and efficiency. Founded as a spin-off from the German Research Center for Artificial Intelligence, Sematell has over 20 years of experience in the industry and emphasizes collaboration between humans and AI. + +ReplyOne is the company's core product, utilizing advanced AI algorithms to manage customer inquiries efficiently. It supports multiple communication channels, including email, chat, and social media, and offers features like automated responses and intelligent inquiry prioritization. Sematell also provides Managed Services for ReplyOne, ensuring 24/7 system monitoring and performance optimization. The company serves various sectors, including insurance, utilities, and retail, delivering tailored solutions for high inquiry volumes and compliance needs.",2001,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6878cef7869701000160ea90/picture,PINOVA (pinovacapital.com),556e1e967369641141a40201,"","","","","","","" +LMIS AG,LMIS AG,Cold,"",63,information technology & services,jan@pandaloop.de,http://www.lmis.de,http://www.linkedin.com/company/lmis-ag,https://facebook.com/LMISAG,https://twitter.com/LMISAG,"",Osnabrueck,Lower Saxony,Germany,"","Osnabrueck, Lower Saxony, Germany","produktentwicklung, scrum, automatisierung, inbetriebnahme, betrieb itsupport, schulungen, softwarelizenzen, produktvision, 1st, red hat produkte, individualsoftware, agile methoden, digitalisierung, itqualitaetsmanagement, softwaretest, web, predictive maintenance, mobile apps, internet of things, softwareentwicklung, industrie 40, kostenoptimierung, mobile desktopentwicklung, process mining, 247 support, performanceoptimierung, anforderungsanalyse, prozessoptimierung, machine learning, monitoring, zertifizierung von applikationen, application management, uiux, projektmanagement, 2nd 3rd level support, application performance management mit appdynamics, optimierung der produktivitaet mit microsoft produkten, datenmanagement, ki, itberatung, betrieb amp itsupport, it services & it consulting, b2b, branchenübergreifende digitalisierung, information technology and services, software as a service, managed applications, software development, government, consulting, process optimization, ki-lösungen, digital transformation, digitale transformation, cloud solutions, custom software, sicherheitslösungen für unternehmen, künstliche intelligenz, workflow automation, cloud computing, data protection, it-sicherheit, cybersecurity, automation, enterprise software, cyber security, risk management, technology consulting, computer systems design and related services, automatisierte datenanalyse, business intelligence, services, ki in der logistik, ki in der energiebranche, data security, artificial intelligence, information technology & services, saas, computer software, enterprises, computer & network security, management consulting, analytics",'+49 54 1200690205,"Outlook, Microsoft Office 365, Microsoft Azure Hosting, Mobile Friendly, Linkedin Marketing Solutions, Apache, Google Tag Manager, Ubuntu, AI",620000,Other,620000,2022-10-01,2395000,"",69bab5a3b4ad4200013ba883,7375,54151,"LMIS AG is a German IT services and consulting company located in Osnabrück. Founded in 2000, it specializes in software development, managed applications, artificial intelligence, and digital transformation solutions. The company employs between 51 and 200 people and generates revenue between €11 million and €100 million. Since 2017, it has been majority-owned by the KNIPEX Group. + +LMIS AG offers a range of tailored IT solutions, including custom software development for web, mobile, and desktop applications, as well as UI/UX design and software testing. Their managed applications services include 24/7 support, performance optimization, and IT quality management. The company also focuses on AI and digital transformation, providing machine learning, process mining, and automation solutions. Additionally, LMIS AG offers specialized services for the certification of farming software and telemetry platforms in collaboration with DKE-Data GmbH & Co. KG. Their technology stack includes various programming languages and development tools, ensuring robust and scalable IT solutions for diverse industries.",2000,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66ee973502303e00015524aa/picture,"","","","","","","","","" +Motius,Motius,Cold,"",63,information technology & services,jan@pandaloop.de,http://www.motius.com,http://www.linkedin.com/company/motius-gmbh,"",https://twitter.com/motius_rd,17 Walter-Gropius-Strasse,Muenchen,Bayern,Germany,80807,"17 Walter-Gropius-Strasse, Muenchen, Bayern, Germany, 80807","mechanical engineering, big data, app development, virtual reality, electrical engineering, product development, tech scouting, digital twin, computer vision, robotics, chatbots, user centric design, artificial intelligence, business data visualization, data science, web development, internet of things, it to mechanical engineering interfaces, quality assurance, it services, innovation, r d, engineering services, apps, mvp, automation, machine learning, it services & it consulting, manufacturing, blockchain, industrial automation, customized software development, innovation consulting, autonomous mobility, consulting, supply chain optimization, industry 4.0, technology consulting, software development, project management, cyber security, digital transformation, system integration, supply chain, digital twins, data analytics, healthcare, predictive maintenance, smart city infrastructure, digital factory, production automation, ar for maintenance, research and development in the physical, engineering, and life sciences, services, cloud solutions, product design, b2b, emerging technologies, esg data management, rapid prototyping, xr, technology scouting, ai-powered apps, business process optimization, ai, user experience, transportation & logistics, automotive, iot, automated quality assurance, smart manufacturing, fleet management, cloud computing, edge computing, self-learning systems, knowledge graphs, mechanical or industrial engineering, enterprise software, enterprises, computer software, information technology & services, management consulting, productivity, computer & network security, health care, health, wellness & fitness, hospital & health care, ux",'+49 89 21551616,"Outlook, Amazon AWS, MailChimp SPF, Webflow, Slack, Active Campaign, Hubspot, Google Tag Manager, Mobile Friendly, Hotjar, AI, Remote, Linkedin Marketing Solutions, Harmony Email & Collaboration","",Venture (Round not Specified),0,2020-06-01,"","",69bab5a3b4ad4200013ba874,8731,54171,"Motius is a Munich-based R&D company founded in 2013 that specializes in using emerging technologies to address complex challenges for leading companies. With offices in Munich and Stuttgart, the company has a core team of over 100 employees and a talent pool of more than 900 tech experts, including freelancers and consultants. Motius promotes a startup culture with agile project management and self-organizing teams, allowing for flexible project team assembly. + +The company offers holistic innovation consulting and customized R&D solutions, focusing on areas such as production automation, product innovation, and business process optimization. Motius emphasizes rapid iteration and measurable results, helping clients achieve operational efficiency and cost reductions. In 2022, Motius launched Spacewalk, a deep tech venture capital fund aimed at supporting pre-seed and seed-stage startups. Through its initiatives, Motius aims to enable tech talent and assist companies in integrating technologies for sustainable growth.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69a45a8adab2560001acf519/picture,"","","","","","","","","" +VIVAI Software AG,VIVAI Software AG,Cold,"",12,information technology & services,jan@pandaloop.de,http://www.vivai.de,http://www.linkedin.com/company/vivai-software-ag,https://www.facebook.com/VIVAI-Software-AG-253508871329954,"",13 Betenstrasse,Dortmund,North Rhine-Westphalia,Germany,44137,"13 Betenstrasse, Dortmund, North Rhine-Westphalia, Germany, 44137","ki, iot, iot & ki, it services & it consulting, internet of things, sensor technology, big data, smart home, consulting, services, information technology and services, smart sensors, digital health, healthtech, iot solutions, industry-specific chatbots, healthcare it, healthcare technology, project management, b2b, smart home integration, digital care platforms, ai-driven user modeling, computer systems design and related services, software development, e-health, it consulting, iot in agriculture, it-services, custom software, elderly care technology, automation, cloud services, digital transformation, chatbot, healthcare, information technology & services, enterprise software, enterprises, computer software, consumers, health, wellness & fitness, productivity, management consulting, cloud computing, health care, hospital & health care",'+49 231 9144880,"Apache, WordPress.org, Mobile Friendly, Remote, Android, React Native, Xamarin","","","","","","",69bab5a3b4ad4200013ba879,7375,54151,"Wir sind VIVAI. +Innovativ. Begeistert. Authentisch. + +Die VIVAI Software AG unterstützt als unabhängiger Dienstleister Konzerne und Regierungsinstitutionen, aber auch mittelständische Unternehmen durch innovative Beratungs- und Umsetzungslösungen. Unsere Kunden schätzen dabei, neben der professionellen Projektdurchführung, unsere Flexibilität bei der Projektumsetzung und die Fähigkeit, bei technologischen Trends und Marktentwicklungen unserer Zeit voraus zu sein. Über die Jahre haben wir uns in den Bereichen IoT, E-Health und Chatbots besonders spezialisiert. + +Bei VIVAI legen wir als familiengeführtes Unternehmen seit unserer Gründung im Jahr 1996 großen Wert auf Vertrauen, Wertschätzung, Loyalität und Empowerment. Diverse Personalauszeichnungen im Bereich der Work-Life Balance und der Unternehmenskultur geben uns recht. + +Weitere Informationen über VIVAI finden Sie unter www.vivai.de",1996,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/675ef260d6ce83000122a020/picture,"","","","","","","","","" +Ambrosys,Ambrosys,Cold,"",38,information technology & services,jan@pandaloop.de,http://www.ambrosys.de,http://www.linkedin.com/company/ambrosys,"","",63A Geschwister-Scholl-Strasse,Potsdam,Brandenburg,Germany,14471,"63A Geschwister-Scholl-Strasse, Potsdam, Brandenburg, Germany, 14471","energy management, urban mobility solutions, tolling systems, datadriven platforms, private ai models, agile software development, complex algorithms, software development, predictive maintenance, cloud microservices, research and development in the physical, engineering, and life sciences, data management, energy distribution modeling, digital twins, regulatory compliance, energy asset management, automation, real-time data, supercomputing for ai, cloud solutions, b2b, scenario testing, complex systems management, digital twins for energy, virtual sensors, containerization, data science, security solutions, business intelligence, predictive analytics, devops, virtual environments, mobility, optimization algorithms, high-performance computing, machine learning, consulting, scenario generation, api integration, data security, data visualization, autonomous driving, risk assessment, energy, large-scale data processing, predictive modeling, smart tolling, data platforms & apps, artificial intelligence, ai algorithms, ml pipelines, services, ai engineering, energy & utilities, oil & energy, information technology & services, cloud computing, enterprise software, enterprises, computer software, analytics, computer & network security",'+49 176 82001688,"Gmail, Google Apps, Nginx, Mobile Friendly, Google Tag Manager, Scala, Docker, Android, Remote, React Native, AI, Jira, n8n, Amazon S3, Apache Kafka, Kubernetes, LeafLink, MinIO, Python, ChatGPT, Claude, Lexity","","","","","","",69bab5a3b4ad4200013ba87e,7375,54171,"Ambrosys GmbH is a technology company located in Potsdam, Germany, specializing in managing complex systems through advanced data science, artificial intelligence, and machine learning. With over 15 years of experience, the company employs around 40 professionals, including developers, data scientists, and management consultants. The team is dedicated to solving challenging problems using clean architecture principles and agile software development. + +Ambrosys develops tailored algorithms, software modules, and platforms, focusing on smart vehicles and intelligent transportation systems. Their key activities include vehicle positioning, tolling systems, smart city conceptualization, and large-scale traffic simulation. The company also engages in research and development for mobility concepts and participates in European and regional projects, such as MANNHEIM-EMDRIVE. Ambrosys is committed to delivering high-quality solutions that enhance technological capabilities in smart tolling and car computing.",2008,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/675622e7c58f030001a83d39/picture,"","","","","","","","","" +navel robotics GmbH,navel robotics,Cold,"",14,electrical/electronic manufacturing,jan@pandaloop.de,http://www.navelrobotics.com,http://www.linkedin.com/company/navel-robotics-gmbh,"","",1 Agnes-Pockels-Bogen,Muenchen,Bayern,Germany,80992,"1 Agnes-Pockels-Bogen, Muenchen, Bayern, Germany, 80992","artificial intelligence, artificial empathy, emotional intelligence, care robot, social resonance, social robotics, autonomous products, artificial social intelligence, computers & electronics manufacturing, social assistance, expressive facial expressions, social signal processing, affective empathy, social skills, data protection, robotics, natural language processing, care home robot, natural language understanding, robot control studio, social relationship quality, cognitive activation, robotic companionship, social interaction micro-interventions, social robot acceptance, social behavior algorithms, robotic character design, social relationship building, emotional support, mirror neuron stimulation, social relationship metrics, sensor technology, social signals analysis, ai, dementia support, robotic care assistant, emotional ai, social interaction, elderly care, empathy simulation, social signals recognition, sensor fusion, robot in care, social robot, privacy compliant, social robotics platform, eye contact, microphone array, robotic caregiver, social robot in dementia care, user interaction, computer vision, human-like communication, cognitive empathy, emotion recognition, behavioral ai, privacy-by-design, healthcare, sdk python, social robot for loneliness alleviation, home health care services, human-robot interaction, ai-powered robot, gpt language model, social resonance measurement, empathy robot, elderly care robot, social signal analysis in robots, social intelligence, face recognition, user interface, cloud updates, services, lidar sensors, b2c, non-profit, information technology & services, electrical/electronic manufacturing, mechanical or industrial engineering, health care, health, wellness & fitness, hospital & health care, nonprofit organization management",'+49 89 87769826,"Outlook, Mapbox, Slack, Bootstrap Framework, Vimeo, Mobile Friendly, Apache, Google Tag Manager, WordPress.org, Micro, IoT, Android, Node.js, Deel, Remote, AI, Viewpoint, Circle",2000000,Seed,710000,2023-01-01,"","",69bab5a3b4ad4200013ba880,8734,62161,"Navel Robotics GmbH is a Munich-based startup founded in May 2017. The company develops socially intelligent robots named Navel, designed to facilitate intuitive human-like interactions through advanced AI. These robots aim to make technology accessible to elderly and non-tech-savvy users, enhancing their quality of life. + +Navel Robotics specializes in creating robots with lively presence and social skills, utilizing deep learning, machine learning, and various scientific disciplines. Their flagship product, the Navel Robot, serves as an entertainer and companion for lonely or elderly individuals, providing support in social services and nursing homes. The company is focused on B2B markets, targeting nursing homes, private elderly care, and research institutions, with plans for small batch production by late 2023 and series production by 2026.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68456369410d5e00016c1c0d/picture,"","","","","","","","","" +skib.,skib,Cold,"",20,management consulting,jan@pandaloop.de,http://www.skib.io,http://www.linkedin.com/company/skib-automations,"","","",Hamburg,Hamburg,Germany,"","Hamburg, Hamburg, Germany","business consulting & services, immobilienautomatisierung, lead generation, ai-gestützte automationen, custom automation, team enablement, ki-automatisierung, workflow optimization, b2b, n8n automatisierung, prozess deepdive, systemintegration, real estate, software development, automatisierte wachstumssysteme, automatisierte expos-erstellung, custom-code, automatisierungslösungen, client acquisition, marketing automation, api-integration, customer engagement, content automation, services, information technology & services, consulting, ki-gestützte marketing-tools, computer systems design and related services, lead-management automatisierung, prozessautomatisierung, customer retention, real_estate, management consulting, marketing & advertising, sales, saas, computer software, enterprise software, enterprises",'+49 176 43618386,"Gmail, Google Apps, Amazon AWS, Google Tag Manager, Mobile Friendly","","","","","","",69bab5a3b4ad4200013ba887,6798,54151,"Most companies grow slower than they could, because their processes hold them back. + +At skib. we build AI-powered automation systems that plug seamlessly into existing operations, while feeling like tailor-made in-house solutions. + +Our approach combines a proven automation ecosystem with custom adaptations for every business. + +The result: less manual work, lower costs, and scalable structures that grow without constant hiring.",2024,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6875dd397266670001b231a3/picture,"","","","","","","","","" + +beyondbots,beyondbots,Cold,"",13,information technology & services,jan@pandaloop.de,http://www.beyondbots.com,http://www.linkedin.com/company/beyondbots,"","",21 Sophienstrasse,Stuttgart,Baden-Wuerttemberg,Germany,70178,"21 Sophienstrasse, Stuttgart, Baden-Wuerttemberg, Germany, 70178","it services & it consulting, low code application development, ai-driven decision making, e-commerce, low code automation, ai in business transformation, generative ai, ai in customer support automation, ai and change management, business process automation, business impact of ai, digital transformation, ai model implementation, ai enablement, software development, ai for sales forecasting, ai for smes and large enterprises, scalability of automation, end-to-end data integration, ai-driven innovation, information technology and services, computer systems design and related services, business consulting, ai and digital transformation, ai automation, workflow orchestration, ai model deployment, hybrid cloud data integration, workflow automation, ai project management, ai for hr onboarding, ai and business growth, data synchronization, services, data integration, ai strategy and blueprint, ai blueprints, ai as a service, data transformation, no code/low code platforms, ai in supply chain, b2b, ai strategy, autonomous ai agents, ai deployment, change management in ai, hybrid cloud integration, ai technology adoption, automation journey, ai in customer service, no code low code automation, retail, ai in financial data analysis, consulting, ai use cases, process optimization, artificial intelligence, process automation, information technology & services, consumer internet, consumers, internet, management consulting, enterprise software, enterprises, computer software",'+49 711 94542820,"Gmail, Google Apps, CloudFlare Hosting, Atlassian Cloud, Slack, Hubspot, Facebook Login (Connect), Mobile Friendly, DoubleClick, Facebook Widget, Google Dynamic Remarketing, Linkedin Widget, Linkedin Login, DoubleClick Conversion, Linkedin Marketing Solutions, Google Tag Manager, WordPress.org, Automation Anywhere, Uipath, AI, SES, ANGEL LMS","","","","","","",69bab5982f92db000106f761,7375,54151,"beyondbots GmbH is an international tech firm based in Stuttgart, Germany, specializing in AI-powered automation solutions for enterprises and small to medium-sized businesses. Founded by experts in digital transformation and AI automation, the company aims to simplify and scale automation journeys for businesses of all sizes. Their team includes professionals with extensive backgrounds in technology, marketing, and IT infrastructure. + +The company offers two primary engagement models to enhance automation efficiency. The Enablement Model focuses on fast implementation of operational automation and AI blueprints, providing tailored strategies and implementation support. The Service Model delivers AI-driven improvements with minimal customer involvement, offering managed services that ensure measurable business results. Their services cover areas such as Revenue Operations, eCommerce, Supply Chain optimization, and cloud computing.",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66d4d5ae73caef00015e66d1/picture,"","","","","","","","","" +applord GmbH,applord,Cold,"",12,information technology & services,jan@pandaloop.de,http://www.applord.de,http://www.linkedin.com/company/applord-gmbh,https://www.facebook.com/profile.php,"",1 Dresdener Strasse,Aachen,Nordrhein-Westfalen,Germany,52068,"1 Dresdener Strasse, Aachen, Nordrhein-Westfalen, Germany, 52068","it system custom software development, ki für echtzeitkommunikationsanalyse, ki in kundenfeedback, integrityguardian technologie, natural language processing, unternehmenssoftware, computer systems design and related services, betrugserkennung, customer relationship management, ki halluzinationen vermeiden, ressourcenschonende ki-modelle, government, ki in supportsystemen, ki in compliance, software development, ki-entwicklung, integrityguardian, on-premise ki, operational efficiency, on-premise ki-lösungen, ki für sichere unternehmensinfrastruktur, kommunikationsanalyse, business intelligence, ki in finanzwesen, information technology & services, artificial intelligence, risk management, b2b, künstliche intelligenz, datenschutz, cybersecurity, ki für kundenstimmung in echtzeit, european ai center, services, ki-infrastruktur, ki-optimierung, ki-anwendungen, consulting, ki-lösungen, data security, entscheidungsunterstützung, machine learning, ki-modelle, ki für betrugsschutz in unternehmen, ki in betrugserkennung, ki in entscheidungsfindung, ki für unternehmen in deutschland, ki in datenanalyse, post- und e-mail-management, fraud detection, ki in prozessautomatisierung, ki für datenschutzkonforme anwendungen, ki in kommunikation, datenschutzkonform, kundenstimmungsanalyse, ki in dokumentenmanagement, ki-sicherheit, finance, crm, sales, enterprise software, enterprises, computer software, analytics, computer & network security, financial services",'+49 8843 6258001,"Outlook, Ubuntu, Nginx, Bootstrap Framework, Woo Commerce, Shutterstock, Mobile Friendly, WordPress.org, Remote, Angular, AWS SDK for JavaScript, Spring, Spring Boot","","","","","","",69bab5982f92db000106f771,7375,54151,"applord GmbH is a program development company based out of Dresdener Str. 1, Aachen, North Rhine-Westphalia, Germany. + +Impressum: https://www.applord.de/impressum/ +Datenschutz: https://www.applord.de/datenschutzerklaerung/",2001,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67517f3cd7d0ae000116adf2/picture,"","","","","","","","","" +SOGEDES,SOGEDES,Cold,"",25,information technology & services,jan@pandaloop.de,http://www.sogedes.com,http://www.linkedin.com/company/sogedes,https://www.facebook.com/sogedes,"",14 Havellandstrasse,Mannheim,Baden-Wuerttemberg,Germany,68309,"14 Havellandstrasse, Mannheim, Baden-Wuerttemberg, Germany, 68309","ki, customer service, kundenservice, ai, contact center, rpa, call center, iot services, ivr, chatbots, conversational agents, customer journey analytics, intelligent automation, conversational ai, omnichannel, customer interaction, consulting, video engagement, gamification, it services & it consulting, natural language processing, contact center platform, it helpdesk, gdpr compliance, ai support for service agents, ai in hr and workforce management, multi-channel support, customer service & support, business automation, ai-as-a-service, customer experience, agent assist, cloud computing, services, customer insights, omnichannel customer engagement, ai quality management, retail, hyperautomation, unified communications, speech analytics, process automation, bot maintenance, employee engagement tools, customer journey management, live call translator, ai chatbots, voicebots, ai-enabled speech analytics, systemintegration, customer self-service, digital worker, real-time analytics, crm integration, data security, intelligent document processing, cloud contact center, real-time translation, ai-driven decision making, next-level e-mail intelligence, data analytics, performance management, workforce engagement, business consulting, machine learning, software development, managed cloud services, automation workflow, information technology & services, ai-driven customer service, automated email handling, computer systems design and related services, b2b, performance optimization, robotic process automation, customer data utilization, quality monitoring, artificial intelligence, enterprise software, enterprises, computer software, computer & network security, management consulting",'+49 621 92108300,"Salesforce, Outlook, Microsoft Office 365, Atlassian Cloud, Hubspot, Slack, Google Tag Manager, Bootstrap Framework, Facebook Custom Audiences, DoubleClick, Facebook Widget, WordPress.org, Bing Ads, Linkedin Marketing Solutions, Google Dynamic Remarketing, Mobile Friendly, DoubleClick Conversion, Apache, Facebook Login (Connect), Render, AI","","","","","","",69bab5982f92db000106f763,7375,54151,"SOGEDES is an IT service and solutions provider focused on digital transformation and customer communication technologies. With over 20 years of experience in omnichannel solutions and 12 years in AI, the company specializes in enhancing customer relationships through a blend of technology and human interaction. SOGEDES employs around 50 team members and has established long-term partnerships with clients, supported by 20 solution partners across three continents. + +The company offers a range of services, including Omnichannel Contact Center as a Service, IT services and system integration, intelligent automation, cloud computing, and software development. SOGEDES is known for its expertise in hyperautomation and Robotic Process Automation (RPA), which help organizations streamline processes and improve efficiency. The company values customer empathy, innovation, and employee development, fostering a supportive and diverse work culture that encourages creativity and growth.",2002,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f8bda6a24ad90001d96366/picture,"","","","","","","","","" +Vernaio,Vernaio,Cold,"",16,information technology & services,jan@pandaloop.de,http://www.vernaio.com,http://www.linkedin.com/company/vernaio,https://facebook.com/PerfectPatterMuenchen/,https://twitter.com/PerfectpatternE,71 Boschetsrieder Strasse,Munich,Bavaria,Germany,81379,"71 Boschetsrieder Strasse, Munich, Bavaria, Germany, 81379","machine learning, data analytics, stochastic processes, sustainability, mixing, predictive maintenance, centerlining, hidden champions, automl, iot, quantum, ev, biotech, industry, root cause analysis, operations, manufacturing, slurry, causal ai, ai, steel, paper, prevent disruptions, sdks, functional analysis, pharma, fabrics, glass, differential geometry, theoretical physics, prescriptive maintenance, explainability, artificial intelligence, industry 40, rd, causality, production, real time, operations data, predict, battery, industrial, visualization, neural network, textiles, pathway, data science, battery cells, automotive, process controls, causation, software development, autonomous root cause analysis, ai-powered solutions, research and development in the physical, engineering, and life sciences, self-supervised learning, ai engines, ai for high-dimensional data, r&d acceleration, anomaly detection engine, production optimization, contrastive learning, kpi optimization, research & development, anomaly detection, b2b, industrial ai, constraint management, ai in industry 4.0, ai for complex systems, customer relationship management, production planning, causal inference in manufacturing, process stability, process disruption prevention, edge ai for industry, real-time intervention, process optimization, root cause engine, consulting, ai for continuous production, ai engines suite, process control, low-code ai, system-level understanding, industrial automation, on-premise ai, stochastic differential geometry, data privacy, data efficiency, ai for process variability, ai for safety-critical processes, causality simulation, data-driven insights, edge computing, services, information technology & services, environmental services, renewables & environment, mechanical or industrial engineering, crm, sales, enterprise software, enterprises, computer software",'+49 89 58801810,"Cloudflare DNS, Route 53, Outlook, Amazon AWS, Google Tag Manager, Typekit, Mobile Friendly, Vimeo, Hotjar, reCAPTCHA, IoT, Remote, AI, Android",1240000,Other,"",2022-05-01,1000000,"",69bab5982f92db000106f766,3556,54171,"Vernaio is a deep-tech AI company based in Munich, Germany, with an additional office in San Diego, California. Founded in 2012, the company specializes in causal-AI solutions that optimize manufacturing and production processes in real time. Vernaio's innovative technology identifies true cause-and-effect relationships in complex industrial settings, allowing for end-to-end optimization of key performance indicators such as quality, yield, and energy use. + +The company's flagship product, Process Booster X (PBX), functions as an AI copilot for production lines. It autonomously monitors raw, unlabeled time-series data from the factory floor, detecting disruptions and making real-time adjustments to improve efficiency. PBX is designed for complex process industries, including paper and automotive manufacturing, and is available through AWS Marketplace. Vernaio serves prominent clients like Siemens and Heidelberg, focusing on enhancing productivity in large-scale manufacturing operations.",2012,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66d7e6fc424e260001cb6a2c/picture,"","","","","","","","","" +vAudience,vAudience,Cold,"",30,information technology & services,jan@pandaloop.de,http://www.vaudience.ai,http://www.linkedin.com/company/vaudience,"",https://twitter.com/vaudience_,16 John-Skilton-Strasse,Wuerzburg,Bayern,Germany,97074,"16 John-Skilton-Strasse, Wuerzburg, Bayern, Germany, 97074","informatik, large language models, agentensysteme, kuenstliche intelligenz, javascript, multirag, chat interfaces, streaming, team collaboration und prompting, it services & it consulting, datenschutz, b2b, ki-training, data security, ki-tools für deutsche unternehmen, ki-entwicklung seit 2016, dsgvo-konforme automatisierung, ki-strategie, ki-community deutschland, ki-implementierung, ki-modelle chatgpt, ki-anwendungen, ki-software, effizienzsteigerung, ki-management, ki-partner, multi-agent-systeme, prozessoptimierung, ki-innovation, services, ki-forschung partnerschaften, ki-beratung, automatisierung, dsgvo-konforme ki-lösungen, ki-sicherheit, ki-entwicklung, ki-tools für deutschland, computer systems design and related services, ki-integration, unternehmenssoftware, ki-gestützte bildgenerierung, ki-modelle, ki-modelle in europa, automatisierungstechnologie, ki-entwicklung in europa, ki-gestützte prozessautomatisierung, künstliche intelligenz, ki-unternehmen, ki-plattform, ki-projekte, ki-modell-kompass, artificial intelligence, nexus plattform, ki-gestützte textgenerierung, ki-model-kompass, bildgenerierung ki, ki-tools, software development, ai, ki-community, ki-lösungen, ki-forschung, ki-schulungen für unternehmen, eu-gehostete ki-modelle, information technology and services, data processing and hosting services, ki-schulungen, ki-workshops, ki-workshops in würzburg, ki-workflows, ki-tools für unternehmen, datenschutz in ki, consulting, ki-experten, textgenerierung ki, ki-events, hyperrag-system, education, legal, information technology & services, computer & network security","","MailJet, Rackspace MailGun, Gmail, Google Apps, Microsoft Office 365, Google Cloud Hosting, Outlook, Slack, Google Dynamic Remarketing, DoubleClick Conversion, Linkedin Marketing Solutions, Wix, Nginx, DoubleClick, Varnish, Mobile Friendly, Google Tag Manager, AI, Remote",1910000,Seed,1540000,2019-06-01,"","",69bab5982f92db000106f76f,7375,54151,"vAudience is a DSGVO-compliant AI solutions provider based in Würzburg, Germany, with over 8 years of experience in the field. Founded in 2016, the company employs around 30 experts and collaborates with Technische Hochschule Würzburg-Schweinfurt and the University of Würzburg. vAudience aims to help enterprises become AI-first organizations by offering customized AI solutions and leveraging scientific expertise. + +The company’s flagship product is the Nexus Platform, an all-in-one AI platform tailored for European enterprises. It features professional prompt management, flexible model selection, image generation, and integrated tools, all within a single interface that ensures data remains within the EU. vAudience also develops custom AI solutions, provides consulting and integration services, and offers training courses for business leaders. Their approach includes a structured customer journey from consultation to implementation, ensuring clients receive tailored support and education.",2016,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67c4965a9743e90001441070/picture,"","","","","","","","","" +AskUI,AskUI,Cold,"",20,information technology & services,jan@pandaloop.de,http://www.askui.com,http://www.linkedin.com/company/askui,https://facebook.com/askyourui/,https://twitter.com/ask_ui,17 Emmy-Noether-Strasse,Karlsruhe,Baden-Wuerttemberg,Germany,76131,"17 Emmy-Noether-Strasse, Karlsruhe, Baden-Wuerttemberg, Germany, 76131","apa, agentic process automation, test automation, ui automation, software testing, intelligent automation, test automation & ui automation, sap automation, rpa, intent automation, customs automation, technology, information & internet, information technology & services","","Amazon SES, Gmail, Google Apps, GitHub Hosting, Webflow, Hubspot, Slack, Mobile Friendly, Remote, Circle, AI, ANGEL LMS, Mode, Act!",6660000,Seed,4730000,2023-08-01,1800000,"",69bab5982f92db000106f773,"","","AskUI is a Germany-based company located in Karlsruhe that specializes in AI-driven visual automation and computer use agents. The company aims to help organizations automate workflows across various applications, including desktop, mobile, and web, without relying on fragile scripts. Its mission is to reduce repetitive tasks by using artificial intelligence to interpret and automate application interfaces, particularly in complex environments like SAP systems and Citrix setups. + +The flagship product, Caesr, is an automation toolkit that leverages AI vision for UI testing, document processing, and intelligent automation. It features visual element recognition that adapts to UI changes, allowing for seamless automation without maintenance. Caesr also supports natural language workflow creation, enabling users to describe tasks in everyday language. AskUI's solutions cater to various industries, including manufacturing, finance, and healthcare, and emphasize enterprise security and compliance. The company serves large enterprises, demonstrating its effectiveness in organizations with significant automation needs.",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69ae28e222a43f0001cef47d/picture,"","","","","","","","","" +equeo GmbH,equeo,Cold,"",14,e-learning,jan@pandaloop.de,http://www.equeo.de,http://www.linkedin.com/company/equeo,https://facebook.com/equeo,https://twitter.com/equeoGmbH,1 Kissinger Strasse,Berlin,Berlin,Germany,14199,"1 Kissinger Strasse, Berlin, Berlin, Germany, 14199","digitalisierung, prozessoptimierung, smart learning solutions, elearning, corporate learning, mobile learning, digitale transformation, weiterbildungen, e-learning providers, industry 4.0, digital coaches, ai-gestützte schulung für ingenieurbüros, prüfungscoach, corporate training, virtuelle coaches, innovative lernmethoden, adaptive lernplattformen, ai-gestützte kommunikation, kurz-dokumentarfilme für change management, professional and management development training, personalisiertes lernen, smart learning, e-learning, consulting, ai-basierte trainings, software development, kommunikationstraining, generative ai, digitale lerninhalte, ai-basierte gesundheitscoaches, dialogische ai-lösungen, ai-gestützte simulationen, natural language processing, hybrid kommunikationstraining, unternehmensweiterbildung, large language models, vertriebscoach, hybrid training, digitalisierung in der weiterbildung, health coach, mobile learning lösungen, services, artificial intelligence, industrie 4.0 training, ai-framework für dialogsysteme, künstliche intelligenz im lernen, information technology & services, personalisierte lerninhalte, personalized learning, ai-coaching, ai-framework entwicklung, webbasierte lernmodule, online trainings, ki-gestützte feedbacksysteme, ai-gestützte prüfungsbegleitung, ai framework, e-learning plattformen, ai dialog solutions, ai-driven learning, ai-gestütztes lernen, digitale weiterbildungsformate, ki-basierte analyse, automatisierte content-erstellung, change management videos, interne kommunikation, education, b2b, digital transformation, industrie 4.0 smart learning system, chatgpt integration, ai-basierte projektkommunikation, ai-gestützte vertriebscoaching-tools, adaptive learning, automatisierte lernprozesse, healthcare, internet, computer software, education management, professional training & coaching, health care, health, wellness & fitness, hospital & health care",'+49 30 67951116,"Outlook, MailChimp SPF, Microsoft Office 365, Squarespace ECommerce, Mobile Friendly, Google Play, Typekit, Android, Remote","","","","",276000,"",69bab5982f92db000106f76a,8299,61143,"equeo berät Unternehmen bei der Konzeption und Umsetzung von Smart Learning Solutions: methodisch-innovativen und flexiblen Weiterbildungsformaten. + +Zu unseren Kunden gehören sowohl nationale, als auch internationale Unternehmen und Organisationen wie Google, Ergo Versicherungen, Sanofi, Deutsche Wohnen, UNHCR, VR Leasing Gruppe, ERV Reiseversicherung etc. +Besonders starke Partnerschaftsbeziehungen pflegen wir zu den Berliner Universitäten, der Universität Potsdam und Institutionen wie dem Institute of Electronic Business (IEB) und dem Humboldt Institut für Internet und Gesellschaft (HIIG). International sind wir unter anderem in regelmäßigem Austausch mit der Universidad de Alicante/Spanien, aber auch mit Unternehmen und Bildungsinstitutionen in Mountain View, Stanford oder Perth. + +Um unsere Kunden inspirieren zu können, müssen wir uns selbst inspirieren lassen. Dazu nutzen wir unser Netzwerk und bauen es kontinuierlich weiter aus. + +Momentan sind wir auf der Suche nach einem Projektmanager, Junior Sales Manager und Senior Front End Developer. + + + +Impressum: +equeo GmbH +Kissinger Strasse 1-2 +14199 Berlin +Telefon: +49 / (0) 30 6795 1116 +eMail: kontakt@equeo.de +V.i.S.d.Redaktion: Tim Kaufhold + +Gesellschaft mit beschränkter Haftung, Sitz Berlin +Geschäftsführer: Thomas Flum +Amtsgericht Charlottenburg +HRB 114217B +USt-IdNr.: DE260909054 +Alle Angaben gemäß § 5 TMG",2008,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66ebe7a702acd60001cdb60e/picture,"","","","","","","","","" +O.group GmbH,O.group,Cold,"",19,marketing & advertising,jan@pandaloop.de,http://www.ogroup.de,http://www.linkedin.com/company/o-group-gmbh,"","","",Leipzig,Saxony,Germany,"","Leipzig, Saxony, Germany","advertising services, marketing, customer service, ai voice-bot, data collection, market research, digital marketing, customer satisfaction, content creation, social media management, brand strategy, advertising, seo, software development, full-service agency, business communication, customer journey, feedback surveys, automated responses, helpdesk solutions, voice assistant, call center, operational efficiency, personalized recommendations, no-code setup, real-time analytics, cost savings, customer insights, online marketing, interactive selection, 1:1 customer interaction, training services, public service, traffic information, 24/7 availability, it solutions, engagement strategies, issue resolution, digital assistant, customer support, service automation, call management, customer retention strategies, user experience, kpi tracking, voice recognition, natural language processing, application integration, operational workflow, responsive design, b2b, consulting, services, marketing & advertising, information technology & services, search marketing, ux, artificial intelligence",'+49 341 91355888,"Amazon SES, Rackspace MailGun, Outlook, Microsoft Office 365, Android, Node.js","","","","","","",69bab5982f92db000106f76c,7311,54181,"O.group GmbH is a marketing and consulting agency located in Leipzig, Germany. Founded in 2017, the company employs around 30 people and specializes in advertising services. O.group positions itself as the agency for 360-degree marketing, focusing on the planning, conception, and implementation of marketing and sales campaigns, along with employee staffing services. + +The agency is structured into four internal business units: O.phon, O.media, O.tech, and O.trend. O.group is composed of experienced professionals who assist businesses in navigating challenges and organizational changes. Their methodology, known as M.O.P.P., emphasizes Management, Organization, People, and Processes. The company supports clients through strategic planning, market analysis, implementation, and employee training to promote sustainable organizational transformation.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e3e7467e07e000018d9df9/picture,"","","","","","","","","" +audEERING GmbH,audEERING,Cold,"",46,information technology & services,jan@pandaloop.de,http://www.audeering.com,http://www.linkedin.com/company/audeering-gmbh,"","",1 Friedrichshafener Strasse,Gilching,Bavaria,Germany,82205,"1 Friedrichshafener Strasse, Gilching, Bavaria, Germany, 82205","speech emotion recognition, music information retrieval, automatic vocal speaker state & trait analysis, emotion analytics technology, voice coding, artifical intelligence, speech analytics, emotion ai, it services & it consulting, vocal biomarkers, robotics, xr plugin, multimodal expression analysis, vocal expression, privacy compliant, low resource consumption, consulting, information technology and services, real-time voice analysis, healthcare technology, audio analysis, voice-based diagnostics, computer systems design and related services, automotive, b2b, machine learning, acoustic parameters, emotion dimensions, health biomarkers, speaker attributes, voice ai, voice translation, emotion recognition, healthcare, market research, acoustic scene detection, voice biometrics, services, empathy ai, education, information technology & services, mechanical or industrial engineering, artificial intelligence, health care, health, wellness & fitness, hospital & health care",'+49 810 57756150,"Outlook, MailChimp SPF, Slack, Mobile Friendly, WordPress.org, Shutterstock, Nginx, Google Tag Manager, AI","",Merger / Acquisition,0,2025-03-01,"","",69bab5982f92db000106f767,8731,54151,"audEERING GmbH is a German company founded in 2012, specializing in AI-powered voice and audio analysis. Based in Gilching near Munich, with an additional R&D office in Berlin, the company focuses on innovative B2B software products that include emotion recognition, speaker states, vocal biomarkers, and acoustic scene detection. Their technology leverages deep neural networks and unsupervised learning to create empathetic AI solutions that meet human needs. + +The company offers a range of products, including devAIce®, which provides emotion detection and audio analysis capabilities, and devAIce XR for extended reality applications. Their solutions are designed for easy integration and are available in various formats such as web APIs, SDKs, and native apps. audEERING serves a diverse clientele, including major companies in telecommunications, automotive, and media, as well as sectors like healthcare and entertainment. The company emphasizes responsible AI and agile development, with a team of over 70 professionals dedicated to advancing audio AI technology.",2012,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6845a616bc72cc00014219ca/picture,"","","","","","","","","" +Paul's Job,Paul's Job,Cold,"",28,information technology & services,jan@pandaloop.de,http://www.paulsjob.ai,http://www.linkedin.com/company/paulsjob,"","",19 Saarbruecker Strasse,Berlin,Berlin,Germany,10405,"19 Saarbruecker Strasse, Berlin, Berlin, Germany, 10405","talent acquisition, talent engagement, recruiting, generation z, ai, startup, technology, technologie, hr, talent relationship management, career, technology, information & internet, workflow automation, ai recruiting platform, automated document verification, candidate comparison, ai assistants, management consulting services, api integrations, multilingual recruiting, candidate journey optimization, ai-driven talent pooling, ai in hr tech, agentic ai, interview intelligence, talent pool management, multichannel candidate outreach, ai-powered onboarding, information technology and services, information technology, candidate experience, candidate management, iso-certified, candidate engagement, onboarding support, voice-based assessment, candidate communication automation, b2b, candidate feedback automation, candidate tracking, language models, candidate anonymization, human resources services, recruiting automation, chatbot integration, automated scheduling, pre-screening automation, interview scheduling, voice message analysis, human resources, software development, candidate reactivation, candidate data structuring, high-volume recruiting, services, gdpr-compliant, information technology & services",'+49 69 26914965,"Cloudflare DNS, Outlook, YouTube, Google Tag Manager, Mobile Friendly",1247460,Seed,1247460,2022-02-01,"","",69bab5982f92db000106f76b,7375,54161,"Paul's Job is an AI-powered recruiting and HR automation platform designed to enhance high-volume hiring and employee management. Founded by Dominik, Yannick, and Putu, the company leverages advanced AI technology to streamline recruitment processes. Development began in 2024, with a beta launch the same year and a significant milestone achieved in March 2025 with the introduction of a fully automated application process. + +The platform features intelligent AI assistants that handle candidate inquiries and automate application pre-screening across various communication channels. It includes an applicant tracking system that allows recruiters to manage hiring steps efficiently, interview scheduling and summarization, and proactive talent pool management. Additionally, Paul's Job automates HR processes, such as managing employee records and compliance support. The platform is designed for high-volume recruiting across industries like retail, healthcare, and security, aiming to significantly reduce hiring times and improve candidate engagement.",2024,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68c7d5503124e20001f172dc/picture,"","","","","","","","","" +EggAI Technologies,EggAI,Cold,"",13,information technology & services,jan@pandaloop.de,http://www.egg-ai.com,http://www.linkedin.com/company/eggai-technologies,"","",61 Prinzregentenstrasse,Munich,Bavaria,Germany,81675,"61 Prinzregentenstrasse, Munich, Bavaria, Germany, 81675","enterprise ai, it services & it consulting, ai performance optimization, scalable ai systems, computer systems design and related services, consulting, mlops, ai cost management, ai technology integration, ai frameworks, ai lifecycle management, data management, ai automation, ai deployment, software development, ai best practices, ai integration, ai development, ai team collaboration, ai solution automation, ai transformation, ai system operation, ai accelerators, eggai meta framework, b2b, ai platform & operating model, generative ai, ai security, ai solution accelerators, digital transformation, machine learning, ai safety and reliability, eggai quality flow, autonomous ai agents, information technology and services, services, ai quality control, ai capability building, ai agents & automation, ai quality flow, ai quality & governance, ai solution deployment, ai solution governance, eggai composable stack, enterprise ai platform, enterprise ai solutions, ai solution scaling, ai governance, ai services, artificial intelligence, business intelligence, information technology & services, analytics","","Cloudflare DNS, Outlook, Microsoft Office 365, Slack, Mobile Friendly, Varnish, Python, Git, Microsoft Excel, Microsoft PowerPoint, Google AdWords Conversion, Fastapi, Apache Kafka, Frame, Flow","","","","","","",69bab5982f92db000106f76e,7375,54151,"EggAI Technologies is an enterprise-grade AI company that focuses on deploying scalable and secure generative AI and agentic systems. They help large organizations transition from prototyping to production, emphasizing the development of agentic workforces that collaborate with humans for effective automation. The company aims to accelerate AI time-to-value by building production-grade AI solutions that are business-impact driven. + +Their services include AI capability building for business and IT, AI delivery and operations, and the integration of AI technologies and best practices. EggAI also emphasizes quality measurement and governance throughout the AI lifecycle. Their offerings feature custom agentic workforces for task automation, AI-driven forecasting tools, and innovative solutions for industries facing challenges like labor shortages. Notable partnerships with companies such as Yasei Construction Co., Ltd. and Sovita highlight their impact in sectors like construction and food service.",2024,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67d8eb050cc316000122249a/picture,"","","","","","","","","" +synsugar,synsugar,Cold,"",12,information technology & services,jan@pandaloop.de,http://www.synsugar.com,http://www.linkedin.com/company/synsugar,"","","",Passau,Bavaria,Germany,"","Passau, Bavaria, Germany","dataleader, programming, prototyping, softwareentwicklung, use case ideation, new work, leadershipacademy, design thinking, coaching, dataliteracy, personalentwicklung, lifelong learning, techleadership, datenstrategie, beratung, datenkompetenz, machine learning, techleader, use case finding, tools, projektkonzeption, executive education, training, data science, design sprint, elearning, kuenstlicheintelligenz, datascience, genai, digitale transformation, prototypentwicklung, programmierung, dataleadership, it services & it consulting, unternehmensdaten, semantische suche, azure ai, ki in der energiebranche, ki-technologie, chat management, ki-innovation, b2b, kollaborationstools, ki-lösungen, beratung & training, prompt engineering, ki-anwendungen, ki-produktivitätssteigerung, computer systems design and related services, ki-plattform, it-systeme, data management, ki in der it-sicherheit, ki-management, datenschutz, ki-integration, ki-infrastruktur, ki im maschinenbau, data security, automatisierte prozesse, ki-beratung, dsgvo-konformer ki-chatbot, ki-workflow, künstliche intelligenz, ki-entwicklung, ki-optimierung, software development, ki-security, unternehmens-gpt, services, ki in der forschung & entwicklung, ki-training, digital transformation, ki-plattformen, it-infrastruktur, artificial intelligence, data analytics, ki in der produktentwicklung, consulting, ki-assistenz, ki-projektmanagement, kostenüberwachung, ki-tools, ki im personalwesen, ki-strategie, ki-architektur, ki-sicherheit, tool calling, ki in der automobilbranche, informationstechnologie, ai suite, datensicherheit, ki in der mobilitätsbranche, chatgpt für unternehmen, ki-projekte, ki-implementierung, semantische unternehmenssuche, compliance, unternehmenssoftware, business intelligence, education, manufacturing, information technology & services, e-learning, internet, computer software, education management, computer & network security, analytics, mechanical or industrial engineering","","Route 53, Gmail, Google Apps, Mobile Friendly","","","","","","",69bab5982f92db000106f775,7375,54151,"Wir zeigen Unternehmen den einfachen und schnellen Einstieg in die Welt der Künstlichen Intelligenz (KI). Unsere Kunden sind Unternehmen, die KI als Chance begreifen und ihre Potenziale schnell realisieren möchten. Unsere langjährige Erfahrung in Beratung, Data Science und Softwareentwicklung macht uns zum kompetenten Partner. + +Unsere Angebote +➤ Keynotes und Beratung: Finden Sie heraus, in welchen Bereichen Ihres Unternehmens KI den größten Mehrwert bietet. + +➤ Entwicklung von individueller KI-Software: Von der Idee bis zur Umsetzung – wir sind Ihr Partner für die Entwicklung und den Betrieb von KI-Lösungen. + +➤ synsugar AI Suite - Das ChatGPT für Unternehmen: Entwickeln Sie individuelle KI-Assistenten in Rekordzeit und DSGVO-konform. + +Weitere Informationen finden Sie unter www.synsugar.com",2022,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68c6ae4cf686f5000160d0c8/picture,"","","","","","","","","" +NorCom Information Technology GmbH & Co. KGaA,NorCom Information Technology GmbH & Co. KGaA,Cold,"",39,information technology & services,jan@pandaloop.de,http://www.norcom.de,http://www.linkedin.com/company/norcom,https://www.facebook.com/NorCom.de/,https://twitter.com/NorComAG,4 Gabelsbergerstrasse,Munich,Bavaria,Germany,80333,"4 Gabelsbergerstrasse, Munich, Bavaria, Germany, 80333","rechtskonformem data lifecycle management, big infrastructure, test data management & analysis, kuenstliche intelligenz, data science, information governance, data analytics, machine learning, offentliche verwaltung, professional services, big data, autonomous driving, natural language processing, schnell und sicherer umgang mit datenmengen, it services & it consulting, datenvisualisierung, ai-modelle, ki-apps entwicklung, ki für große datenmengen, ki-gestützte dokumentenprüfung, data management, ai-software, ki in der öffentlichen verwaltung, ki-entwicklungstools, rechtssichere datenverarbeitung, regulatory compliance, data integration, ki-asset management, automation, dasense, b2b, dokumentenmanagement, information technology, computer systems design and related services, automatisierung, sicherer daten austausch, ki-entwicklung, ki-plattform, predictive analytics, government, ki-sicherheit, large language model, ki-technologie, digital transformation, branchenfokus öffentliche verwaltung, ai-assistants, ki-implementierung, datenanalyse, data lifecycle management, ki-training, process optimization, consulting, open source assets, data processing, data security, ki-apps, rechtskonformes data management, unternehmensspezifische ki-modelle, fachwissen ki, public administration, workflow automation, fachspezifische sprachmodelle, ki-workflow automatisierung, automatisierte prozesse, artificial intelligence, ki-gestützte entscheidungsfindung, data engineering, open source ki assets, services, finance, legal, non-profit, information technology & services, professional training & coaching, enterprise software, enterprises, computer software, computer & network security, financial services, nonprofit organization management",'+49 89 939480,"Outlook, Google Cloud Hosting, Varnish, Google Analytics, Wix, Google Tag Manager, Mobile Friendly, AI, Remote, Elasticsearch, Google Publisher Tag (GPT), BERT, T5, Meta Llama 3, Hugging Face, SentenceTransformers","","","","",8100000,"",69bab5982f92db000106f73d,7375,54151,"NorCom Information Technology GmbH & Co. KGaA is a Munich-based company that specializes in developing and implementing big data, AI, and multimedia solutions. Founded to address challenges in managing large-scale data, NorCom focuses on secure data exchange, information governance, and AI-driven analytics. The company operates in various sectors, including media, automotive, finance, telecommunications, and government agencies. + +NorCom offers a comprehensive portfolio of solutions, including DaSense, a proprietary software for data management and analytics, and NCPower, a unified media factory system for multimedia content management. The company also provides data science consulting, custom software development, and advanced tools for big data processing and machine learning. NorCom serves international corporations and large public administrations, helping them tackle data-intensive applications and enhance their operations.",1989,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e0021d0d019e00011d15ae/picture,"","","","","","","","","" +AI Village,AI Village,Cold,"",14,information technology & services,jan@pandaloop.de,http://www.aivillage.de,http://www.linkedin.com/company/ai-village-h-rth,https://www.facebook.com/aivillage.eu/,"","",Huerth,North Rhine-Westphalia,Germany,"","Huerth, North Rhine-Westphalia, Germany","ki, ai, robotik, kuenstliche intelligenz, artificial intelligence, technology, information & internet, ki-partner, ki-unternehmen, ki-startups, b2b, services, ki-workshops, colleges, universities, and professional schools, unternehmensförderung, ki-forschung, ki-anwendungen, ki-strategie, ki-innovation, forschungspartner, ki-events, innovation, consulting, ki-entwicklung, government, ki-förderung, ki-regionale entwicklung, innovationscampus, ki-weiterbildung, ki-schulungen, ki-förderprogramm nrw, ki-projekte, ai village, veranstaltungen, ki-accelerator, ki im rheinischen revier, künstliche intelligenz, netzwerk, ki-partnernetzwerk, ki-region rhein, ki-community, ki-region, ki-netzwerk, education, weiterbildung, non-profit, ki-transformation, ki-showcases, ki im strukturwandel, ki-region nrw, ki-demonstrationen, research and development, ki-anwendungen testen, ki-projektentwicklung, information technology & services, nonprofit organization management, research & development",'+49 1578 2201105,"Mobile Friendly, WordPress.org, Nginx, Google Font API, Google Tag Manager, Bootstrap Framework, YouTube, Apache, AI","","","","","","",69bab5982f92db000106f76d,8731,61131,"AI Village is an innovation campus for artificial intelligence (AI) and robotics located in Hürth, North Rhine-Westphalia, Germany. It serves as a central hub for AI advancements, training, events, and practical applications, connecting over 450 AI startups, research institutions, and companies. Established with support from the German Federal Ministry for Economic Affairs and Climate Protection, AI Village aims to foster a growing ecosystem in the region. + +The campus offers a variety of services focused on AI integration and ecosystem building. These include training programs for specialists, networking events, and consulting support for businesses looking to implement AI technologies. AI Village features interactive demonstrators and project areas for hands-on experiences and collaborative research and development. Its fully digitalized infrastructure supports various AI-related activities, promoting efficiency and economic growth in the region.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f93a65d6aa740001b66258/picture,"","","","","","","","","" +Frontnow,Frontnow,Cold,"",23,information technology & services,jan@pandaloop.de,http://www.frontnow.com,http://www.linkedin.com/company/frontnow,"","",7 Choriner Strasse,Berlin,Berlin,Germany,10119,"7 Choriner Strasse, Berlin, Berlin, Germany, 10119","generative ai, artificial intelligence, kuenstliche intelligenz, kuenstliche intelligenz & aiaas, aiaas, saas, software development, enterprise ai solutions, search optimization, customer journey personalization, ai for product discoverability, conversion rate optimization, ai recommendations, ai for content generation, digital transformation, responsive design, ai customer experience, product data management, business intelligence, data cleaning and enrichment, customer relationship management, ai-driven customer experience, ai for market research, scalable product catalog management, ai in e-commerce, e-commerce, ai for customer support, ai for personalization at scale, genai product optimization, ai integration, personalized recommendations, search engine optimization, ai-powered cross-selling, data visibility, customer experience, d2c, customer insights, gdpr compliance, conversion optimization, b2b, real-time analytics, ai for digital accessibility, computer systems design and related services, machine learning, customer journey ai, personalized product recommendations, gdpr compliant ai solutions, data-driven decision making, retail, enterprise system integration, ai for retail, information technology and services, data enrichment and cleaning, search performance enhancement, natural language processing, services, scalable catalog management, natural language understanding, ai for complex catalogs, ai-based navigation assistance, ai for upselling, b2c, distribution, information technology & services, computer software, analytics, crm, sales, enterprise software, enterprises, consumer internet, consumers, internet, seo, search marketing, marketing, marketing & advertising",'+49 30 62930310,"Cloudflare DNS, Gmail, Google Apps, Microsoft Office 365, Amazon AWS, Vercel, Mapbox, Webflow, Sprig, Slack, Mobile Friendly, Linkedin Marketing Solutions, Google Tag Manager, Node.js, React Native, Docker, Android, Remote, AI",5719999,Seed,4179999,2024-03-01,"","",69bab5982f92db000106f772,7375,54151,"Frontnow is an AI-driven technology company that specializes in enterprise-ready solutions for e-commerce and retail. Founded by Bernhard Lihotzky and Cedric May, Frontnow leverages generative AI to enhance customer experiences, optimize product data, and support business growth. The company aims to make AI accessible and impactful, focusing on creating adaptive, hyper-personalized online shopping experiences that replicate in-store interactions. + +The core offering of Frontnow is its AI Driven Advise platform, which provides personalized product recommendations, seamless navigation assistance, and natural language understanding in 83 languages. The platform also includes real-time insights and analytics, ensuring compatibility with existing systems and compliance standards. Frontnow partners with industry leaders like Audi, Procter & Gamble, and Coop, demonstrating its commitment to driving growth and customer satisfaction in the retail sector.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/690aeb419960810001469ac1/picture,"","","","","","","","","" +Talonic,Talonic,Cold,"",22,information technology & services,jan@pandaloop.de,http://www.talonic.com,http://www.linkedin.com/company/talonic,"","","",Berlin,Berlin,Germany,"","Berlin, Berlin, Germany","software development, multi-format data processing, computer systems design and related services, schema generation, data structuring, data lineage, cloud deployment, data validation, on-premise deployment, ai-powered data extraction from varied templates, unstructured data extraction, healthcare, api integration, data compliance, information technology and services, machine learning, data security protocols, data management platform, ai data extraction, data transformation, natural language processing, workflow automation, data traceability, ai data structuring, financial services, validation reports, business user interface, data accuracy, no-code data definition, explainable ai results, data compliance with gdpr, validation-first output, handwritten notes processing, complex excel structuring, document automation, data automation, api access, structured datasets, data security, document processing, data management, data validation reports, b2b, finance, information technology & services, health care, health, wellness & fitness, hospital & health care, artificial intelligence, computer & network security",'+49 30 39894844,"Gmail, Google Apps, Amazon AWS, Slack, Mobile Friendly, Google Tag Manager, Vimeo, Ubuntu, Nginx, Python, pandas, Fastapi, AWS Trusted Advisor, Salesforce CRM Analytics, Linkedin Marketing Solutions, Node.js, Express, MongoDB, , Ivalua, Zoho CRM, CallMiner Eureka, Langchain, Angular","","","","","","",69bab5982f92db000106f774,7375,54151,"Talonic is a Berlin-based AI company that specializes in automating data extraction, cleaning, structuring, and standardization from unstructured sources. Founded by CEO Nikolas Adamopoulos and CTO Holger Nordsiek, Talonic aims to simplify data preparation for businesses, allowing them to transform chaotic data into machine-ready formats without needing extensive data engineering skills. + +The company offers an API-first platform that utilizes advanced machine learning models to automatically process complex data sources like PDFs and spreadsheets. Users can generate customized tables through simple chat inputs, integrating data with AI analytics for seamless automation. Talonic supports various deployment options, including cloud and on-premise solutions, while ensuring GDPR compliance and robust security practices. It serves industries such as healthcare, finance, and sustainability, helping organizations streamline their data processes and reduce manual workloads.",2023,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/695c9b21f1ae6200019c4460/picture,"","","","","","","","","" +melibo,melibo,Cold,"",24,information technology & services,jan@pandaloop.de,http://www.melibo.de,http://www.linkedin.com/company/melibo,"","","",Frankfurt,Hesse,Germany,"","Frankfurt, Hesse, Germany","software development, information technology & services",'+49 625 11751370,"Cloudflare DNS, SendInBlue, Outlook, Pipedrive, Microsoft Azure, Webflow, Hubspot, Amadesa, Google Tag Manager, Linkedin Marketing Solutions, Mobile Friendly, Google Analytics, DoubleClick Conversion, Google Dynamic Remarketing, DoubleClick, Visual Website Optimizer, Node.js, IoT, Avaya, React Native, Android, Deel, Remote, AI, Docker","","","","","","",69bab5982f92db000106f776,"","","melibo (ThinkingTech GmbH & Co. KG) is a German SaaS company based in Bensheim, Hessen. Founded in 2020, it specializes in a no-code Conversational AI platform designed to automate customer support, sales, and marketing, particularly for e-commerce businesses. The company operates as a B2B provider with a team of 16 employees, primarily developers, and is led by a team of six founders. + +The core offering of melibo is its no-code platform, which features a GPT-3 Knowledge Hub for creating advanced AI chatbots. These chatbots utilize natural language processing and machine learning to manage complex queries and improve over time. Key features include e-commerce chatbots that can automate up to 80% of customer inquiries, an integrated Ticket Center, Live Chat, and analytics tools. The platform supports multiple communication channels and integrates seamlessly with systems like Zendesk, ERP systems, Shopify, and CRMs, making it a comprehensive solution for customer service automation.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/687b5fb1618c160001194cc3/picture,"","","","","","","","","" +Birds on Mars,Birds on Mars,Cold,"",31,information technology & services,jan@pandaloop.de,http://www.birdsonmars.com,http://www.linkedin.com/company/birdsonmars,"","",10 Marienstrasse,Berlin,Berlin,Germany,10117,"10 Marienstrasse, Berlin, Berlin, Germany, 10117","daten, data analytics, kuenstliche intelligenz, it services & it consulting, generative ki, ai in society, ai in business, literacy & culture, quantified trees, computer vision, bigeye, kaleidofon, ai in culture, information technology & services, ki-strategie, responsible ai, ki-lösungen, ki-architektur, prompt engineering, ai culture, b2b, ml pipelines, computer systems design and related services, ai operations, ai sustainability, generative ai, ki-beratung, ai governance, engineering & operations, ai ethics, voice2voice chatbot, ai in climate, abfall abc, artificial muse, services, ai engineering, review summarizer, government, ai strategy, data & ai products, ai products, sprechendes bücherregal, software development, data & ai strategy, ki-produkte, ki-entwicklung, artificial intelligence, ki-nutzung, krach, consulting, ki-operationalisierung, ki-readiness","","Gmail, Google Apps, Slack, WordPress.org, Nginx, Wordpress.com, Mobile Friendly, Google Tag Manager, Scala, Vincere, Remote, AI, Microsoft PowerPoint","","","","","","",69bab5982f92db000106f768,7375,54151,"Birds on Mars is a Berlin-based AI consulting firm founded in 2017. The company specializes in responsible AI integration, guiding businesses from strategy development to full implementation with a ""Strategy by Doing"" approach. They focus on enabling companies to leverage AI profitably while minimizing risks through sustainable innovation. + +The firm offers comprehensive AI consulting services that cover the entire lifecycle of AI adoption. This includes developing tailored AI strategies and building internal competencies for ongoing management. Birds on Mars emphasizes customized solutions that prioritize process optimization, automation, and risk-averse innovation, helping clients achieve long-term competitive advantages. With an interdisciplinary team and ISO 27001 certification, they are committed to empowering clients for self-sufficiency and ensuring efficient, effective AI integration.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6916c18e4bd33d0001366934/picture,"","","","","","","","","" +myGPT,myGPT,Cold,"",17,information technology & services,jan@pandaloop.de,http://www.meingpt.com,http://www.linkedin.com/company/meingpt,"","",6 Muenchener Strasse,Taufkirchen,Bavaria,Germany,82024,"6 Muenchener Strasse, Taufkirchen, Bavaria, Germany, 82024","chatgpt, workshops, llm, elearning, begleitung, datenschutz, beratung, software development, ki für workflow automatisierung, ki-entwicklung, ki-use cases, construction, custom ai, datenintegration, ki-workflows, business intelligence, ki-assistenzsysteme, eu-gehostet, ki für unternehmen, business ki, ki-strategie, sicherheitskonzept, ki pilotprojekte, cloud computing, ki-entwicklungstools, manufacturing, consulting, content creation, unternehmenssoftware, ki-content, ki workshops, sicherheitsstandards, ki-software, unternehmensdaten, ki für dokumentenmanagement, pilotprogramm, healthcare, ki für automatisierung, api-integration, datenschutzkonforme ki, enterprise software, services, automatisierung, ki-support, datensicherheit, ki für business, generative ki, ki für datenbanken, schulungen, information technology & services, distribution, ki für datenanalyse, ki-management, ki für supportsysteme, computer systems design and related services, ki content hub, workflows, cloud hosting, ki integration in erp, deutsche ki-plattform, ki-training, ki-tools, b2b, digital transformation, on-premise daten, content hub, ki-assistenten, sicherheitszertifikat, ki-plattform, ki-integration, ki-workflows automatisierung, ki im mittelstand, dsgvo-konform, datenverknüpfung, sicherheit, enterprise ki, workflow automation, ki-implementierung, ki-management plattform, microsoft partner, education, e-learning, internet, computer software, education management, analytics, enterprises, mechanical or industrial engineering, health care, health, wellness & fitness, hospital & health care","","Cloudflare DNS, Gmail, Google Apps, Amazon AWS, Slack, Multilingual, Intercom, Mobile Friendly, Linkedin Marketing Solutions, Google Tag Manager","","","","","","",69bab5982f92db000106f769,7375,54151,"myGPT (meinGPT) is a GDPR-compliant AI platform tailored for teams and companies in the EU, especially German small and medium-sized enterprises (SMEs). It facilitates the secure integration of AI and automation into business processes, emphasizing data security and employee adoption through comprehensive onboarding, workshops, and training. + +The platform offers a range of features, including team collaboration tools, advanced integrations, and customization options to meet specific business needs. It acts as an intelligent intranet, combining large language models with company knowledge bases for efficient information retrieval and task automation. myGPT supports multilingual capabilities and is designed to run on consumer-grade hardware, promoting resource efficiency. The core product is the myGPT AI platform, which provides personalized AI experiences and enhances productivity through natural language conversations and process automation.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/687728ab4f848c00013319f2/picture,"","","","","","","","","" +homie AI,homie AI,Cold,"",14,information technology & services,jan@pandaloop.de,http://www.yourhomie.ai,http://www.linkedin.com/company/homieai,"","","",Cologne,North Rhine-Westphalia,Germany,"","Cologne, North Rhine-Westphalia, Germany","retailtech, kiberatung, kuenstliche intelligenz, software development, customer support reduction, scalable ai platform, support ticket management, support in multiple languages, sales boost, support ticket filtering, ai for retail support, b2b, data security, customer advice, api integration, personalized recommendations, ai workflows, enterprise ai, sales increase, eu hosting, transparent analytics, support chat escalation, enterprise integration, abandoned cart reduction, model context protocol (mcp), multi-language support, ai assistant, ai for retail, ai chatbots, services, conversion uplift, conversion rate optimization, ai for support escalation, gdpr compliant, multi-channel support, retail ai, ai in retail, ai for personalized shopping experience, computer systems design and related services, live dashboards, omnichannel advice, ai-driven upselling, ai for customer needs discovery, retail, personalized ai workflows, ai-powered sales, voice input support, consultation increase, automated support, support ticket reduction, customer engagement, ai-powered chat, dashboard analytics, ai for retail content optimization, gdpr compliance, eu data hosting, support automation tools, api access, customer support, shop system integration, retail ai solutions, ai for online and offline retail, product recommendations, e-commerce, support automation, ai for support ticket reduction, real-time customer advice, information technology, sales automation, d2c, ai for multilingual customer service, scalable ai, consumer_products_retail, information technology & services, computer & network security, consumer internet, consumers, internet, saas, computer software, enterprise software, enterprises","","Cloudflare DNS, Gmail, Google Apps, Hubspot, Google Tag Manager, Mobile Friendly, LinkedIn Ads, Google Analytics, Meta Ads Manager, Linkedin Marketing Solutions, Nestjs, TypeScript, MongoDB, Docker, Microsoft Azure Monitor, GitHub Actions, ebs, Shopify, Woo Commerce, Google, Google Workspace, Microsoft Office","","","","","","",69bab5982f92db000106f770,7375,54151,"homie AI stands for 100% personalized customer advice and support in online shopping. Top-tier retailers in Germany, Austria, and Switzerland trust our solution in their daily interactions with their customers. The highly specialized AI, trained in product advice, creates infinite consulting resources for your company in B2C, B2B, or B2B2C e-commerce. Millions of user interactions have shaped homie into a personal shopping power tool. + +With homie AI, you can create great shopping experiences and interactions for your customers in no time at all. Personal shopping is now possible for every shop visitor! Create homie for your customers and use it as a live chat in your online shop with our ""plug & play"" solution. +Now also available in your Shopify store in less than 3 minutes!",2023,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6738c19167657000016cfeb4/picture,"","","","","","","","","" +EDLIGO Talent Analytics and Learning Analytics,EDLIGO Talent Analytics and Learning Analytics,Cold,"",27,information technology & services,jan@pandaloop.de,http://www.edligo.net,http://www.linkedin.com/company/edligo-learning-and-talent-analytics,https://www.facebook.com/profile.php,https://twitter.com/EDUCATION4SIGHT,8 Donaustrasse,Ingolstadt,Bayern,Germany,85049,"8 Donaustrasse, Ingolstadt, Bayern, Germany, 85049","hr analytics, dei analytics, workforce intelligence, education, analytics, workforce analytics, employer branding, personalized recommendations, recruitment analytics, learning & development, esg reporting, ai, talent management, career path transparency, learning analytics, people data analytics, workforce reporting, predictive analytics, hr reporting, people data consolidation, hr metrics, talent analytics, strategic workforce management, competency analytics, software development, employee engagement, digital transformation, ai automation in hr, explainable ai in hr, competency mapping, ai with integrity, personalized learning paths, consulting, b2b, ai recruitment automation, human resources, bias mitigation in ai, ai for future workforce, workforce planning, technology, data-driven skill management, ai for diversity and inclusion, ai-enabled skills management, ai-enabled talent insights, ai bias reduction, ai transparency, employee retention strategies, workforce optimization, hr insights, management consulting services, skills gap analysis, workforce readiness, ai ethics in hr, ai recruiter agents, ai in education analytics, ai-powered hr decision support, career development, ai for strategic workforce planning, services, government, skills assessment, internal mobility, ai-powered talent management, ai-driven internal mobility, talent acquisition, fair ai assessments, healthcare, site_info, information technology & services, enterprise software, enterprises, computer software, health care, health, wellness & fitness, hospital & health care",'+49 91 31691325,"Gmail, Google Apps, Microsoft Office 365, Outlook, DoubleClick, Google Analytics, Mobile Friendly, Google Font API, Apache, Linkedin Marketing Solutions, Woo Commerce, reCAPTCHA, Vimeo, Cedexis Radar, Typekit, Google AdSense, JQuery 1.11.1, WordPress.org, Google Tag Manager, YouTube, Adobe Media Optimizer, Bootstrap Framework, AI, Android, Remote, Circle, Micro","","","","","","",69bab5982f92db000106f777,8731,54161,"EDLIGO is a technology firm based in Germany that specializes in AI-enabled skills management. The company provides a platform for talent analytics and personalized learning strategies, helping organizations enhance their talent management through data-driven insights. With a team of 11-50 employees, EDLIGO serves clients worldwide. + +The platform offers a range of features, including tools for identifying skill gaps, predicting employee attrition, and developing personalized learning pathways. It includes dedicated portals for employees and managers, providing insights into competencies, career goals, and performance metrics. EDLIGO's solutions are tailored for various roles within organizations, from employees to HR leaders, enabling informed decision-making and strategic workforce development. + +EDLIGO ensures rapid deployment and seamless integration with major systems like Oracle HCM and Microsoft solutions. The platform is also GDPR compliant and ISO27001 certified, reflecting its commitment to data security and privacy.",2014,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e4e2b2a869b200010054f0/picture,"","","","","","","","","" +Nexera Creative,Nexera Creative,Cold,"",24,marketing & advertising,jan@pandaloop.de,http://www.nexera.it,http://www.linkedin.com/company/nexera,"",https://twitter.com/EngineeringSpa,"",Duesseldorf,North Rhine-Westphalia,Germany,"","Duesseldorf, North Rhine-Westphalia, Germany","video surveillance, videosorveglianza, video management system, audio analytics, sicurezza fisica, healthcare, video analytics, sanita, it services & it consulting, marketing services, healthcare system integration, deep learning medical applications, medical record management, diagnostic report management, healthcare interoperability, healthcare process management, medical imaging management, ai in healthcare, services, cloud healthcare platform, digital health record management, medical it platforms, healthcare process optimization, patient care digitalization, medical workflow digitalization, medical workflow automation, hospital information system, public health it solutions, healthcare process reengineering, diagnostic workflow management, medical data security, health data archiving, healthcare digital transformation, healthcare data security, b2b, modular healthcare software, healthcare cloud platform, computer systems design and related services, healthcare it platforms, cloud healthcare solutions, medical data archiving solutions, medical data archiving, hospital information system integration, remote diagnostic workflow, cloud-based hospital management, healthcare software, diagnostic imaging management, healthcare information sharing, modular healthcare it suite, medical information system, patient management system, public healthcare digital solutions, ai-powered healthcare platforms, healthcare process automation, public health it, medical applications in diagnosis, healthcare digitalization, medical workflow management, ai in medical imaging, diagnostic workflow, healthcare compliance software, hospital management system, diagnostic imaging system, public health digital solutions, ai in medical diagnosis, healthcare analytics, health care, health, wellness & fitness, hospital & health care, information technology & services, marketing & advertising",'+49 390 3035161,"Outlook, Microsoft Office 365, Salesforce, Pardot, Route 53, Google Cloud Hosting, VueJS, Grafana, Jira, Atlassian Confluence, Angular JS v1, Python, Google Font API, Nginx, Google Tag Manager, Mobile Friendly, YouTube, WordPress.org, reCAPTCHA, Apache, Google Analytics, Workday Recruit, Google Places, Typekit, Google Maps, Scene7, AI, Gusto, Remote, Data Analytics","","","","","","",69bab5982f92db000106f762,8099,54151,"Nexera is a creative and digital studio specializing in brand identity, UX/UI design, web development, digital strategy, and motion design. + +We help startups and growing businesses build strong brands and high-performing digital experiences that drive clarity, engagement, and growth. + +From strategy to execution, we combine design thinking, technology, and storytelling to create solutions that scale.",2002,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69add3fbe0c9cd0001e9ef0f/picture,"","","","","","","","","" +Dataguess,Dataguess,Cold,"",14,information technology & services,jan@pandaloop.de,http://www.dataguess.com,http://www.linkedin.com/company/dataguess,"","","",Minden,North Rhine-Westphalia,Germany,"","Minden, North Rhine-Westphalia, Germany","edge, data, deep learning, artificial intelligence, data analysis, big data, edgeai, nocode, machine learning, data forecasting, edge computing, computer vision, software development, ai devices, data preprocessing, manufacturing ai solutions, edge ai devices, chemical, ai for production, ai for defect classification, logistics & warehousing, industrial iot, energy & utilities, food & beverage, quality control, data integration, visual defect detection, model training, ai models, ai model monitoring, ai agent, no-code ai platform, no-code platform, real-time inference, manufacturing, ai for automotive inspection, workflow automation, services, ai model deployment, sensor data, data collection, cloud computing, data analytics, real-time decision, ai model update, b2b, data security, defect detection, ai model training, industrial automation, predictive analytics, ai for warehousing, ai for energy, ai platform, process automation, anomaly detection, automotive, ai for energy management, ai for food safety, offline inference, industrial ai, plc integration, ai for chemical process control, ai for demand forecasting in manufacturing, data flow automation, data visualization, ai for predictive quality, process optimization, ai-powered quality control, system integration, edge ai, ai for machining quality, consumer goods & retail, operational data analysis, ai workflow management, ai model optimization, data enrichment, ai deployment, industrial machinery manufacturing, batch classification, predictive maintenance, energy, demand forecasting, visual inspection, manufacturing automation, automation, ai solutions, ai for batch process monitoring, product measurement, ai for supply chain, distribution, consumer_products_retail, transportation_logistics, energy_utilities, information technology & services, enterprise software, enterprises, computer software, consumer goods, consumers, mechanical or industrial engineering, computer & network security",'+90 216 912 1636,"Gmail, Google Apps, Google Cloud Hosting, CloudFlare, Netlify, DigitalOcean, Slack, Wix, Mobile Friendly, Varnish, AI","","","","","","",69bab5982f92db000106f764,3829,33324,"Dataguess is a technology company founded in 2016, specializing in AI software solutions that leverage Computer Vision, Machine Learning, and Data Analytics. The company focuses on manufacturing and industrial applications, aiming to enhance productivity, security, and decision-making. Dataguess is known for its customizable and scalable tools that support digital transformation across various sectors. + +The company offers a range of products, including solutions for quality control, predictive maintenance, and data analytics. Their core offerings include the Inspector tool, which aids in defect detection and process efficiency. Dataguess also provides a no-code/low-code platform that allows for the rapid deployment of Edge AI solutions. With over 17 billion data points collected and more than 70 AI projects completed, Dataguess emphasizes innovation and customer-oriented development while ensuring compliance with security standards.",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68b664a14d95f000012ea5f3/picture,"","","","","","","","","" +CREATUM GmbH,CREATUM,Cold,"",12,information technology & services,jan@pandaloop.de,http://www.creatum.online,http://www.linkedin.com/company/creatum-gmbh,"","",32 Am Sandtorkai,Hamburg,Hamburg,Germany,20457,"32 Am Sandtorkai, Hamburg, Hamburg, Germany, 20457","process automation, business solutions, process optimization, ms power automate, ui path, genai, artificial intelligence, ai tools, technology consulting, multi ai agent, innovation management, ai chatbot, data analytics, ms power bi, manufacturing automation, business process automation, ai support, ai training, ai-agent solutions, ai modules, operational efficiency, ai process automation, autonomous ai agents, automation, custom ai development, ai risk reduction, enterprise ai, ai development, b2b, ai integration, ai strategic focus, ai scalability, ai workshops, computer systems design and related services, ai implementation workshops, predictive analytics, business intelligence, ai task automation, software development, ai process transformation, ai consulting services, ai in business, generative ai, ai process design, ai activity tracking, ai consulting, consulting, ai workflow automation, ai enterprise solutions, ai system development, ai performance monitoring, ai cost savings, ai automation, ai task logging, ai deployment, ai implementation, workflow automation, ai system integration, ai environment perception, ai project management, ai strategy, ai decision reasoning, information technology and services, ai task management, services, information technology & services, management consulting, enterprise software, enterprises, computer software, analytics","","Outlook, Microsoft Office 365, Nginx, Google Tag Manager, Mobile Friendly, WordPress.org, Circle","","","","","","",69bab5982f92db000106f765,7375,54151,"CREATUM is a strategic technology consulting firm that specializes in AI integration, process optimization, and data analytics. + +Our latest Multi-Agent AI technology helps businesses automate administrative tasks, optimize workflows, and improve customer service using autonomous AI agents. Count on our team of certified professional for the following technological solutions, either through a 1:1 or workshop: + +AI Agent Implementation + +Process Automation & Optimization + +Generative & Predictive AI Solutions + +Power BI Analytics & Consulting + +Strategic AI Consulting & Custom AI Development + +With headquarters in Hamburg, Germany, we serve businesses across the EU, from manufacturing to biotechnology. Let's explore how AI can transform your business! + +Book a free consultation today. +📩 Contact us: info@creatum.io",2022,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/681b085e5f73020001e1deb0/picture,"","","","","","","","","" +KRiAN GmbH,KRiAN,Cold,"",60,information technology & services,jan@pandaloop.de,http://www.krian-software.com,http://www.linkedin.com/company/krian-gmbh,"","",1A Hopfengarten,Wolfsburg,Lower Saxony,Germany,38442,"1A Hopfengarten, Wolfsburg, Lower Saxony, Germany, 38442","services information systems, digitalization, wep apps mobile apps development, machine learning deep learning, automotive, mobility, data mining data analysis, research development, digital transformation, embedded systems, connectivity, prototyping, adas, product development, ui ux design development, healthcare, cloud computing, vehicle infotainment, consulting, software development, automation, cyber security, artificial intelligence, block chain, iot, services, ai-powered solutions, cybersecurity solutions, blockchain for secure transactions, autonomous driving software, system engineering, contract management system, data analysis, autonomous vehicle technology, it consulting, b2b, data-driven decision making, ai for pain assessment, digital contract management, manufacturing, cloud infrastructure, cybersecurity for connected vehicles, embedded development, cybersecurity, digital health, ai, data analytics, data science & mining, blockchain, information technology and services, computer systems design and related services, data science, in-car contactless health systems, ai in healthcare, affective computing, automotive systems, driver health monitoring, system integration, transportation & logistics, embedded hardware & software, hardware, health care, health, wellness & fitness, hospital & health care, enterprise software, enterprises, computer software, information technology & services, computer & network security, management consulting, mechanical or industrial engineering, internet infrastructure, internet",'+49 172 8345168,"Outlook, Microsoft Office 365, DigitalOcean, Apache, Google translate widget, WordPress.org, Google translate API, Mobile Friendly, Bootstrap Framework, Ubuntu, reCAPTCHA, Deel","","","","","","",69bab5982f92db000106f778,7375,54151,"Founded in 2016, KRiAN GmbH is an IT consulting, custom software development and IT solutions company with strong local presence. Rising from humble beginnings, today we are recognized as a trusted and preferred IT solutions provider in Germany. With this remarkable base, we are now encouraged to expand our footprint into other countries. + +Over the last few years, KRiAN has become a force to be reckoned with in the Automotive domain. We are eagerly, actively and consciously broadening our scope of work to other industries. In-depth expertise coupled with a penchant for perfection has shaped what we are today and will be instrumental in what we become tomorrow. + +With the ever-increasing competition, our clients need solutions that are innovative and add value to their business. Innovation, therefore, is always a part of what we do. At the same time, we ensure to deliver excellence through products and solutions of highest quality – thus delighting our customers. + +To do all (or for that matter, any) of this, the most important factor- our biggest asset, is our team. While we are grateful for each and every individual, the only thing we are prouder of is what we are, what we can and what we do, together.",2016,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6881f081e9d6fd0001b4cbaf/picture,"","","","","","","","","" + +octonomy,octonomy,Cold,"",90,information technology & services,jan@pandaloop.de,http://www.octonomy.ai,http://www.linkedin.com/company/octonomy,"","","",Cologne,North Rhine-Westphalia,Germany,"","Cologne, North Rhine-Westphalia, Germany","software development, ai performance optimization, analytics, information technology & services, fast deployment, ai model development, ai in mittelstand, ki für support mit hoher antwortqualität, deutsche entwicklung, support-automatisierung, consulting, information technology and services, services, ai in support systems, support automation, business intelligence, ki für komplexe supportfälle, ki für support in mehreren sprachen, deutsche ki-cloud, artificial intelligence, ai system management, eu ai act konform, enterprise ai, skalierbare ki, multilinguale unterstützung, business services, automatisierte support-chatbots, ki-agenten, prozessautomatisierung, enterprise software, ai scalability, b2b, ai compliance, ki für peak-management, ai mit menschlicher qualität, business process outsourcing, computer systems design and related services, secure ai platform, multilingual ai, ki für support bei hoher fluktuation, datenschutzkonform, ki für support in echtzeit, ai consulting, custom ai solutions, customer support ai, kundenservice, human-like ai, ai training, customer engagement, cloud-based ai, ai-as-a-service, data security, digital transformation, ai automation, ai integration, complex knowledge processing, enterprises, computer software, computer & network security","","Route 53, Amazon SES, Outlook, Microsoft Office 365, Amazon AWS, Cloudflare DNS, Gmail, Google Apps, CloudFlare Hosting, Hubspot, Python, Postman, Swagger UI, Linkedin Marketing Solutions",25500000,Seed,20000000,2025-11-01,"","",69b2d5215d92a4000119eee9,7375,54151,"Octonomy is an AI startup based in Cologne, Germany, founded in 2024. The company specializes in developing agentic AI platforms designed to automate complex technical support and service workflows in heavy-equipment and industrial sectors. With a focus on achieving over 95% accuracy on unstructured data, Octonomy addresses challenges such as aging workforces and intricate documentation in industries like manufacturing, insurance, and pharmaceuticals. + +The core product is an agentic AI platform that functions as a ""digital coworker"" for technical support and field service. It features a multi-agent architecture that includes support agents for simple queries, consultancy agents for advanced tasks, and a supervisor agent for efficient request routing. The platform integrates seamlessly with existing enterprise systems, processes data directly, and can be deployed in under three weeks. Octonomy's solutions enhance operational efficiency by resolving issues in real-time and providing documented solutions quickly. The company has raised $25 million in funding to support its expansion in Europe and the USA.",2024,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69a4b3170dd2370001d5a30d/picture,"","","","","","","","","" +MACHINES LIKE ME,MACHINES LIKE ME,Cold,"",55,information technology & services,jan@pandaloop.de,http://www.machineslikeme.com,http://www.linkedin.com/company/machineslikeme,"","","",Gruenwald,Bavaria,Germany,"","Gruenwald, Bavaria, Germany","ki, prozessautomatisierung, process mining, verwaltung, administration, ai, rpa, prozessanalyse, technology, information & internet, scalability, government, cost reduction, workflow automation, consulting, ai for lease management, ai-powered agents, services, business process outsourcing, computer systems design and related services, ai for document processing, natural language processing, legal compliance, implementation and testing, operational efficiency, voice and image recognition, ai for tenant onboarding, ai for rent collection, b2b, ai technology, software development, workflow design, continuous monitoring, ai in property management, information technology and services, digital transformation, automation software, ai-supported automation, repetitive process automation, legal, information technology & services, artificial intelligence",'+49 566 511435,"Outlook, Hubspot, Slack, WordPress.org, Mobile Friendly, DoubleClick, Google Font API, Google Dynamic Remarketing, Google Tag Manager, DoubleClick Conversion","","","","","","",69bab58ab924790001b5ec20,7375,54151,"Machines Like Me is an AI-driven automation company founded in 2023, focused on developing solutions for routine office tasks. With a presence in Europe and both North and South America, the company aims to free employees from mundane administrative duties through advanced automation technology. + +The company specializes in AI-powered automation solutions that utilize natural language processing, image recognition, and voice recognition. Their structured implementation approach includes analysis, design, maintenance, and implementation phases to ensure effective integration with existing technologies. Machines Like Me also provides expert consulting services to support businesses in various functions, including finance, HR, and operations. Their solutions are designed to deliver quick results and can enhance efficiency across organizations of all sizes.",2023,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66ef810a344f490001d7a24a/picture,"","","","","","","","","" +PSIORI,PSIORI,Cold,"",40,information technology & services,jan@pandaloop.de,http://www.psiori.com,http://www.linkedin.com/company/psiori,"","",144 Merzhauser Strasse,Freiburg,Baden-Wuerttemberg,Germany,79100,"144 Merzhauser Strasse, Freiburg, Baden-Wuerttemberg, Germany, 79100","predictive maintenance, data analysis, ai consulting, ai for business, software development, ai for noise detection, ai for clinical studies, reinforcement learning, data management, natural language processing, ai for crane steering, on-premises deployment, ai for plant optimization, custom ai development, anomaly detection, ai for healthcare, manufacturing, b2b, ai in industry, ai for pcr curve analysis, computer systems design and related services, real-time processing, data science, predictive analytics, sensor data fusion, ai for ecg analysis, data analytics, image classification, data reproducibility, neural networks, time series analysis, data storage, ai for data visualization in genomics, cloud infrastructure, process optimization, computer vision, machine learning, consulting, healthcare, deep learning, data mining, data visualization, ai for industrial automation, industrial automation, big data, medical data analysis, ai for cancer registry, ai solutions, ai in medical diagnostics, healthcare ai, ai for cell viability classification, artificial intelligence, ai for manufacturing, information technology and services, process automation, services, ai safety systems, transportation & logistics, information technology & services, mechanical or industrial engineering, enterprise software, enterprises, computer software, internet infrastructure, internet, health care, health, wellness & fitness, hospital & health care",'+49 761 28533385,"Gmail, Google Apps, Amazon AWS, Google Cloud Hosting, Slack, Mobile Friendly, Phusion Passenger, Nginx, Google Tag Manager, Vimeo, IoT, Android, AI","","","","","","",69bab58ab924790001b5ec31,7375,54151,"PSIORI DATA SCIENCE + +We help make businesses more efficient and profitable using + +DATA MINING +We mine data for deeply hidden insights and treasures. + +DEEP NEURAL NETWORKS +Biologically motivated models for classification, prediction, and anomaly detection. + +REINFORCEMENT LEARNING +What is the optimal decision in any given situation? We develop algorithms that find out. + +PREDICTIVE ANALYTICS +We focus on what can be learned from data and experience for the future, not just to describe the past.",2014,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66dc0de99bd58800011dad2b/picture,"","","","","","","","","" +JAAI | JUST ADD AI GmbH,JAAI,Cold,"",32,information technology & services,jan@pandaloop.de,http://www.justadd.ai,http://www.linkedin.com/company/justaddai,"","",8P Konsul-Smidt-Strasse,Bremen,Bremen,Germany,28217,"8P Konsul-Smidt-Strasse, Bremen, Bremen, Germany, 28217","chatbots, machine learning, neuronale netze, robotik, ai, ki, kuenstliche intelligenz, software development, ki für raumfahrtdaten, dsgvo-konform, ki-produktentwicklung, enterprise ki-systeme, ki in der telekommunikation, ki im gesundheitswesen, ki-beratung, on-premise ki, datenanalyse, ki in der medizin, ki-training, ki in der logistik, prozessautomatisierung, b2b, ki für smart cities, ki-tools, ki-implementierung, eu ai act, nlp-technologien, ki in der sicherheit, robotik ki, llms, ki-sicherheit, services, maßgeschneiderte ki, ki-entwicklung, deep learning modelle, ki für fehlererkennung, information technology & services, ki für bild- und videoanalyse, generative ki, ki-integration, consulting, ki-software, ki-plattform, ki für routenplanung, ki für betrugserkennung, computer systems design and related services, sprachmodelle, computer vision, deep learning, ki-optimierung, ki-lösungen, email automation, ki in der industrie, ki für sprachverarbeitung, computer vision systeme, ki in der automatisierung, artificial intelligence, predictive maintenance, ki für archiv-digitalisierung, wissensmanagement, lokale llms, data security, healthcare, education, computer & network security, health care, health, wellness & fitness, hospital & health care",'+49 42 14088790,"Route 53, Outlook, Microsoft Office 365, Amazon AWS, Mobile Friendly, WordPress.org, Google Font API, Nginx, Remote, BASE, Azure Data Lake Storage, .NET, ANGEL LMS, Salesforce CRM Analytics, Adobe Creative Cloud, LinkedIn Ads, NLP Catpcha, Visio, ABB Robotics, SharePoint, Confluence, CallMiner Eureka, IBM ILOG CPLEX Optimization Studio, Dell EMC PowerScale, Cisco WebEx Teams, OpenAI, Anthropic Claude, Google, Mist","","","","","","",69bab58ab924790001b5ec2a,7375,54151,"JAAI | JUST ADD AI GmbH is a Bremen, Germany-based company founded in 2017 that specializes in applied artificial intelligence. The company helps businesses understand and implement AI technologies through custom solutions, scalable products, and consulting services. JAAI is committed to excellence in applied AI, focusing on delivering real added value to its clients. + +The company offers a wide range of services, including AI strategy and consulting, process automation, and optimization and control. JAAI provides tailored workshops to identify use cases and build strategies for AI implementation. Its scalable AI solutions enhance efficiency and customer satisfaction. The JAAI Hub is a GDPR-compliant AI automation platform that integrates with various data sources and tools, offering capabilities beyond text generation. + +With a team of 51-200 specialists in areas like natural language processing and robotics, JAAI collaborates closely with clients to deliver immediate value. The company also develops proprietary AI software products, transitioning successful solutions into dedicated subsidiaries to drive growth across various business sectors.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e6f29ccf18190001e9e7a7/picture,"","","","","","","","","" +dida,dida,Cold,"",41,information technology & services,jan@pandaloop.de,http://www.dida.do,http://www.linkedin.com/company/dida-machine-learning,"",https://www.twitter.com/dida_ml,12 Ritterstrasse,Berlin,Berlin,Germany,10969,"12 Ritterstrasse, Berlin, Berlin, Germany, 10969","tensorflow, neural networks, computer vision, machine learning, artificial intelligence, agile softwareentwicklung, machine vision, natural language processing, kuenstliche intelligenz, python, keras, algorithmen, prozessautomatisierung, neuronale netze, automatisierung, software development, ai software development, model retraining, kubernetes, research-driven team, docker, deep learning, satellite-based mining detection, software engineering, scientific research, project management, data science, custom machine learning solutions, hyperparameter optimization, mathematical modeling, defect detection, information technology & services, quantum physics applications in ml, ml pipelines, satellite data analysis, research and development in the physical, engineering, and life sciences, data analysis, manufacturing, b2b, nlp models, environmental monitoring, land register data extraction, satellite image segmentation, derived algebraic geometry, large-scale training, mlops expertise, cloud solutions, bayesian inference in brain modeling, quantum gravity simulations in ml, digital transformation, model deployment, services, consulting, reproducibility, scalability, cloud computing, cloud services, model monitoring, tailor-made ai software, automated workflows, it infrastructure integration, government, business intelligence, industrial defect detection, robust deployment, security in ai, productivity, data analytics, mechanical or industrial engineering, enterprise software, enterprises, computer software, analytics",'+49 30 921058800,"Gmail, Google Apps, Microsoft Office 365, Google Cloud Hosting, Amazon AWS, reCAPTCHA, DoubleClick Conversion, Mobile Friendly, Vimeo, DoubleClick, Google Tag Manager, Google Dynamic Remarketing, Nginx, Remote, Circle, AI, Act!, Visio, NLP, Ning","","","","","","",69bab58ab924790001b5ec2e,7371,54171,"dida is a Berlin-based machine learning and AI company founded in 2016. The company specializes in custom AI software solutions for process automation, with a strong focus on computer vision, natural language processing (NLP), and machine learning operations (MLOps). dida develops tailored machine learning software that integrates into clients' IT infrastructure, emphasizing robust code and research-driven innovation. + +The company offers end-to-end machine learning services, including project planning, implementation, and deployment. dida creates custom AI-powered applications and interpretable models, ensuring scalability and reliability. Their expertise in computer vision includes analyzing image-based data for applications like industrial quality control and object detection, while their NLP projects leverage large language models for various business needs. + +dida's interdisciplinary team, which includes many PhD holders, maintains strong ties to academic research, allowing them to tackle complex AI challenges effectively. Client feedback highlights dida's timely delivery, budget adherence, and clear communication of complex concepts.",2018,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69a7e690bda7bd000130b8ea/picture,"","","","","","","","","" +DataSpark GmbH,DataSpark,Cold,"",16,information technology & services,jan@pandaloop.de,http://www.dataspark.de,http://www.linkedin.com/company/datasparkgmbh,"","",41-45 Mainzer Landstrasse,Frankfurt am Main,Hessen,Germany,60329,"41-45 Mainzer Landstrasse, Frankfurt am Main, Hessen, Germany, 60329","agents, chatbots, data preparation, feature engineering, large language models, rapid ai enablement, rapid ai delivery, data modeling, artificial intelligence, automated machine learning, rapid ml prototyping, robotic process automation, document intelligence, data architecture, analytics, it services & it consulting, information technology & services",'+49 69 870087240,"Outlook, Microsoft Azure Hosting, Nginx, Vimeo, Google Tag Manager, Ubuntu, Mobile Friendly, Google Maps, IoT",550000,Seed,550000,2024-08-01,"","",69bab58ab924790001b5ec2f,"","","DataSpark GmbH is a German AI company founded in 2016, specializing in AI-driven automation. With nearly a decade of expertise in analytics, natural language processing, computer vision, and robotic process automation, DataSpark helps businesses implement practical AI solutions. + +The company's main offering is the DataSpark AI Platform, a modular toolkit designed for rapid configuration and integration of chatbots and autonomous AI agents. This platform allows for quick deployment tailored to client processes. DataSpark provides comprehensive AI services, including consulting, development, and operations, focusing on analyzing current situations, implementing AI use cases, and optimizing deployed solutions. Key applications include automated processing of unstructured data, enhanced risk assessments, and AI-supported business report analysis for real-time insights.",2016,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/687350b57fd5130001dbdd84/picture,"","","","","","","","","" +WIANCO OTT Robotics GmbH,WIANCO OTT Robotics,Cold,"",49,information technology & services,jan@pandaloop.de,http://www.wianco.com,http://www.linkedin.com/company/wianco-ott-robotics,"","",1 Schlosspark,Seeheim-Jugenheim,Hesse,Germany,64342,"1 Schlosspark, Seeheim-Jugenheim, Hesse, Germany, 64342","ki testautomatisierung, machine learning, robotics, kuenstliche intelligenz, digitalisierung, ai testing, rpa, testautomation, ai cred, ai quality, innovation, ai, robotic process automation, artificial intelligence, kognitive kuenstliche intelligenz, ai credibility, cognitive ai, ki, prozessautomatisierung, nocode, it, digitalization, ki einsatz im mittelstand, it services & it consulting, digital transformation, data privacy, workflow automation, ai automation, enterprise ai, retail, customer engagement, ai for healthcare, financial services, local ai deployment, ki-beratung, predictive analytics, automated workflows, whitebox ai, effizienzsteigerung, business process optimization, ai for logistics, ai for finance, consulting, ai training, ai for public administration, information technology and services, ai for energy management, data analytics, digital workplace, computer systems design and related services, b2b, local data processing, manufacturing, government, ai security, education, no-code platform, automatisierung von geschäftsprozessen, ai in regulated industries, public administration, sicherheitsstandards, multi-language support, hyperautomation, user-friendly interface, process automation, logistics, natural language processing, ai consulting, automatisierungslösungen, healthcare, software development, automated decision-making, kognitive ki, secure ai solutions, no-code ki, ai for retail, business consulting, services, ai for manufacturing, deutsche ki-technologie, finance, legal, non-profit, distribution, information technology & services, mechanical or industrial engineering, enterprise software, enterprises, computer software, health care, health, wellness & fitness, hospital & health care, management consulting, nonprofit organization management",'+49 1514 6134844,"Outlook, Microsoft Office 365, Slack, Hubspot, Apache, WordPress.org, Facebook Widget, Linkedin Marketing Solutions, Facebook Login (Connect), Mobile Friendly, Facebook Custom Audiences, Google Tag Manager, Automation Anywhere, Uipath, AI, Alteryx, Jira, Emma","","","","","","",69bab58ab924790001b5ec22,7375,54151,"WIANCO OTT Robotics GmbH is a German company focused on cognitive AI solutions and robotics, specializing in hyper-automation. Based in Seeheim-Jugenheim, the company emphasizes Robotic Process Automation (RPA) and digital transformation, allowing businesses to automate complex tasks without the need for extensive coding or IT resources. With a team of fewer than 25 employees, WIANCO OTT Robotics aims to enhance productivity significantly through its no-code tools. + +The flagship product, EMMA, is a cognitive AI platform that integrates natural language processing, machine learning, and object recognition for end-to-end process and test automation. EMMA includes PC EMMA, which automates tasks on PCs, and Physical EMMA, designed for operating touch devices and other machinery. WIANCO OTT Robotics also offers tailored services such as RPA development, AI development, software development, and big data analytics, catering to various industries including IT, finance, and manufacturing.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69acb144b2fed90001b4df22/picture,"","","","","","","","","" +Aclue GmbH,Aclue,Cold,"",27,information technology & services,jan@pandaloop.de,http://www.aclue.de,http://www.linkedin.com/company/aclue-gmbh,"","",145A Grosse Elbstrasse,Hamburg,Hamburg,Germany,22767,"145A Grosse Elbstrasse, Hamburg, Hamburg, Germany, 22767","agile development, cloud native, devops ready, cross plattform, it beratung, aidriven software development, open source software, selfcontained systems, technologiefokus, architektur beratung, development teams, it services & it consulting, ai-driven softwareentwicklung, automatisierung, chat-with-your-document, digitalisierung, ki in supply chain management, ki für kundenservice, artificial intelligence, wissensmanagement agent, ki für personalisierte bildung, it consulting, custom software, consulting, ki-prototypen, genai architektur review, ki-gestützte produktpflege, computer systems design and related services, smart inbox processing, services, cloud native anwendungen, ki-basierte betrugserkennung, predictive maintenance ki, ki-gestützte supply chain optimierung, information technology and services, ki-beratung, business process automation, ki-lösungen, ki-gestützte automatisierung, ki-gestützte betrugserkennung, softwareentwicklung, produktdaten agent, data security, ki für produktdatenmanagement, ki-integration, genai for business, software development, ki-gestützte hr-prozesse, microservices-architektur, ki-workshops, ki-gestützte marketing-kampagnen, ki-implementierung, automatisierte dokumentenverarbeitung, ki-gestützte predictive maintenance, b2b, education, information technology & services, management consulting, computer & network security",'+49 40 300687470,"Cloudflare DNS, Outlook, Gmail, Google Apps, Google Cloud Hosting, Mobile Friendly, Google Tag Manager, IoT, Circle, AWS SDK for JavaScript, C#, Microsoft Azure Monitor, AWS Trusted Advisor, IBM ILOG CPLEX Optimization Studio, Microsoft Azure, Amazon Web Services (AWS), Google Cloud Platform, Azure Analysis Services, AWS Analytics","","","","","","",69bab58ab924790001b5ec2b,7375,54151,Aclue – Digital Excellence. Unsere Lösungen sind größer als deine Probleme.,2019,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e700ef29f0cc00014136ea/picture,"","","","","","","","","" +Blockbrain,Blockbrain,Cold,"",69,information technology & services,jan@pandaloop.de,http://www.theblockbrain.ai,http://www.linkedin.com/company/theblockbrain,"","",37 Marienstrasse,Stuttgart,Baden-Wuerttemberg,Germany,70178,"37 Marienstrasse, Stuttgart, Baden-Wuerttemberg, Germany, 70178","information security, customer success engineering, ai center of excellence, enterprise ai agents, data protection, responsible artificial intelligence, software development, automated reporting, enterprise ai, compliance automation, api calls, role-based user management, ai for document verification, ai in compliance, real-time web data, ai in manufacturing, knowledge sharing platform, document automation, ai in sales, compliance checks, multi-format document support, enterprise search, enterprise security, consulting, ai in legal services, iso certified, secure data handling, workflow automation, ai knowledge automation, ai for patent attorneys, ai for manufacturing, ai in legal, ai for sales automation, knowledge bots, b2b, ai for digital twins, vector databases, manufacturing, large language models, web research automation, workflow orchestration, digital twin technology, services, ai automation, digital twin, ai for knowledge sharing in high-security sectors, ai security standards, digital transformation, document processing, security standards, computer systems design and related services, process optimization, real-time information retrieval, generative ai, api scalability, ai in hr, ai for enterprise intelligence, scalable ai solutions, ai in engineering, automated workflows, ai in high-security environments, information technology & services, business software, ai agent development, ai for complex technical questions, ai in logistics, ai for process orchestration, ai for logistics, financial services, ai in document management, ai in finance, sales enablement, role management, no-code ai, custom ai systems, ai chatbot, ai knowledge bots, knowledge sharing, ai for hr onboarding, enterprise intelligence, automated document workflows, web research, ai-driven business platform, knowledge management, data analytics, data security, legal services, gdpr compliant, ai platform, ai for legal compliance, ai agent creation, ai in process automation, source referencing, source citation, api integration, ai in industry, finance, legal, distribution, computer & network security, enterprise software, enterprises, computer software, mechanical or industrial engineering","","Cloudflare DNS, MailJet, Gmail, Google Apps, Microsoft Office 365, CloudFlare Hosting, Outlook, Amazon AWS, Route 53, Mobile Friendly, Nginx, Multilingual, Google Tag Manager, Remote, AI, Deel, GitHub, Greenhouse, Linkedin Marketing Solutions, LinkedIn Recruiter, Personio, TypeScript, Node.js, Nestjs, Next.js, React, Python, Fastapi, Salesforce Lightning Web Components, PostgreSQL, SQLite, MongoDB, Oracle Spatial and Graph, GraphQL, AWS Trusted Advisor, Kubernetes, Docker, Argocd, Terraform, Prometheus, ELK Stack, ANGEL LMS, Vanta, Apple macOS, Azure Linux Virtual Machines, DeepL, Microsoft 365, Microsoft Azure Monitor, Microsoft Windows Server 2012, Proofpoint Targeted Attack Protection For SaaS, SentinelOne, Amazon GuardDuty, AWS Secrets Manager, BlueTie Vault, Falco, JWT, Sizmek (MediaMind), Splunk, WP-Oauth, Hubspot, AMP, LinkedIn Sales Navigator, Intercom, TalentLMS, Teachable, Tor, Tailwind, REST, Azure Active Directory, Demandware Analytics, LinkedIn Ads",22000000,Series A,19250000,2026-02-01,"","",69bab58ab924790001b5ec32,7375,54151,"Blockbrain is an AI-driven enterprise platform based in Stuttgart, Germany, founded in 2022. The company specializes in automating business processes and managing organizational knowledge through its no-code AI platform. This platform transforms unstructured data into actionable insights, streamlining document workflows and automating complex document-related tasks. + +Key features of Blockbrain's platform include knowledge management, data quality filtering, and compliance support for HR and sales operations. It utilizes large language models to generate structured documents quickly, allowing teams to focus on high-value tasks. The platform is designed for ease of use, enabling users to start without coding skills and retrieve information in multiple languages with clear source attribution. Blockbrain emphasizes data security and ethical AI practices, backed by cybersecurity experts. The company has raised $9.04 million in funding and is experiencing strong growth momentum.",2022,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69aa59e0d6bac800017cba97/picture,"","","","","","","","","" +Kern AI,Kern AI,Cold,"",13,information technology & services,jan@pandaloop.de,http://www.kern.ai,http://www.linkedin.com/company/kern-ai,"",https://twitter.com/meetkern,71 Gerhart-Hauptmann-Allee,Eichwalde,Brandenburg,Germany,15732,"71 Gerhart-Hauptmann-Allee, Eichwalde, Brandenburg, Germany, 15732","machine learning, intelligent services, data annotation, artificial intelligence, software development, natural language processing, secure ai platform, ai for risk assessment, insurance, automated document extraction, ai assistants, ai for enterprise workflows, confidential ai, data-centric ai, data modeling techniques, compliance automation, services, data quality checks, mindmap data structure, ai for portfolio management, confidential cloud ai, tariff comparison, scalable ai solutions, insurance policy analysis, privacy-preserving ai, ai in enterprise workflows, trustworthy llm, secure data handling, ai for tariff analysis, private llm, ai for third-party risk, ai for insurance claims, risk management, llm platform, consulting, cloud security, knowledge management, enterprise software, enterprise search, ai data quality, trustworthy ai, ai training from data sources, ai for legal and policy documents, data security, ai-powered compliance, ai for customer service, policy analysis, finance, ai model customization, legal, customer service ai, open-source models, ai for enterprise search in sharepoint, ai deployment in finance, llm integration, ai for insurance, ai automation, ai for customer support automation, unstructured data processing, third-party risk, data management, ai reliability, computer systems design and related services, portfolio analytics, b2b, model explainability, confidential llm, data quality ai, financial services, automated risk assessment, api integration, data modeling, ai deployment, data privacy, information technology & services, enterprises, computer software, computer & network security",'+49 1573 7025688,"Cloudflare DNS, Route 53, Gmail, Outlook, Google Apps, Microsoft Office 365, reCAPTCHA, Hubspot, Mobile Friendly, Google Tag Manager, Remote, AI, Android",3557000,Merger / Acquisition,0,2025-05-01,1000000,"",69bab58ab924790001b5ec1f,7375,54151,"Kern AI is a German technology company founded in 2020, focused on secure platforms for large language models (LLMs) and generative AI applications. Headquartered in Eichwalde, with operations in Bonn, the company specializes in enterprise knowledge management, data processing, and confidential computing. Kern AI's team of 14 to 25 employees is dedicated to machine learning, natural language processing (NLP), and secure AI deployment. + +The company's proprietary low-code platform, cognition, allows enterprises to integrate their data with LLMs, ensuring accurate and context-aware applications. Key features include confidential computing for data privacy, LLM-agnostic support to prevent vendor lock-in, and automation tools for NLP labeling and workflow management. Kern AI also provides solutions such as confidential AI assistants, a SharePoint AI layer, custom generative AI applications for the financial sector, and eLearning services to facilitate AI adoption. The company primarily serves the financial services sector, including banks and insurance providers, focusing on secure and compliant AI solutions.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6962e63eda368c0001484a4e/picture,"","","","","","","","","" +Bolzhauser AG,Bolzhauser AG,Cold,"",13,management consulting,jan@pandaloop.de,http://www.bolzhauser.de,http://www.linkedin.com/company/bolzhauser-ag,"",https://twitter.com/BolzhauserAG,8 Helfmann-Park,Eschborn,Hesse,Germany,65760,"8 Helfmann-Park, Eschborn, Hesse, Germany, 65760","kundenzufriedenheitsmessung, changemanagement, touchpointmanagement, conversationalki, qualitaetsmanagement, prozessautomatisierung, reorganisation, rpa, applikationsimplementierung, chatgpt, kundenservice, wissensmanagement, prozessoptimierung, vorgangsvermeidung, outsourcing, kuenstliche intelligenz ki, voicebots, sprachbiometrie, automatisierung kundenservice, business consulting & services, quality management, generative ai for efficiency, ai for customer satisfaction, customer service optimization, ai in business process reengineering, data management, natural language processing, ai for contact centers, chatbots, management consulting, ai in manufacturing, information technology & services, manufacturing, customer experience, b2b, ai in industrial automation, touchpoint optimization, predictive analytics, management consulting services, ai for customer insights, data analytics, robotic process automation, ai-driven knowledge systems, end-to-end process optimization, generative ai, consulting, customer experience management, customer journey, knowledge management, ai in machine building, data security, it services, ai automation, operational excellence, ai in customer service, process management, process automation, speech analytics, services, artificial intelligence, mechanical or industrial engineering, enterprise software, enterprises, computer software, computer & network security","","Outlook, Microsoft Office 365, Microsoft Dynamics 365 Marketing, Hubspot, Nginx, WordPress.org, Mobile Friendly, Google Tag Manager, Remote","","","","","","",69bab58ab924790001b5ec29,7375,54161,"Bolzhauser versteht sich als Beratungs- und Serviceunternehmen im Customer Care. Kommunikationsprozesse im Kundenservice einfacher, effizienter und digitaler gestalten – das ist unsere Mission! + +Seit 1994 widmet sich das Unternehmen der Customer Care-Beratung und entwickelt aus viel gewachsenem Know-how sowie steter Innovationsfreude wirksame Lösungen für ein ganzheitliches digitales Kundenmanagement. Ein breites Spektrum namhafter Referenzen aus unterschiedlichsten Branchen unterstreicht die Expertise und erfolgreiche Umsetzung. Von der Strategie bis zur Implementierung geeigneter Instrumente aus KI und Automatisierung sowie mit gezielten Schulungsangeboten für Service-Mitarbeitende begleitet Bolzhauser seine Kunden auf dem Weg zu mehr Produktivität, Rentabilität und einer herausragenden Customer Experience. Ganz gleich, ob für Unternehmen mit 40 oder 5000 Seats, kleine oder große Web- & mobile Lösungen, einzelne Touchpoints oder die gesamte Customer Journey. + +Was können wir für Sie tun? Wir freuen uns auf Ihre Kontaktaufnahme!",1994,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f13b84defb1c00013cd5fb/picture,"","","","","","","","","" +Voho,Voho,Cold,"",16,information technology & services,jan@pandaloop.de,http://www.voho.ai,http://www.linkedin.com/company/voho-ai,"","","",Berlin,Berlin,Germany,10997,"Berlin, Berlin, Germany, 10997","ai agents, chatgpt, sst, vtv, ai, voiceai, voice agents, tts, technology, information & internet, information technology & services","",Amazon AWS,"","","","","","",69bab58ab924790001b5ec2d,"","","Voho AI is a Berlin-based company that specializes in voice-powered conversational AI agents and platforms. It focuses on automating customer support, call center operations, task workflows, and business communications, allowing for 24/7 handling of calls without the need for coding. Founded by CEO Asfandyar Malik, Voho AI aims to enhance efficiency across various industries, including e-commerce, logistics, finance, and healthcare. + +The company offers a range of products, including AI voice agents that manage inbound and outbound calls, customer support automation tools, and no-code solutions for task and workflow automation. Voho AI's platform supports over 200 app integrations and features multilingual customization, accent adaptation, and advanced call center capabilities. With a commitment to security and data privacy, Voho AI provides businesses with tools to improve engagement, reduce operational costs, and streamline processes, ultimately enhancing customer satisfaction and retention.",2023,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/696399b41324fd0001641f4d/picture,"","","","","","","","","" +Onsai,Onsai,Cold,"",13,information technology & services,jan@pandaloop.de,http://www.onsai.com,http://www.linkedin.com/company/onsai-intelligence,"","",22 Petersstrasse,Leipzig,Saxony,Germany,04109,"22 Petersstrasse, Leipzig, Saxony, Germany, 04109","software development, information technology & services",'+49 30 585847900,"Route 53, Gmail, Google Apps, CloudFlare Hosting, Hubspot, Mobile Friendly, WordPress.org, Google Tag Manager, Google Font API, reCAPTCHA","","","","","","",69b862eac63906001d70c08f,"","","Onsai is a Berlin-based startup founded in 2024 that specializes in developing Agentic AI solutions for the hospitality industry. The company creates digital employees designed to automate guest communication, optimize hotel operations, and address labor shortages. Named after the Japanese word for ""voice,"" Onsai aims to be ""The Voice of Hospitality"" by providing AI agents that operate autonomously and integrate with hotel systems, handling tasks in up to 25 languages. + +The company offers a range of AI-powered tools, including Onsai Voice, which automates a significant portion of incoming calls, and Onsai Chat, a messaging agent for platforms like WhatsApp. These solutions enhance efficiency, reduce staff workload, and improve guest experiences. Onsai has secured over €1 million in growth capital and has been recognized with the IHA Startup Award 2025 for its innovative voice solutions. Notable clients include McDreams Hotels and HOMARIS, showcasing the effectiveness of its technology in various hospitality settings.",2024,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/690b35b614df4800013ec170/picture,"","","","","","","","","" +go AVA,go AVA,Cold,"",36,information technology & services,jan@pandaloop.de,http://www.goava.ai,http://www.linkedin.com/company/goavaai,"","","",Essen,North Rhine-Westphalia,Germany,"","Essen, North Rhine-Westphalia, Germany","ki, humanized ai, trustworthy technology, avatare, ai, ki avatare, ai avatars, digitale kommunikation, technology, information & internet, implementierung von ki-lösungen, ki-avatar in mehreren sprachen, software development, artificial intelligence, ki in der unternehmenskommunikation, cloud-speicherung, storytelling, sicherheitsstandards, datensicherheit, ki-avatar auf der ifa 2024, natural language processing, project management, verifizierte inhalte, ki-avatar für marketingkampagnen, ki-gestützte avatare, information technology & services, echtzeit-interaktion, ki-avatar bei digital x, ki-avatar bei telekom-hauptversammlung, barrierefreie kommunikation, datenschutz, ki-technologie, produktentwicklung, europäische server, unternehmenskommunikation, b2b, interaktive avatare, ki-avatar mit storytelling, sicherheitszertifikate, ki-avatar für digital health, multilinguale kommunikation, ki-training in 60 sprachen, storytelling in ki, d2c, mehrsprachigkeit, ki-training, ki-avatar von volker wissing, digital communication, digital transformation, compliance, ki-avatar für kundenservice, dsgvo-konformität, services, ki-avatar für virtuelle events, ki-sicherheit, ki-implementierung, realistische ki-avatare, digitale interaktion, ki-avatare, computer systems design and related services, government, ki-produktion, machine learning, healthcare, productivity, health care, health, wellness & fitness, hospital & health care","","Outlook, Microsoft Office 365, Apache, WordPress.org, reCAPTCHA, Google Tag Manager, Mobile Friendly, AI","","","","","","",69bab58ab924790001b5ec30,7375,54151,"go AVA GmbH is a German AI company based in Essen, specializing in realistic KI avatars for digital communication. Founded in 2023, the company enables fluid, real-time interactions in over 100 languages and dialects, enhancing customer support, employee engagement, promotions, and events. go AVA positions itself as a leader in professional avatar use for businesses, emphasizing secure and human-like digital interactions. + +The company offers customized KI avatars through a structured five-step process that includes briefing, production, AI training, storytelling, and hosting. This approach allows for versatile applications, from individual interactions to large-scale displays. go AVA has collaborated with notable brands such as REWE Digital, Deutsche Telekom, and McDonald's, showcasing successful deployments and innovative projects. The company is committed to making AI accessible and effective for enterprise success.",2023,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67169df4b0dc9900013316ef/picture,"","","","","","","","","" +DeepAdvisor,DeepAdvisor,Cold,"",13,information technology & services,jan@pandaloop.de,http://www.deepadvisor.de,http://www.linkedin.com/company/deepadvisor,"","",3 Leighton-Strasse,Wuerzburg,Bavaria,Germany,97074,"3 Leighton-Strasse, Wuerzburg, Bavaria, Germany, 97074","software development, autonomous ai agents, ai for legal/tax review, deepseek, ai model management, information technology and services, private model deployment, data security, ai for market research, ai customization, ai for supplier search, ai for rfp management, cloud-based ai platform, ai process automation, risk management ai, consulting, multi-llm support, ai scalability, ai for compliance check, ai reporting tools, ai model deployment, google gemini, ai for business professionals, supply chain ai, ai impact measurement, ai for large-scale data management, gpt-x, ai for savings detection, ai in enterprise, ai security, ai-driven decision making, ai in germany, pre-designed use case templates, ai for category strategy, ai user management, ai for contract penalties, data privacy, ai application development, mistral, data preprocessing, ai workflow customization, procurement services, ai for strategic sourcing, procurement automation, ai adoption strategies, ai for negotiation, ai training and workshops, ai for legal review, ai model agnostic, ai for supply chain, ai for procurement agents, role-based access control, ai collaboration tools, ai for unstructured data analysis, ai for supplier evaluation, b2b software, services, supply chain management, ai business platform, ai model selection, ai for process automation in procurement, legal ai tools, business process automation, ai impact tracking, low-code ai development, ai for legal and compliance, compliance ai, ai for document assessment, niche ai applications, azure cloud, ai use case library, ai for contract analysis, ai integration, b2b, ai for contract check, artificial intelligence, claude anthropic, low-code platform, ai for invoice verification, orchestrated ai agents, data confidentiality, computer systems design and related services, ai workflow orchestration, generative ai, ai for procurement, data postprocessing, ai process monitoring, ai performance management, legal, information technology & services, computer & network security, logistics & supply chain",'+49 176 78830551,"Outlook, Microsoft Office 365, Apache, Google Tag Manager, Google Font API, Mobile Friendly, WordPress.org, Adobe Creative Suite, Canva, Figma, ISO+™","","","","","","",69bab58ab924790001b5ec33,7375,54151,"DeepAdvisor GmbH is a B2B SaaS startup based in Würzburg, Germany, founded in 2023. The company specializes in providing an AI business platform that connects large language model (LLM) providers with niche AI applications, focusing on business process automation in procurement and strategic operations. + +The platform offers secure access to multiple LLM providers, enabling businesses to quickly deploy AI use cases for productivity and workflow integration through a low-code interface. Key features include customizable templates for procurement tasks, tools for adapting use cases, a centralized knowledge repository, and a negotiation copilot developed in partnership with Roland Berger. DeepAdvisor serves clients across Germany, Austria, Switzerland, and Western Europe, with a strong emphasis on automation in contract lifecycle management and other procurement processes.",2023,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68c6139789ec660001f19f41/picture,"","","","","","","","","" +Charamel GmbH,Charamel,Cold,"",17,information technology & services,jan@pandaloop.de,http://www.charamel.com,http://www.linkedin.com/company/charamelgmbh,https://www.facebook.com/CharamelGmbH,https://twitter.com/Charamel,60 Aachener Strasse,Cologne,North Rhine-Westphalia,Germany,50674,"60 Aachener Strasse, Cologne, North Rhine-Westphalia, Germany, 50674","humanmachine, avatar, 3d, animation, artificial intelligent, menmachine, hmi, character, virtual human, ai, digital assistant, realtime animation, sign language, it services & it consulting, human-machine interaction, 3d animation, information technology and services, emotion recognition, software engineering, interactive applications, virtual event hosts, virtual assistants, gesture translation, emotionale assistenten, digital empathy systems, software development, webgl development, avatar-based training, b2b, research and development, digital avatars, computer systems design and related services, digital media, user-friendly interfaces, ai-based communication, avatar as moderator, sprach- und gebärdensprachübersetzung, services, multimedia storytelling, natural language processing, cloud-based platforms, government, avatar development, virtual trainers, education, information technology & services, research & development, artificial intelligence",'+49 22 1336640,"Route 53, Outlook, Microsoft Office 365, Pipedrive, React Redux, Slack, Nginx, Mobile Friendly, Ubuntu, Android, React Native, Remote, AI","","","","","","",69b2d7bac749280001a72788,7375,54151,"Charamel is a IT company based in Cologne/Germany. The company vision is to bring more human touch into interactive applications by using virtual humans called avatars. Charamel is developing software for interactive and multifunctional digital assistants for a better communication between human and machine. Avatars are the next generation of a multimodal and user-friendly HMI interface face to face! + +Charamel offers a variety of software products and services. + +- Digital Avatar Solutions like Digital recepionist, Concierge or Check -in Agent +- Automatic AI-based Sign Language translation products and service for text to sign language (www.gebaerdensprach-avatar.de) + +- Virtual Trainer (www.virtual-trainer.de) is an innovative cloud-based training solution for legally prescribed trainings for companies to instruct ther employees in occupational safety, fire safety, energy, hygiene and other contents. It is easy to use in administration and documention of all instructions and user-friendly by using an avatar as virtual trainer. + +- VuppetMaster is currently the only cloud-based software to bring 3D interactive avatars on websites or into applications. It enables the visualization of digital assistants, chatbots, AI-systems and helps to increase the user experience. Using emotions, movements and speech the avatar is able to interact in real-time with users. + +- R&D - Additional research and development work in collaboration with partners sponsored by the European Commission or the German Federal Ministry of Education and Research provide new experiences and developments in artificial intelligence and help Charamel shape the future. + +Ask us for further information!",1999,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/687433328454e1000120a9ef/picture,"","","","","","","","","" +Perelyn,Perelyn,Cold,"",17,information technology & services,jan@pandaloop.de,http://www.perelyn.com,http://www.linkedin.com/company/perelyn,"","",31 Reichenbachstrasse,Munich,Bavaria,Germany,80469,"31 Reichenbachstrasse, Munich, Bavaria, Germany, 80469","it services & it consulting, python, langchain, ai in healthcare, ai solutions, google cloud, ai in public sector, ai for predictive maintenance, ai strategy, diffusion models, opencv, artificial intelligence, ai optimization, milvus, llms, ai technologies, trustworthy ai, ai in finance, ai in manufacturing, artificial intelligence and machine learning, weaviate, ai in retail, docker, information technology and services, faiss, ai consulting, transportation & logistics, hugging face, ai monitoring, b2b, autonomous ai, data science, ai development, tensorflow, genvision visual content, ai compliance, ai ethics, java, computer systems design and related services, computer vision, ai for customer support, healthcare & social assistance, ai in transportation, golang, neo4j, ai ethics compliance, consulting services, services, ai in business, aws, ai frameworks, mlflow, mlops, energy, autonomous ai agents, ai security & compliance, data analytics, visual storytelling, ai deployment, c++, ai for anomaly detection, ai integration, ai projects, ai security solutions, ai innovation, kubernetes, ai governance, scikit-learn, generative ai, manufacturing, data management, deep learning, ai security, hugging face transformers, large language models, ai in energy sector, regulatory compliance, llmops, keras, software development, azure, ai for industry, signal processing, ai in telecom, xgboost, pytorch, consulting, healthcare, finance, transportation_logistics, energy_utilities, information technology & services, management consulting, mechanical or industrial engineering, health care, health, wellness & fitness, hospital & health care, financial services",'+49 89 12137977,"Outlook, Amazon AWS, Slack, Cedexis Radar, Google Tag Manager, Vimeo, Hotjar, Mobile Friendly, Adobe Media Optimizer, Google Font API, Microsoft Azure Monitor, Kubernetes, Docker, Terraform, Azure Devops, GitHub Actions, Argo CD, GitLab, Prometheus, Grafana, ELK Stack, Azure Monitor, DATEV Accounting, Azure Analysis Services, Bicep, Langchain, LlamaIndex, Python, React, TypeScript, Claude","","","","","","",69bab58ab924790001b5ec25,7375,54151,"Perelyn hilft Unternehmen, komplexe technologische Entscheidungen richtig zu treffen und sorgt dafür, dass sie messbar wirksam umgesetzt werden. + +Unsere Arbeit basiert auf langjähriger Erfahrung in KI, Daten und maschinellem Lernen. Wir begleiten nicht nur die Entscheidung, sondern übernehmen Verantwortung bis zur tatsächlichen Wirkung im Geschäft.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69b112960362930001bdbb55/picture,"","","","","","","","","" +P&M Agentur Software + Consulting,P&M Agentur Software + Consulting,Cold,"",36,information technology & services,jan@pandaloop.de,http://www.pmagentur.com,http://www.linkedin.com/company/pm-agentur,"","",13 Planckstrasse,Hamburg,Hamburg,Germany,22765,"13 Planckstrasse, Hamburg, Hamburg, Germany, 22765","software development, b2b e-commerce, cloud computing, ux/ui design, web development, ki im kundenservice, data management, future-proofing, ki in der öffentlichen verwaltung, d2c, customer support, automation, information technology & services, cloud migration, digital strategy, customer experience, b2b, e-commerce, ki im e-commerce, individuelle softwareentwicklung, portale, computer systems design and related services, system integration, microsoft azure, government, ki-integration, devops, data analytics, digital transformation, software entwicklung, mobile apps, rag entwicklung, ki in der stadtverwaltung, process optimization, digitale transformation, mobile app development, generative ki, ki in der versicherungsbranche, ki in der stadtverwaltung soltau, consulting, intranet, ki beratung, data security, cloud beratung, smart solutions, ki workshop, performance marketing, b2c, ai solutions, e-commerce lösungen, cloud consulting, data analysis, content management, devops services, retail, digital experience platforms, process automation, services, distribution, enterprise software, enterprises, computer software, marketing, marketing & advertising, consumer internet, consumers, internet, computer & network security",'+49 40 33452586,"Cloudflare DNS, Sendgrid, Gmail, Google Apps, SendInBlue, Hubspot, Slack, reCAPTCHA, Facebook Login (Connect), Shutterstock, Mobile Friendly, WordPress.org, Facebook Widget, Google Tag Manager, Facebook Custom Audiences, Nginx, Google Font API, Android, Remote, AI, Sketch, Figma","","","","","","",69bab58ab924790001b5ec26,7375,54151,"P&M Agentur Software + Consulting GmbH is a German software development and consulting firm that specializes in custom digital solutions. Founded by Phillip Schulte, Mathias Leonhardt, and Katharina Biedermann, the company operates from Hamburg and Berlin. P&M focuses on B2B digitalization, AI solutions, and digital platforms, employing agile methods and technological precision to foster client-oriented partnerships. + +The company offers a range of services, including custom software development, cloud and DevOps consulting, and AI integration. Their solutions are designed to be modular and API-first, ensuring seamless integration with existing systems. P&M develops B2B e-commerce platforms, extranets, and AI-enhanced tools, emphasizing scalability and security. They utilize modern technologies such as Microsoft Azure and OpenAI to create applications that meet the needs of their clients while adhering to data protection regulations. P&M is committed to clarity, responsibility, and continuous learning, supported by a collaborative team dedicated to innovation.",2013,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6756063ef2f2b9000108ef17/picture,"","","","","","","","","" +Amira - almost human (AC Group),Amira,Cold,"",41,information technology & services,jan@pandaloop.de,http://www.acsueppmayer.de,http://www.linkedin.com/company/ac-sueppmayer-gmbh,"","","",Saarbruecken,Saarland,Germany,"","Saarbruecken, Saarland, Germany","ai prozessanalyse, ai bots, ai voicebot, service excellence, kontrolladressemanagement, wettbewerbsbeoachtung, qualitymonitoring, kundenservice verbessern, ai tools, ai chatbot, business consulting & services, software development, proaktive serviceoptimierung, selbstlernende algorithmen, ki-gestützte themenabdeckung, predictive maintenance, automatisierte qualitätskontrolle, mehrsprachigkeit, ki-gestützte trendvorhersage, prozessoptimierung, qualitätskontrolle, lead generation, machine learning, ki-lösungen, automatisierte gesprächsanalyse, ki-gestützte mitarbeiterentwicklung, chatbot integration, system integration, ki-analyseplattform, systemübergreifende orchestrierung, customer experience, ki-gestützte mitarbeiterschulung, automatisierte compliance-monitoring, ki-gestützte automatisierung, services, ki-gestützte prozesssteuerung, ki-gestützte systemkoordination, systemintegration, echtzeit-datenanalyse, crm-integration, predictive analytics, ki-gestützte feedbacksysteme, qualitätsmanagement, customer service & support, kundenservice automation, kundenbindung, kundenkontaktanalyse, automatisierte reports, ki-gestütztes qualitätsmanagement, automatisierte berichte, voicebot, automatische dokumentation, kundenfeedback, echtzeit-analyse, agent assist, kundenkontaktmanagement, automatisierte eskalationsmanagement, artificial intelligence, bot-performance, ki-basierte kontaktgrundanalyse, multi-channel support, consulting, proaktive problemerkennung, ki-gestützte kundenberatung, b2b, information technology & services, automatisierte prozesssteuerung, ki-gestützte qualitätssicherung, automatisierte bot-analyse, multilingual support, mitarbeiterschulung mit ki, ki-gestützte entscheidungsfindung, kundenservice-optimierung, computer systems design and related services, mitarbeiterschulung ki, ki-gestützte trendanalyse, kundenfeedback-analyse, automatisierung, echtzeit-übersetzung, business process automation, natural language processing, ki-training, ki-analyse, agenten-assistent, distribution, transportation & logistics, management consulting, marketing & advertising, sales, enterprise software, enterprises, computer software",'+49 6805 928501,"Rackspace MailGun, Outlook, Microsoft Office 365, Amazon AWS, Microsoft-IIS, ASP.NET, Mobile Friendly, Apache, Remote","","","","","","",69bab58ab924790001b5ec27,7375,54151,"Amira is an AI platform for intelligent customer service across all channels – in over 120 languages. Our four solutions automate customer service, analyze interactions, train teams, and support agents in real-time. +With 300+ interfaces, Agentic AI, and highest security standards (GDPR, ISO 27001), we offer flexible deployment options. 30 years of customer experience expertise. Perfect answer. Every time. On every channel.",1995,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69aeaaf364723f00017d74bb/picture,"","","","","","","","","" +avinci,avinci,Cold,"",19,information technology & services,jan@pandaloop.de,http://www.avinci.ai,http://www.linkedin.com/company/avinci,https://www.facebook.com/profile.php,"","",Munich,Bavaria,Germany,"","Munich, Bavaria, Germany","schulung, ai, beratung, kuenstliche intelligenz, ki, it services & it consulting, information technology & services",'+49 89 954570610,"Cloudflare DNS, Outlook, Microsoft Office 365, Google Maps (Non Paid Users), Mobile Friendly, Nginx, Google Tag Manager, Google Maps","","","","","","",69bab58ab924790001b5ec21,"","","avinci is an AI consulting and training company dedicated to advancing human ingenuity through Artificial Intelligence. Inspired by Leonardo da Vinci, we combine creativity, pioneering spirit and ingenuity with cutting-edge AI technology. Our experienced team develops customised solutions to help companies realise their full potential and achieve their business goals. At avinci, we are all about combining breakthrough ideas with innovative technologies to drive progress and help our customers succeed.",2023,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6715f2d42a08b80001ed4949/picture,"","","","","","","","","" +Blinkin,Blinkin,Cold,"",32,information technology & services,jan@pandaloop.de,http://www.blinkin.io,http://www.linkedin.com/company/blinkin-io,"",https://twitter.com/blinkinio?ref_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5Eauthor,Muenchener Strasse,Glonn,Bavaria,Germany,85625,"Muenchener Strasse, Glonn, Bavaria, Germany, 85625","machine learning, augmented reality, customer support system, workflow automation, ai agents, agent-based ai, multimodal data processing, enterprise ai solutions, computer systems design and related services, information technology & services, ai for customer support, no-code ai development, ai solutions, ai for retail micro-stores, ai for industrial diagnostics, ai experience platform, artificial intelligence, ai platform, ai for manufacturing quality control, b2b, manufacturing, interactive ai apps, ai mini-apps, enterprise software, ai agents customization, multi-model routing, government, no-code ai builder, ai for field service, knowledge capture, knowledge management, self-supervised multimodal learning, data integration, services, multimodal ai, digital transformation, ai knowledge capture, ai for manufacturing, real-time web search, visual ai models, rag (retrieval-augmented generation), ai for retail, visual editor, retail, branded ai apps, knowledge spaces, ai models, mechanical or industrial engineering, enterprises, computer software",'+49 80 939015406,"Gmail, Google Apps, Microsoft Office 365, Amazon AWS, Mobile Friendly, Google Tag Manager, Android, React Native, Docker, Node.js, Laravel, Remote",2753871,Other,2750000,2022-06-01,"","",69bab58ab924790001b5ec23,7375,54151,"Blinkin is an AI Experience Platform based in Munich, Germany, founded in 2020. The company specializes in creating no-code, multimodal AI-powered companions and mini-apps that automate work across customer and service lifecycles. Blinkin's platform allows users to build AI applications by combining prompts, Visual AI models, and various tools, making it accessible for those without coding expertise. + +Key features of Blinkin's offerings include the creation of AI companions using drag-and-drop functionality, integration of chat, video, and interactive elements, and structured knowledge management for organizing team processes. The platform supports diverse applications across industries such as industrial equipment, OEM and aftersales, property management, education, customer service, sales, and the creator economy. Blinkin aims to enhance support, collaboration, and productivity with a focus on practical solutions that prioritize people.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6907cb0f56e14900012204ed/picture,"","","","","","","","","" +Epic AI GmbH,Epic AI,Cold,"",11,information technology & services,jan@pandaloop.de,http://www.epic-ai.com,http://www.linkedin.com/company/epic-ai-gmbh,"","",2 Lise-Meitner-Strasse,Flensburg,Schleswig-Holstein,Germany,24941,"2 Lise-Meitner-Strasse, Flensburg, Schleswig-Holstein, Germany, 24941","software development, voicebot technologie, machine learning, ki-lösungen, ki-gestützte prozesse, kundeninteraktion, generative ki erweiterung, individuelle ki-modelle, ki-gestützte chatbots, ki-integration, voicebots, ki-gestützte software, digital transformation, automatisierung, chatbot plattform, ki-gestützte plattform, ki für energiewende, chatbot management, services, information technology and services, ki-funktionen, kundenservice optimierung, customer service software, marketplace integration, automatisierte kundenkommunikation, ki-gestützte gesprächsführung, chatbot entwicklung, ki-modelle, ki-forschung, ki-gestützte sprachsteuerung, ki-gestützte kommunikation, energy management, ki in der kundenbetreuung, b2b, ki-gestützte kundenbindung, kundenkommunikation, natural language processing, customer engagement, ki-gestützte kundeninteraktion, generative ki, voicebot management, ki-gestützte sprachdialogsysteme, computer systems design and related services, cloud solutions, voicebot entwicklung, kundenservice automatisierung, ki-modelle entwicklung, ki-forschung und entwicklung, artificial intelligence, ki-gestützte automatisierungslösungen, ki-gestützte automatisierung, ki-gestützte voice assistants, information technology & services, oil & energy, cloud computing, enterprise software, enterprises, computer software","","Gmail, Google Apps, Microsoft Office 365, Amazon AWS, Webflow, Slack, Mobile Friendly, Android, AI, Remote, Laravel, Docker","","","","","","",69bab58ab924790001b5ec28,7375,54151,Wir entwickeln künstliche Intelligenz und Modelle für maschinelles Lernen. Mit unserem Produkt ChatCaptain sind wir bereits am Markt aktiv und bieten unseren Kunden eine interaktive Plattform zur Erstellung eines intelligenten Chatbots.,2022,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66fba5508a51ac0001bc42af/picture,"","","","","","","","","" +Neocom.ai,Neocom.ai,Cold,"",21,information technology & services,jan@pandaloop.de,http://www.neocom.ai,http://www.linkedin.com/company/neocom-ai,https://facebook.com/neocomai,https://twitter.com/neocom_ai,8 Max-Bill-Strasse,Munich,Bavaria,Germany,80807,"8 Max-Bill-Strasse, Munich, Bavaria, Germany, 80807","online shopping, neocom, artificial intelligence, neo commerce, neocommerce, digital guidance, shopping advisor, ecommerce, saas, internet, machine learning, technology, information & internet, automated recommendation engine, automated customer advice, interactive prompts, ai-powered customer support, computer systems design and related services, ai-powered guided selling, ai-enabled customer retargeting, e-commerce, recommendation algorithms, information technology, ai-driven product discovery, ai chatbots, structured data collection, automatic data cleansing, user experience design, customer engagement, continuous advisor refinement, customer data insights, adaptive conversation design, customer behavior tracking, multi-device responsiveness, customer journey optimization, predictive analytics, customer retention tools, adaptive conversation flows, integrated chatbots, data integration and cleansing, conversion rate optimization, purchase intent analysis, customer segmentation, customer insights, dynamic product comparison, software development, automated data organization, automated content generation for advisors, multi-channel integration, services, ai-driven retail personalization, ai training and deployment, personalized shopping assistant, automated email outreach, customer satisfaction enhancement, conversational shopping assistants, no-code advisor creation, retail digital transformation, natural language engagement, multi-language scaling, cross-platform advisor integration, multi-category advisor deployment, e-commerce personalization, visual content customization, behavioral analytics, automated product matching, behavioral data analysis, b2c, multi-language support, conversational assistants, ai-driven marketing automation, personalized product recommendations, visual customization, customer engagement tools, natural language processing, guided product discovery, customer journey mapping, retail, d2c, dynamic recommendations, real-time analytics, generative ai, real-time customer feedback, ai for complex product sales, consumer goods, b2b, consumer products & retail, consumer internet, consumers, information technology & services, computer software, enterprise software, enterprises",'+49 89 3803651,"Cloudflare DNS, Gmail, Google Apps, Microsoft Office 365, Amazon AWS, CloudFlare Hosting, Route 53, MailJet, Webflow, Hubspot, Mobile Friendly, Google Tag Manager, Cloudinary, Facebook Widget, Linkedin Marketing Solutions, Facebook Login (Connect), Facebook Custom Audiences, Render, Remote, AI",5600000,Seed,4500000,2024-01-01,"","",69bab58ab924790001b5ec24,7375,54151,"Neocom.ai is an AI-native commerce experience platform based in Munich, Germany, founded in 2020. The company specializes in enhancing eCommerce product discovery by creating personalized, conversational shopping journeys through advanced AI agents. Neocom aims to alleviate common online shopping frustrations, such as decision paralysis caused by technical filters and similar-looking products. + +The platform offers a complete self-service solution that allows business teams to build and manage customer experiences with ease. Key features include intuitive drag-and-drop interfaces, a multi-role AI Shop Agent for personalized recommendations, and customizable conversational AI agents. Neocom supports over 23 languages and provides seamless integration with various customer data platforms, enabling businesses to optimize their marketing strategies. Notable clients include industry leaders like Miele, Schwalbe, and Haufe Akademie, who utilize Neocom's technology to enhance their eCommerce strategies.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/695f613aaeb05d00019e1cc1/picture,"","","","","","","","","" +ARTTAC SOLUTIONS,ARTTAC SOLUTIONS,Cold,"",12,information technology & services,jan@pandaloop.de,http://www.arttacsolutions.de,http://www.linkedin.com/company/arttacsolutions,"","",7 Zollhof,Nuremberg,Bavaria,Germany,90443,"7 Zollhof, Nuremberg, Bavaria, Germany, 90443","ai, web development, software entwicklung, penetration testing, software development, natural language processing, scalable solutions, artificial intelligence, project management, ai strategy, support for sales, support for remote work, ai assistants, multi-user support, multi-agent systems, self-programmed algorithms, employee productivity, services, cloud services, support for support teams, multi-language support, content creation, ai integration, visualization, enterprise ai, knowledge management, self-service ai tools, cost savings, time tracking, data security, email automation, intelligent automation, content generation, business intelligence, ai software, efficiency improvement, gdpr compliant, support bots, business process automation, marketing automation, cloud-based ai, data analysis, meeting summarization, information technology and services, email organization, machine learning, data protection, user experience, automation, office productivity, computer systems design and related services, workflow automation, b2b, support chatbots, meeting assistance, digital transformation, support for hr, user-friendly interface, cloud-based software, api integration, email structuring, information technology & services, computer & network security, productivity, cloud computing, enterprise software, enterprises, computer software, analytics, marketing & advertising, saas, data analytics, ux","","Outlook, Mobile Friendly",450000,Seed,170000,2022-02-01,"","",69bab58ab924790001b5ec2c,7375,54151,Our solutions empower the world of tomorrow. Learn more about our algorithms like ATTHENE the virtual-based AI assistance and other systems.,2019,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6878d8732a9a4d00011f4293/picture,"","","","","","","","","" +One Thousand,One Thousand,Cold,"",38,information technology & services,jan@pandaloop.de,http://www.onethousand.ai,http://www.linkedin.com/company/one-thousand-ai,"","",13 Leuschnerdamm,Berlin,Berlin,Germany,10999,"13 Leuschnerdamm, Berlin, Berlin, Germany, 10999","kuenstliche intelligenz, it services & it consulting, operational efficiency, predictive maintenance, business intelligence, ai in industrial manufacturing, ai consulting, ai implementation, management consulting, ai for customer service, other scientific and technical consulting services, ai breakthroughs, ai for productivity boost, ai use case identification, ai in europe, ai roi, ai infrastructure setup, ai capability building, ai capability development, b2b, ai use cases, ai scaling and infrastructure, manufacturing, ai in traditional industries, ai impact at scale, ai deployment in manufacturing, ai for business value, ai for process automation, ai rapid deployment, machine learning, consulting, ai strategy, ai in european markets, services, ai organizational change, ai for competitive edge, software development, enterprise ai applications, natural language processing, enterprise ai solutions, ai training workshops, ai scaling, ai technology stack, ai-powered defect detection, ai for demand forecasting, ai community, ai in manufacturing, ai project management, ai for process optimization, ai team training, ai virtual assistants, ai strategy development, ai workshops, ai project acceleration, information technology & services, analytics, mechanical or industrial engineering, artificial intelligence","","Outlook, Microsoft Office 365, Amazon AWS, Google Tag Manager, Linkedin Marketing Solutions, Mobile Friendly, Canva, CapCut, BlackLine Financial Close Management, Figma, Salesforce CRM Analytics, Claude","","","","","","",69bab58ab924790001b5ec34,7375,54169,"One Thousand is an AI consultancy firm based in Europe, focused on helping organizations develop and implement artificial intelligence solutions to enhance business performance. The company consists of a team of 32 professionals dedicated to guiding clients through their AI transformation journey. Their mission is to co-create 1,000 AI breakthroughs, reflecting their commitment to impactful and practical AI implementation. + +The firm offers a range of AI consulting services organized into three main areas: AI Strategy & Use Case Development, Organizational Capability Building, and AI Infrastructure & Scaling Support. They work closely with clients to identify and develop high-impact AI use cases, build internal expertise through engaging training formats, and assist in selecting the right AI infrastructure and tools. One Thousand emphasizes rapid prototyping and collaborative development of enterprise-grade AI applications tailored to specific business challenges.",2019,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67797de727bfd000012ae07d/picture,"","","","","","","","","" + +Next Vision GmbH,Next Vision,Cold,"",12,information technology & services,jan@pandaloop.de,http://www.nextvision.info,http://www.linkedin.com/company/next-vision-gmbh,https://www.facebook.com/nextvision.info,"",20 Buergermeister-Soehlke-Strasse,Hessisch Oldendorf,Lower Saxony,Germany,31840,"20 Buergermeister-Soehlke-Strasse, Hessisch Oldendorf, Lower Saxony, Germany, 31840","handel, ibm cognos analytics, mittelstaendische unternehmen, industrie fertigung, power bi, ibm planning analytics, ibm cognos, ibm spss, data mining, microsoft sql server, industrie amp fertigung, it services & it consulting, artificial intelligence, ai in customer service, generative ai, data integration, compliance, ai assistant for business solutions, services, smart data search, operational efficiency, web crawling, ai integration, consulting, bi platforms, knowledge management, data visualization, on-premises ai solutions, predictive analytics, data security, proactive maintenance, private cloud deployment, business intelligence, regulatory compliance, digital boardroom, ibm watsonx, ai for smes, government, data analytics, performance management, data governance automation, data warehouse, information technology and services, machine learning, software development, predictive modeling, data governance, custom software, knowledge base, unstructured data processing, microsoft ai, computer systems design and related services, b2b, performance optimization, business analytics, semantic search, content generation, non-profit, enterprise software, enterprises, computer software, information technology & services, computer & network security, analytics, nonprofit organization management",'+49 51 58992236,"Microsoft Office 365, Vimeo, Google Font API, WordPress.org, Nginx, Google Analytics, YouTube, Mobile Friendly, Google Tag Manager, AI","","","","","","",69bab4385e53280001a0553c,7375,54151,"Die Next Vision GmbH - Business Intelligence Lösungen für den Mittelstand + +Impressum + +Handelsregister Hannover Nr. HRB 102425 +Ust.-IdNr. DE 243327153 + +Geschäftsführung: +Patrick Söhlke + +Next Vision GmbH +Bürgermeister-Söhlke-Str. 20 +31840 Hessisch Oldendorf + +Telefon: +49 (0) 51 58 / 99 22 36 +Telefax: +49 (0) 51 58 / 99 22 37 +E-Mail: info@nextvision.info + +Copyright © Next Vision GmbH +Alle Rechte vorbehalten. + +Unsere AGBs (Allgemeinen Geschäftsbedingungen) erhalten Sie auf Nachfrage. Bitte senden Sie dazu eine E-Mail an: info@nextvision.info + +Datenschutz + +§ 5 BDSG Datengeheimnis + +Den bei der Datenverarbeitung beschäftigten Personen ist untersagt, personenbezogene Daten unbefugt zu erheben, zu verarbeiten oder zu nutzen (Datengeheimnis). +Diese Personen sind, soweit sie bei nicht-öffentlichen Stellen beschäftigt werden, bei der Aufnahme ihrer Tätigkeit auf das Datengeheimnis zu verpflichten. Das Datengeheimnis besteht auch nach Beendigung ihrer Tätigkeit fort. +Siehe auch §§ 1 ff. und §§ 27 ff. BDSG",2004,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670e9682a5264e00012d3726/picture,"","","","","","","","","" +MORESOPHY,MORESOPHY,Cold,"",26,information technology & services,jan@pandaloop.de,http://www.moresophy.com,http://www.linkedin.com/company/moresophy-gmbh,"",https://twitter.com/moresophy,9 Hofmannstrasse,Munich,Bavaria,Germany,81379,"9 Hofmannstrasse, Munich, Bavaria, Germany, 81379","nlu, data quality management, data virtualization, data analytics, smart data, semantic analysis, datadriven business, semantic web, deep learning, ki, machine learning, data driven business, knowledge management, publishing, ai, data intelligence, data preparation, information structuring, contentdriven business models, semantic technologies, data infrastructure & analytics, ai efficiency, enterprise ai solutions, ai integration, ai for risk management, ai control, ai for data analysis, ai platform, data security, hybrid ai, hybrid ai technology, content in context, ai for enterprise data, automated reporting, custom ai models, ai as a service, consulting, ai for sustainable business, artificial intelligence, information technology and services, ai for content optimization, ai for content strategy, ai scalability, computer systems design and related services, ai in germany, b2b, regulatory compliance, ai security, ai in enterprise, open-source ai models, ai for enterprise, explainable ai, ai for regulatory compliance, ai for customer service, content optimization, ai audit, esg monitoring, natural language data analysis, natural language processing, ai model audit, software development, ai for business, ai transparency, natural language analysis, ai compliance, services, data-driven prompting, transparent ai, information technology & services, media, computer & network security",'+49 89 52304170,"Outlook, Microsoft Office 365, Hubspot, Slack, reCAPTCHA, Cedexis Radar, WordPress.org, Etracker, DoubleClick, Adobe Media Optimizer, Apache, Google Font API, Mobile Friendly, Typekit, Vimeo, React Native, AI, Android, Node.js, Deel, Remote, Databricks, Vincere, Kubernetes, Spotify App, Google, Google Maps, Wordpress, YouTube","","","","","","",69bab4385e53280001a0553f,7375,54151,"MORESOPHY is leading provider of data analytics solutions for the realization of data-driven processes. + +MORESOPHY technology offers unique AI-powered methods for preparing high-quality, meaningful data for integration into cloud-based data management architectures. + +Industry leaders such as PwC, Deutsche Telekom, Accenture, Haufe-Lexware and GVL rely on MORESOPHY's 20+ years of experience in activating undiscovered potential in arbitrarily structured data. Data experts as well as business users, editors as well as business analysts benefit from a deep contextual understanding of their data - for higher productivity, strong customer loyalty and sustainable risk management.",2001,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/689a8fe61a75d300015476de/picture,"","","","","","","","","" +NeuroForge GmbH & Co. KG,NeuroForge GmbH & Co. KG,Cold,"",11,information technology & services,jan@pandaloop.de,http://www.neuroforge.de,http://www.linkedin.com/company/neuroforge-gmbh-co-kg,https://www.facebook.com/NeuroForgeDE,"",18 Lettenweg,Trebgast,Bavaria,Germany,95367,"18 Lettenweg, Trebgast, Bavaria, Germany, 95367","predictive maintenance, big data, industry 40, automation, process optimization, deep learning, data science, software development, b2b, ai services, real-time analytics, information technology and services, ai in logistics, ai for predictive maintenance, consulting, ai for customer engagement, ai in r&d, automated decision-making, digital transformation, ai development, big data services, legal services, ai for customer service, cloud solutions, custom software, neural networks, ai research and development, ai integration, manufacturing, ai chatbots, enterprise ai, image and signal processing, ai for decision support, data management, ai for risk management, ai training, ai-driven solutions, machine learning, ai for quality inspection, ai for operational efficiency, ai training and support, healthcare technology, software engineering, ai classification systems, ai coworker for healthcare, ai in healthcare, cloud computing, ai in retail, data analytics, ai, ai coworker, ai optimization, ai project implementation, ai implementation, ai strategy, ai open source, ai support, ai automation, ai-driven automation, big data analytics, ai coworker for legal, technology consulting, ai coworker for manufacturing, ai in finance, computer systems design and related services, ai for process automation, ai coworker development, ai for document analysis, services, ai for logistics, ai project management, ai in manufacturing, ai for business intelligence, predictive analytics, custom software development, ai for legal firms, ai solutions, signal processing, data integration, ai research, artificial intelligence, healthcare, finance, legal, enterprise software, enterprises, computer software, information technology & services, mechanical or industrial engineering, management consulting, health care, health, wellness & fitness, hospital & health care, financial services",'+49 921 16804166,"Outlook, Google Cloud Hosting, Varnish, Google Tag Manager, Wix, DoubleClick Conversion, Google Dynamic Remarketing, DoubleClick, Mobile Friendly, Linkedin Marketing Solutions, Android, Remote, Deel, Circle, AI, React Native, Node.js","","","","","","",69bab4385e53280001a0554f,7375,54151,"We not only deliver code, but also the courage to break new ground. Our AI solutions create real added value because we take a reflective look at trends, provide open and honest advice and develop the best solutions together with you. + +neuroforge - your partner for everything to do with AI, big data and digitalization. + +From Upper Franconia. For Upper Franconia. And beyond.",2019,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/675f9feb7979b600017d8af9/picture,"","","","","","","","","" +BOTfriends,BOTfriends,Cold,"",25,information technology & services,jan@pandaloop.de,http://www.botfriends.de,http://www.linkedin.com/company/botfriends,https://facebook.com/BOTfriendsAI,"","",Wuerzburg,Bavaria,Germany,"","Wuerzburg, Bavaria, Germany","conversational interface, kommunikation, beschaffung, sprachassistenten, einkauf, chatbots, voice assistants, kundenkommunikation, nlp, b2b, ai, voicebot, ml, amazon alexa, conversational ai, startup, google cloud, botfriends x, conversation design, automatisierung, ai agent, ai agents, bots, automatisierte kommunikation, agentic ai, software development, ai in energieversorgern, ai für e-commerce, government, context awareness, systemintegration, ai für stadtwerke, consulting, real-time analytics, system integration, ai voicebot, services, ai für verkehrsunternehmen, generative ai, computer systems design and related services, human in the loop, ai ticketing assistant, automatisierte antworten, utilities, ai chatbot, ai im gesundheitswesen, multichannel support, ai workflows, task-specific ai, knowledge base, systemanbindung, tourism, automatisierte ticketklassifikation, no-code-editor, customer service, prozessautomatisierung, e-commerce, ai knowledge management, large language models, information technology and services, ai agent plattform, dsgvo-konform, healthcare, d2c, generative ai technologie, multilingual support, eu gehostet, chatbot, data security, ai training, telecommunications, api-integration, kundenservice, ai für hr & recruiting, ai im tourismus, content crawling, ai für wohnungsunternehmen, retail, distribution, communications, natural language processing, artificial intelligence, information technology & services, consumer internet, consumers, internet, health care, health, wellness & fitness, hospital & health care, computer & network security",'+49 931 80474739,"Cloudflare DNS, Gmail, Google Apps, CloudFlare Hosting, , Hubspot, Google AdSense, Google AdWords Conversion, Google Dynamic Remarketing, Linkedin Marketing Solutions, Adobe Media Optimizer, Mobile Friendly, Google Tag Manager, Cedexis Radar, Vimeo, DoubleClick, DoubleClick Conversion, Bing Ads, WordPress.org, Nginx, Linux OS, Docker, Android, Remote, AI","","","","","","",69bab4385e53280001a0553d,7375,54151,"BOTfriends is a conversational AI platform company based in Würzburg, Germany. Founded in 2017, it specializes in creating AI-powered chatbots and voice assistants tailored for enterprise customers. The platform allows organizations to automate customer communication without needing programming skills, making it accessible for various users. + +The company serves over 80 customers across more than 20 industries, including customer service, healthcare, e-commerce, retail, HR solutions, and event execution. BOTfriends has processed over 120 million conversations and has received more than 24 awards for its innovative work. Its offerings include chatbots for messaging platforms, voice assistants for automated communication, task automation tools, and an AI Agent platform that supports chat, voice, and automation services. The platform integrates with popular business tools like Google Workspace, HubSpot, and Salesforce, enabling employees to develop and manage AI applications independently.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66de1cf47967090001963126/picture,"","","","","","","","","" +muffintech,muffintech,Cold,"",23,insurance,jan@pandaloop.de,http://www.muffintech.ai,http://www.linkedin.com/company/muffintechdotai,"","",10 Wiener Strasse,Berlin,Berlin,Germany,10999,"10 Wiener Strasse, Berlin, Berlin, Germany, 10999","altersvorsorge, insuretech, artificial intelligence, versicherung, finanzberatung, pension, generative ai, insurance, betriebliche versicherungen, krankenversicherung, llm, versicherungsberatung, automation, ki für versicherer, kundeninteraktion, ki für underwriting, vertriebsunterstützung, kundenbindung, data security, after-sales-service, automatisierte kundenkommunikation, information technology, versicherungs-software, datensicherheit, insurance agencies and brokerages, ai software, versicherungswissen, ki-gestützte automatisierung, lead-generierung, sprachmodell, iso 27001, ki-basierte schadensabwicklung, automatisierte risikovoranfragen, natural language processing, services, vertriebsoptimierung, versicherungs-chatbot, ki-basiertes support-system, versicherungs-workflow-optimierung, deep learning, modulare ki-lösung, workflow automation, automatisierte beratung, financial services, automatisierung im vertrieb, versicherungs-compliance ai, versicherungsdatenanalyse, kundenservice, ki für makler, ki in der versicherungsverwaltung, versicherungsangebot-optimierung, datenschutz dsgvo, cybersecurity, b2b, versicherungsbranche, versicherungs-produktinformation, conversational ai, effizienzsteigerung, chatbot, prozessautomatisierung, eu-hosting, versicherungsberatung ai, regulatory compliance, finance, distribution, technology, information technology & services, computer & network security, insurance agencies & brokerages",'+49 1575 2499811,"Gmail, Google Apps, Amazon AWS, Multilingual, Mobile Friendly, Google Tag Manager, Remote, Phoenix, Android, AI, Node.js",3850000,Venture (Round not Specified),3850000,2025-02-01,"","",69bab4385e53280001a0553e,7375,52421,"Muffintech is a Berlin-based InsurTech startup founded in 2021, focusing on generative and conversational AI solutions specifically for the insurance industry. Initially launched as a digital insurance broker, the company pivoted in 2022 to develop AI-based tools after gaining interest at industry conferences. Muffintech has raised €3.5 million in funding to enhance its AI capabilities and expand its market presence. + +The company's core product, Aion, is a pre-trained large language model designed for the insurance sector. It automates various insurance workflows, improving customer service, knowledge management, sales conversion, claims processing, fraud detection, and underwriting. Aion is tailored to the German insurance market, offering rapid, context-aware responses and personalized recommendations. Muffintech serves brokers and insurance companies in Germany and has begun expanding into Poland and Western Europe, aiming to lead digital transformation in the InsurTech space.",2021,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68722d459c482d0001b49864/picture,"","","","","","","","","" +Kauz.ai,Kauz.ai,Cold,"",43,information technology & services,jan@pandaloop.de,http://www.kauz.ai,http://www.linkedin.com/company/kauz-gmbh,"","","",Duesseldorf,North Rhine-Westphalia,Germany,"","Duesseldorf, North Rhine-Westphalia, Germany","kuenstliche intelligenz, software as a service, kiassistenten, chatbots & artificial intelligence, artificial intelligence, chatbots, kundenservice, nlu, digitale plattform, conversational ai, generative ki, digitale arbeitsplaetze, workflowautomatisierung, natural language processing, virtual agents, software development, eu datenschutz, ki-content-content-moderation, automatisierung, halluzinationskontrolle, unternehmensdaten, parameter fine-tuning, ki-sicherheit, content management, ki-workflow-automatisierung, ki-content-content-optimierung, ki-content-content-analyse, ki-compliance, multi-channel interfaces, ki-content-content-content-management-systeme, ki-transparenz, ki-analytics, ki-content-management-systeme, information technology & services, eu-datenhosting, ki-content-management, ki-assistenten, consulting, ki-performance, sicheres data hosting, ip-whitelisting, ki-controlling, confidential computing, ki-hochverfügbarkeit, ki-content-freigabeprozesse, ki-content-freigabe, on-premise betrieb, ki-hochsicherheit, services, ki-content-content-visualisierung, computer systems design and related services, kostenkontrolle ki, private large language models, ki-kostenmanagement, chatbot-entwicklung, ki-training, on-premise ki, ki-integration, ki-content-reporting, ki-hosting, ki-user-interfaces, no-code plattform, konversationssteuerung, datenschutz, business software, ki-content, ki-plattform, ki-kostenoptimierung, ki-management, b2b, enterprise software, ki-use cases, large language models, ki-tools, content workflow, nlp, multilingual ki, ki-content-content-content-content-management-systeme, content moderation, ki-entwicklung, ki-analytics-dashboards, ki-content-workflows, ki-workflows, finance, saas, computer software, enterprises, financial services",'+49 211 30049622,"Cloudflare DNS, Gmail, Outlook, Google Apps, SendInBlue, Microsoft Office 365, Hubspot, Atlassian Cloud, Active Campaign, Google AdWords Conversion, Mobile Friendly, WordPress.org, Google Tag Manager, Azure AI Studio",2720000,Venture (Round not Specified),0,2025-01-01,"","",69bab4385e53280001a05542,7375,54151,"Kauz.ai is an AI solutions provider that has been assisting businesses in leveraging artificial intelligence since 2016. The company focuses on developing customized AI applications using generative AI and natural language understanding. Kauz.ai aims to make AI accessible for companies of all sizes, offering secure and reliable applications that can be scaled according to business needs. + +The company offers several key products, including aiStudio, a no-code platform for configuring AI applications without extensive technical knowledge. Their aiSuite provides AI assistant solutions in three tiers, catering to different levels of customization and control. Additionally, aiWorkplace integrates AI into daily work processes, enhancing productivity and streamlining workflows. Kauz.ai also features chatbot solutions for customer communication, industry-specific templates, and analytics dashboards to help businesses understand their impact. The company ensures GDPR compliance and offers flexible data hosting options.",2016,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69a695de0dba6200017b4bf4/picture,"","","","","","","","","" +SUSI&James GmbH,SUSI&James,Cold,"",38,information technology & services,jan@pandaloop.de,http://www.susiandjames.com,http://www.linkedin.com/company/susi&james-gmbh,https://www.facebook.com/susiandjames/,"",8 Turley-Strasse,Mannheim,Baden-Wuerttemberg,Germany,68167,"8 Turley-Strasse, Mannheim, Baden-Wuerttemberg, Germany, 68167","digitale mitarbeiter, der channel telefonie ermoeglicht uns die anbindung einer kuenstlichen intelligenz an die telefonie, hoehere flexibilitaet, intelligente sprachdialoge, prozessoptimierung, digitalisierung, deeplearning maschinelle lernverfahren, dokumentenklassifikation, geschaeftsprozesse mit sprache steuern, it services & it consulting, ai digital employees, voice ai, healthcare, ai in retail and service, ai process optimization, software development, ai in logistics, ai in hospitality, ai predictive analytics, knowledge management, deep learning, data security, deep learning applications, real-time data analysis, ai in quality control, ai user interface, ai in predictive maintenance, ai in automotive testing, ai in public administration, process automation, ai for manufacturing, ai in smart cities, retail ai, real-time analytics, ai-driven process optimization, data security in ai, public sector ai, hybrid ai systems, logistics, ai in customer feedback analysis, ai in healthcare diagnostics, ai-powered digital employees, ai in legal document processing, energy ai, manufacturing ai, ai in smart manufacturing, ai in industrial automation, enterprise knowledge management, business process automation, quality control ai, process digitalization, ai data analysis, ai in public services, ai in industrial robotics, ai multilingual support, consulting, b2b, hybrid ai technology, ai for healthcare, ai security standards, ai in supply chain management, ai performance monitoring, ai for supply chain, ai model deployment, machine learning solutions, ai scalability, ai api access, retail & service, computer systems design and related services, business services, ai customer engagement, ai in legal services, hospitality ai, supply chain ai, ai compliance, machine learning, ai in automotive industry, healthcare ai, ai integration, legal ai, predictive analytics, ai for customer service, ai in production, retail, industrial automation ai, chatbot integration, ai in retail, logistics ai, ai chatbot, multichannel ai communication, production ai, process optimization, services, ai in energy sector, ai workflow automation, customer communication automation, manufacturing, ai in energy management, ai voice assistant, artificial intelligence, ai training data, ai cloud solutions, natural language processing, automotive ai, enterprise ai solutions, customer communication, business process digitalization, workflow automation, industry, multichannel communication ai, customer service ai, ai customization, ai real-time processing, ai for automotive testing, automotive, legal, distribution, information technology & services, health care, health, wellness & fitness, hospital & health care, computer & network security, enterprise software, enterprises, computer software, mechanical or industrial engineering",'+49 621 48349342,"Outlook, Microsoft Office 365, React Redux, Slack, Hubspot, Mobile Friendly, Shutterstock, DoubleClick, YouTube, Apache, Google Analytics, Google AdSense, Google Tag Manager, WordPress.org, Javascript, Python","","","","","","",69b862eac63906001d70c092,7375,54151,"SUSI&James GmbH is a German AI technology startup founded in 2014 and based in Mannheim, Baden-Württemberg. The company specializes in cross-platform AI-based software solutions that automate and optimize communication-heavy business processes through its digital assistants, SUSI and James. With a team of around 38-39 employees, SUSI&James reported an annual revenue of $4 million in 2024. + +The company focuses on digital voice assistance, computer linguistics, machine learning, and hybrid AI technologies. Its core offerings include AI-powered digital employees for handling interaction-intensive tasks, Voice AI and Conversational AI for contact centers, and SmartOfficeAI for knowledge management and process automation. The EVA automation platform enhances AI accessibility, and the AI Callbot provides cross-industry support. SUSI&James serves various industries, including automotive, health/medical, transportation, and business productivity, aiming for broad adoption of its solutions across Germany and the EU.",2014,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670307b1ee45bc0001b5818a/picture,"","","","","","","","","" +Ideabay.AI,Ideabay.AI,Cold,"",23,information technology & services,jan@pandaloop.de,http://www.ideabay.ai,http://www.linkedin.com/company/ideabay-ai,"","",10 Widenmayerstrasse,Munich,Bavaria,Germany,80538,"10 Widenmayerstrasse, Munich, Bavaria, Germany, 80538","digital assistant, voice assistant, conversational user interface, voice identity, amazon alexa, voice user interface design, conversational design, chatbot, uxui, google home, charismatic ai, web development, information technology, artificial intelligence, developer tools, new product development, chat, enterprise software, consumer goods, deep information technology, social media, software, consumer internet, consumers, internet, it services & it consulting, emotional ai, ai trendsetting research, voice and text interaction, ai strategy consulting, services, ai-driven customer service, ai innovation, customer experience research, ai for enterprise solutions, ai and emotional intelligence, ai research methodologies, chatbot optimization, ai applications, emotion recognition in ai, ai, multimodal bot factory, ai research, ai in media and entertainment, prompt engineering, b2b, user interaction design, consulting, ai system evaluation, ai usability optimization, generative ai, ai product testing, prompt design, ai proof of concept, innovation, information technology and services, customer engagement, ai consulting, technology consulting, ai in customer service, avatar integration, multimodal interaction, llm integration, computer systems design and related services, large language models, conversational system auditing, digital transformation, conversational ai, natural language processing, conversational design for brands, ai product development, ai user journey, user journey enhancement, voice assistant development, ai strategy, information technology & services, enterprises, computer software, management consulting",'+49 89 21544639,"Cloudflare DNS, Gmail, Outlook, Google Apps, Microsoft Office 365, Mobile Friendly, Apache, AI","","","","","","",69bab4385e53280001a05543,7375,54151,"Ideabay.AI is an award-winning AI experience company based in Munich, Germany. The company specializes in conversational AI consulting, research, and development, focusing on creating scalable AI solutions that enhance customer experience for enterprises. With a team of around 40 international experts, Ideabay.AI has been developing AI assistants since 2017 and has received accolades such as the Red Dot Award and iF Design Award for its innovative ""Charismatic-AI"" approach. + +The company offers comprehensive support for conversational AI projects, including AI product ownership, LLM architecture and prompt engineering, and testing and go-live support. Their services aim to transform customer service through seamless integration of AI technology into existing processes. Ideabay.AI also provides training and consulting through its AI Academy, helping organizations improve their chatbots and voicebots. Their methodology emphasizes embedding AI solutions into company processes, ensuring scalability and alignment with brand identity.",2016,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69629bebc874f30001d9a2f2/picture,"","","","","","","","","" +evocenta GmbH,evocenta,Cold,"",51,information technology & services,jan@pandaloop.de,http://www.evocenta.com,http://www.linkedin.com/company/evocenta-gmbh,"","",14 Munscheidstrasse,Gelsenkirchen,North Rhine-Westphalia,Germany,45886,"14 Munscheidstrasse, Gelsenkirchen, North Rhine-Westphalia, Germany, 45886","ki & artificial intelligence, itservicedesk, kuenstliche intelligenz, artificial intelligence, machine learning, business processes, service processes, ki, service center, ai, it services & it consulting, ai for knowledge management in it, government, ai in service management, ai for service desk, ai in it support, ai self-learning systems, cloud-based ai, consulting, ticket automation, deep learning, ai for it service desk, services, real-time support, customer service ai, conversational ai, data analysis, ai knowledge base automation, computer systems design and related services, ai for service automation in public sector, ai for incident management, ai service center, ai for customer support automation, ai learning capabilities, natural language processing, multilingual ai support, cloud computing, knowledge support, automated solutions, knowledge management, process automation, analytical ai, ai-as-a-service, api integration, self-help knowledge base, cloud ai, ai for incident resolution, multi-channel communication, public administration ai, itsm-integration, german ai provider, ai for large data sets, b2b, big data, ai for customer support, ai-driven automation, public administration, support automation, multi-language ai, ai for data analysis, german data privacy, software development, business services, ai for complex data analysis, ai for business transformation, information technology and services, data science, ai process optimization, data security, ai training, ai for service process optimization, ai performance optimization, eu data privacy compliant ai, ai for public administration, ai for public sector, ai for business, information technology & services, non-profit, data analytics, enterprise software, enterprises, computer software, computer & network security, nonprofit organization management","","Outlook, Barracuda Networks, Slack, Google Tag Manager, WordPress.org, Hubspot, Apache, Bootstrap Framework, Mobile Friendly, Remote, AI","","","","","","",69bab4385e53280001a05545,7375,54151,"evocenta GmbH is a high-tech company based in Gelsenkirchen, Germany, founded in 2020. The company specializes in applied artificial intelligence (AI) to digitize and automate business processes across various industries. With around 95 employees, evocenta generates approximately $5.2 million in annual revenue. The company operates international service centers in Germany and Croatia, focusing on development, data science, and machine learning model training. + +The core product of evocenta is EMMA®AI, a cloud-based AI-as-a-Service platform that automates customer and user communication through various channels, including phone, email, and chat. EMMA®AI emphasizes ""hallucination-free"" performance and is designed for high automation in IT service desks and other business operations. In addition to its AI platform, evocenta offers AI-based service centers for support operations and provides consulting services for digital transformation, covering areas such as governance, risk, and compliance. The company aims to create high-skilled jobs and enhance digital transformation in the Ruhr area.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f3e40b6fbfbc000140ed6c/picture,"","","","","","","","","" +BIG PICTURE GmbH,BIG PICTURE,Cold,"",23,information technology & services,jan@pandaloop.de,http://www.big-picture.com,http://www.linkedin.com/company/big-picture,"","",20 Koepenicker Strasse,Berlin,Berlin,Germany,10997,"20 Koepenicker Strasse, Berlin, Berlin, Germany, 10997","digital transformation, digital platform, digital strategy, startup building, large language model, agentic ai, ux, business transformation, company building, business model development, mvp development, scaling, ui, international rollout, platform solutions, devops mlops, artificial intelligence, automotive, finance, responsive design, it services & it consulting, workflow automation, ai agents, prompt engineering, computer systems design and related services, autonomous claims management, health chatbots, information technology and services, b2b, operational cost reduction, vehicle voice assistants, end-to-end ai solutions, healthcare, content generation in multiple languages, conversational interfaces, financial services, natural language interfaces, ai safety and robustness, cloud infrastructure, services, process automation, trademark monitoring ai, multilingual ai, voice assistants, gdpr-compliant ai, software development, retrieval augmented generation, ai-powered platforms, legal services, consulting, generative ai, devops, legal, marketing, marketing & advertising, information technology & services, health care, health, wellness & fitness, hospital & health care, enterprise software, enterprises, computer software, internet infrastructure, internet",'+49 30 275959762,"Route 53, Amazon SES, Outlook, Microsoft Office 365, Amazon AWS, Typeform, Mapbox, Slack, WordPress.org, Google Tag Manager, Google Analytics, Mobile Friendly, Apache, Remote, AI","","","","","","",69bab4385e53280001a05546,7375,54151,"BIG PICTURE GmbH is a digital transformation boutique based in Berlin, Germany. The company specializes in IT services, IT consulting, film and video production, broadcasting, and the development of digital media. With an estimated revenue of $5.6 million, BIG PICTURE focuses on leveraging advanced technologies, particularly generative AI, to enhance business innovation and improve efficiency by modernizing traditional business models. + +The firm offers a range of services, including digital transformation strategies, IT consulting, and production services for film and video. It also provides strategic advisory on digital media implementation. BIG PICTURE GmbH is dedicated to driving innovation across various industries through effective technology integration. The company has collaborated with notable clients in sectors such as automotive, finance, and consumer goods.",2007,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66dd9891234aad0001c5c4f4/picture,"","","","","","","","","" +skillbyte GmbH,skillbyte,Cold,"",32,information technology & services,jan@pandaloop.de,http://www.skillbyte.de,http://www.linkedin.com/company/skillbyte-ki,"","",57 Zollstockguertel,Cologne,North Rhine-Westphalia,Germany,50969,"57 Zollstockguertel, Cologne, North Rhine-Westphalia, Germany, 50969","cybersecurity, data, kubernetes, devops, terraform, spring boot, gcp, ai, generative ai, software development, openshift, aws, spark, docker, deep learning, java cloud native, kafka, ki, mobile app entwicklung, iac, machine learning, blockchain, gitops, azure, microservices, devsecops, ansible, llm, ml, kuenstliche intelligenz, it services & it consulting, ai for sustainability reporting, process automation, ai integration, ai data structuring, ki-workshop, ai for process automation in mittelstand, artificial intelligence, proof of concept, ai for production planning, ai in logistics, roi-analyse, prozessoptimierung, industrieller mittelstand, ai project planning, custom ai solutions, ai roi estimation, maßgeschneiderte ki-lösungen, ai project management, logistics, ki-beratung, data analysis, manufacturing, b2b, operational research algorithms, ai for resource allocation, ai for administration, ai pilot project, ai technology, industrial ai, ai compliance gdpr, ai in administration, datenanalyse, esg reporting automation, ai for manufacturing, services, consulting, ki-implementierung, ai strategy, ai in production, datenexploration, ai in zulassungsverfahren, computer systems design and related services, ai consulting, ai for logistics, ai development, data quality check, distribution, information technology & services, data analytics, mechanical or industrial engineering",'+49 225 17847115,"MailJet, Gmail, Google Apps, Amazon AWS, SendInBlue, WordPress.org, Mobile Friendly, reCAPTCHA, DoubleClick, Nginx, Google Dynamic Remarketing, Google Tag Manager, DoubleClick Conversion, Docker, Remote","","","","","","",69b2d7109601710001721509,3571,54151,"We are one of the leading AI service providers for German SMEs. For more than 10 years, we have been developing trustworthy digital solutions that facilitate and optimise business processes and everyday working life. We consider ourselves not just a provider but a strategic partner in the implementation of big data projects and translate the current AI hype into use cases with measurable results for administration and production.",2012,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/681f8e568300a90001d0a8ee/picture,"","","","","","","","","" +TechNow,TechNow,Cold,"",36,information technology & services,jan@pandaloop.de,http://www.tech-now.io,http://www.linkedin.com/company/digitalesdeutschland,"","","",Berlin,Berlin,Germany,10405,"Berlin, Berlin, Germany, 10405","it services & it consulting, b2b, information technology and services, ki-gestützte automatisierung, ki-gestützte textanalyse, technische due diligence, ki-transformation, ki-services, ki-tools, digital transformation, ki-training, ki-architekturen, machine learning, data analytics, e-commerce, ki-gestützte bildverarbeitung, d2c, digitalisierung, ki-gestützte personalisierung, big data, ki-gestützte prozessautomatisierung, ki-gestützte sentiment-analyse, software development, real estate, ki-implementierung, artificial intelligence and machine learning, automatisierung, branchenlösungen, cybersecurity, ki-gestützte bildanalyse, ki-integration, ki-gestützte spracherkennung, ki-gestützte analysen, deep learning, consulting services, ki-consulting, cloud-migration, ki-gestützte optimierung, ki-strategie, ki-gestützte sprachverarbeitung, financial services, ki-gestützte robotik, chatbots, retail, ki-gestützte kundeninteraktion, it-support, ki-lösungen, ki-gestützte entscheidungsfindung, ki-optimierung, ki-gestützte betrugserkennung, ki-automatisierung, cloud computing, ki-workshops, construction and real estate, kundenspezifische lösungen, ki-beratung, ki-gestützte diagnostik, it-infrastruktur, ki-strategieentwicklung, ki-gestützte prognosen, business intelligence, services, softwareentwicklung, datenanalyse, healthcare, computer systems design and related services, ki-gestützte medizinische bildgebung, ki-modelle, consulting, ki-gestützte vorhersagemodelle, managed it services, it-beratung, ki-management, ki-architektur, transportation and logistics, manufacturing, energy and utilities, data management, ki-entwicklung, it-dienste, ki-partner, ki-projekte, ki-gestützte empfehlungssysteme, it support, predictive analytics, data security, ki-experten, finance, education, non-profit, distribution, consumer_products_retail, transportation_logistics, energy_utilities, construction_real_estate, information technology & services, artificial intelligence, consumer internet, consumers, internet, enterprise software, enterprises, computer software, management consulting, analytics, health care, health, wellness & fitness, hospital & health care, mechanical or industrial engineering, computer & network security, nonprofit organization management",'+49 30 46069295,"Cloudflare DNS, Gmail, Outlook, Google Apps, Microsoft Office 365, CloudFlare Hosting, Google Ads, Google Analytics, Google Tag Manager, Linkedin Marketing Solutions, Meta Ads Manager, SAP, TikTok","","","","","","",69bab4385e53280001a0554d,7375,54151,"Von der ersten Beratung bis zur vollständigen Implementierung – TechNow ist Ihr strategischer Partner für den erfolgreichen Einsatz von Künstlicher Intelligenz. + +Unsere Expertise: +- Strategische Beratung zum erfolgreichen Einsatz von KI +- Training Ihrer Mitarbeitenden +- Entwicklung von individuellen, DSGVO-konformen KI-Lösungen. + +Unsere Produkte: +- CustomGPT (RAG-Modell) +- Customer Service Assistent +- Telefon-Assistent + +Unser Tech Stack: +- Back-end: PHP, Node.js, C#, .NET, Java, Python, Rust. +- Front-end: Angular, Vue.js, React.js, JavaScript. +- Mobile: Swift, Kotlin, React Native, Flutter, Xamarin. + +Unsere Kunden: +Wir sehen unsere Kunde nicht als Kunden, sondern als langfristige Partner. Zu ihnen gehören Industrievorreiter wie die hkp///group, die Bernstein Group, das HPI, die Eurodoors Production GmbH und viele mehr. + +Unsere Kontaktdaten: +- projects@tech-now.io +- +49 (0) 30 46069295","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/687b9015c732cd0001bd41a4/picture,"","","","","","","","","" +moinAI,moinAI,Cold,"",36,information technology & services,jan@pandaloop.de,http://www.moin.ai,http://www.linkedin.com/company/moinai,"",http://twitter.com/knowherego,9 Karolinenstrasse,Hamburg,Hamburg,Germany,20357,"9 Karolinenstrasse, Hamburg, Hamburg, Germany, 20357","conversational interfaces, conversational apps, angular, messenger marketing, facebook messenger, kundenservice, dialog design, image recognition, ki, kuenstliche intelligenz, whatsapp, chat, conversational design, messenger, ai, webchat, automatisierung, generative ki, chatbot, webwidget, kundenkommunikation, genai, custom backends, artificial intelligence, web development, produktberatung, bots, nodejs, machine learning, facebook applications, deep information technology, social media, consumer internet, information technology, internet, software development, data privacy, retail, multi-channel communication, ai-driven insights, ai chatbot analytics, financial services, gdpr compliant, ai chatbot migration, customer service automation, ai platform, automated workflows, ai in sales and marketing, knowledge base, customer support, human handover, automated inquiries, ai training, information technology and services, ai chat widget, tourism, ai for e-commerce, computer systems design and related services, ai customer communication, e-commerce, nlp, b2b, ai in support, conversational ai, education, no-code platform, integrations, live chat, personalized product advice, energy, ai chatbots, lead generation, knowledge management, generative ai, customer experience, ai agents, support activities for transportation, ai chatbot customization, multilingual ai, self-learning ai, publishing, industry-specific templates, scalable conversations, ai product advisor, ai for support processes, ai knowledge base, chatbots, automated support, ai automation roi, d2c, ai for lead qualification, customer insights, services, content generation, finance, computer vision, information technology & services, consumers, natural language processing, marketing & advertising, sales, media",'+49 40 22866528,"Cloudflare DNS, Route 53, MailJet, Gmail, Google Apps, Microsoft Office 365, Mailchimp Mandrill, VueJS, UptimeRobot, Leadfeeder, Webflow, Hubspot, Active Campaign, Google Tag Manager, Mobile Friendly, Google Dynamic Remarketing, DoubleClick Conversion, Linkedin Marketing Solutions, DoubleClick, Android, Remote, AI, IoT, Salesforce CRM Analytics, Demandware Analytics, Dash","","","","","","",69bab4385e53280001a05540,7375,54151,"moinAI is an AI-powered customer service platform based in Hamburg, Germany, specializing in self-learning chatbots for automated customer communication. Founded in 2015, the company has over nine years of experience in the AI and chatbot sector. Its primary offering is a SaaS-based AI chatbot solution that automates customer interactions across multiple channels and languages. + +The platform provides customer service automation, sales and product advisory, and marketing and lead generation. It features multilingual support in 98 languages, human handover capabilities for complex issues, intent recognition, real-time analytics, and seamless integration with existing business tools. moinAI serves medium to large enterprises in various sectors, including finance, e-commerce, tourism, education, energy, and manufacturing, with a client base that includes notable names like Jägermeister, Thomy, and Greenpeace. The company processes several million interactions annually and has over 100 clients in Germany.",2015,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/695ae0a2063e300001bfd7aa/picture,"","","","","","","","","" +AI Marketplace (KI-Marktplatz),AI Marketplace,Cold,"",11,information technology & services,jan@pandaloop.de,http://www.ki-marktplatz.com,http://www.linkedin.com/company/ki-marktplatz,"",https://twitter.com/ki_marktplatz,2 Zukunftsmeile,Paderborn,North Rhine-Westphalia,Germany,33102,"2 Zukunftsmeile, Paderborn, North Rhine-Westphalia, Germany, 33102","digitale plattform, softwareentwicklung, artificial intelligence, generative ki, engineering it, ai, produktentstehung, requirements engineering, rflp, anforderungsmanagement, modelbased systems engineering, engineering intelligence, engineering, kuenstliche intelligenz, product lifecycle management, engineering automation, generative ai, systems engineering, sysml, systems modeling language, engineering services, software development, cloud-infrastruktur, ki-gestützte energieeffizienz, ki-gestützte simulationen, systemmodellierung, use case evaluation, b2b, information technology, ki-lösungen, datenmanagement, ki-gestützte fehlererkennung, ki-gestützte patentanalyse, automatisierung im engineering, ki-basierte designoptimierung, ki-anwendungsfälle, ki für materialoptimierung, ki-architektur, requirements ai assistant, ki-basiertes requirements engineering, ki in der produktkonzeption, consulting, generative design, ki-frameworks, produktentwicklung, data governance, ki in der automatisierung von testprozessen, on-premise-lösungen, ki für nachhaltigkeit, ki in der systementwicklung, künstliche intelligenz, ai assistant, ki im engineering, ki im produktionssystem, data standards, ki für co2-reduktion, ki-integration in engineering, ki-potenziale, services, data landkarte, information technology & services","","Amazon SES, Outlook, SendInBlue, Hubspot, Google Tag Manager, Mobile Friendly, WordPress.org, DoubleClick, Apache, Intercom, IoT, AI","","","","","","",69bab4385e53280001a05551,7375,54133,"AI Marketplace GmbH, also known as KI-Marktplatz, is a startup that emerged from a German research initiative focused on creating a digital platform ecosystem for artificial intelligence (AI) applications in product development and engineering. The company was established following a consortium project funded by the German Federal Ministry for Economic Affairs and Climate Action, which involved numerous partners, including research institutions and industry networks. + +The core offering of AI Marketplace is its KI-Marktplatz platform, which acts as a central hub for connecting AI experts, solution providers, and manufacturing companies. This platform facilitates the collaborative development and deployment of AI solutions tailored to industrial applications. It features an app store for AI applications, consulting services to help companies integrate AI into their engineering processes, and opportunities for networking and collaboration among various stakeholders. The platform aims to enhance engineering capabilities in manufacturing through innovative AI solutions.",2022,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69185c897d11660001c17771/picture,"","","","","","","","","" +SemanticEdge,SemanticEdge,Cold,"",11,information technology & services,jan@pandaloop.de,http://www.semanticedge.com,http://www.linkedin.com/company/semanticedge,"","",10 Kaiserin-Augusta-Allee,Berlin,Berlin,Germany,10553,"10 Kaiserin-Augusta-Allee, Berlin, Berlin, Germany, 10553","conversational ai & customer support bots, it system custom software development, speech recognition, ai for insurance, ai for utilities companies, ai platform integration, d2c, dialog modules, ai for customer engagement, consulting, e-commerce, services, information technology and services, ai for public transport, generative ai models, ai for transport, automation solutions, government, insurance, ai dialogue management, ai for high compliance industries, enterprise ai, natural language understanding, on-premise ai solutions, ai for utilities, customer experience, transportation, ai in customer service, llms customization, ai security, ai for call centers, ai for insurance claims, ai security and data privacy, multi-channel customer journeys, b2b, ai assistants, ai training data, computer systems design and related services, ai training with industry data, ai for personalized marketing, utilities, large language models, ai integration with back-end systems, advanced problem-solving, ai with microsoft and google, personalized dialogues, industry-specific ai solutions, customer service automation, ai for e-commerce, ai deployment, emotion recognition, ai for process automation, ai for multi-language support, ai for financial services, ai emotion detection, ai performance monitoring, ai for banking, ai chatbot development, ai for complex problem solving, financial services, ai for e-commerce support, conversational ai, cloud-based ai, no-code configuration, ai technology, generative ai, b2c, finance, information technology & services, artificial intelligence, consumer internet, consumers, internet",'+49 30 3450770,"Outlook, Microsoft Office 365, Mobile Friendly, WordPress.org, Apache, Ubuntu, AI, Android, Avaya, Remote, React Native, Node.js","","","","","","",69bab4385e53280001a05547,7375,54151,"Founded in 2000, SemanticEdge is a pioneer in conversational AI, specializing in advanced AI-driven solutions that transform human-machine communication for some of Europe's largest banks, insurers, and energy providers. With over 20 years of innovation, we harness the latest in generative AI to deliver natural, intuitive customer interactions. + +Our interdisciplinary team has built award-winning AI assistants that power seamless conversations. These solutions, field-tested across millions of interactions, deliver exceptional customer experiences by continuously adapting to the highest standards of language understanding and voice recognition technology. Our AI-driven platforms have been showcased at global trade fairs in Berlin, Amsterdam, London, New Orleans, and Las Vegas. + +As a leader in conversational AI, we combine deep industry experience with cutting-edge generative AI, providing a unique competitive advantage to our clients as they adapt to the evolving landscape of AI-powered customer service.",2000,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/687deab04659310001bbce26/picture,"","","","","","","","","" +bots4you GmbH,bots4you,Cold,"",15,information technology & services,jan@pandaloop.de,http://www.bots4you.de,http://www.linkedin.com/company/bots4you,https://facebook.com/bots4you.de,https://twitter.com/infobots4you,"",Siegen,North Rhine-Westphalia,Germany,"","Siegen, North Rhine-Westphalia, Germany","kitransformation, software made in germany, facility management, softwaredevelopment, insurance, agentic ai, dealer management system, artificial intelligence, prozessautomatisierung, predictive maintenance, naturallanguageprocessing, generative ai, large language model, manufacturing, construction, gpt, rpa, chatbots, real estate, virtual assistants, kontrollierbare ki, software development, no-code plattform, automatisierte text- und bildgenerierung, multi-channel-kommunikation, datensicherheit, workflow automation, datenschutz, services, ki für kommunale verwaltung, eu-hosting, logistics, computer systems design and related services, ki in der immobilienwirtschaft, ki für autohäuser & werkstätten, branchenlösungen, eu-datenschutz, multi-llm-flexibilität, künstliche intelligenz im arbeitsalltag, on-premise-optionen, benutzerfreundliche konfiguration, ki im gesundheitswesen, prozessoptimierung, skalierbare ki-lösungen, ki-modelle, ki für logistikunternehmen, ki für fertigungsbetriebe, b2b, ki-plattform, omnichannel, hospitality, ki für bau & handwerk, e-commerce, business services, ki-lösungen, ki-gestützte entscheidungsfindung, ki im e-commerce, interne aufgaben, e-mail-automatisierung, healthcare, dsgvo-konform, sicherer cloud-hosting, chatbot, api-integration, automatisierung, ki für versicherungen, kundenkommunikation, branchenvielfalt, automatisierte anrufbeantwortung, ki-helfer, information technology & services, ki für hotellerie & tourismus, finance, non-profit, distribution, mechanical or industrial engineering, leisure, travel & tourism, consumer internet, consumers, internet, health care, health, wellness & fitness, hospital & health care, financial services, nonprofit organization management",'+49 180 01234567,"Cloudflare DNS, Outlook, Vimeo, Dropbox, Nginx, Facebook Custom Audiences, Mobile Friendly, Facebook Widget, Bootstrap Framework, Facebook Login (Connect), reCAPTCHA, Google Tag Manager, Trustpilot, Remote","","","","","","",69bab4385e53280001a05548,7375,54151,"Bots4You GmbH is a German AI solutions provider established in 2018, specializing in AI-powered assistants for customer interactions and internal business processes. The company is certified under the ""Software Made in Germany"" initiative and serves over 550 active customers across various industries. + +The core offerings include an integrated AI platform with customer communication solutions that automate calls, chats, and emails, and internal workflow automation that assists employees with routine tasks and custom workflows. The platform is a no-code solution, allowing users to configure AI behavior without programming skills. Bots4You emphasizes a ""Voice First"" approach, primarily focusing on telephone-based AI assistants. + +Bots4You ensures data protection and compliance with DSGVO regulations, hosting its infrastructure in Germany and the EU. The platform features a modular architecture, integration capabilities with popular enterprise software, and a comprehensive support model that includes ongoing management and optimization. The pricing structure starts at €299 per month, catering to SMEs and mid-market companies across sectors like real estate, healthcare, automotive, and public administration.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6880bdb41e7a11000145cbad/picture,"","","","","","","","","" +SPRYFOX,SPRYFOX,Cold,"",11,information technology & services,jan@pandaloop.de,http://www.spryfox.ai,http://www.linkedin.com/company/spryfox,"","","",Darmstadt,Hesse,Germany,"","Darmstadt, Hesse, Germany","artificial intelligence, ai assessment, ai implementation, ai at scake, ai use case exploration, data analytics & artificial intelligence, data ai strategy, ai engineering, data analytics, information technology & services, consulting, ai development, data architecture, ai in finance, ai for customer support automation, ai for textile quality control, machine learning, data analytics & consulting, ai in legal, cloud infrastructure, genai, ai for investment scoring, image processing, data science consulting, legal tech, model validation, ai in healthcare, ai & data science, ai project implementation, data analysis, computer systems design and related services, data pipelines, healthcare technology, rapid prototyping, ai in insurance, ai for auction systems, data security, ai integration, b2b, text analysis, business intelligence, e-commerce, big data analytics, financial technology, ai for real estate data analysis, generative ai, software development, data management, ai for defect detection in textiles, ai automation, api integration, predictive analytics, tailored ai solutions, services, custom ai applications, ai strategy, ai for pet health prediction, ai for e-commerce product monitoring, ai for legal process modernization, large language models (llms), healthcare, finance, education, legal, manufacturing, consumer_products_retail, enterprise software, enterprises, computer software, internet infrastructure, internet, computer & network security, analytics, consumer internet, consumers, finance technology, financial services, health care, health, wellness & fitness, hospital & health care, mechanical or industrial engineering",'+49 6151 3928676,"","","","","","","",69bab4385e53280001a0554b,7375,54151,"Spryfox is an AI engineering company based in Germany that specializes in providing tailored AI solutions, strategy, and implementation services. The company focuses on data-driven approaches and real-world applications, particularly in the healthcare sector. With a leadership team that includes founders with extensive experience in AI and machine learning, Spryfox emphasizes the importance of quality data and stakeholder alignment in successful AI projects. + +The company offers a range of services, including custom AI engineering solutions, data analytics, and specialized applications in healthcare, such as Natural Language Processing (NLP) for clinical data abstraction and risk stratification. Spryfox also provides AI project consulting to help organizations navigate challenges related to data quality and user adoption. Their approach prioritizes practical impact, ensuring that AI solutions are effectively integrated into existing systems with human oversight.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6703526d6ac411000197a7e7/picture,"","","","","","","","","" +Kenbun IT AG,Kenbun IT AG,Cold,"",20,information technology & services,jan@pandaloop.de,http://www.kenbun.de,http://www.linkedin.com/company/kenbun,https://www.facebook.com/KenbunITAG/,https://mobile.twitter.com/Kenbun_IT,7 Haid-und-Neu-Strasse,Karlsruhe,Baden-Wuerttemberg,Germany,76131,"7 Haid-und-Neu-Strasse, Karlsruhe, Baden-Wuerttemberg, Germany, 76131","itconsulting, kuenstliche intelligenz, voice user interface, voice assistant, devops, hadoop, agile project management, big data, ai, deep learning, natuerlichsprachlicher assistent, machine learning, data science, nosql, it services & it consulting, maintenance voice assistance, industrial inspection voice control, computer systems design and related services, real-time documentation, cloud ai solutions, medical voice recognition, veterinary documentation ai, ai consulting, healthcare technology, custom ai solutions, artificial intelligence, ai project support, regional dialect recognition, ai for emergency services, information technology and services, b2b, manufacturing, healthcare, industrial automation, hybrid ai systems, voice control systems, ai strategy consulting, industrial ai applications, natural language processing, ai in healthcare, ai for safety-critical environments, services, ai integration, voice assistants, technical term processing, software development, offline voice recognition, speech recognition for noise, speech recognition, deep neural networks, consulting, dialect and accent recognition, sales voice assistant, on-premise ai, continuous model training, language systems, distribution, enterprise software, enterprises, computer software, information technology & services, mechanical or industrial engineering, health care, health, wellness & fitness, hospital & health care",'+49 721 78150302,"Microsoft Office 365, DoubleClick, WordPress.org, Mobile Friendly, Google AdWords Conversion, Google Tag Manager, Docker, React Native, AI, Remote, NLP, Olo, Spark, Apache Kafka, Redis, Hadoop HDFS, Red Hat OpenShift, Kubernetes, Microsoft Azure Monitor, Google Cloud, Smart AdServer, Terraform, Ansible, AWS Trusted Advisor","","","","","","",69bab4385e53280001a05541,7375,54151,"Our mission is to provide companies with access to modern AI. Kenbun experts support you in the digital transformation of your business models. For this purpose we create intelligent systems to break through boundaries with you. Get to know us, we will surprise you with creative innovative concepts. Work with us in an agile way and discover the potential of digital assistants.",2018,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/683d57cdfed2b7000196d59f/picture,"","","","","","","","","" +Codiac Knowledge Engineering GmbH,Codiac Knowledge Engineering,Cold,"",12,information technology & services,jan@pandaloop.de,http://www.codiac.com,http://www.linkedin.com/company/codiac-gmbh,"","",72 Herrengraben,Hamburg,Hamburg,Germany,20459,"72 Herrengraben, Hamburg, Hamburg, Germany, 20459","data analytics, vollautomatische handlungsanweisungen, legal tech, ai, dialogautomatisierung, digitalisierung, market research, content engineering, knowledge navigation, chat bot, digitale kommunikation, natural language processing, real estate digital advisor, compliance monitoring, low code platform, knowledge base building, workflow automation, consulting, contract & document generator, legal document automation, process monitoring, automated mandate onboarding, services, automated communication, automated contract creation, customer journey mapping, business process outsourcing, computer systems design and related services, employee assistant systems, hr recruitment automation, ai chatbot, customer support system, process automation, ai nlp chatbot, regulatory compliance, insurance claim automation, b2b, software development, data-driven insights, virtual product consultant, information technology and services, ai decision support, ai-enhanced customer engagement, fragmented process integration, saas, b2c, finance, legal, information technology & services, artificial intelligence, computer software, financial services",'+49 40 604293410,"Outlook, Microsoft Office 365, Sendgrid, Salesforce, Slack, WordPress.org, Google Tag Manager, Mobile Friendly, Apache, Vimeo, React Native, Android, Remote, Circle, Sigma, AI","","","","","","",69bab4385e53280001a05549,7375,54151,"CODIAC Expertensysteme + +Eine Gesamtlösung für Vereine, die ihre Mitglieder allgemein und rechtlich beraten. + +Sorglos transformieren, Effizienz in der Beratung steigern und Mitgliederwachstum fördern. + + +CODIAC ist ein führender Anbieter von KI-gestützten Expertensystemen, die speziell auf die Effizienz und Qualität in der Erst- und Rechtsberatung für Vereinsmitglieder ausgerichtet sind. Mit über sieben Jahren Erfahrung und Millionen erfolgreich geprüfter rechtlicher Fälle zählt CODIAC zu den Vorreitern der digitalen Transformation von Beratungsleistungen. Die Expertensysteme zielen darauf ab, Mitglieder zeitgemäß und umfassend zu beraten, Mitarbeitende gezielt bei Routineaufgaben zu entlasten, Wartezeiten zu minimieren und wertvolles Expertenwissen dauerhaft verfügbar zu machen. Das Ergebnis: eine spürbare Steigerung der Beratungsqualität und Mitgliederzufriedenheit sowie eine Effizienzsteigerung von bis zu 60 % in der Fallbearbeitung. Als standardisierte, auf Ihre Organisation individualisierbare Lösung bieten die CODIAC Expertensysteme ein optimales Kosten-Nutzen-Verhältnis + +Vorteile des CODIAC Expertensystems: + +Entlastung: Mitarbeitende werden durch Automatisierung bis zu 60 % effizienter. + • Digitalisierung: Expertenwissen wird für alle nutzbar, unabhängig von Erfahrung. +Beratungsqualität: Gleichbleibend hohes Niveau, keine zeitaufwändigen Recherchen. +Schnelles Onboarding: Neue Mitarbeitende starten direkt produktiv. +Kontinuierliches Lernen: System bleibt durch Auswertungen stets aktuell. +Moderne Technik: KI, Textmining und Data Analytics für beste Ergebnisse. +Automatisierte Statusinfos: Transparenz und weniger Rückfragen. + +Effizienz, Qualität und Zukunftssicherheit – alles in einer Lösung.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6703a60b2343bd00013780a7/picture,"","","","","","","","","" +iiterate Technologies GmbH,iiterate,Cold,"",12,information technology & services,jan@pandaloop.de,http://www.iiterate.de,http://www.linkedin.com/company/iiterate,"","","",Adenau,Rhineland-Palatinate,Germany,53518,"Adenau, Rhineland-Palatinate, Germany, 53518","architecture, human computer interaction, xr uiux development, computational design, machine learning, software infrastructure development, 3d printing, artificial intelligence, vector database, interactive systems, internet of things, web development, digital architecture, prototyping, frugal innovation, creative workflow management, interactive art, visual scripting, ai, net programming, visual scripting environments, game development, camera vision, kichatbot, computer aided design tools, llama 2, augmented reality, virtual reality, parametric design, web configurators, design technology workshops, corporate training, mistral, software development, ar applications, web ar, healthcare technology, ai solutions, ai chatbots, xr development, visaflow university cms, computer systems design and related services, generative design, 3d modeling, radreport ai, xr applications, digital twin, ai models, ar for architecture, custom software development, ai for real estate, ai optimization, interior ai, services, vr training, educational technology, regiowizard ki, ai for healthcare diagnostics, automation, photogrammetry, ai object detection, computer vision, floorplan ai, b2b, ai knowledge base, ai fine-tuning, ai for logistics documents, consulting, ai applications, information technology and services, cloud solutions, vr for medical training, healthcare, finance, education, information technology & services, computer games, games, consumers, computer software, professional training & coaching, cloud computing, enterprise software, enterprises, health care, health, wellness & fitness, hospital & health care, financial services","","Gmail, Google Apps, Amazon AWS, Multilingual, Google Tag Manager, Mobile Friendly","","","","","","",69bab4385e53280001a0554a,7375,54151,"Welcome to iiterate Technologies! We're a passionate team of designers and software developers who believe in the power of combining creativity with technical know-how⚙️. We craft unique solutions for your needs across various fields: + +✅ Interactive XR Experiences (AR/VR): Immerse your audience in engaging + augmented and virtual reality experiences. + +✅ Computational Design: Harness the power of data and algorithms to + create intelligent and visually stunning designs. + +✅ AI Functionalities: Integrate cutting-edge AI capabilities to add a layer of + intelligence to your projects. + +✅ Website and Mobile App Development: Build user-friendly, high- + performing websites and mobile apps that captivate your audience. + +Plus! We offer a complimentary UI/UX design workshop to help you fine-tune your project concept. + +Ready to push boundaries and create something remarkable? Let's chat!💬🚀",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6742bd948d313d0001a2bf0d/picture,"","","","","","","","","" +nexamind,nexamind,Cold,"",12,information technology & services,jan@pandaloop.de,http://www.nexamind.io,http://www.linkedin.com/company/nexamind-genai,"","",14 Lottbeker Platz,Hamburg,Hamburg,Germany,22359,"14 Lottbeker Platz, Hamburg, Hamburg, Germany, 22359","generativeai, consulting, chatgpt, ai, digital transformation, it services & it consulting, ai for legal document analysis, ai for legal and hr processes, ai-powered chatbots, ai for process automation in industries, manufacturing, legal services, ai for finance, workflow automation, real-time analytics, ai roi, api security, services, ai process automation, business consulting, generative ai, ai innovation, computer systems design and related services, financial services, ai for manufacturing, open source models, ai-driven sales assistants, ai workflows, data analytics, ai scalability, ai for b2b sales optimization, ai customization, cloud ai solutions, ai for technical customer support, enterprise ai, ai engineering, ai for complex product portfolios, ai project deployment, ai agents, b2b, ai for customer support, generative ai in credit risk assessment, ai integration, software development, serverless computing, ai evaluation systems, enterprise-grade ai, ai product development, ai data extraction, information technology and services, artificial intelligence, ai process optimization, data security, ai technology consulting, ai efficiency improvements, ai decision support, ai solutions, ai automation, ai-driven insights, ai operational cost reduction, ai project management, ai security, ai for offshore asset management, finance, legal, information technology & services, mechanical or industrial engineering, management consulting, computer & network security","","Cloudflare DNS, Gmail, Google Apps, Amazon AWS, Google Tag Manager, Hotjar, Facebook Login (Connect), Mobile Friendly, Twitter Advertising, Facebook Custom Audiences, YouTube, Facebook Widget, Remote, Android, AI, Phoenix, Scala, React Native, Node.js, Data Analytics, Avaya, IoT, Circle, Mitel","","","","","","",69bab4385e53280001a0554c,7375,54151,"We believe that AI agents will augment every human worker in the next 5-10 years. + +Today we are already seeing many processes improved by 10x with customized AI Agents. This is why we are building customized AI agents for organizations to optimize their internal and external workflows We make enterprise-grade AI agents within weeks - trained with internal & external knowledge, 98-100% accuracy & E2E performance monitoring.",2023,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/674d3e83e3e00a000143a29d/picture,"","","","","","","","","" +KINOVA,KINOVA,Cold,"",13,information technology & services,jan@pandaloop.de,http://www.kinova.de,http://www.linkedin.com/company/parloapartner,"","","",Berlin,Berlin,Germany,"","Berlin, Berlin, Germany","it services & it consulting, b2b, information technology and services, customer service automation, voice bot creation, system integration with crm, software development, process optimization, consulting, chatbot development, ai platform implementation, digital transformation, customer experience, ai integration, operational efficiency, ai-driven customer support, customer engagement, ai training and support, ai-based customer interaction, automated customer communication, parloa-plattform, customer experience enhancement, ai in airports, customer service, ai hotline systems, conversational ai, ai customer service solutions, services, multilingual ai solutions, computer systems design and related services, artificial intelligence, multilingual voice assistants, transportation & logistics, information technology & services",'+49 176 61836201,"Gmail, Outlook, Google Apps, Amazon AWS, Mobile Friendly","","","","","","",69bab4385e53280001a0554e,7375,54151,"Welcome to KINOVA - Your Trusted Partner in AI-Powered Customer Service Solutions! 🚀 + +At KINOVA, we're dedicated to revolutionizing the customer service industry with cutting-edge AI technologies and innovative solutions. We specialize in implementing the leading conversational AI platform to enhance customer interactions, streamline operations, and drive growth for businesses. + +Our team of experts is committed to providing end-to-end support, from conceptual consulting to comprehensive implementation and ongoing optimization. With a focus on personalized service and seamless integration, we empower our clients to deliver exceptional customer experiences. + +Join us on our journey to transform the future of customer service through AI, and let's create extraordinary experiences together! + +#KINOVA #AI #CustomerService #Innovation #Tech #FutureOfWork","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69b28bb6d880dc00015feb26/picture,"","","","","","","","","" +atip GmbH,atip,Cold,"",18,information technology & services,jan@pandaloop.de,http://www.atip.de,http://www.linkedin.com/company/atip-gmbh,"","",32 Daimlerstrasse,Frankfurt,Hesse,Germany,60314,"32 Daimlerstrasse, Frankfurt, Hesse, Germany, 60314","process automation, ai, natural language processing, it, customer experience, conversational ai, it services & it consulting, texterstellung, consulting, sprachplattformen, java/jsp entwicklung, ki-basierte sprachassistenten, fehlerdiagnose, messen und workshops, audiodateien bearbeiten, managed services, datenbankdesign, self-service automatisierung, it-infrastruktur, services, ki-tools, contact center lösungen, automatisierte versicherungsprozesse, cloud-basierte contact center, open source technologien, vui-design, ki-gestützte chatbots, ki-integration, software development, virtualisierungslösungen für contact center, innovationsmanagement, omnichannel bots, projektmanagement im vui-bereich, virtualisierungslösungen, projektmanagement, iso 27001, speech-to-text technologien, ai-basierte anliegenklassifikation, cloud-hosting, financial services, it-beratung, information technology and services, voicebot entwicklung, sounddesign, it-sicherheit, sprachverarbeitung, it infrastructure, datenbankanbindung, omnichannel customer service, sprachtechnologie beratung, ki-gestützte zufriedenheitsbefragungen, case management integration, datenschutzkonform, open source sprachsysteme, cloud-lösungen, cloud infrastructure, api schnittstellen, customer service, genesys engage migration, data security, project management, sprachsteuerung, b2b, cloud computing, voice applications, speech engines, systemintegration, softwareentwicklung, kundenkontaktpflege, multi-channel plattformen, ki-gestützte sprachverarbeitung, sprach- und chatbots, infrastrukturberatung, systemoptimierung, sprachtechnologie, ki-basierte systeme, cloud services, automatisierte kommunikation, datenschutz, sprachdialogsysteme, telecommunications, self-service-lösungen, technologiepartner, automatisierung im contact center, kundenservice-optimierung, shell script programmierung, workflow automation, automatisierte kundenkommunikation, automatisierte kartenversendung, contact center services, computer systems design and related services, telefonie-systeme, system integration, genesys cloud integration, virtualisierungsaufbau, iso 27001 zertifiziert, ki-sprachsysteme, netzwerkumfeld, multi-channel-kommunikation, customer journey optimierung, software as a service, finance, distribution, transportation & logistics, artificial intelligence, information technology & services, enterprise software, enterprises, computer software, internet infrastructure, internet, computer & network security, productivity, saas",'+49 69 7104070,"WordPress.org, Mobile Friendly, Apache, Avaya, AI","","","","","","",69bab4385e53280001a05550,3571,54151,"atip GmbH is an information technology and services company based out of Daimlerstraße 32, Frankfurt, Hesse, Germany.",1999,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/673d64fe4e17770001fdb7a4/picture,"","","","","","","","","" +Two Impulse,Two Impulse,Cold,"",26,information technology & services,jan@pandaloop.de,http://www.twoimpulse.com,http://www.linkedin.com/company/two-impulse,https://facebook.com/twoimpulse,https://twitter.com/twoimpulse,1 Agnes-Pockels-Bogen,Munich,Bavaria,Germany,80992,"1 Agnes-Pockels-Bogen, Munich, Bavaria, Germany, 80992","digital marketing, machine learning, software engineering, cognitive computing, system integration, energytech, web development, iot, insuretech, saas development, web design, ux, time series, data engineering, data integration, graphic design, programming, voicebots, application development, chatbots, forecasting, saas development iot cognitive computing ux text mining & analytics, text mining & analytics, natural language processing, customer service tech, healthtech, software development, ai enterprise solutions, multichannel ai chatbots, computer systems design and related services, ai mvp development, energy optimization ai, data-driven insights, ai solutions, ai consulting, custom ai solutions, artificial intelligence, data security, ai automation, information technology and services, b2b, ai for business, ai transformation, ai training, mvp development, operational efficiency, ai implementation, ai for hr, ai for data automation, responsible ai, data analytics, services, digital transformation, data science, ai workshops, ai strategy, predictive analytics, ai deployment, consulting, generative ai, marketing & advertising, information technology & services, enterprise software, enterprises, computer software, app development, apps, computer & network security","","Gmail, Outlook, Google Apps, Microsoft Office 365, Atlassian Cloud, React Redux, Hubspot, Slack, Hotjar, Google Tag Manager, DoubleClick Conversion, Google Dynamic Remarketing, DoubleClick, Mobile Friendly, Remote, AI, PySpark, Spark, Databricks","",Venture (Round not Specified),0,2023-09-01,251000,"",69bab4385e53280001a0553b,7375,54151,"Two Impulse is an AI solutions company based in Munich, founded in 2016. The company develops customized artificial intelligence technologies, including large language models and machine learning, to enhance business operations in various industries such as insurance, recruiting, pharma, and automotive. With a team of around 50 employees, Two Impulse generates annual revenue between $1 million and $5.8 million and operates internationally, serving clients in the USA, Switzerland, Germany, the UK, and Portugal. + +The company focuses on delivering tailored AI solutions, including chatbots, voicebots, intelligent document process automation, data analysis, forecasting, pattern recognition, and energy optimization. Notable products include Ecotuner, which emphasizes energy efficiency, and Langbox, designed for generative AI language applications. Two Impulse also offers AI masterclasses, workshops, and enterprise AI paths, aiming to help clients navigate modern business complexities through data-driven decision-making and innovative solutions.",2016,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68b68593b7205d000158f7c3/picture,"","","","","","","","","" +SABO Mobile IT GmbH,SABO Mobile IT,Cold,"",51,information technology & services,jan@pandaloop.de,http://www.saboit.de,http://www.linkedin.com/company/sabomobileit,https://www.facebook.com/sabomobileit/,"",6 Engelstrasse,Buehl,Baden-Wuerttemberg,Germany,77815,"6 Engelstrasse, Buehl, Baden-Wuerttemberg, Germany, 77815","chatbots combined with gesture control for machines, ai based human machine intefaces, project management, ditital planning assistant tool for planning production plants, m2m interfaces for medical devices & industrial machines, design thinking for creation of innovative products, machine learning assistence systems for production processes, support of business processes on mobile workstations, monitoring & control with iot, large itprojects staffing, outsourcing, it services & it consulting, ai, information technology, industry 4.0 solutions, automation, healthcare, computer systems design and related services, consulting, transportation & logistics, data security, devops, sensor data processing, neural networks, industrial iot, b2b, data analytics, industrial automation, voice control for machines, ui/ux design, real-time speech api, ai voice ui, machine learning, digital transformation, manufacturing, remote machine monitoring, custom software development, services, edge computing, augmented reality industrial, voice user interface, cloud solutions, ar in industry, iot, machine learning models, cloud platforms aws azure, hmi, predictive maintenance ai, custom software, sensor integration, medical devices, predictive maintenance, industrial software, security protocols, cross-platform apps, intelligent assistant system, smart factory planning, ai in medical devices, real-time data transfer, industrial data visualization, cloud computing, productivity, information technology & services, health care, health, wellness & fitness, hospital & health care, computer & network security, mechanical or industrial engineering, artificial intelligence, enterprise software, enterprises, computer software",'+49 7227 4946,"Cloudflare DNS, Outlook, Mobile Friendly, reCAPTCHA, Facebook Login (Connect), Facebook Widget, YouTube, Facebook Custom Audiences, Hotjar, Google Tag Manager, React Native, IoT, AWS SDK for JavaScript, Spring Boot, PostgreSQL, MySQL, MongoDB, Apache Kafka, RabbitMQ, AWS Trusted Advisor, Microsoft Azure Monitor, Cypress, Javascript, TypeScript, Jira, Zephyr, Postman, Apache JMeter, REST, Pytest, Robot Framework, Appium","",Venture (Round not Specified),0,2023-06-01,"","",69bab4385e53280001a05544,3571,54151,"SABO Mobile IT GmbH is a software development company based in Bühl, Germany, with a focus on creating customized web and mobile applications for various industries, including industrial use, medical technology, and machine building. With over 25 years of experience, the company has built a team of skilled professionals, including developers, UX/UI designers, and project managers, who are dedicated to innovation and long-term partnerships with medium-sized and large enterprises across Europe. + +The company specializes in contract development of software solutions that enhance efficiency and support the digitalization of production processes. Their core offerings include AI assistance systems, IoT solutions for remote monitoring, and HMI solutions for mobile and web applications. SABO Mobile IT has developed notable products such as the intelligent voice UI SABOT, the KSB Guard for pump monitoring, and the award-winning Audi Digital Planning Assistant. Their commitment to quality and user-friendly design has earned them recognition in the industry, including awards for their innovative projects.",2001,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/687be13aa966ec0001e2e5f5/picture,"","","","","","","","","" + +FICUS HEALTH,FICUS HEALTH,Cold,"",15,information technology & services,jan@pandaloop.de,http://www.ficus-health.de,http://www.linkedin.com/company/ficus-health,https://www.facebook.com/WixStudio,https://twitter.com/WixStudio,3 Max-Urich-Strasse,Berlin,Berlin,Germany,13355,"3 Max-Urich-Strasse, Berlin, Berlin, Germany, 13355","technology, information & internet, data privacy, workflow automation, rehabilitation process automation, ai-driven healthcare efficiency, large language models, medical report generation, ki-basierte dokumentation, ai in healthcare, ai-powered healthcare compliance, healthcare ai tools, spracherkennung, effizienzsteigerung, offices of physicians, ai for medical quality control, medical report error detection, kostenreduktion, structured patient history, structured data extraction, medical report quality assurance, automated medical report validation, b2b, government, clinical workflow automation, drv-konforme berichte, ai peer review, healthcare process optimization, healthcare software, speech-to-text, medizinische dokumentation, patient data management, healthcare data security, medical report compliance, natural language processing, healthcare, real-time transcription, german healthcare system, automatisierte entlassberichte, peer review ai, digital transformation healthcare, digital health innovation, digital health solutions, rehabilitation, healthtech, medical documentation automation, services, information technology & services, artificial intelligence, health care, health, wellness & fitness, hospital & health care","","Gmail, Google Apps, Google Cloud Hosting, Amazon AWS, Varnish, Mobile Friendly, Wix","","","","","","",69bab640ba155d0011206b12,8731,62111,"FICUS Health is a Berlin-based AI healthtech startup founded in 2024. The company develops an AI-powered platform that automates medical documentation for rehabilitation clinics, significantly reducing administrative workloads by up to 70%. This allows healthcare professionals to focus more on patient care. FICUS Health addresses challenges in Germany's rehabilitation sector, such as rising costs and workforce shortages, and has quickly partnered with nearly 100 clinics across the country. + +The core AI platform specializes in automating inpatient rehabilitation documentation. It features real-time transcription of patient conversations into structured medical reports compliant with German regulations. The platform enhances information flow among healthcare providers and integrates seamlessly with existing clinical systems. FICUS Health has processed over 100,000 medical documents and serves around 1,000 professionals daily. With recent seed funding of €3 million, the company plans to expand its platform and develop additional AI applications throughout the patient journey in rehabilitation.",2024,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/687635d1476cce0001c61a2d/picture,"","","","","","","","","" +Weissenberg Group,Weissenberg Group,Cold,"",58,information technology & services,jan@pandaloop.de,http://www.weissenberg-group.de,http://www.linkedin.com/company/weissenberg-business-consulting,https://www.facebook.com/WeissenbergBusinessConsulting,https://twitter.com/weissenberg_wbc,11 Major-Hirst-Strasse,Wolfsburg,Lower Saxony,Germany,38442,"11 Major-Hirst-Strasse, Wolfsburg, Lower Saxony, Germany, 38442","itsecurity, softwaretesting, prozessautomatisierung, robotic process automation, rpa, robotics, softwareentwicklung, itberatung, kuenstliche intelligenz, digitalisierung, it services & it consulting, rpa and api integration, process automation, ai integration, retail, management consulting services, generative ai applications, automation strategy consulting, digitale transformation, large language models, it & strategy consulting, software development, change management, business process automation, process optimization, ai-powered automation, intelligent automation, rpa development & implementation, business consulting, automation strategy, information technology and services, rpa tools, ai & rpa consulting, automation support, intelligent process orchestration, ai in business, workflow automation, b2b, robotic process automation support, large language model automation, hyperautomation, rpa training, e-commerce, business process optimization, automated offer creation, rpa in banking, digital transformation consulting, process reengineering, ai-driven process optimization, künstliche intelligenz, digital innovation, ai for customer service, rpa in automotive industry, it consulting, automation solutions, ai whitepapers, rpa in e-commerce, services, consulting, ai use cases, management consulting, hyperautomation in public sector, government, it consulting services, process efficiency, finance, manufacturing, distribution, mechanical or industrial engineering, information technology & services, consumer internet, consumers, internet, financial services",'+49 536 16543900,"Outlook, Microsoft Office 365, Hubspot, Google Font API, Shutterstock, Bing Ads, WordPress.org, Nginx, Google Maps, Mobile Friendly, Apache, Linkedin Marketing Solutions, Google Maps (Non Paid Users), Google Tag Manager, Remote, Uipath, Automation Anywhere, AI, React Native, Android, React, Tailwind, GitHub Copilot, ChatGPT, Claude","","","","",474000,"",69bab640ba155d0011206b13,8748,54161,"Weissenberg Group, also known as Weissenberg Business Consulting GmbH, is an IT consulting firm based in Wolfsburg, Germany. Founded in 2013, the company employs approximately 41-107 people and generates an annual revenue of $6.5 million as of 2024. Weissenberg Group serves as an interdisciplinary partner, combining IT and strategy consulting to provide innovative solutions tailored to client needs. + +The firm operates through three main departments: Weissenberg Solutions, Weissenberg Intelligence, and Weissenberg Potentials. It specializes in process consulting, project management, software development, robotic process automation, and artificial intelligence. Weissenberg Group focuses on optimizing business processes and delivering sustainable competitive advantages through its services. Projects typically start at $25,000, with hourly rates ranging from $100 to $149. The company emphasizes quick and lasting results for its clients.",2013,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67031fefc799970001f29e1a/picture,"","","","","","","","","" +himala AI,himala AI,Cold,"",20,information technology & services,jan@pandaloop.de,http://www.himala.ai,http://www.linkedin.com/company/himalaai,https://www.facebook.com/himalaAI,https://twitter.com/oxolo_com,10 Bleichenbruecke,Hamburg,Hamburg,Germany,20354,"10 Bleichenbruecke, Hamburg, Hamburg, Germany, 20354","chatbots, speechtotext, computer vision, calendar assistant, data lake, meeting agenda tool, neural networks, productivity tool, team collaboration tool, workflow assistant, artificial intelligence, texttospeech, meeting assistant, attendee intelligence, contextual ai, deep tech, machine learning, ai assistant, meeting preparation, meeting insights, software development, workflow automation, remote work support, scattered data management, predictive analytics, cloud-based ai, data security, user control, scalable ai productivity, guided prep workflows, multi-platform sync, smart decision support, meeting prep automation, email automation, ai-powered meeting summaries, scattered data unification, stakeholder insights, editable insights, business intelligence, meeting goal generation, information technology and services, custom meeting categories, b2c, computer systems design and related services, gdpr compliance, cloud computing, deep learning, ai meeting preparation, automated meeting goals, ai meeting prep, scalable ai tools, data unification, productivity tools, smart decision-making, action items, unify apps for meetings, soc 2 certification, progress tracking in meetings, structured insights, scattered data integration, meeting summaries, real-time calendar insights, natural language processing, app integrations, structured meeting review, scattered data analysis, calendar integration, structured prep workflows, services, b2b, information technology & services, enterprise software, enterprises, computer software, computer & network security, analytics","","Route 53, Postmark, Gmail, Google Apps, Microsoft Office 365, Amazon AWS, Hubspot, Facebook Login (Connect), Mobile Friendly, Google Font API, New Relic, Multilingual, Facebook Widget, Google Tag Manager, Facebook Custom Audiences, YouTube",14300000,Series A,14300000,2023-10-01,8000000,"",69bab640ba155d0011206b15,7375,54151,"Himala AI is an AI-powered meeting assistant based in Hamburg, Germany, founded by Heiko Hubertz. The company focuses on enhancing meeting productivity by automating preparation and managing the entire meeting lifecycle. It aggregates context from various sources, such as calendars, emails, and past decisions, to help users enter meetings prepared and exit with clear action items. + +The platform offers features for pre-meeting preparation, in-meeting support, and post-meeting actions. It generates AI-driven agendas, provides transcription services, and creates comprehensive summaries that include context from previous interactions. Himala AI aims to streamline the meeting process, allowing users to save time and improve outcomes. The tool integrates seamlessly with existing applications, making it suitable for professionals looking to enhance their meeting efficiency.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6958c3d6999ad700016a3209/picture,"","","","","","","","","" +Telekinesis,Telekinesis,Cold,"",15,mechanical or industrial engineering,jan@pandaloop.de,http://www.telekinesis.ai,http://www.linkedin.com/company/telekinesis-ai,"","","",Frankfurt,Hesse,Germany,"","Frankfurt, Hesse, Germany","logistics, llm, production, metal manufacturing, industrial robots, automation, foundational model, humanoids, deep learning, ai, machine learning, manufacturing, cloud, automotive, robotics, imitation learning, vlm, software, aerospace, cobots, computer vision, reinforcement learning, robotics engineering, factory automation, high-mix production, quality inspection ai, robotic system customization, ai models, b2b, simulation, no-code robot programming, simulation and testing, autonomous learning, ai for low-volume manufacturing, ai for industrial inspection, ai for small-batch manufacturing, ai-driven manufacturing, vision detection, ai in industry, vision-based anomaly detection, robotic process optimization, robotic process automation, ai-enabled robot control, gear assembly ai, ai-powered robotics platform, vision ai, distribution, robotic integration, services, vision-based pick and place, ai-enabled robots, robotic cell design software, industrial machinery manufacturing, ai technology, ai for robot simulation, robotic automation software, custom automation solutions, vision-based detection, robotic cell design, ai platform, tht assembly ai, vision ai models, laser engraving automation, vision classification, no-code programming, robotic control, robotic process simulation, ai for manufacturing, vision-based segmentation, ai in manufacturing, industrial automation, vision ai for body tracking, ai for industrial robots, vision-based classification, automation cells, robot deployment, ai technology stack, flexible robots, ai for agriculture automation, wire soldering ai, vision ai for hand tracking, vision segmentation, robotic system integration, custom solutions, anomaly detection, laser marking ai, artificial intelligence, information technology & services, mechanical or industrial engineering",'+49 615 11625370,"Outlook, Microsoft Office 365, Node.js, React Native, Android, Remote, IoT, AI, React, Three.js, Django, Amazon Web Services (AWS)",1260000,Seed,0,2025-01-01,"","",69bab640ba155d0011206b17,3589,33324,"Telekinesis is an AI-powered robotics company based in Darmstadt, Germany, founded in 2021. The company focuses on transforming robotics through a cloud-based platform that allows for no-code programming of industrial robots. This platform is particularly beneficial for small-batch, high-mix manufacturing, such as metal production. Telekinesis aims to make robots as common as smartphones by integrating them into various environments, including factories, offices, and homes. + +The company offers an advanced AI-powered cloud platform that simplifies robot programming for industrial robots, mobile robots, drones, and humanoids. Key features include an automation suite for metal manufacturing, which encompasses tasks like CNC loading/unloading and robotic assembly, achieving significant operational cost savings. Telekinesis also provides novel AI technologies that enable robots to learn from human data, as well as visual programming software designed for non-experts. The team consists of experienced professionals in robotics and machine learning, dedicated to advancing automation in manufacturing.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/68b502df378bfa00015a166a/picture,"","","","","","","","","" +dynabase Technologies GmbH,dynabase,Cold,"",21,information technology & services,jan@pandaloop.de,http://www.dynabase.de,http://www.linkedin.com/company/dynabase-technologies-gmbh,"","","",Cologne,North Rhine-Westphalia,Germany,"","Cologne, North Rhine-Westphalia, Germany","technische beratung strategie, prototyping mvpentwicklung, systemintegration apis, custom software development, ai data loesungen, digitale produktentwicklung, ki, fullservice, digitale transformation, ecommerce shop loesungen, talent sourcing recruiting, web cloud platforms, softwareentwicklung, uxui design, it services & it consulting, api development, on-premises software, consulting, full-stack development, ai services, services, product lifecycle support, computer systems design and related services, web applications, design thinking, distributed systems, cloud computing, configurators, international rollouts, prototyping, dashboards, devops, iot systems, cloud solutions, b2b, cloud infrastructure, software development, ai-powered services, custom software, agile methodology, information technology and services, artificial intelligence, team augmentation, embedded software, fleet management, digital transformation, user feedback, long-term support, custom ai models, security, information technology & services, enterprise software, enterprises, computer software, internet infrastructure, internet",'+49 221 5883070,"Gmail, Google Apps, Cloudflare DNS, CloudFlare Hosting, Mobile Friendly, Hubspot, IoT, Android, React Native, Xamarin, Node.js, Remote, Docker, Aircall","","","","","","",69b2d6c44396f7000180e5ba,7375,54151,"🌟 dynabase: Your guide to the digital age + +How can I seamlessly integrate technologies and effectively manage distributed systems? How do I design strategic and future-proof business models? Questions that inevitably arise in the digital transformation. But worry not - dynabase has the clear and concise answers you need to move forward. + +🛠 What is dynabase? + +dynabase is your trusted partner in digital transformation, offering a holistic approach from conception to long-term maintenance. We value long-term partnerships, personal growth and innovation. + +🌎 Why is this important to us? + +We strongly believe that agility, quality and scalability are the keys to success. We are motivated by solving complex problems and helping our clients achieve their goals. + +💼 How do we do that? + + +Understanding needs 🔍: Analysing people, processes and real business problems. +Developing solution approaches 💡: Combining design thinking and innovative strategies to create real USPs. +Prototyping 🛠: Rapid development and adaptation of prototypes through user labs. +Strategic planning 📈: Creation of clear roadmaps and budget planning. +Agile development 🚀: Short development cycles with autonomous, expert-driven teams. +Measure and adapt 📊: Automated feature tracking and continuous user interviews. +Continuous learning 🔄: Constant strategy adaptation and promotion of a dynamic corporate culture. + +🤝 At dynabase, we believe in working with you to create sustainable and future-proof solutions that are tailored to your individual needs. Discover the difference a collaborative partnership can make and let us plan your next step into the digital future together. + +📧 mail@dynabase.de +📞 +49 221 588 307 0",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/695f82278e5947000131b49e/picture,"","","","","","","","","" +time4you GmbH,time4you,Cold,"",30,e-learning,jan@pandaloop.de,http://www.time4you.de,http://www.linkedin.com/company/time4you-gmbh,"","",4 Maximilianstrasse,Karlsruhe,Baden-Wuerttemberg,Germany,76133,"4 Maximilianstrasse, Karlsruhe, Baden-Wuerttemberg, Germany, 76133","lernmanagement, personalentwicklung, learning management system, weiterbildung, lernbot, digitalisierung lernen, elearning content, social learning, elearning, chatbot, seminarverwaltung, lernen, ki, digital learning, talent management, autorentool, betriebliche weiterbildung, training administration, mobile learning, web based training, rapid learning, betriebliches lernen, skills management, kuenstliche intelligenz, personalmanagement, lms, conversational learning, lernplattform, conversation design, e-learning providers, interaktive inhalte, ki-basierte content-optimierung, software publishing, software development, lms plattform, online-kurse, e-learning software, compliance schulungen, scorm xapi, green learning, content library, content creation, user management, reporting & analytics, gamification, virtuelle klassenräume, adaptive lernumgebungen, ki-gestützte content-erstellung, chatbot software, education management, blended learning, learning experience platform, webinar integration, b2b, hybrid learning modelle, information technology, automatisierte lernpfade, barrierefreies lernen, remote learning, content management, e-learning für behörden, ki-assistenz, colleges, universities, and professional schools, services, digitalisierung bildung, consulting, user self-service, cloud-based software, automatisierte planung, e-learning, api schnittstellen, government, blended learning plattform, education, multilingual support, non-profit, internet, information technology & services, computer software, nonprofit organization management",'+49 721 830160,"Mobile Friendly, Apache, WordPress.org, AI",190000,Other,190000,2017-06-01,"","",69bab640ba155d0011206b14,7375,61131,"time4you GmbH communication & learning - der Name ist für uns Programm, denn wir entwickeln seit 1999 digitale Lösungen für Aus- und Weiterbildung, Personalentwicklung, HR, Marketing und Support. Unser Motto: The Power of Learning. + +Der Firmensitz der time4you GmbH ist in Karlsruhe, wir arbeiten seit der Gründung sehr dezentral und pflegen die Home-Office-Kultur. Wir sagen ganz bewusst und in allen Bereichen ""digital first"", denn das Potenzial digitaler Lösungen für uns alle und unseren Planeten ist noch lange nicht gehoben. Individuelle Entfaltung und Selbstverantwortung sind für uns und unsere Arbeitsweise grundlegend. Vertrauen, Fairness und Respekt prägen unsere Beziehungen. Wir sind erst dann wirklich zufrieden, wenn unsere Kunden von der Lösung, die wir für sie geschaffen haben, begeistert sind. + +Ein starkes interdisziplinäres Team mit 30 Mitarbeiter:innen setzt zukunftsfähige Lösungen für Mittelstands- und Großunternehmen, Bildungsanbieter und öffentliche Einrichtungen um - weltweit in vielen Sprachen und Kulturen. Die Grundlage dafür bildet die mit zahlreichen nationalen und internationalen Awards ausgezeichnete IBT SERVER Software. Auf dieser Grundlage implementieren wir für unsere Kunden digitale Lern-Ökosysteme, Talent-Management-Lösungen und Bildungsangebote. + + +Wie stärken Unternehmen und Organisationen ihre Zukunftsfähigkeit und Resilienz? Gute Ideen, Innovationskraft, effiziente Prozesse und gut ausgebildete Mitarbeitende sind Voraussetzungen für den Erfolg von Morgen. Als Unternehmen engagieren wir uns deshalb in Branchenverbänden wie dem bitkom e.V. und unterstützen community-orientierte Initiativen wie die Corporate Learning Community. Darüber hinaus beteiligen wir uns mit Vorträgen und Publikationen an der Öffentlichkeitsarbeit für E-Learning und E-HR.",1999,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/695aab3cdc9b4f0001601a80/picture,"","","","","","","","","" +UMT United Mobility Technology AG,UMT United Mobility Technology AG,Cold,"",45,information technology & services,jan@pandaloop.de,http://www.umt.ag,http://www.linkedin.com/company/umt-ag,https://facebook.com/umt.ag/,https://twitter.com/umt_ag,7 Brienner Strasse,Munich,Bavaria,Germany,80333,"7 Brienner Strasse, Munich, Bavaria, Germany, 80333","sales enabling, big data, blockchain, kibasierte automatisierte dokumentenverarbeitungs und analyseloesung, ai, transport, logistik, datenverarbeitung, loyalty, mobile payment, produktion, it services & it consulting, data analytics, automated validation, inventory management, process optimization, subscription models, multi-tenant architecture, workflow automation, financial services, manufacturing, customizable data schema, error detection, ai for claims processing, blockchain technology, automated document analysis, customer relationship management, ocr, cost reduction, document processing, custom ai prompts, digital co-pilot, pay-per-use solutions, services, quality assurance, document comparison, logistics and supply chain management, regulatory compliance, ai analytics, retail, document analysis, digital product passports, software development, supply chain, ai for production planning, entity resolution, azure document intelligence, information technology and services, digitalization, ai in retail, data extraction, ai in manufacturing, consulting, production planning, error reduction, csv, secure cloud storage, erp integration, decentralized data storage, business intelligence, error minimization, financial reporting, t4 blockchain solution, b2b, scalable architecture, customer engagement, ai for quality control, ai logs, ai solutions, edi, enterprise software, t4 supply chain, automated customs documents, enterprise platform, future-proof processes, ai reasoning, supply chain management, cost savings, logistics, logistics optimization, xml, ai in insurance, supply chain traceability, ai-driven logistics, industrial automation, blockchain traceability, digital transformation, custom software development, eu product passport, computer systems design and related services, finance, distribution, enterprises, computer software, information technology & services, mechanical or industrial engineering, crm, sales, analytics, logistics & supply chain",'+49 89 20500680,"Outlook, Microsoft Office 365, Apache, Mobile Friendly, WordPress.org, Google Tag Manager, reCAPTCHA, Linux OS, Docker, Android, Remote, AI",361090,Seed,361090,2011-01-01,120000,"",69bab640ba155d0011206b16,7375,54151,"Wir analysieren Ihre Arbeitsabläufe, wählen aus unzähligen Möglichkeiten die richtigen Lösungen aus und passen sie genau an Ihre Unternehmensziele an. + +So steigern wir Ihren Umsatz, senken Kosten und entlasten die Mitarbeiter langfristig.",1989,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66f2640b7f9f200001c00108/picture,"","","","","","","","","" +neuroflash,neuroflash,Cold,"",36,information technology & services,jan@pandaloop.de,http://www.neuroflash.com,http://www.linkedin.com/company/neuroflash,https://www.facebook.com/neuroflash/,https://twitter.com/Neuro_Flash,100 Wulfsdorfer Weg,Hamburg,Hamburg,Germany,22359,"100 Wulfsdorfer Weg, Hamburg, Hamburg, Germany, 22359","werbebotschaften, textverstaendnis, newsletter betreffzeilen, werbetexte, markensprache, content marketing, blogpost, marketing intelligenz, slogans kreieren, textkreation, social media post, text mit kuenstlicher intelligenz, psychology, neuromarketing, marketing automation, kommunikationsstrategie, ai, content optimierung, wirksamkeit von texten, textvalidierung, textinspiration, textautomation, markenpositionierung, brand strategy, content creation, copywriting, kibasierte texte, content ideation, content optimization, software development, media & publishing, performance prediction, brand voice management, openai api, brand voice, ai image creation, technology & software, ai content creation, content workflow automation, ai for education, content management system, ai for social media, advertising agencies, text templates, gpt-4, brand-specific content, content performance prediction, marketing & advertising, e-commerce, seo analysis, consulting, ai for media & publishing, ai-driven seo, education, plagiarism free, d2c, ai for advertising, data security, multilingual content creation, b2b, ai marketing software, ai-powered writing, target audience profiling, neuromarketing science, eu data protection, retail, german servers, ai for retail, gpt-3.5, content management, ai content workflow, automated content generation, content generator, ai chatbot, services, seo optimization tools, content editing tools, multilingual ai, ai marketing platform, gdpr compliant, ai text templates, image generator, ai for e-commerce, ai impact prediction, content personalization, consumer products & retail, saas, computer software, information technology & services, enterprise software, enterprises, writing & editing, consumer internet, consumers, internet, computer & network security","","Gmail, Google Apps, Google Cloud Hosting, Hostgator, Typeform, Slack, Hubspot, Segment.io, WordPress.org, Facebook Login (Connect), Hotjar, Bing Ads, Mobile Friendly, YouTube, Cedexis Radar, Google Tag Manager, Vimeo, Nginx, DoubleClick, Adobe Media Optimizer, Linkedin Marketing Solutions, Google Dynamic Remarketing, Stripe, Google Font API, Helpscout, reCAPTCHA, Facebook Custom Audiences, DoubleClick Conversion, Google Frontend (Webserver), Facebook Widget, AI, React Native, Android, Remote, Wordpress",880000,Angel,880000,2022-03-01,"","",69bab640ba155d0011206b10,7375,54181,"neuroflash is a German-based AI company founded in 2021, located in Hamburg. It specializes in AI-driven content creation software tailored for marketing teams. The company has developed an AI content suite that utilizes big data, natural language processing, and neuromarketing science to produce high-quality, brand-consistent content efficiently. With a user base of over 1,000,000, neuroflash is recognized as Europe's leading AI content suite for marketing professionals. + +The platform offers a range of tools, including the AI Copywriter (ContentFlash) for generating various types of copy, a Brand Hub for defining brand voice, and an SEO Tool for optimizing content for search engines. Additional features include image generation, performance analysis, audience targeting, and campaign management. Pricing starts at €9.00 per month, and the platform supports multilingual content creation, making it a versatile choice for businesses in content marketing, advertising, and eCommerce.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/671cdc796d536f000127efd2/picture,"","","","","","","","","" +TAIWA®,TAIWA®,Cold,"",16,information technology & services,jan@pandaloop.de,http://www.taiwa.com,http://www.linkedin.com/company/taiwaplatform,"","","",Berlin,Berlin,Germany,"","Berlin, Berlin, Germany","employee transformation, ai coaching, b2b coaching, technology, information & internet, ai integration, employee engagement, personalized coaching, customer support, employee experience optimization, ai-driven talent strategies, transformational leadership, data-driven insights, performance improvement, personalized learning paths, behavior change, behavioral analytics, professional, scientific, and technical services, organizational transformation, real-time analytics, organizational growth, neuroscience-based platform, collective swarm intelligence, human resources, b2b, leadership effectiveness, other scientific and technical consulting services, continuous human development, leadership development, ai-powered coaching, employee retention, employee well-being, human transformation technology, customer satisfaction, sales enablement, personalized employee development, wellbeing programs, real-time dashboards, services, consulting, workforce transformation, management consulting, sales performance, employee skills assessment, ai for hr, data integration, personal growth dashboards, employee onboarding, organizational agility, human-centered ai, management training, information technology & services, enterprise software, enterprises, computer software","","Gmail, Google Apps, Amazon AWS, Sendgrid, Webflow, Hubspot, Slack, Mobile Friendly, Facebook Custom Audiences, Facebook Widget, Facebook Login (Connect), Google Tag Manager, Linkedin Marketing Solutions, Micro, AI, Google Workspace, Docker, Android, Data Storage, IoT, Viewpoint, Node.js, Rapyd, Gusto, Circle, Xamarin, Seismic, Data Analytics, Elixir, React Native, Remote","","","","","","",69bab640ba155d0011206b11,8742,54169,"Join TAIWA®, the premier AI-powered human transformation platform for businesses🌟 +Unlock your team's potential with personalized guidance and cutting-edge technology. Follow us for valuable insights and expert strategies. +#AICoaching #BusinessSuccess","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66e169c57665df0001d20bc2/picture,"","","","","","","","","" +FHC+P GmbH,FHC+P,Cold,"",11,information technology & services,jan@pandaloop.de,http://www.fhcp.de,http://www.linkedin.com/company/fhcp-gmbh,"","",55 Wuermstrasse,Graefelfing,Bavaria,Germany,82166,"55 Wuermstrasse, Graefelfing, Bavaria, Germany, 82166","ux, versicherungsknowhow, software, requirements engineering, finanzdienstleister, prozessoptimierung, business intelligence, devops, beratung, versicherungen, anforderungsanalyse, projektmanagement, fullstack development, projektleitung, development, financial services, itsecurity, business analyse, grossrechner, it services & it consulting, multilingual it support, manufacturing, industry-specific it solutions, data protection, consulting, project management, system integration, gdpr compliance, services, tailored it solutions, computer systems design and related services, it project risk management, remote it support, cyber threat protection, it talent development, cloud computing, education, data architectures, data analytics, process automation, it process consulting, it services, energy & utilities, it strategy development, cloud solutions, automated workflows, b2b, big data, it lifecycle, software development, it cost optimization, it infrastructure, cybersecurity, information technology and services, it security, it compliance, healthcare, digital transformation, it support, agile project management, it workforce training, it consulting, it modernization, it infrastructure scaling, finance, information technology & services, analytics, mechanical or industrial engineering, productivity, enterprise software, enterprises, computer software, computer & network security, health care, health, wellness & fitness, hospital & health care, management consulting","","Outlook, Bootstrap Framework, Apache, Mobile Friendly, Android, Remote","","","","","","",69bab640ba155d0011206b18,7371,54151,"Bewährte Beratungsexpertise + + +Was uns auszeichnet + +Durch unsere langjährige Branchen- sowie technische Expertise generieren wir eine Nutzenmaximierung für unsere Kunden. Unsere Philosophie ist es, nur Aufträge anzunehmen, die unserer Kundschaft einen Mehrwert bieten und bei denen wir unsere Kompetenzen gewinnbringend einbringen können. +Unsere Services + +Wir begleiten Sie mit Ihrem Vorhaben über alle Phasen des Software-Lebenszyklus. Egal ob DevOps, Projekt- oder Prozessmanagement. Wir unterstützen Sie - alles aus einer Hand. + +Wer sind wir + +Die FHC+P GmbH ist ein junges, aufstrebendes Unternehmen im Großraum München mit besonderem Fokus auf die IT- und Prozessberatung von Unternehmen. Unser wichtigstes Kapital sind unsere Mitarbeiterinnen und Mitarbeiter. Wir bieten einen idealen Mix aus langjähriger Erfahrung und junger Dynamik. + +Wie sind wir + +Wir setzen auf Vertrauen statt Kontrolle, kompetentes Netzwerk statt festgefahrener Prozesse, Arbeiten auf Augenhöhe statt starrer Hierarchien und Transparenz statt Informationsinseln. Wir bieten dir Raum für Selbstverantwortung und persönliche Weiterentwicklung.",2018,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6701764112eac0000189a2d0/picture,"","","","","","","","","" diff --git a/leadfinder/data/ella_media_lookalikes.csv b/leadfinder/data/ella_media_lookalikes.csv deleted file mode 100644 index 292e4bd..0000000 --- a/leadfinder/data/ella_media_lookalikes.csv +++ /dev/null @@ -1,84 +0,0 @@ -Company Name,Company Name for Emails,Account Stage,Lists,# Employees,Industry,Account Owner,Website,Company Linkedin Url,Facebook Url,Twitter Url,Company Street,Company City,Company State,Company Country,Company Postal Code,Company Address,Keywords,Company Phone,Technologies,Total Funding,Latest Funding,Latest Funding Amount,Last Raised At,Annual Revenue,Number of Retail Locations,Apollo Account Id,SIC Codes,NAICS Codes,Short Description,Founded Year,Logo Url,Subsidiary of,Subsidiary of (Organization ID),Primary Intent Topic,Primary Intent Score,Secondary Intent Topic,Secondary Intent Score,Qualify Account,Prerequisite: Determine Research Guidelines,Prerequisite: Research Target Company -octonomy,octonomy,Cold,"",90,information technology & services,jan@pandaloop.de,http://www.octonomy.ai,http://www.linkedin.com/company/octonomy,"","","",Cologne,North Rhine-Westphalia,Germany,"","Cologne, North Rhine-Westphalia, Germany","software development, ai performance optimization, analytics, information technology & services, fast deployment, ai model development, ai in mittelstand, ki für support mit hoher antwortqualität, deutsche entwicklung, support-automatisierung, consulting, information technology and services, services, ai in support systems, support automation, business intelligence, ki für komplexe supportfälle, ki für support in mehreren sprachen, deutsche ki-cloud, artificial intelligence, ai system management, eu ai act konform, enterprise ai, skalierbare ki, multilinguale unterstützung, business services, automatisierte support-chatbots, ki-agenten, prozessautomatisierung, enterprise software, ai scalability, b2b, ai compliance, ki für peak-management, ai mit menschlicher qualität, business process outsourcing, computer systems design and related services, secure ai platform, multilingual ai, ki für support bei hoher fluktuation, datenschutzkonform, ki für support in echtzeit, ai consulting, custom ai solutions, customer support ai, kundenservice, human-like ai, ai training, customer engagement, cloud-based ai, ai-as-a-service, data security, digital transformation, ai automation, ai integration, complex knowledge processing, enterprises, computer software, computer & network security","","Route 53, Amazon SES, Outlook, Microsoft Office 365, Amazon AWS, Cloudflare DNS, Gmail, Google Apps, CloudFlare Hosting, Hubspot, Python, Postman, Swagger UI, Linkedin Marketing Solutions",25500000,Seed,20000000,2025-11-01,"","",69b2d5215d92a4000119eee9,7375,54151,"Octonomy is an AI startup based in Cologne, Germany, founded in 2024. The company specializes in developing agentic AI platforms designed to automate complex technical support and service workflows in heavy-equipment and industrial sectors. With a focus on achieving over 95% accuracy on unstructured data, Octonomy addresses challenges such as aging workforces and intricate documentation in industries like manufacturing, insurance, and pharmaceuticals. - -The core product is an agentic AI platform that functions as a ""digital coworker"" for technical support and field service. It features a multi-agent architecture that includes support agents for simple queries, consultancy agents for advanced tasks, and a supervisor agent for efficient request routing. The platform integrates seamlessly with existing enterprise systems, processes data directly, and can be deployed in under three weeks. Octonomy's solutions enhance operational efficiency by resolving issues in real-time and providing documented solutions quickly. The company has raised $25 million in funding to support its expansion in Europe and the USA.",2024,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69a4b3170dd2370001d5a30d/picture,"","","","","","","","","" -Titanom Solutions,Titanom Solutions,Cold,"",38,information technology & services,jan@pandaloop.de,http://www.titanom.com,http://www.linkedin.com/company/titanom-solutions,"","","",Germering,Bavaria,Germany,82110,"Germering, Bavaria, Germany, 82110","it services & it consulting, bildungssoftware, schulische ki-lösungen, ki-gestützte lernplattformen, interaktive lernspiele, e-learning, ki-gestützte schul- und kinderprodukte, sicheres ki-training für unternehmen, bildungsllm, ki-gestützte sprachtrainingsplattformen, services, ki-gestützte lehrmittel, ui design, deutsche ki-plattformen, sicherer ki-betrieb in deutschland, education technology, ki-gestützte sprachlernplattformen, bildungsllm speziell für schulen, schüler- und lehrerunterstützung, schul- und kinderbildung, innovative lernmethoden, sprechende ki-kuscheltiere, forschung in bildungstechnologie, ki-gestützte lernmanagementsysteme, ki-basierte bildungslösungen, educational services, colleges, universities, and professional schools, ki-gestützte unterrichtsplanung, ki-gestützte lern- und lehrprodukte, b2b, forschung und entwicklung in ki, ki in bildung, ki-technologien, software development, personalisierte lernangebote, lernprodukte, datenschutzkonforme ki, künstliche intelligenz in schulen, ki-kuscheltiere für kinder, unternehmensweiterbildung, ki-gestützte wissensvermittlung, artificial intelligence, bildungsinnovationen, online-vertretungsstunden, ki-gestützte experimente und animationen, digitale bildungsprodukte, ki-basierte lernspiele für kinder, ki-tutor, deutschlandgpt, mymilo, b2c, education, information technology & services, internet, computer software, education management","","Route 53, Outlook, Slack, Google Font API, Mobile Friendly, WordPress.org, Bootstrap Framework, Nginx, Typekit, Vimeo, Android, Remote, AI, Acumatica, TypeScript, Next.js, React, Python, Fastapi, Mode, Visio, Azure Data Lake Storage, .NET, Linkedin Marketing Solutions, Metabase, Tailwind, Node.js, Nestjs, REST, GraphQL, Prisma, PostgreSQL, AWS Trusted Advisor, Microsoft Azure Monitor, Docker, Kubernetes, Playwright, GitHub Actions, Instagram, TikTok","","","","","","",69b862eac63906001d70c08b,8731,61131,"Titanom Solutions GmbH is a technology company based in Germering, Germany, focused on developing digital products and AI solutions that enhance understanding of complex topics, particularly in education. The company prioritizes practical and sustainable solutions, emphasizing clear goals and user-centric design in their work. - -Titanom offers comprehensive services in AI product development, including strategy, user experience, engineering, and operations. They specialize in creating secure, multi-tenant platforms and provide support for nationwide deployment, ensuring stability and continuous improvement based on user feedback. One of their notable products is telli, an AI chatbot designed for school environments, which integrates with existing school management systems to facilitate safe and effective communication. - -The company collaborates closely with educational institutions, including partnerships with FWU and various German federal states, to enhance educational experiences through innovative technology.",2020,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6982dd31a1bb1f0001738e7f/picture,"","","","","","","","","" -arconsis,arconsis,Cold,"",43,information technology & services,jan@pandaloop.de,http://www.arconsis.com,http://www.linkedin.com/company/arconsis,"","",6 Am Storrenacker,Karlsruhe,Baden-Wuerttemberg,Germany,76139,"6 Am Storrenacker, Karlsruhe, Baden-Wuerttemberg, Germany, 76139","software engineering, transparency, deep learning, mobile development, agile & digital transformation, open communication, cloud native, digital product ideation, technological excellence & passion, android, scrum, agile software development, ios, ai, mobile, mobile enterprise, machine learning, adaptive enterprise, mobile software engineering, business apps, aiscale, it services & it consulting, ai@scale, cloud-native, scalability, resilience, api-driven, devops, smart shopping companion, ai operational readiness, machine learning engineering, data strategy, mobile solutions, backend for frontend, ar/vr integration, conversational interfaces, digital experience, prototyping, user-centered design, innovation, data analytics, data engineering, digital transformation, real-time data processing, cloud architecture, turnkey ai solutions, application development, enterprise integration, growth strategy, cloud services, data governance, performance optimization, technology consulting, customer success, user experience, digitalization, education programs, team collaboration, media hub, smart data capturing, intelligent automation, event management solutions, field data harvesting, vehicle inspections, cross-functional teams, ai-driven solutions, b2b, consulting, services, artificial intelligence, information technology & services, internet, enterprise software, enterprises, computer software, app development, apps, software development, cloud computing, management consulting, ux",'+49 72 19897710,"Cloudflare DNS, Outlook, Microsoft Office 365, Slack, Mobile Friendly, Google Tag Manager, Android, React Native, Docker","","","","","","",69b862eac63906001d70c091,7375,54151,"arconsis IT-Solutions GmbH is a German software engineering company founded in 2005 by Achim Baier and Wolfgang Frank. The company specializes in custom digital solutions that incorporate technologies such as AI, cloud-native systems, and mobile applications. With a focus on agile development, arconsis aims to align business objectives with effective IT execution. - -Headquartered in Karlsruhe, arconsis has expanded its presence with branches in Stuttgart, Frankfurt, Munich, Pforzheim, and Greece. The company has experienced steady growth, emphasizing innovation, collaboration, and a team-oriented culture. It supports startups through angel investments in early-stage tech ideas. - -arconsis offers a range of services, including enterprise-ready AI initiatives, scalable cloud solutions, and user-centered digital product ideation. Their portfolio features bespoke software products, such as a mobile shopping app for a major drugstore group and a cloud-based platform for quality management in agriculture. The company is dedicated to blending technology with solid engineering to deliver impactful solutions across various industries.",2006,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6884d9ec47d93500013ea4ec/picture,"","","","","","","","","" -SUSI&James GmbH,SUSI&James,Cold,"",38,information technology & services,jan@pandaloop.de,http://www.susiandjames.com,http://www.linkedin.com/company/susi&james-gmbh,https://www.facebook.com/susiandjames/,"",8 Turley-Strasse,Mannheim,Baden-Wuerttemberg,Germany,68167,"8 Turley-Strasse, Mannheim, Baden-Wuerttemberg, Germany, 68167","digitale mitarbeiter, der channel telefonie ermoeglicht uns die anbindung einer kuenstlichen intelligenz an die telefonie, hoehere flexibilitaet, intelligente sprachdialoge, prozessoptimierung, digitalisierung, deeplearning maschinelle lernverfahren, dokumentenklassifikation, geschaeftsprozesse mit sprache steuern, it services & it consulting, ai digital employees, voice ai, healthcare, ai in retail and service, ai process optimization, software development, ai in logistics, ai in hospitality, ai predictive analytics, knowledge management, deep learning, data security, deep learning applications, real-time data analysis, ai in quality control, ai user interface, ai in predictive maintenance, ai in automotive testing, ai in public administration, process automation, ai for manufacturing, ai in smart cities, retail ai, real-time analytics, ai-driven process optimization, data security in ai, public sector ai, hybrid ai systems, logistics, ai in customer feedback analysis, ai in healthcare diagnostics, ai-powered digital employees, ai in legal document processing, energy ai, manufacturing ai, ai in smart manufacturing, ai in industrial automation, enterprise knowledge management, business process automation, quality control ai, process digitalization, ai data analysis, ai in public services, ai in industrial robotics, ai multilingual support, consulting, b2b, hybrid ai technology, ai for healthcare, ai security standards, ai in supply chain management, ai performance monitoring, ai for supply chain, ai model deployment, machine learning solutions, ai scalability, ai api access, retail & service, computer systems design and related services, business services, ai customer engagement, ai in legal services, hospitality ai, supply chain ai, ai compliance, machine learning, ai in automotive industry, healthcare ai, ai integration, legal ai, predictive analytics, ai for customer service, ai in production, retail, industrial automation ai, chatbot integration, ai in retail, logistics ai, ai chatbot, multichannel ai communication, production ai, process optimization, services, ai in energy sector, ai workflow automation, customer communication automation, manufacturing, ai in energy management, ai voice assistant, artificial intelligence, ai training data, ai cloud solutions, natural language processing, automotive ai, enterprise ai solutions, customer communication, business process digitalization, workflow automation, industry, multichannel communication ai, customer service ai, ai customization, ai real-time processing, ai for automotive testing, automotive, legal, distribution, information technology & services, health care, health, wellness & fitness, hospital & health care, computer & network security, enterprise software, enterprises, computer software, mechanical or industrial engineering",'+49 621 48349342,"Outlook, Microsoft Office 365, React Redux, Slack, Hubspot, Mobile Friendly, Shutterstock, DoubleClick, YouTube, Apache, Google Analytics, Google AdSense, Google Tag Manager, WordPress.org, Javascript, Python","","","","","","",69b862eac63906001d70c092,7375,54151,"SUSI&James GmbH is a German AI technology startup founded in 2014 and based in Mannheim, Baden-Württemberg. The company specializes in cross-platform AI-based software solutions that automate and optimize communication-heavy business processes through its digital assistants, SUSI and James. With a team of around 38-39 employees, SUSI&James reported an annual revenue of $4 million in 2024. - -The company focuses on digital voice assistance, computer linguistics, machine learning, and hybrid AI technologies. Its core offerings include AI-powered digital employees for handling interaction-intensive tasks, Voice AI and Conversational AI for contact centers, and SmartOfficeAI for knowledge management and process automation. The EVA automation platform enhances AI accessibility, and the AI Callbot provides cross-industry support. SUSI&James serves various industries, including automotive, health/medical, transportation, and business productivity, aiming for broad adoption of its solutions across Germany and the EU.",2014,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/670307b1ee45bc0001b5818a/picture,"","","","","","","","","" -Humanizing Technologies,Humanizing,Cold,"",17,information technology & services,jan@pandaloop.de,http://www.humanizing.com,http://www.linkedin.com/company/humanizing411,https://facebook.com/humanizingtechnologies,https://twitter.com/Humanizing411,"",Cologne,North Rhine-Westphalia,Germany,"","Cologne, North Rhine-Westphalia, Germany","robotics, engineering, digital humans, ai, ai chatbots, humanoid robots, lowcode platform, chatbots, software development, app development, pepper robot, workflow builder, conversational ai, technology, telepresence robotics, avatars, artificial intelligence, service robotics, keynote speaker, sprachsteuerung, ki-gestützte avatare, customer journey, indoor navigation, multichannel-integration, customer experience, interaktive kommunikation, barrierefreie avatare, services, cloud-basierte plattform, automatisierung, skalierbarkeit, dsgvo-konform, retail, prozessoptimierung, datenschutz, consulting, automatisierte check-in, customer support, systemintegration, mobile integration, virtuelle empfangsmitarbeiter, barrierefreiheit, ki-avatare, digitale assistenten, workflow-automatisierung, mehrsprachige sicherheitsunterweisung, government, automatisierte prozesse, hardware-kompatibilität, content management, information technology and services, automatisierte sicherheitsunterweisung, digitale personalisierung, interaktive wissensvermittlung, web widget, personalisierte customer journey, knowledge base, logistics, user experience, healthcare, api-schnittstellen, information technology & services, emotionalisierung, digitale wegführung, hybrid event support, computer systems design and related services, mehrsprachigkeit, b2b, public administration, event management, self-service, financial services, sensoren & iot, b2c, e-commerce, finance, education, legal, non-profit, manufacturing, distribution, consumer_products, public_services, mechanical or industrial engineering, apps, ux, health care, health, wellness & fitness, hospital & health care, events services, consumer internet, consumers, internet, nonprofit organization management",'+49 221 71597575,"Outlook, Microsoft Office 365, BuddyPress, Microsoft Power BI, Microsoft Azure, Hubspot, Slack, JivoSite, YouTube, Multilingual, Google Dynamic Remarketing, Mobile Friendly, Google Font API, DoubleClick Conversion, WordPress.org, Apache, Google Tag Manager, DoubleClick, Android, IoT, Remote, AI","","","","","","",69b2d7109601710001721502,7375,54151,"Humanizing Technologies is a technology company that specializes in AI avatars, digital self-service assistants, interactive agents, and robotics software. Founded in 2016, the company operates from locations in Germany and Austria and employs around 26 people. Its mission is to enhance service interactions and automate routine tasks, making technology more human-like. - -The company develops personalized 3D avatars and AI agents that improve customer experiences by automating tasks such as check-ins and product consultations. Their robotics software focuses on humanoid robots, particularly the Pepper robot, and integrates with existing systems in various sectors, including banking and public services. Humanizing Technologies aims to address labor shortages and support industries with innovative solutions that prioritize simplicity and scalability.",2016,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/66fbac81034c570001b265f6/picture,"","","","","","","","","" -ATVANTAGE GmbH (ehem. X-INTEGRATE),ATVANTAGE,Cold,"",31,information technology & services,jan@pandaloop.de,"",http://www.linkedin.com/company/atvantage-1,"","",2 Im Mediapark,Cologne,North Rhine-Westphalia,Germany,50670,"2 Im Mediapark, Cologne, North Rhine-Westphalia, Germany, 50670","business integration, mom, eai, esb, soa, open standards, websphere, mq, message broker, process server, partnergateway, datapower, ilog, cloud integration, java, jee, open source, integrationasaservice, genai, ai, cplex, enterprise search 20, bpm, bpmn, spss modeler, it services & it consulting, computer software, information technology & services",'+49 221 973430,"","","","","","","",69b2d7d1bc38e00001996d18,"","","Wichtige Neuigkeit: Wir sind jetzt ATVANTAGE! -Ab dem 1. Oktober 2025 treten die Unternehmen ARS Computer und Consulting GmbH, Brainbits GmbH, TIMETOACT Software & Consulting GmbH und X-Integrate Software & Consulting GmbH gemeinsam als neue Brands unter dem neuen Namen ATVANTAGE auf. -Unsere Leistungen, unser Team und unsere Kontakte bleiben unverändert – Sie erreichen uns weiterhin zuverlässig über unser neues Profil: ATVANTAGE -Wir freuen uns darauf, unsere Zukunft gemeinsam mit Ihnen unter einer starken Marke zu gestalten.",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/691b134564c88b0001e77832/picture,"","","","","","","","","" -Synthflow AI,Synthflow AI,Cold,"",72,information technology & services,jan@pandaloop.de,http://www.synthflow.ai,http://www.linkedin.com/company/synthflowai,https://www.facebook.com/profile.php,"","",Berlin,Berlin,Germany,"","Berlin, Berlin, Germany","technology, information & internet, voice ai for retail, hipaa compliant, real-time call management, customer engagement, ai for high-volume call centers, consulting, call quality assurance, enterprise security, voice biometrics, voice recognition, no-code platform, secure voice platform, call logging, call center integrations, automated complaint handling, natural language understanding, call flow design, lead qualification, call monitoring, voice ai for banking, ai-powered customer service, crm integrations, ai call center solutions, call management, call center scalability, natural language processing, call recording, voice-enabled troubleshooting, voice cloning, data encryption, gdpr compliant, automated info capture, virtual assistant, call routing, call routing algorithms, virtual receptionist, real estate, speech-to-text, management consulting services, call handling software, bpo, call center optimization, cost reduction in call centers, contact center, workflow automation, ai-driven customer engagement, ai call transfer, data protection, call scripting, multilingual voice ai, api integrations, automated follow-ups, automated service request, voice ai integration, voice-based surveys, call center workforce automation, voice ai for real estate, voice-enabled crm, customizable voice agents, healthcare, webhooks, multilingual support, automated billing support, government, call center analytics, call escalation, voice analytics for support, call center software, helpdesk integration, call handling automation, scalable saas, call center automation, b2b, voice-enabled customer feedback, retail, user experience, voice ai for healthcare, call performance, manufacturing, banking, call transfer, ai-driven helpdesk, call scheduling, voice-enabled appointment booking, telephony apis, ai-powered call monitoring, high-volume call handling, call transcription, enterprise voice ai, cloud telephony, call center ai chatbot, automated outbound calls, multilingual voice agents, ai voice agents, call automation tools, call management system, automated customer onboarding, telephony integration, crm integration, automated order processing, api access, data security, customer support automation, automated reminders, low latency voice, call flow builder, hospitality, call automation, soc2 certified, human-like voice, call center ai, multi-channel support, call analytics, voice ai for hospitality, enterprise-grade security, services, voice synthesis, government services, voice-based lead generation, education, helpdesk tools, ivr system, voice ai for government services, appointment scheduling, call volume scaling, call transfer automation, automated phone calls, conversational ai, ai receptionist, ai answering service, integrations, hipaa compliance, real-time interactions, 24/7 service, outbound calls, inbound calls, custom voice agents, automation tools, agency solutions, healthcare ai, real estate ai, recruitment ai, scheduled communications, customer inquiries, ai for dealerships, ai for solar companies, appointment management, business automation, workflow optimization, customer service enhancement, sentiment analysis, call transcripts, tailored solutions, no-code platforms, efficiency gains, cost savings, scalability, instant lead follow-up, dormant lead activation, custom integrations, finance, information technology & services, artificial intelligence, health care, health, wellness & fitness, hospital & health care, ux, mechanical or industrial engineering, financial services, computer & network security, leisure, travel & tourism",'+49 1573 7656452,"Cloudflare DNS, Gmail, Google Apps, CloudFlare Hosting, Instantly, Hubspot, Zendesk, Google Analytics, Pingdom, Twitter Advertising, YouTube, Google Maps, Google Maps (Non Paid Users), Wistia, Ruby On Rails, Facebook Login (Connect), DoubleClick Conversion, Google Font API, Stripe, WordPress.org, Google Dynamic Remarketing, reCAPTCHA, DoubleClick, Linkedin Marketing Solutions, Vimeo, Facebook Custom Audiences, Google Tag Manager, Hotjar, Intercom, Facebook Widget, Woo Commerce, Mobile Friendly, AI, WebRTC, Spiceworks IP Scanner, Oracle Communications Session Border Controller (SBC), Trend Micro Smart Protection, React, TypeScript, Tailwind, Cisco VoIP, Claude, go+, ebs",29050000,Series A,20000000,2025-06-01,"","",69b862eac63906001d70c08c,7375,54161,"Synthflow AI is a Berlin-based company founded in 2023, specializing in a no-code platform for creating and managing customizable voice AI agents. These agents automate inbound and outbound phone calls, providing human-like interactions. The platform is designed for mid-market and enterprise companies, contact centers, BPO providers, and SMBs, enabling them to handle high call volumes efficiently and cost-effectively. - -Since launching its first product version in early 2024, Synthflow AI has experienced significant growth, processing over 5 million calls monthly and achieving a 90% retention rate among enterprise customers. The company offers a comprehensive Voice AI Operating System that includes tools for building automated workflows, real-time monitoring, and seamless integrations with popular CRMs like Salesforce and HubSpot. Synthflow AI is recognized for its innovative technology, which supports over 50 languages and is compliant with HIPAA and GDPR regulations.",2023,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69ad54533e0f840001016f07/picture,"","","","","","","","","" -telli,telli,Cold,"",26,information technology & services,jan@pandaloop.de,http://www.telli.com,http://www.linkedin.com/company/tellitechnologies,"",https://twitter.com/tellimarin,"",Berlin,Berlin,Germany,"","Berlin, Berlin, Germany","advertising, search, communities, local advertising, social media, consumer internet, internet, information technology, technology, information & internet, workflow automation, operational efficiency, ai call automation, market research, services, information technology and services, call transcription, automatic callbacks, data security and compliance, customer experience, customer retention, crm integration, ai voice agents, multilingual voices, b2b, automated call handling, lead qualification, human-like conversations, multi-channel communication, utilities, customer journey, call analytics, industry-specific ai agents, healthcare, dynamic number rotation, real estate, call operations platform, financial services, customer engagement, natural language processing, management consulting services, sentiment analysis, appointment scheduling, real-time call monitoring, saas, b2c, finance, consumer_products_retail, energy_utilities, construction_real_estate, marketing & advertising, consumers, information technology & services, health care, health, wellness & fitness, hospital & health care, artificial intelligence, computer software","","Cloudflare DNS, Amazon SES, Gmail, Google Apps, MailChimp SPF, Microsoft Office 365, CloudFlare Hosting, Hubspot, Zendesk, Slack, Mobile Friendly, Google Tag Manager, BugHerd, Multilingual, Micro, Android, Node.js, IoT, Remote, AI, n8n, Zapier, TypeScript, React, Akamai Connected Cloud (formerly Linode), Python, Google AlloyDB for PostgreSQL, Linkedin Marketing Solutions",3730000,Seed,3600000,2025-04-01,"","",69b862eac63906001d70c08e,7375,54161,"telli technologies GmbH is a Germany-based SaaS startup that launched in late 2024. The company offers an AI-powered call automation platform designed for sales enablement, focusing on AI voice agents that automate outbound phone calls and customer engagement for B2C businesses. Founded by CEO Finn, CTO Seb, and COO Philipp, telli is backed by Y Combinator and aims to help sales-driven companies convert leads into sales opportunities. - -The platform automates various call operations, including lead qualification, appointment booking, and customer re-engagement. Key modules include telli qualifier for lead qualification, telli booker for scheduling, telli engager for ongoing customer engagement, and telli reacher for smart calling strategies. With features like 24/7 call answering, real-time analytics, and multi-channel communication, telli enhances engagement and reduces operational costs. The company serves a diverse range of industries, including energy, real estate, and financial services, and has processed nearly a million calls, significantly boosting engagement and efficiency for its clients.",2024,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/695a2f9e7924f30001bd5214/picture,"","","","","","","","","" -ETECTURE GmbH,ETECTURE,Cold,"",65,information technology & services,jan@pandaloop.de,http://www.etecture.de,http://www.linkedin.com/company/etecture,https://www.facebook.com/ETECTURE,https://twitter.com/etecture,31 Voltastrasse,Frankfurt,Hesse,Germany,60486,"31 Voltastrasse, Frankfurt, Hesse, Germany, 60486","uxdesign, support, quality assurance, project management, iadesign, devops, ios, maintenance operation, outsourcing, business analysis, pirobase, java, mobile apps, software architecture, liferay, php, gigya, it consulting, net, digital transformation, c, agile, it rolloutmanagement, drupal, soft development, react, perl, requirements engineering, blockchain, kotlin, javascript, automotive, android, logistik, data analytics, blockchain dlt, forecasting, data management, avatar chatbot, customer journey mapping, software development, predictive analytics, deep learning, platform development, lean ux, microservices, process optimization, software engineering, consulting services, natural language processing, data science, digital operational excellence, information technology and services, customer experience, system integration, automation, it infrastructure, b2b, experience design, ai & machine learning, microservices architecture, no-code platforms, ai engineering, digital strategy, ocr, cloud solutions, explainable ai, technology consulting, chatbots, user experience, prototyping, innovation, process mining, federated learning, services, consulting, business models, data lakes, experience architecture, cloud computing, predictive maintenance, computer systems design and related services, agile methodology, smart contracts, machine learning, e-commerce, finance, distribution, productivity, mobile, internet, information technology & services, management consulting, enterprise software, enterprises, computer software, artificial intelligence, marketing, marketing & advertising, ux, consumer internet, consumers, financial services",'+49 72 1989732601,"Route 53, Outlook, Microsoft Office 365, YouTube, Apache, Mobile Friendly, Ubuntu","","","","",459000,"",69b862eac63906001d70c090,7375,54151,"ETECTURE GmbH is a German IT services and consulting company that specializes in digital transformation. Founded in 2003, the company operates as a holistic service provider, developing digital strategies, business models, and software architectures across various industries. Headquartered in Frankfurt am Main, ETECTURE has additional locations in Karlsruhe, Düsseldorf, Berlin, and Stuttgart, and is part of the Sigma Technology Group, which enhances its global tech expertise. - -The company offers a wide range of services, including strategic consulting, software development, and specialized solutions such as AI-powered process optimization and application management. ETECTURE focuses on delivering user-friendly digital products and services, particularly in finished vehicle logistics, with tools for route optimization and real-time data analytics. With a commitment to agile methodologies and customer involvement, ETECTURE has successfully completed over 500 projects in sectors like automotive, manufacturing, logistics, and banking.",2003,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/6873e975d8f9ea0001d0cdaf/picture,"","","","","","","","","" -skillbyte GmbH,skillbyte,Cold,"",32,information technology & services,jan@pandaloop.de,http://www.skillbyte.de,http://www.linkedin.com/company/skillbyte-ki,"","",57 Zollstockguertel,Cologne,North Rhine-Westphalia,Germany,50969,"57 Zollstockguertel, Cologne, North Rhine-Westphalia, Germany, 50969","cybersecurity, data, kubernetes, devops, terraform, spring boot, gcp, ai, generative ai, software development, openshift, aws, spark, docker, deep learning, java cloud native, kafka, ki, mobile app entwicklung, iac, machine learning, blockchain, gitops, azure, microservices, devsecops, ansible, llm, ml, kuenstliche intelligenz, it services & it consulting, ai for sustainability reporting, process automation, ai integration, ai data structuring, ki-workshop, ai for process automation in mittelstand, artificial intelligence, proof of concept, ai for production planning, ai in logistics, roi-analyse, prozessoptimierung, industrieller mittelstand, ai project planning, custom ai solutions, ai roi estimation, maßgeschneiderte ki-lösungen, ai project management, logistics, ki-beratung, data analysis, manufacturing, b2b, operational research algorithms, ai for resource allocation, ai for administration, ai pilot project, ai technology, industrial ai, ai compliance gdpr, ai in administration, datenanalyse, esg reporting automation, ai for manufacturing, services, consulting, ki-implementierung, ai strategy, ai in production, datenexploration, ai in zulassungsverfahren, computer systems design and related services, ai consulting, ai for logistics, ai development, data quality check, distribution, information technology & services, data analytics, mechanical or industrial engineering",'+49 225 17847115,"MailJet, Gmail, Google Apps, Amazon AWS, SendInBlue, WordPress.org, Mobile Friendly, reCAPTCHA, DoubleClick, Nginx, Google Dynamic Remarketing, Google Tag Manager, DoubleClick Conversion, Docker, Remote","","","","","","",69b2d7109601710001721509,3571,54151,"We are one of the leading AI service providers for German SMEs. For more than 10 years, we have been developing trustworthy digital solutions that facilitate and optimise business processes and everyday working life. We consider ourselves not just a provider but a strategic partner in the implementation of big data projects and translate the current AI hype into use cases with measurable results for administration and production.",2012,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/681f8e568300a90001d0a8ee/picture,"","","","","","","","","" -ellamind,ellamind,Cold,"",16,information technology & services,jan@pandaloop.de,http://www.ellamind.com,http://www.linkedin.com/company/ellamind,"",https://twitter.com/ellamindAI,8P Konsul-Smidt-Strasse,Bremen,Bremen,Germany,28217,"8P Konsul-Smidt-Strasse, Bremen, Bremen, Germany, 28217","artificial intelligence, ai, ki, kuenstliche intelligenz, it services & it consulting, custom large language models, data protection, synthetic data generation, data privacy, model safety, b2b, synthetic data engine, model evaluation, performance metrics, model scalability, information technology and services, multi-language llms, ai pipelines, ai collaboration, discoresearch, ai research, ai model integration, content-aware applications, software development, open-source ai models, model fine-tuning, edge deployment, model robustness, domain adaptation, domain-specific fine-tuning, ai evaluation and optimization, public-private ai partnerships, data analytics, on-premise deployment, model benchmarking, model version control, retraining with synthetic data, machine learning, research and development, multi-modal ai, model transparency, ai models, tailored ai solutions, ai research collaboration, european ai projects, model performance monitoring, open-source datasets, data sovereignty, large-scale ai projects, non-english language models, research and development in the physical, engineering, and life sciences, multilingual large language models, model resilience, healthcare, finance, education, legal, non-profit, information technology & services, research & development, health care, health, wellness & fitness, hospital & health care, financial services, nonprofit organization management","","Cloudflare DNS, Outlook, Microsoft Office 365, Slack, Mobile Friendly, AI, Luminate, Anthropic Claude, OpenAI, Python, Hugging Face, PyTorch, Harness, Frame, SLURM Workload Manager, Liferay, Apache Parquet, Django, React, Next.js, PostgreSQL, Docker, Kubernetes, Argon CI/CD Security, TypeScript","","","","","","",69b862eac63906001d70c08d,7375,54171,"ellamind GmbH is an AI company based in Bremen, Germany, founded in 2024. The company specializes in developing, evaluating, and optimizing advanced AI models tailored for enterprises, with a focus on data sovereignty and security. They prioritize European values, ensuring sensitive data remains within client networks through on-premise deployment. - -The team at ellamind has a strong background in open-source AI, having developed widely used models that have achieved top placements on the global Open LLM Leaderboard. They offer customized AI solutions for process automation across various regulated industries, including finance, healthcare, and public services. Key products include the elluminate AI evaluation platform, custom large language models, advanced retrieval-augmented generation pipelines, and a synthetic data engine for generating high-quality training data. The company collaborates with partners like JAAI Group and has experience with European Commission projects, showcasing their commitment to innovation and reliability in AI solutions.",2024,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/67132afedd15730001333cec/picture,"","","","","","","","","" -Onsai,Onsai,Cold,"",13,information technology & services,jan@pandaloop.de,http://www.onsai.com,http://www.linkedin.com/company/onsai-intelligence,"","",22 Petersstrasse,Leipzig,Saxony,Germany,04109,"22 Petersstrasse, Leipzig, Saxony, Germany, 04109","software development, information technology & services",'+49 30 585847900,"Route 53, Gmail, Google Apps, CloudFlare Hosting, Hubspot, Mobile Friendly, WordPress.org, Google Tag Manager, Google Font API, reCAPTCHA","","","","","","",69b862eac63906001d70c08f,"","","Onsai is a Berlin-based startup founded in 2024 that specializes in developing Agentic AI solutions for the hospitality industry. The company creates digital employees designed to automate guest communication, optimize hotel operations, and address labor shortages. Named after the Japanese word for ""voice,"" Onsai aims to be ""The Voice of Hospitality"" by providing AI agents that operate autonomously and integrate with hotel systems, handling tasks in up to 25 languages. - -The company offers a range of AI-powered tools, including Onsai Voice, which automates a significant portion of incoming calls, and Onsai Chat, a messaging agent for platforms like WhatsApp. These solutions enhance efficiency, reduce staff workload, and improve guest experiences. Onsai has secured over €1 million in growth capital and has been recognized with the IHA Startup Award 2025 for its innovative voice solutions. Notable clients include McDreams Hotels and HOMARIS, showcasing the effectiveness of its technology in various hospitality settings.",2024,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/690b35b614df4800013ec170/picture,"","","","","","","","","" -dynabase Technologies GmbH,dynabase,Cold,"",21,information technology & services,jan@pandaloop.de,http://www.dynabase.de,http://www.linkedin.com/company/dynabase-technologies-gmbh,"","","",Cologne,North Rhine-Westphalia,Germany,"","Cologne, North Rhine-Westphalia, Germany","technische beratung strategie, prototyping mvpentwicklung, systemintegration apis, custom software development, ai data loesungen, digitale produktentwicklung, ki, fullservice, digitale transformation, ecommerce shop loesungen, talent sourcing recruiting, web cloud platforms, softwareentwicklung, uxui design, it services & it consulting, api development, on-premises software, consulting, full-stack development, ai services, services, product lifecycle support, computer systems design and related services, web applications, design thinking, distributed systems, cloud computing, configurators, international rollouts, prototyping, dashboards, devops, iot systems, cloud solutions, b2b, cloud infrastructure, software development, ai-powered services, custom software, agile methodology, information technology and services, artificial intelligence, team augmentation, embedded software, fleet management, digital transformation, user feedback, long-term support, custom ai models, security, information technology & services, enterprise software, enterprises, computer software, internet infrastructure, internet",'+49 221 5883070,"Gmail, Google Apps, Cloudflare DNS, CloudFlare Hosting, Mobile Friendly, Hubspot, IoT, Android, React Native, Xamarin, Node.js, Remote, Docker, Aircall","","","","","","",69b2d6c44396f7000180e5ba,7375,54151,"🌟 dynabase: Your guide to the digital age - -How can I seamlessly integrate technologies and effectively manage distributed systems? How do I design strategic and future-proof business models? Questions that inevitably arise in the digital transformation. But worry not - dynabase has the clear and concise answers you need to move forward. - -🛠 What is dynabase? - -dynabase is your trusted partner in digital transformation, offering a holistic approach from conception to long-term maintenance. We value long-term partnerships, personal growth and innovation. - -🌎 Why is this important to us? - -We strongly believe that agility, quality and scalability are the keys to success. We are motivated by solving complex problems and helping our clients achieve their goals. - -💼 How do we do that? - - -Understanding needs 🔍: Analysing people, processes and real business problems. -Developing solution approaches 💡: Combining design thinking and innovative strategies to create real USPs. -Prototyping 🛠: Rapid development and adaptation of prototypes through user labs. -Strategic planning 📈: Creation of clear roadmaps and budget planning. -Agile development 🚀: Short development cycles with autonomous, expert-driven teams. -Measure and adapt 📊: Automated feature tracking and continuous user interviews. -Continuous learning 🔄: Constant strategy adaptation and promotion of a dynamic corporate culture. - -🤝 At dynabase, we believe in working with you to create sustainable and future-proof solutions that are tailored to your individual needs. Discover the difference a collaborative partnership can make and let us plan your next step into the digital future together. - -📧 mail@dynabase.de -📞 +49 221 588 307 0",2017,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/695f82278e5947000131b49e/picture,"","","","","","","","","" -Charamel GmbH,Charamel,Cold,"",17,information technology & services,jan@pandaloop.de,http://www.charamel.com,http://www.linkedin.com/company/charamelgmbh,https://www.facebook.com/CharamelGmbH,https://twitter.com/Charamel,60 Aachener Strasse,Cologne,North Rhine-Westphalia,Germany,50674,"60 Aachener Strasse, Cologne, North Rhine-Westphalia, Germany, 50674","humanmachine, avatar, 3d, animation, artificial intelligent, menmachine, hmi, character, virtual human, ai, digital assistant, realtime animation, sign language, it services & it consulting, human-machine interaction, 3d animation, information technology and services, emotion recognition, software engineering, interactive applications, virtual event hosts, virtual assistants, gesture translation, emotionale assistenten, digital empathy systems, software development, webgl development, avatar-based training, b2b, research and development, digital avatars, computer systems design and related services, digital media, user-friendly interfaces, ai-based communication, avatar as moderator, sprach- und gebärdensprachübersetzung, services, multimedia storytelling, natural language processing, cloud-based platforms, government, avatar development, virtual trainers, education, information technology & services, research & development, artificial intelligence",'+49 22 1336640,"Route 53, Outlook, Microsoft Office 365, Pipedrive, React Redux, Slack, Nginx, Mobile Friendly, Ubuntu, Android, React Native, Remote, AI","","","","","","",69b2d7bac749280001a72788,7375,54151,"Charamel is a IT company based in Cologne/Germany. The company vision is to bring more human touch into interactive applications by using virtual humans called avatars. Charamel is developing software for interactive and multifunctional digital assistants for a better communication between human and machine. Avatars are the next generation of a multimodal and user-friendly HMI interface face to face! - -Charamel offers a variety of software products and services. - -- Digital Avatar Solutions like Digital recepionist, Concierge or Check -in Agent -- Automatic AI-based Sign Language translation products and service for text to sign language (www.gebaerdensprach-avatar.de) - -- Virtual Trainer (www.virtual-trainer.de) is an innovative cloud-based training solution for legally prescribed trainings for companies to instruct ther employees in occupational safety, fire safety, energy, hygiene and other contents. It is easy to use in administration and documention of all instructions and user-friendly by using an avatar as virtual trainer. - -- VuppetMaster is currently the only cloud-based software to bring 3D interactive avatars on websites or into applications. It enables the visualization of digital assistants, chatbots, AI-systems and helps to increase the user experience. Using emotions, movements and speech the avatar is able to interact in real-time with users. - -- R&D - Additional research and development work in collaboration with partners sponsored by the European Commission or the German Federal Ministry of Education and Research provide new experiences and developments in artificial intelligence and help Charamel shape the future. - -Ask us for further information!",1999,https://zenprospect-production.s3.amazonaws.com/uploads/pictures/687433328454e1000120a9ef/picture,"","","","","","","","","" -Talentship,Talentship,Cold,"",96,information technology & services,jan@pandaloop.de,http://www.talentship.io,http://www.linkedin.com/company/talentshipio,"","","",Cologne,North Rhine-Westphalia,Germany,"","Cologne, North Rhine-Westphalia, Germany","managed talent, next generation offshoring, it consulting services, managed services, managed centers, ai development, top tech teams, managed teams, interim cto services, ki consulting, software development, scale up it organizations, digitalization, top tech talent, ki services, it services & it consulting, it staffing, software development lifecycle, hybrid outsourcing, it-projektmanagement, top it talent india, cybersecurity, deutsche qualität, european it leadership, it project leadership, it-consulting, offshore-teams, digital transformation, high-performance teams, data & bi development, it-talentsourcing, offshore development, team augmentation, it service delivery, india it market, it resource management, it team building, european ctos, cto-leadership, it workforce solutions, computer systems design and related services, iso 27001 & iso 9001, remote agile teams, offshore cto support, nearshore development, top 5% it-fachkräfte, saas development, data analytics, services, it consulting, software engineering, agile methodology, cloud & devops, kosteneffizienz, cost optimization, hybrid offshoring, offshore software modernization, german-style quality offshore, b2b, top 5% engineers india, legacy modernization, offshore software development, it talent data-driven selection, hybrid offshore model, ai & automation, remote teams, high-performance offshore culture, it outsourcing, it infrastructure, it talent acquisition, cloud computing, consulting, remote management, quality assurance, information technology and services, information technology & services, staffing & recruiting, management consulting, outsourcing/offshoring, enterprise software, enterprises, computer software","","Route 53, Rackspace MailGun, Outlook, Hubspot, WordPress.org, Mobile Friendly, Ubuntu, Apache, Google Tag Manager, Typekit, Android, Remote","","","","","","",69b2d6c44396f7000180e5bf,7371,54151,"Talentship operates as a multifaceted organization with a focus on HR consulting, recruiting, and career coaching. As a Woman Owned Small Business (WOSB) in a HUB zone, Talentship LLC connects talent with leadership, leveraging over 20 years of experience in government contracting and commercial sectors. The company is dedicated to driving business and career growth through skilled recruiting and staffing services, including finding rare talent and managed teams. - -Talentship.io specializes in tech talent and team scaling, providing access to the top 5% of engineers led by experienced European CTOs. This service emphasizes cost-effective scaling and efficiency, with a methodology that enhances quality output while reducing costs. Additionally, Talentship.com offers a performance management platform designed to improve team performance and development, providing alternatives to traditional performance reviews. The company also supports training and development, career coaching, and proposal assistance for government contracting.","",https://zenprospect-production.s3.amazonaws.com/uploads/pictures/69ac3cba45172b00019f3ddb/picture,"","","","","","","","","" diff --git a/leadfinder/data/lead_evaluation_json_schema b/leadfinder/data/lead_evaluation_json_schema new file mode 100644 index 0000000..68ed541 --- /dev/null +++ b/leadfinder/data/lead_evaluation_json_schema @@ -0,0 +1,64 @@ +{ + "type": "object", + "properties": { + "leads": { + "type": "array", + "items": { + "type": "object", + "properties": { + "company_name": { "type": "string" }, + "website": { "type": "string" }, + "industry": { "type": "string" }, + "description": { "type": "string" }, + "employee_count": { "type": "string" }, + "lead_attractiveness_score": { "type": "integer" }, + "scoring_reasoning": { "type": "string" }, + "general_contacts": { + "type": "array", + "items": { + "type": "object", + "properties": { + "value": { "type": "string" }, + "type": { "type": "string", "enum": ["EMAIL", "PHONE"] }, + "category": { "type": "string", "enum": ["SALES_DIRECT", "GENERAL_INFO", "SUPPORT", "PRESS_MARKETING", "OTHER"] }, + "source_url": { "type": "string" } + }, + "required": ["value", "type", "category", "source_url"], + "additionalProperties": false + } + }, + "employees": { + "type": "array", + "items": { + "type": "object", + "properties": { + "name": { "type": "string" }, + "role": { "type": "string" }, + "email": { "type": "string" }, + "phone": { "type": "string" }, + "linkedin_url": { "type": "string" }, + "source_url": { "type": "string" } + }, + "required": ["name", "role", "email", "phone", "linkedin_url", "source_url"], + "additionalProperties": false + } + } + }, + "required": [ + "company_name", + "website", + "industry", + "description", + "employee_count", + "lead_attractiveness_score", + "scoring_reasoning", + "general_contacts", + "employees" + ], + "additionalProperties": false + } + } + }, + "required": ["leads"], + "additionalProperties": false +} diff --git a/leadfinder/data/lead_evaluation_system_prompt b/leadfinder/data/lead_evaluation_system_prompt index 65f46ab..50242dd 100644 --- a/leadfinder/data/lead_evaluation_system_prompt +++ b/leadfinder/data/lead_evaluation_system_prompt @@ -10,59 +10,86 @@ For every input Company ("T") provided in the context, identify industry, size, - Do not skip any company. - Your output MUST be a **JSON ARRAY** containing one object per company. +### YOUR EMPLOYER +You have to find leads for a small german software agency that is looking for customers that are willing to go bold. +Their services are: +- Software optimization +- Expertise in broad array of sub-topics +- Very honest, german style of collaboration + ### LEAD SCORING CRITERIA (0-100) Calculate the `lead_attractiveness_score` based on these priorities: -- **IT-mindedness (Weight: 15%):** Targets are ideas-first, IT-second companies. They are allowed to have IT personell, but should not have grown out of an IT context, i.e. the founders should not be programmers. Check history pages and personal info of founders for this. We are looking for situations where the IT teams can barely keep up with the visionaries leading the companies. +- **General fit (Weight: 20%):** Evaluate how good of a lead this is based on the employer description. - **Company Size (Weight: 20%):** Target is 10 < N < 250 employees. Small to medium companies (25-150) get the highest score. Companies > 250 get a significant penalty. -- **Personal Contacts (Weight: 45%):** Higher score if specific employees with email/phone are found. Individual data is much more valuable than info@ addresses. -- **Accessibility (Weight: 20%):** Detailed "general_contacts" (Sales direct, Marketing) increase the score. +- **General contacts** (Weight: 40%): A single phone number is enoguh for a good score. A mail adress but no phone number is not good. +- **Personal Contacts (Weight: 20%):** Icing on the cake. If phone numbers that belong to specific people exist, this category gets full points. - **Scoring Scale:** - 80-100: Perfect fit (Small/Medium, personal data found). - - 50-79: Good fit (Size fits, but only generic data). - - 0-49: Poor fit (Too large OR no contact data found). + - 40-79: Good fit (Size fits, but only generic data). + - 0-39: Poor fit (Too large OR no contact data found). +- Score every category individually, and return the sum of the scores. ### RESEARCH STRATEGY 1. Scan Imprint/About pages for industry and EXACT employee count. 2. Collect ALL generic contact points with their source URLs. 3. Identify individual employees and their personal contact details + source URLs. +4. Limit your search to the top 3 results to save context space ### ANTI-HALLUCINATION & SOURCE RULES - **STRICT ADHERENCE TO TRUTH:** Every contact MUST have a `source_url`. -- **FORBIDDEN SOURCES:** NEVER link to internal API endpoints or cloud console URLs. Specifically, **DO NOT use links starting with vertexai.cloud.google.com**. +- Do NOT put very long URLs (>200 characters) into the output. Review your answers and remove such URLs if you find them, replacing them with the words "URL BUG". - If no verifiable source is found, DO NOT list the contact. +### HANDING TRHOUGH INPUT +- You will recieve varying amounts of information per company. If i give you information about a company that is part of my desired output, pass the data to the output. + ### OUTPUT RULES - NO summaries, NO introductory text, NO conversational filler. - Provide ONLY a clean, structured **JSON ARRAY**. - **NO MARKDOWN SYNTAX:** Do NOT put three backticks (e.g., ```json). Just give the raw content. - IF you cannot find any information for a company, return an empty object for that entry or an empty array `[]` if no companies are found. +- If you cannot find data for any of the requested fields, put the following things: + - IF the field is expecting a list: an empty list, i.e. [] + - IF the field is expecting a string: an empty string, i.e. "" + - IF the field is expecting a number: the number zero, i.e. 0 -### JSON FORMAT (ARRAY OF OBJECTS) +### TOOL USE +- You are allowed to use web search. +- As soon as you find ANY perosnalized contact data, stop scraping +- Do NOT include large text blocks without any content data in your token context. +- Generally optimize for speed and minimal token usage. + + +- Remember: If you don't do a good job, you WILL BE FIRED. + +If you don't answer with valid json, you WILL BE FIRED. + +THE JSON FORMAT YOU HAVE TO USE: +YOU CAN SEE THE DATA TYPES IN BRACKETS: [ { - "company_name": "Name of T", - "website": "URL of T", - "industry": "Specific industry", - "description": "Short description", - "employee_count": "Number or range", - "lead_attractiveness_score": 0-100, - "scoring_reasoning": "Short explanation", + "company_name": "Name of T", (string) + "website": "URL of T", (string) + "industry": "Specific industry", (string) + "description": "Short description", (string) + "employee_count": "Number or range", (string) + "lead_attractiveness_score": "0-100", (number) + "scoring_reasoning": "Short explanation of the score based on size and data availability", (string) "general_contacts": [ { - "value": "Email/Phone", - "type": "EMAIL | PHONE", - "category": "SALES_DIRECT | GENERAL_INFO | SUPPORT | PRESS_MARKETING | OTHER", - "source_url": "URL" + "value": "Email/Phone", (string) + "type": "EMAIL | PHONE", (string) + "category": "SALES_DIRECT | GENERAL_INFO | SUPPORT | PRESS_MARKETING | OTHER", (string) + "source_url": "URL" (string) } - ], + ], (list) "employees": [ { - "name": "Firstname Lastname", - "role": "Job Title", - "email": "email or null", - "phone": "phone or null", - "linkedin_url": "URL or null", - "source_url": "URL" + "name": "Firstname Lastname", (string) + "role": "Job Title", (string) + "email": "email", (string) + "phone": "phone", (string) + "source_url": "URL" (string) } - ] + ] (list) } ] diff --git a/leadfinder/data/playwright_script b/leadfinder/data/playwright_script new file mode 100644 index 0000000..01782ac --- /dev/null +++ b/leadfinder/data/playwright_script @@ -0,0 +1,11 @@ +import { test, expect } from '@playwright/test'; + +test('test', async ({ page }) => { + await page.getByRole('checkbox', { name: 'View more options to select' }).click(); + await page.locator('label').filter({ hasText: 'Select this page' }).locator('div').first().click(); + await page.getByRole('button', { name: 'Apply' }).click(); + await page.getByRole('button', { name: 'Export' }).click(); + await page.getByRole('button', { name: 'Export records' }).click(); + await page.getByRole('button', { name: 'Clear 25 selected' }).click(); + await page.getByRole('button', { name: 'Next' }).click(); +}); diff --git a/leadfinder/out/em_lookalikes_out.json b/leadfinder/out/em_lookalikes_out.json deleted file mode 100644 index 5cce599..0000000 --- a/leadfinder/out/em_lookalikes_out.json +++ /dev/null @@ -1,701 +0,0 @@ - -[ - { - "company_name": "ATVANTAGE GmbH", - "description": "ATVANTAGE GmbH provides holistic digital solutions, combining strategy, technology, and implementation to make processes smarter, optimize services, and enable growth. They focus on data & AI, cloud, software engineering, UX design, and digital strategy, supporting companies in the successful transformation of their IT landscape from strategic consulting to technical implementation.", - "employee_count": "240", - "employees": [ - { - "email": null, - "name": "Stefan Gierl", - "phone": null, - "role": "Managing director", - "source_url": "https://www.atvantage.com/legal-information/" - }, - { - "email": "thomas.schrader@atvantage.com", - "name": "Thomas Schrader", - "phone": "+49 171 3049773", - "role": "Chief Sales & Marketing Officer", - "source_url": "https://www.atvantage.com/contact-us/" - }, - { - "email": "stephan.pfeiffer@atvantage.com", - "name": "Stephan Pfeiffer", - "phone": "+49 170 9650452", - "role": "Chief Digital Officer", - "source_url": "https://www.atvantage.com/contact-us/" - }, - { - "email": "thomas.zoeller@atvantage.com", - "name": "Thomas Zöller", - "phone": "+49 221 97343 43", - "role": "Chief Project Officer", - "source_url": "https://www.atvantage.com/contact-us/" - } - ], - "general_contacts": [ - { - "category": "GENERAL_INFO", - "source_url": "https://www.atvantage.com/legal-information/", - "type": "PHONE", - "value": "+49 221 97343 0" - }, - { - "category": "GENERAL_INFO", - "source_url": "https://www.atvantage.com/legal-information/", - "type": "EMAIL", - "value": "info@atvantage.com" - } - ], - "industry": "Other software development; IT Consulting & System Integration", - "lead_attractiveness_score": 75, - "scoring_reasoning": "The company size of 240 employees is within the target range (10-250), contributing moderately to the score. The presence of multiple personal contacts with email and phone significantly boosts the score. General contact information is also readily available, further increasing accessibility.", - "website": "https://www.atvantage.com/" - }, - { - "company_name": "Humanizing Technologies", - "description": "Humanizing Technologies is an AI technology provider specializing in creating digital service avatars to automate simple, routine tasks for public life. They design, build, and integrate advanced software and technological ecosystems, focusing on human-centered, intelligent, future-ready technology. They offer solutions like Banking Avatar, Check-In Avatar, Digital Receptionist, Info Finder, Wayfinder, and Web Agent.", - "employee_count": "18", - "employees": [ - { - "email": null, - "linkedin_url": null, - "name": "Tim Schuster", - "phone": null, - "role": "Founder & Managing Director", - "source_url": "https://www.humanizing.com/web-agent-en/" - }, - { - "email": null, - "linkedin_url": null, - "name": "Thomas van den Berg", - "phone": null, - "role": "Senior Solution Architect", - "source_url": "https://www.humanizing.com/web-agent-en/" - }, - { - "email": null, - "linkedin_url": null, - "name": "Nina Gipperich", - "phone": null, - "role": "Key Account Managerin", - "source_url": "https://www.humanizing.com/web-agent-en/" - } - ], - "general_contacts": [ - { - "category": "SUPPORT", - "source_url": "https://www.humanizing.com/support/", - "type": "EMAIL", - "value": "support@humanizing.com" - }, - { - "category": "SUPPORT", - "source_url": "https://www.humanizing.com/support/", - "type": "PHONE", - "value": "+49 173 43 43 000" - }, - { - "category": "GENERAL_INFO", - "source_url": "https://www.humanizing.com/partner/", - "type": "PHONE", - "value": "+49 221 715975-75" - } - ], - "industry": "AI Technology, Robotics, Cloud Infrastructure, Information Technology, Digital Service Avatars, Robotic Process Automation, Customer Service Automation, Workforce Augmentation, Service Robotics, Avatar Assistants, Low-Code Platform, Digital Humans, Virtual Assistants", - "lead_attractiveness_score": 68, - "scoring_reasoning": "The company size (18 employees) is within the ideal target range (10-250), contributing positively to the score. General contact accessibility is good with multiple phone numbers and a support email. However, direct personal emails or phone numbers for specific employees were not found, which moderately impacts the personal contacts score.", - "website": "http://www.humanizing.com" - }, - { - "company_name": "ATVANTAGE GmbH", - "description": "ATVANTAGE GmbH is an IT service provider that combines expertise in cloud, data & AI, software engineering, UX design, and digital strategy. They offer holistic consulting and digital solutions to make clients more efficient, processes smarter, optimize services, and enable growth. ATVANTAGE is part of the TIMETOACT GROUP.", - "employee_count": "> 1700 (part of TIMETOACT GROUP)", - "employees": [ - { - "email": null, - "linkedin_url": null, - "name": "Stefan Gierl", - "phone": null, - "role": "Managing Director", - "source_url": "https://www.atvantage.com/legal-information/" - }, - { - "email": "thomas.schrader@atvantage.com", - "linkedin_url": null, - "name": "Thomas Schrader", - "phone": "+49 171 3049773", - "role": "Chief Sales & Marketing Officer", - "source_url": "https://www.atvantage.com/contact-us/" - }, - { - "email": "stephan.pfeiffer@atvantage.com", - "linkedin_url": null, - "name": "Stephan Pfeiffer", - "phone": "+49 170 9650452", - "role": "Chief Digital Officer", - "source_url": "https://www.atvantage.com/contact-us/" - }, - { - "email": "thomas.zoeller@atvantage.com", - "linkedin_url": null, - "name": "Thomas Zöller", - "phone": "+49 172 2397685", - "role": "Chief Project Officer", - "source_url": "https://www.atvantage.com/contact-us/" - } - ], - "general_contacts": [ - { - "category": "GENERAL_INFO", - "source_url": "https://www.atvantage.com/legal-information/", - "type": "PHONE", - "value": "+49 221 97343 0" - }, - { - "category": "GENERAL_INFO", - "source_url": "https://www.atvantage.com/legal-information/", - "type": "EMAIL", - "value": "info@atvantage.com" - } - ], - "industry": "IT service provider, IT consulting, Cloud Platforms, Data & AI, Software Engineering, UX Design, Digital Strategy, Process Optimization, Technology Integration, Other software development", - "lead_attractiveness_score": 72, - "scoring_reasoning": "The lead attractiveness is good due to excellent personal contact points, including direct emails and phone numbers for key officers, and strong general contact accessibility. However, the company's size, being part of the TIMETOACT GROUP with over 1,700 employees, significantly exceeds the target range (10-250), resulting in a substantial penalty to the overall score.", - "website": "http://www.atvantage.com" - }, - { - "company_name": "Synthflow AI", - "description": "Developer of an artificial intelligence voice agent platform designed to automate and scale phone call interactions for businesses. It offers a no-code platform for deploying voice AI agents that automate phone calls across contact center operations and business process outsourcing (BPO) at scale, helping mid-market and enterprise companies manage routine calls.", - "employee_count": "72", - "employees": [], - "general_contacts": [], - "industry": "Business/Productivity Software, AI Agents, Conversational AI, SaaS", - "lead_attractiveness_score": 30, - "scoring_reasoning": "Company size (72 employees) is a good fit for the ICP. However, no personal contact information or direct general contact points (email/phone) were found, significantly reducing the score.", - "website": "http://www.synthflow.ai" - }, - { - "company_name": "telli", - "description": "telli builds AI voice agents that convert leads into sales opportunities for B2C companies. They offer an AI-native phone system for managing both human and AI teams, automating tasks like lead qualification, reception, and appointment booking.", - "employee_count": "12", - "employees": [], - "general_contacts": [], - "industry": "AI phone agents, Business/Productivity Software, AI-powered call automation platform", - "lead_attractiveness_score": 20, - "scoring_reasoning": "Company size (12 employees) is a good fit for the ICP. However, no personal contact information or direct general contact points (email/phone) were found, significantly reducing the score.", - "website": "http://www.telli.com" - }, - { - "company_name": "ETECTURE GmbH", - "description": "ETECTURE GmbH is a holistic service provider for digital transformation, developing digital strategies, business models, solutions, and services across various industries. They offer customized software solutions, web technologies, consulting, and application management.", - "employee_count": "100-150", - "employees": [ - { - "email": null, - "linkedin_url": null, - "name": "Stefan Dangel", - "phone": null, - "role": "Managing Director / co-CEO", - "source_url": "http://www.etecture.de/legal-notice" - }, - { - "email": null, - "linkedin_url": null, - "name": "Francesco Loth", - "phone": null, - "role": "Managing Director / co-CEO", - "source_url": "http://www.etecture.de/legal-notice" - }, - { - "email": null, - "linkedin_url": null, - "name": "Heiko Wirth", - "phone": null, - "role": "Product Owner", - "source_url": "https://www.intentwire.com/companies/etecture" - }, - { - "email": null, - "linkedin_url": null, - "name": "Jana Bernold", - "phone": null, - "role": "Product Owner", - "source_url": "https://www.intentwire.com/companies/etecture" - } - ], - "general_contacts": [ - { - "category": "GENERAL_INFO", - "source_url": "http://www.etecture.de/legal-notice", - "type": "EMAIL", - "value": "info@etecture.de" - }, - { - "category": "GENERAL_INFO", - "source_url": "http://www.etecture.de/legal-notice", - "type": "PHONE", - "value": "+49 69 67737-0" - }, - { - "category": "GENERAL_INFO", - "source_url": "https://www.etecture.de/impressum", - "type": "PHONE", - "value": "+49 69 247510-100" - }, - { - "category": "GENERAL_INFO", - "source_url": "https://www.etecture.de/legal-notice", - "type": "PHONE", - "value": "+49 721 989732-0" - } - ], - "industry": "Digital Transformation Service Provider", - "lead_attractiveness_score": 55, - "scoring_reasoning": "Good fit based on company size (100-150 employees). Good accessibility with multiple general contact points. However, the score is lowered due to the absence of specific personal contact details (email/phone) for individual employees.", - "website": "http://www.etecture.de" - }, - { - "company_name": "arconsis IT-Solutions GmbH", - "description": "arconsis IT-Solutions GmbH is a German company founded in 2006, specializing in cloud-native, AI, and mobile enterprise software solutions. They offer services in AI scaling, cloud adoption, digital product ideation, and mobile enterprise solutions.", - "employee_count": "23", - "employees": [ - { - "email": null, - "linkedin_url": "https://www.linkedin.com/company/arconsis-it-solutions-gmbh", - "name": "Achim Baier", - "phone": null, - "role": "Managing Director", - "source_url": "http://www.arconsis.com/team" - }, - { - "email": null, - "linkedin_url": "https://www.linkedin.com/company/arconsis-it-solutions-gmbh", - "name": "Wolfgang Frank", - "phone": null, - "role": "Managing Director", - "source_url": "http://www.arconsis.com/team" - }, - { - "email": null, - "linkedin_url": "https://www.linkedin.com/company/arconsis-it-solutions-gmbh", - "name": "Johannes Tysiak", - "phone": null, - "role": "Managing Partner", - "source_url": "http://www.arconsis.com/team" - }, - { - "email": null, - "linkedin_url": "https://www.linkedin.com/company/arconsis-it-solutions-gmbh", - "name": "Ina Lange", - "phone": null, - "role": "Head of Administration", - "source_url": "http://www.arconsis.com/team" - }, - { - "email": null, - "linkedin_url": "https://www.linkedin.com/company/arconsis-it-solutions-gmbh", - "name": "Sebastian Wastl", - "phone": null, - "role": "Software Engineering", - "source_url": "http://www.arconsis.com/team" - }, - { - "email": null, - "linkedin_url": "https://www.linkedin.com/company/arconsis-it-solutions-gmbh", - "name": "Thimo Bess", - "phone": null, - "role": "Software Engineering", - "source_url": "http://www.arconsis.com/team" - }, - { - "email": null, - "linkedin_url": "https://www.linkedin.com/company/arconsis-it-solutions-gmbh", - "name": "Jonas Stubenrauch", - "phone": null, - "role": "Software Engineering & Partner", - "source_url": "http://www.arconsis.com/team" - }, - { - "email": null, - "linkedin_url": "https://www.linkedin.com/company/arconsis-it-solutions-gmbh", - "name": "Peter Vegh", - "phone": null, - "role": "Software Engineering", - "source_url": "http://www.arconsis.com/team" - }, - { - "email": null, - "linkedin_url": "https://www.linkedin.com/company/arconsis-it-solutions-gmbh", - "name": "Orlando Schäfer", - "phone": null, - "role": "Software Engineering", - "source_url": "http://www.arconsis.com/team" - }, - { - "email": null, - "linkedin_url": "https://www.linkedin.com/company/arconsis-it-solutions-gmbh", - "name": "Martina Holzhauer", - "phone": null, - "role": "Head of Marketing", - "source_url": "http://www.arconsis.com/team" - }, - { - "email": null, - "linkedin_url": "https://www.linkedin.com/company/arconsis-it-solutions-gmbh", - "name": "Andreas Repp", - "phone": null, - "role": "Software Engineering & Partner", - "source_url": "http://www.arconsis.com/team" - }, - { - "email": null, - "linkedin_url": "https://www.linkedin.com/company/arconsis-it-solutions-gmbh", - "name": "Tomislav Erić", - "phone": null, - "role": "Software Engineering", - "source_url": "http://www.arconsis.com/team" - }, - { - "email": null, - "linkedin_url": "https://www.linkedin.com/company/arconsis-it-solutions-gmbh", - "name": "Alexandros Koufatzis", - "phone": null, - "role": "Software Engineering", - "source_url": "http://www.arconsis.com/team" - }, - { - "email": null, - "linkedin_url": "https://www.linkedin.com/company/arconsis-it-solutions-gmbh", - "name": "Moritz Ellerbrock", - "phone": null, - "role": "Software Engineering", - "source_url": "http://www.arconsis.com/team" - }, - { - "email": null, - "linkedin_url": "https://www.linkedin.com/company/arconsis-it-solutions-gmbh", - "name": "Patrick Jung", - "phone": null, - "role": "Software Engineering", - "source_url": "http://www.arconsis.com/team" - }, - { - "email": null, - "linkedin_url": "https://www.linkedin.com/company/arconsis-it-solutions-gmbh", - "name": "Nina Derksen", - "phone": null, - "role": "Marketing Assistant", - "source_url": "http://www.arconsis.com/team" - }, - { - "email": null, - "linkedin_url": "https://www.linkedin.com/company/arconsis-it-solutions-gmbh", - "name": "Jennifer Frankenfeld", - "phone": null, - "role": "Software Engineering", - "source_url": "http://www.arconsis.com/team" - }, - { - "email": null, - "linkedin_url": "https://www.linkedin.com/company/arconsis-it-solutions-gmbh", - "name": "Adrian Wörle", - "phone": null, - "role": "Software Engineering", - "source_url": "http://www.arconsis.com/team" - }, - { - "email": null, - "linkedin_url": "https://www.linkedin.com/company/arconsis-it-solutions-gmbh", - "name": "Christian Navolskyi", - "phone": null, - "role": "Software Engineering", - "source_url": "http://www.arconsis.com/team" - }, - { - "email": null, - "linkedin_url": "https://www.linkedin.com/company/arconsis-it-solutions-gmbh", - "name": "Felix Schmid", - "phone": null, - "role": "Software Engineering", - "source_url": "http://www.arconsis.com/team" - }, - { - "email": null, - "linkedin_url": "https://www.linkedin.com/company/arconsis-it-solutions-gmbh", - "name": "Mario Walz", - "phone": null, - "role": "Software Engineering", - "source_url": "http://www.arconsis.com/team" - }, - { - "email": null, - "linkedin_url": "https://www.linkedin.com/company/arconsis-it-solutions-gmbh", - "name": "Asher Ahsan", - "phone": null, - "role": "Software Engineering", - "source_url": "http://www.arconsis.com/team" - }, - { - "email": null, - "linkedin_url": "https://www.linkedin.com/company/arconsis-it-solutions-gmbh", - "name": "Thomas Horn", - "phone": null, - "role": "Recruiting", - "source_url": "http://www.arconsis.com/team" - }, - { - "email": null, - "linkedin_url": "https://www.linkedin.com/company/arconsis-it-solutions-gmbh", - "name": "Jessica Woschek", - "phone": null, - "role": "Software Engineering", - "source_url": "http://www.arconsis.com/team" - }, - { - "email": null, - "linkedin_url": "https://www.linkedin.com/company/arconsis-it-solutions-gmbh", - "name": "Karim Elsayed", - "phone": null, - "role": "Software Engineering", - "source_url": "http://www.arconsis.com/team" - }, - { - "email": null, - "linkedin_url": "https://www.linkedin.com/company/arconsis-it-solutions-gmbh", - "name": "Michael Fischer", - "phone": null, - "role": "Software Engineering", - "source_url": "http://www.arconsis.com/team" - }, - { - "email": null, - "linkedin_url": "https://www.linkedin.com/company/arconsis-it-solutions-gmbh", - "name": "Markus Lindner", - "phone": null, - "role": "Software Engineering", - "source_url": "http://www.arconsis.com/team" - }, - { - "email": null, - "linkedin_url": "https://www.linkedin.com/company/arconsis-it-solutions-gmbh", - "name": "Ghassen Ksouri", - "phone": null, - "role": "UI/UX Design", - "source_url": "http://www.arconsis.com/team" - }, - { - "email": null, - "linkedin_url": "https://www.linkedin.com/company/arconsis-it-solutions-gmbh", - "name": "Vera Kirchgessner", - "phone": null, - "role": "Marketing Assistant", - "source_url": "http://www.arconsis.com/team" - }, - { - "email": null, - "linkedin_url": "https://www.linkedin.com/company/arconsis-it-solutions-gmbh", - "name": "Subash Shrestha", - "phone": null, - "role": "Software Engineering", - "source_url": "http://www.arconsis.com/team" - }, - { - "email": null, - "linkedin_url": "https://www.linkedin.com/company/arconsis-it-solutions-gmbh", - "name": "Lars Gavris", - "phone": null, - "role": "Software Engineering", - "source_url": "http://www.arconsis.com/team" - }, - { - "email": null, - "linkedin_url": "https://www.linkedin.com/company/arconsis-it-solutions-gmbh", - "name": "Ana Milutinovic", - "phone": null, - "role": "Data Engineering & Visualization", - "source_url": "http://www.arconsis.com/team" - }, - { - "email": null, - "linkedin_url": "https://www.linkedin.com/company/arconsis-it-solutions-gmbh", - "name": "Sebastian Nikol", - "phone": null, - "role": "UI/UX Design", - "source_url": "http://www.arconsis.com/team" - }, - { - "email": null, - "linkedin_url": "https://www.linkedin.com/company/arconsis-it-solutions-gmbh", - "name": "Evangelos Gkountouras", - "phone": null, - "role": "Software Engineering", - "source_url": "http://www.arconsis.com/team" - }, - { - "email": null, - "linkedin_url": "https://www.linkedin.com/company/arconsis-it-solutions-gmbh", - "name": "Gerd Augsburg", - "phone": null, - "role": "Software Engineering", - "source_url": "http://www.arconsis.com/team" - }, - { - "email": null, - "linkedin_url": "https://www.linkedin.com/company/arconsis-it-solutions-gmbh", - "name": "Julia Kranz", - "phone": null, - "role": "Back Office", - "source_url": "http://www.arconsis.com/team" - }, - { - "email": null, - "linkedin_url": "https://www.linkedin.com/company/arconsis-it-solutions-gmbh", - "name": "Khue Ngo", - "phone": null, - "role": "Software Engineering", - "source_url": "http://www.arconsis.com/team" - }, - { - "email": null, - "linkedin_url": "https://www.linkedin.com/company/arconsis-it-solutions-gmbh", - "name": "Maximilian Walz", - "phone": null, - "role": "Software Engineering", - "source_url": "http://www.arconsis.com/team" - }, - { - "email": null, - "linkedin_url": "https://www.linkedin.com/company/arconsis-it-solutions-gmbh", - "name": "Dániel Vásárhelyi", - "phone": null, - "role": "Software Engineering", - "source_url": "http://www.arconsis.com/team" - } - ], - "general_contacts": [ - { - "category": "GENERAL_INFO", - "source_url": "http://www.arconsis.com/imprint", - "type": "EMAIL", - "value": "contact@arconsis.com" - }, - { - "category": "GENERAL_INFO", - "source_url": "http://www.arconsis.com/imprint", - "type": "PHONE", - "value": "+49 (0)721 / 98 97 71-0" - }, - { - "category": "GENERAL_INFO", - "source_url": "http://www.arconsis.com/imprint", - "type": "PHONE", - "value": "+49 (0)6851 974 3011" - } - ], - "industry": "Cloud-native, AI, and Mobile Enterprise Software Solutions", - "lead_attractiveness_score": 58, - "scoring_reasoning": "Excellent fit based on company size (23 employees, within the 10-250 target range). Good accessibility with general contact points. The score is moderate due to the lack of specific personal contact details (email/phone) for individual employees.", - "website": "http://www.arconsis.com" - }, - { - "company_name": "SUSI&James GmbH", - "description": "Developer of digital employees based on artificial intelligence, designed to automate and optimize communication-intensive business processes through patented hybrid AI. They offer adaptable communication automation capabilities and cross-industry process optimization support, helping organizations relieve employees and achieve business goals faster and more cost-effectively.", - "employee_count": "38", - "employees": [ - { - "email": "alex.fischer@susiandjames.com", - "linkedin_url": null, - "name": "Dr. Alexander Fischer", - "phone": "+49 173 79 68 701", - "role": "Director Research & Development", - "source_url": "https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQG7koQkfmHBqp9yoVRRNzhc0MIagFlCdIvf2YQAGDo1aBsR0eLn-jj2uu-y0-hlPTdSn7m-hHn9lP6alHrLyug3Udah6DUOsMezBWMonOrCH0W-4p9dP3k5HmzKT9mbK3wVfeta2JRTPiDbtXX7Sg==" - }, - { - "email": "julian.gerhard@susiandjames.com", - "linkedin_url": null, - "name": "Julian Gerhard", - "phone": "+49 152 34 63 70 86", - "role": "Chief Technology Officer", - "source_url": "https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQG7koQkfmHBqp9yoVRRNzhc0MIagFlCdIvf2YQAGDo1aBsR0eLn-jj2uu-y0-hlPTdSn7m-hHn9lP6alHrLyug3Udah6DUOsMezBWMonOrCH0W-4p9dP3k5HmzKT9mbK3wVfeta2JRTPiDbtXX7Sg==" - }, - { - "email": "recruiting@susiandjames.com", - "linkedin_url": null, - "name": "Jennifer Höbel", - "phone": "+49 174 33 19 207", - "role": "Head of Administration", - "source_url": "https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQG7koQkfmHBqp9yoVRRNzhc0MIagFlCdIvf2YQAGDo1aBsR0eLn-jj2uu-y0-hlPTdSn7m-hHn9lP6alHrLyug3Udah6DUOsMezBWMonOrCH0W-4p9dP3k5HmzKT9mbK3wVfeta2JRTPiDbtXX7Sg==" - }, - { - "email": "torsten.lenz@susiandjames.com", - "linkedin_url": null, - "name": "Torsten Lenz", - "phone": "+49 175 73 07 055", - "role": "Director Sales & Marketing", - "source_url": "https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQG7koQkfmHBqp9yoVRRNzhc0MIagFlCdIvf2YQAGDo1aBsR0eLn-jj2uu-y0-hlPTdSn7m-hHn9lP6alHrLyug3Udah6DUOsMezBWMonOrCH0W-4p9dP3k5HmzKT9mbK3wVfeta2JRTPiDbtXX7Sg==" - }, - { - "email": "kathrin.froehlich@susiandjames.com", - "linkedin_url": null, - "name": "Kathrin Fröhlich", - "phone": "+49 171 12 54 668", - "role": "Sales Manager", - "source_url": "https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQG7koQkfmHBqp9yoVRRNzhc0MIagFlCdIvf2YQAGDo1aBsR0eLn-jj2uu-y0-hlPTdSn7m-hHn9lP6alHrLyug3Udah6DUOsMezBWMonOrCH0W-4p9dP3k5HmzKT9mbK3wVfeta2JRTPiDbtXX7Sg==" - }, - { - "email": "jannis.marlafekas@susiandjames.com", - "linkedin_url": null, - "name": "Jannis Marlafekas", - "phone": "+49 174 43 10 456", - "role": "Sales Manager", - "source_url": "https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQG7koQkfmHBqp9yoVRRNzhc0MIagFlCdIvf2YQAGDo1aBsR0eLn-jj2uu-y0-hlPTdSn7m-hHn9lP6alHrLyug3Udah6DUOsMezBWMonOrCH0W-4p9dP3k5HmzKT9mbK3wVfeta2JRTPiDbtXX7Sg==" - }, - { - "email": "medina.hodzic@susiandjames.com", - "linkedin_url": null, - "name": "Medina Hodžić", - "phone": "+49 173 796 86 54", - "role": "Digital Communications Officer", - "source_url": "https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQG7koQkfmHBqp9yoVRRNzhc0MIagFlCdIvf2YQAGDo1aBsR0eLn-jj2uu-y0-hlPTdSn7m-hHn9lP6alHrLyug3Udah6DUOsMezBWMonOrCH0W-4p9dP3k5HmzKT9mbK3wVfeta2JRTPiDbtXX7Sg==" - } - ], - "general_contacts": [ - { - "category": "GENERAL_INFO", - "source_url": "https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQGDsrkfKroaQHDaxOJ93AX6lZcDdrASBHcr_YXUKLV-AouTiYcYLUvHByDahaH2fGcFw_xSGWGhGIzXGNu2OLHxIAd4F7kPrQFd-GSguDJpA1NNPQPjs2KncO1nSJkYKAs2WYwq6Zp_4uKDBAtRuuV4", - "type": "EMAIL", - "value": "mail@susiandjames.com" - }, - { - "category": "GENERAL_INFO", - "source_url": "https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQGDsrkfKroaQHDaxOJ93AX6lZcDdrASBHcr_YXUKLV-AouTiYcYLUvHByDahaH2fGcFw_xSGWGhGIzXGNu2OLHxIAd4F7kPrQFd-GSguDJpA1NNPQPjs2KncO1nSJkYKAs2WYwq6Zp_4uKDBAtRuuV4", - "type": "PHONE", - "value": "+49 621 483 493 42" - } - ], - "industry": "IT and Communications, Business/Productivity Software, Artificial Intelligence as a Service, Process Optimization", - "lead_attractiveness_score": 100, - "scoring_reasoning": "Perfect fit due to ideal company size (38 employees), numerous personal contacts with email and phone, and comprehensive general contact information.", - "website": "http://www.susiandjames.com" - }, - { - "company_name": "Onsai", - "description": "Developer of an AI-powered voice automation platform designed to redefine guest communication and operational efficiency through intelligent, multilingual virtual agents for the hospitality industry. Their solutions automate hotel calls, bookings, and guest inquiries in multiple languages with brand-specific tones and seamless system integration.", - "employee_count": "10", - "employees": [], - "general_contacts": [ - { - "category": "GENERAL_INFO", - "source_url": "https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQHfXXDVP3kHoKre2VCOD3O2nHiLDLJxh1ZucxrxXEXNKhVppEdXMqK-wloFeKxqptFVgJwdLMwp56h_kAcblxpA50EhWfq1ugcLA7sVwrTrttcaC-_RX-9rXy1omKGoydRHMNTmGqeENEeq", - "type": "PHONE", - "value": "+49 030" - } - ], - "industry": "Business/Productivity Software, Artificial Intelligence, Hospitality Technology", - "lead_attractiveness_score": 30, - "scoring_reasoning": "Poor fit. While the company size (10 employees) is within the target range, no personal contact information (email/phone) for employees was found, and general contact information is incomplete (incomplete phone number, no general email found).", - "website": "http://www.onsai.com" - } -] diff --git a/leadfinder/out/perp_out.json b/leadfinder/out/perp_out.json deleted file mode 100644 index a73af24..0000000 --- a/leadfinder/out/perp_out.json +++ /dev/null @@ -1,17194 +0,0 @@ -[ - { - "connections": [ - { - "category": "SUBSIDIARY", - "context": "Host Europe Group was acquired by GoDaddy in 2016/2017. GoDaddy integrated HEG's brands including Host Europe, 123Reg, Domain Factory, and Heart Internet into its global platform.", - "partner_name": "GoDaddy", - "people": [ - "Blake Irving (GoDaddy CEO)", - "Patrick Pulvermüller (HEG Group CEO)" - ], - "source_type": "GoDaddy newsroom press release, Wikipedia" - }, - { - "category": "SUBSIDIARY", - "context": "Webfusion Ltd is Host Europe's sister company in the UK, part of the same corporate group.", - "partner_name": "Webfusion Ltd", - "people": [], - "source_type": "ZoomInfo company profile" - } - ], - "target_company": "Host Europe GmbH" - }, - { - "connections": [ - { - "category": "REFERENCE_CLIENT", - "context": "PPW is the licensing agency for FC Barcelona and other top-level European football clubs", - "partner_name": "FC Barcelona", - "people": [], - "source_type": "PPW website (ppwlicensing.com)" - }, - { - "category": "REFERENCE_CLIENT", - "context": "PPW is the licensing agency for Atlético Madrid", - "partner_name": "Atlético Madrid", - "people": [], - "source_type": "PPW website (ppwlicensing.com)" - }, - { - "category": "REFERENCE_CLIENT", - "context": "PPW is the licensing agency for FC Internazionale Milano", - "partner_name": "FC Internazionale Milano", - "people": [], - "source_type": "PPW website (ppwlicensing.com)" - }, - { - "category": "REFERENCE_CLIENT", - "context": "PPW is the licensing agency for Manchester City F.C.", - "partner_name": "Manchester City F.C.", - "people": [], - "source_type": "PPW website (ppwlicensing.com)" - }, - { - "category": "REFERENCE_CLIENT", - "context": "PPW represents Peppa Pig as a brand facilitator and licensing agency", - "partner_name": "Peppa Pig", - "people": [], - "source_type": "PPW website (ppwlicensing.com)" - }, - { - "category": "REFERENCE_CLIENT", - "context": "PPW represents Hey Duggee as a brand facilitator and licensing agency", - "partner_name": "Hey Duggee", - "people": [], - "source_type": "PPW website (ppwlicensing.com)" - }, - { - "category": "REFERENCE_CLIENT", - "context": "PPW represents Moomin as a brand facilitator and licensing agency", - "partner_name": "Moomin", - "people": [], - "source_type": "PPW website (ppwlicensing.com)" - }, - { - "category": "REFERENCE_CLIENT", - "context": "PPW represents Mr. Men Little Miss as a brand facilitator and licensing agency", - "partner_name": "Mr. Men Little Miss", - "people": [], - "source_type": "PPW website (ppwlicensing.com)" - }, - { - "category": "REFERENCE_CLIENT", - "context": "PPW represents Masha and the Bear as a brand facilitator and licensing agency", - "partner_name": "Masha and the Bear", - "people": [], - "source_type": "PPW website (ppwlicensing.com)" - }, - { - "category": "REFERENCE_CLIENT", - "context": "PPW represents Natural History Museum as a lifestyle IP brand", - "partner_name": "Natural History Museum", - "people": [], - "source_type": "PPW website (ppwlicensing.com)" - }, - { - "category": "REFERENCE_CLIENT", - "context": "PPW represents BMW as a lifestyle IP brand", - "partner_name": "BMW", - "people": [], - "source_type": "PPW website (ppwlicensing.com)" - }, - { - "category": "REFERENCE_CLIENT", - "context": "PPW represents Pantone as a lifestyle IP brand", - "partner_name": "Pantone", - "people": [], - "source_type": "PPW website (ppwlicensing.com)" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "The House of Minerva is working with PPW to identify and approach Western brands for the Chinese market; services include brand research, contract negotiation, project management and product approvals oversight", - "partner_name": "The House of Minerva", - "people": [], - "source_type": "The House of Minerva website" - } - ], - "target_company": "PPW" - }, - { - "connections": [ - { - "category": "SUBSIDIARY", - "context": "GoDaddy acquired Host Europe Group in 2016. Host Europe is now part of GoDaddy's portfolio alongside other brands including 123Reg, Domain Factory, and Heart Internet.", - "partner_name": "GoDaddy", - "people": [ - "Blake Irving (GoDaddy CEO)", - "Patrick Pulvermüller (HEG Group CEO)" - ], - "source_type": "GoDaddy newsroom press release" - } - ], - "target_company": "Host Europe GmbH" - }, - { - "connections": [ - { - "category": "SUBSIDIARY", - "context": "GoDaddy acquired Host Europe Group in 2016. Host Europe is now part of GoDaddy's portfolio alongside other brands such as 123Reg, Domain Factory, and Heart Internet.", - "partner_name": "GoDaddy", - "people": [ - "Blake Irving (GoDaddy CEO)", - "Patrick Pulvermüller (HEG Group CEO)" - ], - "source_type": "GoDaddy newsroom press release" - } - ], - "target_company": "Host Europe GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Incline Equity Partners made an investment in Perfect Power Wash and is partnering to support strategic growth through greenfield expansion and technology/operations support", - "partner_name": "Incline Equity Partners", - "people": [ - "Evan Weinstein (Incline Equity Partners)", - "Mike Palubiak (Perfect Power Wash)", - "Adam Hood (Perfect Power Wash)" - ], - "source_type": "Company website -> Investment announcement" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "MelCap Partners served as PPW's exclusive investment banker and financial advisor in the transaction with Incline Equity Partners", - "partner_name": "MelCap Partners", - "people": [], - "source_type": "M&A advisor website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Company119 provided digital marketing services including paid search advertising, social media marketing, content creation and SEO for Perfect Power Wash", - "partner_name": "Company119", - "people": [], - "source_type": "Company119 website -> Case study/portfolio work" - } - ], - "target_company": "PPW" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Signed overarching agreement to source, train and upskill nurses in India for the German market. Partnership commits to sourcing over 500 candidates per year using Certif-ID's digital credentialing and recruitment technology.", - "partner_name": "Apollo Hospitals Group", - "people": [ - "Timothy Miller (Certif-ID)" - ], - "source_type": "Company website blog post, PR Newswire press release" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partnership to create an international gateway for recruiting technical experts from India. NSDC aims to support 3 million candidates to secure international employment by 2025 using Certif-ID's technology.", - "partner_name": "NSDC (National Skill Development Corporation)", - "people": [], - "source_type": "PR Newswire press release" - } - ], - "target_company": "Certif-ID International GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "rt-solutions.de has developed a dual study program in business informatics with FHDW for over 15 years. The company pays all tuition and examination fees for FHDW students, and many rt-solutions.de employees are FHDW graduates. rt-solutions.de employees also teach courses at the university as professors and lecturers.", - "partner_name": "FHDW (Fachhochschule der Wirtschaft) Bergisch Gladbach", - "people": [], - "source_type": "Company website -> Partner information page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Prof. Dr.-Ing. Henning Trsek, who has been with rt-solutions.de since 2014, is the Head of the Department of Networked Automation Systems at TH OWL. This indicates an active research partnership and academic collaboration.", - "partner_name": "TH OWL (Technische Hochschule Ostwestfalen-Lippe)", - "people": [ - "Prof. Dr.-Ing. Henning Trsek" - ], - "source_type": "Company website -> Team/Leadership page" - } - ], - "target_company": "rt-solutions.de GmbH" - }, - { - "connections": [ - { - "category": "SUBSIDIARY", - "context": "Xantaro Group acquired NetDescribe GmbH in August 2024. Initially entered into strategic partnership in March 2024 before acquisition.", - "partner_name": "NetDescribe", - "people": [ - "Elmar Prem (NetDescribe GmbH)" - ], - "source_type": "Company website -> News and Press, Partner website" - }, - { - "category": "SUBSIDIARY", - "context": "Integrated into Xantaro Group as a specialist for SOC and IT security services. Operates under 'Xantaro Group' descriptor while maintaining brand identity.", - "partner_name": "anykey GmbH", - "people": [ - "Jürgen Städing (Xantaro Group)", - "Wirtz (anykey)" - ], - "source_type": "Partner website -> Blog article" - }, - { - "category": "SUBSIDIARY", - "context": "Xantaro Group acquired nicos, a managed services specialist. Integration expands technology partners to include Cisco Systems, Fortinet, and Cato Networks.", - "partner_name": "nicos", - "people": [ - "Gerold Arheilger (Xantaro Group CEO)" - ], - "source_type": "Third-party news source, Partner website" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Key technology partner for network design and maintenance. Multiple customer testimonials reference Juniper hardware support and collaboration.", - "partner_name": "Juniper Networks", - "people": [], - "source_type": "Company website -> News and Press, Case Studies" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Key technology partner in network design and building operations since 2007.", - "partner_name": "Nokia", - "people": [], - "source_type": "Company website -> News and Press" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "NetDescribe (now part of Xantaro Group) works with Splunk as a leading expert in the DACH region for network and security automation.", - "partner_name": "Splunk", - "people": [], - "source_type": "Company website -> News and Press" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Technology partner through nicos integration. Significant partnership expanding Xantaro's bandwidth in enterprise market.", - "partner_name": "Cisco Systems", - "people": [], - "source_type": "Third-party news source" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Technology partner of nicos, now part of Xantaro Group partnership ecosystem.", - "partner_name": "Fortinet", - "people": [], - "source_type": "Third-party news source" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Technology partner of nicos, now part of Xantaro Group partnership ecosystem.", - "partner_name": "Cato Networks", - "people": [], - "source_type": "Third-party news source" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Xantaro serves as chosen Juniper, Infinera, A10 Networks, and Arista network support partner for 6+ years, providing professional network engineering and support services.", - "partner_name": "Gamma", - "people": [], - "source_type": "Company website -> Case Studies" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Works with Xantaro and Juniper to maintain network uptime and reliability.", - "partner_name": "CBC", - "people": [], - "source_type": "Company website -> Case Studies" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Xantaro provided support for migration to DE-CIX Apollon platform in sensitive project phase.", - "partner_name": "DE-CIX", - "people": [], - "source_type": "Company website -> Case Studies" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Global company customer of nicos (now part of Xantaro Group).", - "partner_name": "Dr. Oetker", - "people": [], - "source_type": "Third-party news source" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Global company customer of nicos (now part of Xantaro Group).", - "partner_name": "ebm-papst", - "people": [], - "source_type": "Third-party news source" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Global company customer of nicos (now part of Xantaro Group).", - "partner_name": "KfW", - "people": [], - "source_type": "Third-party news source" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Global company customer of nicos (now part of Xantaro Group).", - "partner_name": "MUBEA", - "people": [], - "source_type": "Third-party news source" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Global company customer of nicos (now part of Xantaro Group).", - "partner_name": "EMAG", - "people": [], - "source_type": "Third-party news source" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "UK alternative network partner helping connect Britain and increase broadband capability to consumers.", - "partner_name": "Alternet", - "people": [], - "source_type": "Company website -> YouTube video" - } - ], - "target_company": "Xantaro" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Strategic partnership announced by Codilar to elevate eCommerce capabilities, offering integrated fulfillment and digital commerce solutions to clients", - "partner_name": "Codilar", - "people": [], - "source_type": "Company website -> Blog/Partnership announcement" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Leading IT consulting and system integration partner providing consulting and implementation support for fulfillmenttools' order management system; won Thalia tender together with fulfillmenttools", - "partner_name": "adesso", - "people": [], - "source_type": "fulfillmenttools website -> Partner Overview, Press releases" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Global tech services and engineering solutions partner enabling digital transformation through software development and tech innovations", - "partner_name": "EPAM", - "people": [], - "source_type": "fulfillmenttools website -> Partner Overview" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Strategic partner combining strategic approaches with technology insights for digital goals across B2B, B2C and retail markets", - "partner_name": "IMPACT", - "people": [], - "source_type": "fulfillmenttools website -> Partner Overview" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partner supporting digitization strategy and digital commerce application implementation", - "partner_name": "best it", - "people": [], - "source_type": "fulfillmenttools website -> Partner Overview" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Digital agency specializing in e-commerce solutions and brand strategies", - "partner_name": "Webmatch", - "people": [], - "source_type": "fulfillmenttools website -> Partner Overview" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partner specializing in modernization and integration of software solutions", - "partner_name": "eCube", - "people": [], - "source_type": "fulfillmenttools website -> Partner Overview" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Leader in KPI-driven optimization of digital sales channels and e-commerce ecosystems", - "partner_name": "SHOPMACHER", - "people": [], - "source_type": "fulfillmenttools website -> Partner Overview" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Development studio specializing in digital transformation and innovation", - "partner_name": "Turbine Kreuzberg", - "people": [], - "source_type": "fulfillmenttools website -> Partner Overview" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Market leader in German-speaking book retail using fulfillmenttools' order management system for omnichannel fulfillment across various channels", - "partner_name": "Thalia", - "people": [ - "Marco Rebohm (Thalia - Managing Director Logistics & Supply Chain)", - "Udo Rauch (fulfillmenttools - Managing Director)" - ], - "source_type": "Press releases, fulfillmenttools website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "One of Europe's leading retailers using fulfillmenttools' platform to streamline order processing and inventory management across multiple countries, online shops, physical stores, and marketplaces", - "partner_name": "Deichmann", - "people": [ - "Severin Canisius (Deichmann - CIO)", - "Udo Rauch (fulfillmenttools - Managing Director)" - ], - "source_type": "Retail Tech Innovation Hub article" - }, - { - "category": "SUBSIDIARY", - "context": "fulfillmenttools is a spin-off from REWE digital, part of the REWE Group; REWE Group invested USD 17 million in fulfillmenttools", - "partner_name": "REWE Group", - "people": [ - "Christoph Eltze (REWE Group - Chief Digital and Technology Officer)", - "Udo Rauch (fulfillmenttools - Managing Director)" - ], - "source_type": "Press releases, YouTube video, fulfillmenttools website" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "fulfillmenttools uses Google Cloud solutions for its platform", - "partner_name": "Google Cloud", - "people": [], - "source_type": "YouTube video" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Deloitte consultancy services support fulfillmenttools in serving retailers in the DACH region and beyond", - "partner_name": "Deloitte", - "people": [], - "source_type": "YouTube video" - } - ], - "target_company": "fulfillmenttools" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Investor in tradingtwins, completed €1 million capital investment round", - "partner_name": "Engelhardt Kaupp Kiefer & Co.", - "people": [], - "source_type": "News article (nordic9.com)" - } - ], - "target_company": "tradingtwins GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Official partner since October 2024. Strategic partnership combining areto's Data & AI expertise with Vodafone's 5G and IoT capabilities for digital transformation solutions.", - "partner_name": "Vodafone Business", - "people": [], - "source_type": "Company website -> Strategic Partnerships section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Strategic cooperation to support customers in DACH region with Data Analytics & KI projects, combining IT infrastructure expertise with data strategy and implementation.", - "partner_name": "enthus", - "people": [ - "Christian Uhl (enthus)", - "Jan Strackbein (areto group)" - ], - "source_type": "Company website -> Strategic Partnerships section, Blog" - }, - { - "category": "SUBSIDIARY", - "context": "Fixed component of areto group based in Lisbon, Portugal. Provides nearshore team with 13+ years experience and 400+ completed projects in cloud data platforms, data virtualization, and data warehouse automation.", - "partner_name": "Passio Consulting", - "people": [], - "source_type": "Company website -> Nearshoring section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Strategic technology partner with long-standing close collaboration based on shared innovation understanding, certified expertise, and deep technical know-how.", - "partner_name": "Microsoft", - "people": [], - "source_type": "Company website -> Technology Partners section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Strategic technology partner with long-standing close collaboration for data platform solutions.", - "partner_name": "Snowflake", - "people": [], - "source_type": "Company website -> Technology Partners section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Strategic technology partner with long-standing close collaboration for cloud infrastructure and data solutions.", - "partner_name": "AWS", - "people": [], - "source_type": "Company website -> Technology Partners section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Strategic technology partner with long-standing close collaboration for enterprise data applications.", - "partner_name": "SAP", - "people": [], - "source_type": "Company website -> Technology Partners section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Strategic technology partner with long-standing close collaboration for data analytics and AI solutions.", - "partner_name": "Databricks", - "people": [], - "source_type": "Company website -> Technology Partners section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Client project: Implementation of enterprise-wide data platform.", - "partner_name": "Helm AG", - "people": [], - "source_type": "Company website -> Business Cases section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Client project: Development of data strategy including data warehouse implementation.", - "partner_name": "IT.NRW", - "people": [], - "source_type": "Company website -> Business Cases section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Client project: Data warehouse modernization.", - "partner_name": "Goldhofer", - "people": [], - "source_type": "Company website -> Business Cases section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Client project: Enterprise-wide data warehouse implementation.", - "partner_name": "C&A", - "people": [], - "source_type": "Company website -> Business Cases section" - } - ], - "target_company": "areto group" - }, - { - "connections": [], - "target_company": "DuMont Group" - }, - { - "connections": [ - { - "category": "SUBSIDIARY", - "context": "The Platform Group acquired Hood Media GmbH in February 2024, making Hood.de part of TPG's Consumer Goods segment. Hood is now a subsidiary of The Platform Group.", - "partner_name": "The Platform Group", - "people": [ - "Dr. Dominik Benner (The Platform Group)" - ], - "source_type": "Company website (The Platform Group), ecommercenews.eu, northdata.com" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Hood.de is listed as part of Tradebyte's Retailer Network, indicating a formal partnership for marketplace integration and seller management.", - "partner_name": "Tradebyte", - "people": [], - "source_type": "Tradebyte website (Retailer Network page)" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "HOOD Group established a cooperation with IREB in 2007 as a Training and Platinum Partner. Note: This refers to HOOD Group (a consulting firm founded in 2001), not Hood Media GmbH (the marketplace founded in 1999).", - "partner_name": "IREB", - "people": [], - "source_type": "HOOD-Group.com website (History page)" - } - ], - "target_company": "Hood Media GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Since 2021, Deutsche Telekom has actively supported SK Gaming's Project Avarosa to help female and non-binary players achieve professional esports status. Listed as a partner on SK Gaming's partners page.", - "partner_name": "Deutsche Telekom", - "people": [], - "source_type": "Company website -> Partners page, Project Avarosa page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Strategic partnership announced between SK Gaming and RECARO Gaming for gaming chairs and ergonomic seating solutions. RECARO Gaming products (Exo, Nxt, Aer) designed to enhance gaming performance for SK Gaming players.", - "partner_name": "RECARO Gaming", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Sony listed as partner providing visual experiences and services to SK Gaming and the esports community, leveraging 40+ years of experience in technology partnerships.", - "partner_name": "Sony", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Wortmann AG, Europe's largest independent IT company, listed as technology partner providing IT products and services to SK Gaming.", - "partner_name": "Wortmann AG", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "SanDisk listed as partner delivering innovative Flash solutions and advanced memory technologies for SK Gaming's infrastructure.", - "partner_name": "SanDisk", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Matrix listed as partner providing premium fitness equipment for SK Gaming facilities and player wellness programs.", - "partner_name": "Matrix (Johnson Health Tech)", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Mountain Dew partnership announced June 2017 to provide exclusive content and access to SK Gaming players via Mountain Dew Twitch channel as part of growing esports platform.", - "partner_name": "Mountain Dew", - "people": [], - "source_type": "Press release (PRNewswire), Company website" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "SK Gaming partnered with Kiloview for NDI technology solution to simplify production and streaming workflows. Kiloview's NDI CORE, N40, and Multiview Pro products provide video stream processing and IP-based business process management for esports production.", - "partner_name": "Kiloview", - "people": [ - "Bastiaan Brands (SK Gaming)" - ], - "source_type": "Kiloview case study/blog" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "nhow Gaming Studio at nhow Berlin certified by SK Gaming. Gaming rooms at nhow Berlin serve as official accommodation and training facility for SK Gaming players.", - "partner_name": "nhow Berlin", - "people": [], - "source_type": "Company website -> Content Creators page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "SK Gaming and CHERRY XTRFY announced strategic partnership for gaming peripherals and performance equipment.", - "partner_name": "CHERRY XTRFY", - "people": [], - "source_type": "Company website -> Content Creators page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "amaran partnership to light up SK Gaming content and live productions.", - "partner_name": "amaran", - "people": [], - "source_type": "Company website -> Content Creators page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Mercedes-Benz listed as sponsoring partner supporting SK Gaming alongside Deutsche Telekom and REWE.", - "partner_name": "Mercedes-Benz", - "people": [], - "source_type": "Blog article (shikenso.com)" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "REWE listed as sponsoring partner supporting SK Gaming alongside Deutsche Telekom and Mercedes-Benz.", - "partner_name": "REWE", - "people": [], - "source_type": "Blog article (shikenso.com)" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "1. FC Köln joined Deutsche Telekom, Mercedes-Benz, and REWE as partner supporting SK Gaming.", - "partner_name": "1. FC Köln", - "people": [], - "source_type": "Blog article (shikenso.com)" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "In Win and SK Gaming announced partnership for gaming hardware and PC components.", - "partner_name": "In Win", - "people": [], - "source_type": "Company website reference (Leaguepedia)" - } - ], - "target_company": "SK Gaming" - }, - { - "connections": [ - { - "category": "SUBSIDIARY", - "context": "In late 2024, Movinga was acquired by the Swiss moving company MoveAgain", - "partner_name": "MoveAgain", - "people": [], - "source_type": "Wikipedia" - }, - { - "category": "SUBSIDIARY", - "context": "In April 2023, Shift Group Ltd., a portfolio company of Fuel Ventures, acquired Movinga GmbH", - "partner_name": "Shift Group Ltd.", - "people": [], - "source_type": "Preqin Asset Profile" - }, - { - "category": "SUBSIDIARY", - "context": "Shift Group Ltd., a portfolio company of Fuel Ventures, acquired Movinga GmbH in April 2023", - "partner_name": "Fuel Ventures", - "people": [], - "source_type": "Preqin Asset Profile" - } - ], - "target_company": "Movinga" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "parcIT used Liferay PaaS to develop a new customer portal, integrating existing systems and developing new functions for their banking management solutions.", - "partner_name": "Liferay", - "people": [], - "source_type": "Company website -> Case Study" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "parcIT GmbH and itemis AG maintain an open and trusting partnership to jointly advance software development at parcIT in financial technology.", - "partner_name": "itemis AG", - "people": [], - "source_type": "itemis website -> References" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Successful collaboration with ICBC in the area of bank management (Banksteuerung).", - "partner_name": "ICBC", - "people": [], - "source_type": "Company website -> Case Study/Project" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Secure implementation of the real estate risk calculator IRIS for Volksbank Stuttgart.", - "partner_name": "Volksbank Stuttgart", - "people": [], - "source_type": "Company website -> Case Study/Project" - }, - { - "category": "REFERENCE_CLIENT", - "context": "All-in-one service provision for Bankhaus Mayer.", - "partner_name": "Bankhaus Mayer", - "people": [], - "source_type": "Company website -> Case Study/Project" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Targeted counterparty risk management implementation for SozialBank.", - "partner_name": "SozialBank", - "people": [], - "source_type": "Company website -> Case Study/Project" - }, - { - "category": "SUBSIDIARY", - "context": "parcIT GmbH is a subsidiary of Atruvia AG group, one of the largest IT service providers in Germany responsible for over 800 cooperative and Raiffeisen banks.", - "partner_name": "Atruvia AG", - "people": [], - "source_type": "Company website -> Case Study" - } - ], - "target_company": "parcIT GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Integration of Crowdfox Guided Buying solution into BeNeering's SRM system to improve user experience and process efficiency", - "partner_name": "BeNeering GmbH", - "people": [ - "Wolfgang Lang (Crowdfox GmbH, CEO)" - ], - "source_type": "BeNeering website -> Partner page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "CROWDFOX Professional listed as technology partner for purchase optimization", - "partner_name": "PSG Procurement", - "people": [], - "source_type": "PSG Procurement website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Crowdfox integrated with JAGGAER's e-procurement platform to optimize indirect procurement with cost and time savings", - "partner_name": "JAGGAER", - "people": [], - "source_type": "JAGGAER website -> Partner page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Customer recognized in top 3 of BME Business Awards 2025 for project using Crowdfox", - "partner_name": "TÜV NORD", - "people": [], - "source_type": "Crowdfox website -> Homepage" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Customer optimizing purchasing with Crowdfox, achieving measurable time and cost savings with simplified processes and harmonized data", - "partner_name": "Röhm", - "people": [], - "source_type": "Crowdfox website -> Homepage and case study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Referenced as global industrial company using Crowdfox for international procurement across multiple regions", - "partner_name": "Bekaert", - "people": [ - "Ton Geurts (former CPO at Bekaert)" - ], - "source_type": "Crowdfox website -> Homepage testimonial" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Referenced as global industrial company using Crowdfox for international procurement across multiple regions", - "partner_name": "AkzoNobel", - "people": [ - "Ton Geurts (former CPO at AkzoNobel)" - ], - "source_type": "Crowdfox website -> Homepage testimonial" - } - ], - "target_company": "Crowdfox" - }, - { - "connections": [], - "target_company": "Insoro" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "CHECK24 Ventures is listed as an investor in Legalbird", - "partner_name": "CHECK24", - "people": [], - "source_type": "Funding database (parsers.vc)" - } - ], - "target_company": "Legalbird" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Tappr is a GS1 Germany Solution Partner, with their Digital Product Passport solution aligned to GS1 standards", - "partner_name": "Tappr", - "people": [], - "source_type": "Company website -> Blog" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Yagora is a solution partner in the GS1 Germany network and GS1 Germany's official training partner for shopper research", - "partner_name": "Yagora", - "people": [], - "source_type": "Company website -> References/Network" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "TESISQUARE is a GS1 Germany Solution Partner", - "partner_name": "TESISQUARE", - "people": [], - "source_type": "Company website -> Blog" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Frankfurt-based FMCG start-up and first consumer goods manufacturer in Germany to implement GS1 Digital Link QR code standard on product packaging", - "partner_name": "Jake's Beverages", - "people": [], - "source_type": "Third-party publication -> retail-optimiser.de" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Solution partner listed on GS1 PINE portal, providing innovative labeling solutions", - "partner_name": "Carl Valentin GmbH", - "people": [], - "source_type": "GS1 PINE Partner Portal" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Featured solution provider on GS1 PINE, offering customized solutions for digital commerce and customer service", - "partner_name": "novomind AG", - "people": [], - "source_type": "GS1 PINE Partner Portal" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Featured solution provider on GS1 PINE, helping companies design digital content and product data across channels", - "partner_name": "pirobase imperia GmbH", - "people": [], - "source_type": "GS1 PINE Partner Portal" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Solution partner listed on GS1 PINE portal in data pool category", - "partner_name": "Systrion AG", - "people": [], - "source_type": "GS1 PINE Partner Portal" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Solution partner listed on GS1 PINE portal for in-store advertising", - "partner_name": "Cyreen LLC", - "people": [], - "source_type": "GS1 PINE Partner Portal" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Solution provider listed on GS1 PINE partner overview", - "partner_name": "Catalina Marketing Germany GmbH", - "people": [], - "source_type": "GS1 PINE Partner Portal" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Solution provider listed on GS1 PINE partner overview", - "partner_name": "Cash Infrastructure Project and Services GmbH", - "people": [], - "source_type": "GS1 PINE Partner Portal" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Solution provider listed on GS1 PINE partner overview", - "partner_name": "Onedot AG", - "people": [], - "source_type": "GS1 PINE Partner Portal" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Solution provider listed on GS1 PINE partner overview", - "partner_name": "Videojet Technologies", - "people": [], - "source_type": "GS1 PINE Partner Portal" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Solution provider listed on GS1 PINE partner overview", - "partner_name": "Comarch Software and Consulting AG", - "people": [], - "source_type": "GS1 PINE Partner Portal" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Solution provider listed on GS1 PINE partner overview", - "partner_name": "ALMEX GmbH", - "people": [], - "source_type": "GS1 PINE Partner Portal" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Collaboration partner with TESISQUARE starting in 2018 within GS1 Germany ecosystem", - "partner_name": "Webware Internet Solutions GmbH", - "people": [], - "source_type": "Third-party publication -> tesisquare.com" - } - ], - "target_company": "GS1 Germany GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Technology partner for Hitachi Content Platform (HCP) object storage solutions. Kramer & Crew uses HCP for Crew:Cloud™ backup, disaster recovery, and compliance archive services.", - "partner_name": "Hitachi Vantara", - "people": [], - "source_type": "Hitachi Vantara case study" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Distributor partner working with Kramer & Crew and Hitachi Vantara for implementation of HCP solutions at data centers.", - "partner_name": "TD SYNNEX", - "people": [], - "source_type": "Hitachi Vantara case study" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Technology partner providing solutions for Kramer & Crew's disaster recovery as a service offerings.", - "partner_name": "Nutanix", - "people": [], - "source_type": "Hitachi Vantara case study" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Technology partner providing solutions for Kramer & Crew's disaster recovery as a service offerings.", - "partner_name": "Commvault", - "people": [], - "source_type": "Hitachi Vantara case study" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Implementation and consulting partner. Kramer & Crew provides end-to-end consulting and implementation services for Microsoft Data & AI ecosystem solutions including Power BI and Microsoft Fabric.", - "partner_name": "Zebra BI", - "people": [], - "source_type": "Zebra BI partner page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Regional development partner supporting Kramer & Crew's expansion with new branch opening in Leipzig in October.", - "partner_name": "Invest Region Leipzig (IRL)", - "people": [ - "Michael Körner (Invest Region Leipzig)" - ], - "source_type": "Invest Region Leipzig news article" - } - ], - "target_company": "Kramer & Crew GmbH & Co. KG" - }, - { - "connections": [], - "target_company": "Colonia" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "CompaxDigital provided a converged digital engagement solution (BSS/OSS platform) for congstar's mobile, fixed, and broadband service rollout", - "partner_name": "CompaxDigital", - "people": [], - "source_type": "CompaxDigital website -> Case Study" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "nexnet handles subscription billing and accounts receivable management for congstar, processing almost 4 million invoices monthly for over 6 million customers", - "partner_name": "nexnet", - "people": [], - "source_type": "nexnet website -> Case Study" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "AOE has been congstar's IT development partner since 2008, supporting e-commerce, sales solutions, and microservices architecture transformation", - "partner_name": "AOE", - "people": [], - "source_type": "AOE website -> Case Study" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "agile42 collaborated with congstar starting in 2018 to implement ORGANIC agility® methodology and create a culture of collaboration in leadership", - "partner_name": "agile42", - "people": [], - "source_type": "agile42 website -> Case Study" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "T-Systems developed an agile security solution for congstar on AWS platform for anonymized data analysis and cloud infrastructure optimization", - "partner_name": "T-Systems", - "people": [], - "source_type": "T-Systems website -> Case Study" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "AWS platform and automation services support congstar's cloud infrastructure and security solution in collaboration with T-Systems", - "partner_name": "AWS", - "people": [], - "source_type": "T-Systems website -> Case Study" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Macaw has been congstar's lead social media agency since 2019, managing content creation, strategy, and community management across all social media platforms", - "partner_name": "Macaw", - "people": [ - "Emelie Izquierdo Torres (congstar)" - ], - "source_type": "Macaw website -> Case Study" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "RPC Partners created the congstar 'TWIST' product display designed to appeal to younger generations", - "partner_name": "RPC Partners", - "people": [], - "source_type": "RPC Partners website -> Case Study" - } - ], - "target_company": "congstar" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as a partner in ROCKETHOME's partner ecosystem", - "partner_name": "ZyXEL", - "people": [], - "source_type": "Preqin asset profile" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as a partner in ROCKETHOME's partner ecosystem", - "partner_name": "Nuki Home Solutions", - "people": [], - "source_type": "Preqin asset profile" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as a partner in ROCKETHOME's partner ecosystem", - "partner_name": "Diehl Controls", - "people": [], - "source_type": "Preqin asset profile" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as a partner in ROCKETHOME's partner ecosystem", - "partner_name": "KIWI", - "people": [], - "source_type": "Preqin asset profile" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as a partner in ROCKETHOME's partner ecosystem", - "partner_name": "Wilka Locking Technology", - "people": [], - "source_type": "Preqin asset profile" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as a partner in ROCKETHOME's partner ecosystem", - "partner_name": "VDE", - "people": [], - "source_type": "Preqin asset profile" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as a partner in ROCKETHOME's partner ecosystem", - "partner_name": "Intel", - "people": [], - "source_type": "Preqin asset profile" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Cooperation with FHDW Bergisch Gladbach campus offering dual Bachelor's degree program in Business Informatics specializing in Cyber Security", - "partner_name": "FHDW (Fachhochschule der Wirtschaft)", - "people": [], - "source_type": "FHDW website - Partner companies page" - } - ], - "target_company": "ROCKETHOME GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Technologiepartner for network intelligence, automation and security solutions", - "partner_name": "Arista Networks", - "people": [], - "source_type": "Company website -> Strategic Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Over 25 years partnership for Enterprise Service Management and IT Service & Operations Management solutions via Helix Platform", - "partner_name": "BMC Software", - "people": [], - "source_type": "Company website -> Strategic Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "5 Stars Partner for cybersecurity solutions offering threat protection", - "partner_name": "Check Point", - "people": [], - "source_type": "Company website -> Strategic Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Preferred Services Partner for Citrix product portfolio services and licensing", - "partner_name": "Citrix", - "people": [], - "source_type": "Company website -> Strategic Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Platinum Partner for storage and backup platforms across all customer segments", - "partner_name": "Dell Technologies", - "people": [], - "source_type": "Company website -> Strategic Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "License Solution Provider and technology partner for Microsoft software, services and technologies", - "partner_name": "Microsoft", - "people": [], - "source_type": "Company website -> Strategic Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Expert Partner and Maintenance Partner for access management, radio networks, mobile network expansion and antenna systems", - "partner_name": "Nokia", - "people": [], - "source_type": "Company website -> Strategic Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Premier status VMware solution and service provider under Broadcom for licenses, renewals and specialized services across eleven countries", - "partner_name": "Broadcom (VMware)", - "people": [], - "source_type": "Company website -> About page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Strategic partnership for modernizing ICT infrastructure at Deutsche Messe AG", - "partner_name": "Bisping & Bisping", - "people": [], - "source_type": "Company website -> About page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Client project for redesigning ICT infrastructure and network infrastructure modernization", - "partner_name": "Deutsche Messe AG", - "people": [], - "source_type": "Company website -> About page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Service partnership for on-site maintenance services for eTower 200 charging infrastructure", - "partner_name": "Compleo Charging Solutions GmbH & Co. KG", - "people": [], - "source_type": "Company website -> Portfolio page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Security analysis service integration as white-label solution for business customers", - "partner_name": "ennit", - "people": [], - "source_type": "Company website -> Portfolio page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Project partnership for intelligent LED street lighting modernization in Cologne", - "partner_name": "RheinNetz GmbH", - "people": [], - "source_type": "Company website -> Portfolio page" - } - ], - "target_company": "Axians Deutschland NW&S GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "ZENNER is a German sister company and leading manufacturer of high-quality meters. Brunata is part of a strong international partnership with ZENNER, together offering a complete value chain for the energy metering industry from manufacturing to IoT solutions.", - "partner_name": "ZENNER", - "people": [], - "source_type": "Company website -> Partnership description" - }, - { - "category": "SUBSIDIARY", - "context": "In 2018, Brunata was acquired by the family-owned German company Minol. Brunata became part of the Brunata-Minol-Zenner group, with Minol being a global leader in energy, measurement technology and data networks.", - "partner_name": "Minol", - "people": [], - "source_type": "Company website -> About us" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as associated entity with BRUNATA-METRONA GmbH, Cologne in company registry records, indicating a business relationship.", - "partner_name": "Stadtwerke Köln GmbH", - "people": [], - "source_type": "North Data company registry" - } - ], - "target_company": "BRUNATA-METRONA GmbH, Köln" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Official cooperative trial program for Harmony Air Traffic Flow Management (ATFM) system. Collaboration Agreement signed June 3, 2025. Three-month trial to evaluate ATFM capabilities in Vietnam's operational environment.", - "partner_name": "Metron Aviation", - "people": [ - "Kapri Kupper (Metron Aviation)" - ], - "source_type": "Company website -> Blog" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Technical assistance provider for CNS/ATM Master Plan development. Virginia-based firm awarded USTDA grant to help enhance and upgrade air traffic management in Vietnamese airspace.", - "partner_name": "MITRE Corporation", - "people": [], - "source_type": "USTDA website, Trade.gov" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Nokia providing IP/MPLS networking solution to replace legacy SDH transport system. Modernization project for improved security and reliability in South region of Vietnam. Quantum-Safe Network (QSN)-ready infrastructure deployment.", - "partner_name": "Nokia", - "people": [ - "Ho Sy Tung (VATM)", - "Jonathan Goh (Nokia)" - ], - "source_type": "Company website -> Press Release" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Cooperative agreement signed between Vietjet Air and VATM for collaboration.", - "partner_name": "Vietjet Air", - "people": [ - "Dinh Viet Thang (VATM)" - ], - "source_type": "Vietjet Air website -> News" - } - ], - "target_company": "VATM (Vietnam Air Traffic Management Corporation)" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Strategic partnership announced with joint development of a material compliance web portal. gds is a full-service provider for technical documentation and part of technotrans SE group.", - "partner_name": "gds GmbH", - "people": [ - "Ludger Heisterkamp (gds GmbH)", - "Martin Hecker (AmaliTech)" - ], - "source_type": "Company website -> Blog article" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Official partnership announced in April 2025. AmaliTech is Silverside's development partner across their entire brand portfolio, expanding technological capabilities and delivering AI solutions.", - "partner_name": "Silverside AI", - "people": [ - "Martin Hecker (AmaliTech)" - ], - "source_type": "Company website -> Blog article" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Client testimonial describing team expansion partnership for capacity expansion on new projects with long-term collaboration.", - "partner_name": "RockIT Manufacturing GmbH", - "people": [], - "source_type": "Company website -> Collaboration Models page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Interview featured on AmaliTech website indicating client relationship.", - "partner_name": "Deutsche Telekom", - "people": [ - "Thorsten Müller (Deutsche Telekom)" - ], - "source_type": "Company website -> Client Experience page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Cooperation since 2020. nexum AG members visited AmaliTech office in Ghana.", - "partner_name": "nexum AG", - "people": [], - "source_type": "Company website -> Client Experience page" - } - ], - "target_company": "AmaliTech Services GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Xaver and Upvest partnered to enable end-to-end digital pension, savings, and investment solutions. Upvest provides custody and brokerage infrastructure with API-first architecture. Xaver chose Upvest for its API-first infrastructure, proven scalability, and regulatory robustness to enable financial institutions to launch products in weeks.", - "partner_name": "Upvest", - "people": [ - "Max Bachem (Xaver)", - "Martin Kassing (Upvest)" - ], - "source_type": "Company website blog, Financial news articles" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Xaver uses Qdrant's vector search infrastructure to power efficient AI-driven financial consultations. Qdrant provides the speed, reliability, and simplicity for Xaver's personalized financial advice platform.", - "partner_name": "Qdrant", - "people": [], - "source_type": "Qdrant case study" - } - ], - "target_company": "Xaver" - }, - { - "connections": [], - "target_company": "planting" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "rt-solutions.de has developed a dual study program in business informatics with FHDW in Bergisch Gladbach for over 15 years. rt-solutions.de pays all tuition and examination fees for FHDW students, and many rt-solutions.de employees have studied at FHDW. rt-solutions.de employees teach courses at FHDW as professors and lecturers.", - "partner_name": "FHDW (Fachhochschule der Wirtschaft)", - "people": [], - "source_type": "Company website -> Partner information page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Prof. Dr.-Ing. Henning Trsek is Head of the department 'Vernetzte Automatisierungssysteme' (Connected Automation Systems) at TH OWL and Senior Security Consultant at rt-solutions.de since 2014, indicating active research collaboration.", - "partner_name": "TH OWL (Technische Hochschule Ostwestfalen-Lippe)", - "people": [ - "Prof. Dr.-Ing. Henning Trsek (rt-solutions.de)" - ], - "source_type": "Company website -> Team information" - } - ], - "target_company": "rt-solutions.de GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "First cooperation partner of the Dyn Media Network, providing access to high-quality sports content for regional digital offerings", - "partner_name": "Funke Mediengruppe", - "people": [ - "Till Rixmann (Funke Mediengruppe)" - ], - "source_type": "Company website -> Blog" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "First cooperation partner of the Dyn Media Network", - "partner_name": "FRAMEN", - "people": [], - "source_type": "Company website -> Blog" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "First cooperation partner of the Dyn Media Network", - "partner_name": "Südwestdeutsche Medienholding (SWMH)", - "people": [], - "source_type": "Company website -> Blog" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "First cooperation partner of the Dyn Media Network, publisher of handball-world.news", - "partner_name": "redsport UG", - "people": [], - "source_type": "Company website -> Blog" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Extended partnership since summer 2023, covering reach sales, sponsorships, deep integrations, YouTube sales and competitions", - "partner_name": "ProSiebenSat.1", - "people": [ - "Max Ehrhardt (Dyn Media)", - "Markus Messerer (Seven.One Media)" - ], - "source_type": "ProSiebenSat.1 website" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Strategic shareholder acquiring 42.5% stake, supporting growth, new business areas, and international expansion", - "partner_name": "Schwarz Group", - "people": [ - "Marc Hohenberg (Schwarz Group)" - ], - "source_type": "Company website -> Blog" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Strategic shareholder acquiring 6.5% minority stake, supporting growth and development of streaming platform", - "partner_name": "DFL Deutsche Fußball Liga", - "people": [], - "source_type": "Company website -> Blog" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Co-founder and remaining shareholder of Dyn Media", - "partner_name": "Axel Springer SE", - "people": [ - "Christian Seifert (Founder)" - ], - "source_type": "Company website -> Blog" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Payment processing and billing partner providing Optimized Checkout suite, Stripe Billing, and professional services for platform launch", - "partner_name": "Stripe", - "people": [ - "Andreas Heyden (Dyn Media CEO)" - ], - "source_type": "AWS and Stripe websites" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Infrastructure and cloud services partner supporting streaming platform scalability and reliability", - "partner_name": "Amazon Web Services (AWS)", - "people": [ - "Andreas Heyden (Dyn Media CEO)" - ], - "source_type": "AWS website" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "AI-powered video understanding technology partner for sports content creation and editorial empowerment", - "partner_name": "TwelveLabs", - "people": [], - "source_type": "TwelveLabs website" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Connectivity partner for Dyn Media streaming platform", - "partner_name": "Riedel Networks", - "people": [], - "source_type": "Riedel Networks website" - } - ], - "target_company": "Dyn" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Seed financing investor and strategic partner. Phoenix Contact Innovation Ventures invested in aedifion's seed round (June 2020) as the seventh portfolio company and continues as investor in Series B round (2025).", - "partner_name": "Phoenix Contact Innovation Ventures", - "people": [ - "Marcus Böker (Phoenix Contact Innovation Ventures)" - ], - "source_type": "Company website -> Investment/Partnership announcement, BitStone Capital website" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Early-stage investor in aedifion's seed financing round (2020) and continues to support the company through Series B round (2025).", - "partner_name": "BitStone Capital", - "people": [], - "source_type": "Company website -> Investment announcement" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Lead investor in Series B financing round (June 2025) via Eurazeo Smart City Fund II. European growth investor specializing in private equity, real estate, and infrastructure.", - "partner_name": "Eurazeo", - "people": [ - "Alice Besomi (Eurazeo)", - "Raphael Cattan (Eurazeo)" - ], - "source_type": "Company website -> Series B financing announcement" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Existing investor significantly increasing commitment in Series B round (2025). Continues support from seed round onwards.", - "partner_name": "Drees & Sommer", - "people": [], - "source_type": "Company website -> Series B financing announcement" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Europe's leading climate VC investor participating in Series B round (2025). Doubling down on investment in aedifion.", - "partner_name": "World Fund", - "people": [ - "Dr. Mark Windeknecht (World Fund)" - ], - "source_type": "Company website -> Series B financing announcement" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Long-standing investor continuing to support aedifion through Series B round (2025).", - "partner_name": "MOMENI Ventures", - "people": [], - "source_type": "Company website -> Series B financing announcement" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Long-standing investor continuing to support aedifion through Series B round (2025).", - "partner_name": "Bauwens Capital", - "people": [], - "source_type": "Company website -> Series B financing announcement" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Long-standing investor continuing to support aedifion through Series B round (2025).", - "partner_name": "LARTIS", - "people": [], - "source_type": "Company website -> Series B financing announcement" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Investor participating in Series B round (2025).", - "partner_name": "Family Office Hopp", - "people": [], - "source_type": "Company website -> Series B financing announcement" - } - ], - "target_company": "aedifion" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Xantaro is a Juniper Elite Plus Partner with over 10 years of successful collaboration, serving more than 200 joint customers. Xantaro operates XT3Lab, the largest Juniper partner lab in Europe.", - "partner_name": "Juniper Networks", - "people": [], - "source_type": "Company website -> Partner page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Xantaro is listed as a technology partner of Telehouse, specializing in technologies and software solutions for carriers, service providers, and data centre operators.", - "partner_name": "Telehouse", - "people": [], - "source_type": "Telehouse website -> Technology partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Xantaro and etalytics concluded an exclusive sales partnership to deliver intelligent energy-saving solutions in data centers and production facilities.", - "partner_name": "etalytics", - "people": [ - "Dr.-Ing. Niklas Panten (etalytics)" - ], - "source_type": "etalytics website -> Blog" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Gamma has engaged Xantaro as its chosen Juniper, Infinera, A10 Networks, and Arista network support partner for the last 6 years.", - "partner_name": "Gamma", - "people": [], - "source_type": "Company website -> Case studies/References" - }, - { - "category": "REFERENCE_CLIENT", - "context": "CBC works with Xantaro and Juniper to maintain network stability and uptime.", - "partner_name": "CBC", - "people": [], - "source_type": "Company website -> Case studies/References" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Xantaro provided support for DE-CIX's migration to the new Apollon platform.", - "partner_name": "DE-CIX", - "people": [], - "source_type": "Company website -> Case studies/References" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Dr Oetker is a customer of nicos group, which was acquired and integrated by Xantaro Group.", - "partner_name": "Dr Oetker", - "people": [], - "source_type": "Company website -> News/Acquisition announcement" - }, - { - "category": "REFERENCE_CLIENT", - "context": "ebm-papst is a customer of nicos group, which was acquired and integrated by Xantaro Group.", - "partner_name": "ebm-papst", - "people": [], - "source_type": "Company website -> News/Acquisition announcement" - }, - { - "category": "REFERENCE_CLIENT", - "context": "KfW Group is a customer of nicos group, which was acquired and integrated by Xantaro Group.", - "partner_name": "KfW Group", - "people": [], - "source_type": "Company website -> News/Acquisition announcement" - }, - { - "category": "REFERENCE_CLIENT", - "context": "MUBEA is a customer of nicos group, which was acquired and integrated by Xantaro Group.", - "partner_name": "MUBEA", - "people": [], - "source_type": "Company website -> News/Acquisition announcement" - }, - { - "category": "REFERENCE_CLIENT", - "context": "EMAG is a customer of nicos group, which was acquired and integrated by Xantaro Group.", - "partner_name": "EMAG", - "people": [], - "source_type": "Company website -> News/Acquisition announcement" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Cisco was added to Xantaro's list of technology partners through the acquisition of nicos group.", - "partner_name": "Cisco", - "people": [], - "source_type": "Company website -> News/Acquisition announcement" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Fortinet is a technology partner that nicos group works with, now part of Xantaro's expanded partner ecosystem.", - "partner_name": "Fortinet", - "people": [], - "source_type": "Company website -> News/Acquisition announcement" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Cato Networks is a technology partner that nicos group works with, now part of Xantaro's expanded partner ecosystem.", - "partner_name": "Cato Networks", - "people": [], - "source_type": "Company website -> News/Acquisition announcement" - }, - { - "category": "SUBSIDIARY", - "context": "anykey GmbH was acquired and integrated by Xantaro Group in November 2025 to expand data centre and IT security services.", - "partner_name": "anykey GmbH", - "people": [ - "Stephan Wirtz (anykey GmbH)", - "Jürgen Städing (Xantaro Group)" - ], - "source_type": "Company website -> News/Acquisition announcement" - }, - { - "category": "SUBSIDIARY", - "context": "nicos group was acquired and integrated by Xantaro Group to strengthen managed services credentials and enterprise market position.", - "partner_name": "nicos group", - "people": [ - "Axel Metzger (nicos)", - "Gerold Arheilger (Xantaro)" - ], - "source_type": "Company website -> News/Acquisition announcement" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Technimove is listed alongside Xantaro as a technology partner of Telehouse, providing transformation consultancy and migration solutions.", - "partner_name": "Technimove", - "people": [], - "source_type": "Telehouse website -> Technology partners page" - } - ], - "target_company": "Xantaro" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Ditto Music partnered with Pirate to host exclusive online workshops for the artist community", - "partner_name": "Ditto Music", - "people": [], - "source_type": "Company website -> Partnership mentions" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "PRS partnered with Pirate to host exclusive online workshops for the artist community", - "partner_name": "PRS", - "people": [], - "source_type": "Company website -> Partnership mentions" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Point Blank Music School partnered with Pirate to host exclusive online workshops for the artist community", - "partner_name": "Point Blank Music School", - "people": [], - "source_type": "Company website -> Partnership mentions" - } - ], - "target_company": "PIRATE" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Google Cloud Sales Partner of the Year 2024 - Alps; Google Cloud Premier Partner since 2017; Google Partner since 2011", - "partner_name": "Google Cloud", - "people": [ - "Kevin Ichhpurani (Google Cloud)" - ], - "source_type": "Company website, Google Cloud partner directory" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as formal partnership on CLOUDPILOTS website", - "partner_name": "VMware", - "people": [], - "source_type": "Company website - Partnerships section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as formal partnership on CLOUDPILOTS website", - "partner_name": "Nutanix", - "people": [], - "source_type": "Company website - Partnerships section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as formal partnership on CLOUDPILOTS website", - "partner_name": "Microsoft", - "people": [], - "source_type": "Company website - Partnerships section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Specialized in Freshworks products including Freshdesk, Freshservice, and Freshsales", - "partner_name": "Freshworks", - "people": [], - "source_type": "Company website, TIMETOACT GROUP website" - }, - { - "category": "SUBSIDIARY", - "context": "CLOUDPILOTS is an ISO-9001-certified subsidiary of TIMETOACT GROUP with over 650 employees across multiple locations", - "partner_name": "TIMETOACT GROUP", - "people": [], - "source_type": "Company website, TIMETOACT GROUP website" - } - ], - "target_company": "CLOUDPILOTS Software & Consulting GmbH" - }, - { - "connections": [ - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a known customer in Chudovo's portfolio of implemented projects", - "partner_name": "Deutsche Bank", - "people": [], - "source_type": "Chudovo website -> Company profile/rankings page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a known customer in Chudovo's portfolio of implemented projects", - "partner_name": "Evonik", - "people": [], - "source_type": "Chudovo website -> Company profile/rankings page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a known customer in Chudovo's portfolio of implemented projects", - "partner_name": "Nexans", - "people": [], - "source_type": "Chudovo website -> Company profile/rankings page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a known customer in Chudovo's portfolio of implemented projects", - "partner_name": "TP-Link", - "people": [], - "source_type": "Chudovo website -> Company profile/rankings page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a known customer in Chudovo's portfolio of implemented projects", - "partner_name": "Dell", - "people": [], - "source_type": "Chudovo website -> Company profile/rankings page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Provided software development services; customer testimonial from Manager of Dev Operations praising reduced delivery time and reliability", - "partner_name": "Corizon Health", - "people": [ - "David Wright (Corizon Health)" - ], - "source_type": "Chudovo website -> Customer testimonial/review" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Implemented web-based control software; CEO testimonial describing successful and cooperative partnership", - "partner_name": "Ferncast GmbH", - "people": [ - "Detlef Wiese (Ferncast GmbH)" - ], - "source_type": "Chudovo website -> Customer testimonial/review" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Chudovo took over development of custom Student Planner software managing Maracle's printing process for student agendas", - "partner_name": "Maracle Press", - "people": [], - "source_type": "Chudovo website -> Case study/portfolio" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Chudovo received Sortlist Trusted Partner status, an award recognizing financial stability, customer reviews, and high-quality profile", - "partner_name": "Sortlist", - "people": [], - "source_type": "Chudovo website -> Blog/partnership announcement" - } - ], - "target_company": "Chudovo" - }, - { - "connections": [ - { - "category": "SUBSIDIARY", - "context": "Blomesystem GmbH merged with iCD System GmbH to form GUS LAB GmbH as of May 1, 2023. Now a core component of GUS LAB's laboratory division.", - "partner_name": "Blomesystem GmbH", - "people": [ - "Kristin Schumann (GUS LAB)" - ], - "source_type": "Company website, ChemEurope" - }, - { - "category": "SUBSIDIARY", - "context": "iCD System GmbH merged with Blomesystem GmbH to form GUS LAB GmbH as of May 1, 2023. Now a core component of GUS LAB's laboratory division.", - "partner_name": "iCD System GmbH", - "people": [ - "Kristin Schumann (GUS LAB)" - ], - "source_type": "Company website, ChemEurope" - }, - { - "category": "SUBSIDIARY", - "context": "GUS LAB is a member and subsidiary of GSG GENII Software Group, a network of market-leading independent software companies.", - "partner_name": "GSG GENII Software Group", - "people": [ - "Matthias Siekmann (GENII CEO)" - ], - "source_type": "Company website, ChemEurope" - }, - { - "category": "SUBSIDIARY", - "context": "GUS Group became majority shareholder in DORNER. DORNER is now part of GUS Group's laboratory division alongside Blomesystem, iCD System, and MELOS.", - "partner_name": "DORNER GmbH & Co. KG", - "people": [ - "Karl-Eugen Dorner (Founder)", - "Christian Dorner", - "Dirk Bingler (GUS Group CEO)" - ], - "source_type": "DORNER website, Code & Co case study" - }, - { - "category": "SUBSIDIARY", - "context": "GUS Group acquired majority stake in MELOS, a leading provider of laboratory information systems (LIS). MELOS is now part of GUS Group's laboratory division.", - "partner_name": "MELOS GmbH", - "people": [ - "Dirk Bingler (GUS Group CEO)" - ], - "source_type": "Code & Co case study" - }, - { - "category": "SUBSIDIARY", - "context": "iVention is listed as a core component of GENII's laboratory division alongside GUS LAB, DORNER, and MELOS.", - "partner_name": "iVention", - "people": [], - "source_type": "Company website" - } - ], - "target_company": "GUS LAB GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "CM4all's software platform supports Deutsche Telekom's hosting service and web toolbox; white-label partnership", - "partner_name": "Deutsche Telekom", - "people": [], - "source_type": "Company website -> Partners section, Blog article" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "CM4all successfully supplies the Strato site builder as a white-label web toolbox", - "partner_name": "Strato", - "people": [], - "source_type": "Company website -> Partners section, Blog article" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "CM4all's SMB website builder platform is trusted by telecom and hosting provider Hostnet", - "partner_name": "Hostnet", - "people": [], - "source_type": "Blog article (OX Summit Partner announcement)" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "CM4all's SMB website builder platform is trusted by telecom and hosting provider Hetzner", - "partner_name": "Hetzner", - "people": [], - "source_type": "Blog article (OX Summit Partner announcement)" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "CM4all is an OX Summit Partner; formal partnership recognition", - "partner_name": "Open-Xchange", - "people": [], - "source_type": "Blog article (OX Summit Partner announcement)" - } - ], - "target_company": "CM4all GmbH" - }, - { - "connections": [ - { - "category": "REFERENCE_CLIENT", - "context": "Multi-service company listed as a well-known customer of pso", - "partner_name": "EWE", - "people": [], - "source_type": "Company website -> About/Customers section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "EWE subsidiary and customer of pso", - "partner_name": "osnatel", - "people": [], - "source_type": "Company website -> About/Customers section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "pso developed and operates Telekom Profis (320,000+ resellers), Telekom Direktvertrieb, employee incentive programs, and Telekom empfehlen (referral program). Certified Internet distribution partner of Deutsche Telekom.", - "partner_name": "Deutsche Telekom", - "people": [ - "Matthias Pirner (pso vertriebsprogramme GmbH)", - "Daniel Teufer (pso vertriebsprogramme GmbH)", - "Dietmar Meschede (pso vertriebsprogramme GmbH)" - ], - "source_type": "Company website -> About/Customers section, Telekom.de partner listing" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Direct vehicle insurer and customer of pso", - "partner_name": "Verti", - "people": [], - "source_type": "Company website -> About/Customers section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "E.ON subsidiary. pso developed complete solution including referral program, part-time agents, and distribution partner program on shared technical platform. Internationalized to Austria in 2017.", - "partner_name": "E WIE EINFACH", - "people": [], - "source_type": "Company website -> About/Customers section, Company history section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Digital business customer bank (Deutsche Bank offering and division) and customer of pso", - "partner_name": "FYRST", - "people": [], - "source_type": "Company website -> About/Customers section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Innovative direct insurer. pso developed streamlined referral program for FRIDAY's kilometer-based billing and monthly cancellation model.", - "partner_name": "FRIDAY", - "people": [], - "source_type": "Company website -> About/Customers section, Company history section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "InsureTech company and customer of pso", - "partner_name": "DFV Deutsche Familienversicherung", - "people": [], - "source_type": "Company website -> About/Customers section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Energy company that selected pso distribution solution for energy marketing", - "partner_name": "Yello Strom", - "people": [], - "source_type": "Company website -> Company history section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Operator of Telekom bonus program 'HappyDigits'. pso works in close collaboration with HappyDigits for Telekom Profis platform operation.", - "partner_name": "HappyDigits", - "people": [], - "source_type": "Company website -> Company history section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "pso offers Centrical platform for employee experience management, combining real-time performance management, personalized training, and gamification", - "partner_name": "Centrical", - "people": [], - "source_type": "Company website -> Solutions section" - } - ], - "target_company": "pso vertriebsprogramme GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Long-term strategic partnership in sign language technology development. Jomma GmbH provided expertise and deaf community consultation for Charamel's sign language avatar projects. Jomma employees actively participated in research and development.", - "partner_name": "Jomma GmbH", - "people": [ - "Alexander Stricker (Charamel GmbH)", - "Ralf Raule (Jomma GmbH)" - ], - "source_type": "Company website interview (netz-barrierefrei.de)" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Charamel is identified as a leading partner in the SiMAX project for sign language translation technology.", - "partner_name": "SiMAX Project", - "people": [], - "source_type": "Sign language companies documentation (sign.mt)" - } - ], - "target_company": "Charamel GmbH" - }, - { - "connections": [ - { - "category": "REFERENCE_CLIENT", - "context": "GITEC-IGIP GmbH has experience working with Asian Development Bank (HQ)", - "partner_name": "Asian Development Bank (ADB)", - "people": [], - "source_type": "DevelopmentAid.org - Organization profile" - }, - { - "category": "REFERENCE_CLIENT", - "context": "GITEC-IGIP GmbH has experience working with African Development Bank (HQ)", - "partner_name": "African Development Bank", - "people": [], - "source_type": "DevelopmentAid.org - Organization profile" - }, - { - "category": "SUBSIDIARY", - "context": "Member of GITEC-IGIP Consulting Group", - "partner_name": "IGIP mbH", - "people": [], - "source_type": "L.E.E. SÀRL website - GITEC-IGIP Group member list" - }, - { - "category": "SUBSIDIARY", - "context": "Member of GITEC-IGIP Consulting Group network in Africa", - "partner_name": "IGIP Afrique Bénin", - "people": [], - "source_type": "L.E.E. SÀRL website - GITEC-IGIP Group member list" - }, - { - "category": "SUBSIDIARY", - "context": "Member of GITEC-IGIP Consulting Group network in Africa", - "partner_name": "IGIP Afrique Gabon", - "people": [], - "source_type": "L.E.E. SÀRL website - GITEC-IGIP Group member list" - }, - { - "category": "SUBSIDIARY", - "context": "Member of GITEC-IGIP Consulting Group", - "partner_name": "S.T.E.", - "people": [], - "source_type": "L.E.E. SÀRL website - GITEC-IGIP Group member list" - }, - { - "category": "SUBSIDIARY", - "context": "Member of GITEC-IGIP Consulting Group specializing in bioenergy projects", - "partner_name": "L.E.E. SÀRL", - "people": [], - "source_type": "L.E.E. SÀRL website - GITEC-IGIP Group member list" - }, - { - "category": "SUBSIDIARY", - "context": "Member of GITEC-IGIP Consulting Group", - "partner_name": "MAVI Consultants", - "people": [], - "source_type": "L.E.E. SÀRL website - GITEC-IGIP Group member list" - }, - { - "category": "SUBSIDIARY", - "context": "Member of GITEC-IGIP Consulting Group network in Asia", - "partner_name": "GITEC LAO", - "people": [], - "source_type": "L.E.E. SÀRL website - GITEC-IGIP Group member list" - } - ], - "target_company": "GITEC-IGIP GmbH" - }, - { - "connections": [ - { - "category": "REFERENCE_CLIENT", - "context": "Uses Destination Solutions to offer a reach-strong platform to cooperation partners; describes DS as a competent technology partner", - "partner_name": "Usedom Tourismus GmbH", - "people": [ - "Michael Steuer (Usedom Tourismus GmbH)" - ], - "source_type": "Company website -> Customer testimonial" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Uses DS Channel Management to serve multiple booking channels; relies on DS support team", - "partner_name": "Rudek Vermietungsservice GbR", - "people": [ - "Renko Rudek (Rudek Vermietungsservice GbR)" - ], - "source_type": "Company website -> Customer testimonial" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Uses multiple Destination Solutions products including booking system; describes DS as the right tool and partner for efficient business operations", - "partner_name": "Odenwald Tourismus", - "people": [ - "Thomas Tretter (Odenwald Tourismus)" - ], - "source_type": "Company website -> Customer testimonial" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Developed WordPress MultiSite system with API integration to DS booking system; worked on multiple tourism website projects with DS integration", - "partner_name": "4eck-media", - "people": [], - "source_type": "4eck-media blog -> Technical integration case study" - } - ], - "target_company": "DS Destination Solutions GmbH" - }, - { - "connections": [ - { - "category": "SUBSIDIARY", - "context": "Greenplan started as a cooperation between DHL and the Mathematical Institute of the University of Bonn in 2016. DHL owned Greenplan until a management buyout in 2022 by Dr Clemens Beckmann and Florian Merget.", - "partner_name": "DHL", - "people": [ - "Dr Clemens Beckmann (Greenplan)", - "Florian Merget (Greenplan)", - "Katja Busch (DHL)" - ], - "source_type": "Company website -> Partners page, News articles" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Greenplan started as a research cooperation between DHL and the Mathematical Institute of the University of Bonn in 2016 as a research project to optimize transportation and route planning.", - "partner_name": "Mathematical Institute of the University of Bonn", - "people": [], - "source_type": "News articles, Company website" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "EPG offers Greenplan as part of their EPG ONE Suite for intelligent routing and supply chain solutions. EPG continues to develop Greenplan in close collaboration with customers and partners.", - "partner_name": "EPG", - "people": [], - "source_type": "EPG website -> Supply Chain Solutions page, Newsroom" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Case study: Urban delivery operator achieved 50% reduction in tours and improved capacity usage through Greenplan's dynamic tour optimization for 65,000 shipments per week.", - "partner_name": "Domestic postal operator", - "people": [], - "source_type": "Company website -> Customers page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Case study: Bangkok-based eCommerce company reduced driving distance by 39% and number of tours by 32% using Greenplan's fully dynamic tour planning for 6,326 shipments per week.", - "partner_name": "eCommerce player in Bangkok", - "people": [], - "source_type": "Company website -> Customers page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Case study: CSG increased effective service time by 80% and daily order fulfillment from 3 to 6 per technician using Greenplan's dynamic tour planning, while reducing CO2 emissions.", - "partner_name": "CSG", - "people": [], - "source_type": "Company website -> Customers page" - } - ], - "target_company": "Greenplan" - }, - { - "connections": [], - "target_company": "TalentSure" - }, - { - "connections": [ - { - "category": "REFERENCE_CLIENT", - "context": "Beckman Coulter Life Sciences partnered with Neyroo to develop and deploy a 3D Digital Campus platform for customer engagement, with a team of nearly 60 associates working alongside Neyroo vendor partners since October 2020.", - "partner_name": "Beckman Coulter Life Sciences", - "people": [ - "Dr. Mario Koksch (Beckman Coulter Life Sciences)", - "Dr. Markus Kaymer (Beckman Coulter Life Sciences)" - ], - "source_type": "Company website -> Case Study" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Ixpo worked alongside Neyroo as a vendor partner to develop Beckman Coulter Life Sciences' 3D Digital Campus platform.", - "partner_name": "Ixpo", - "people": [], - "source_type": "Company website -> Case Study" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "tournet collaborates with Neyroo on Corporate Metaverse Events, providing network infrastructure and IT solutions for event experiences.", - "partner_name": "tournet", - "people": [], - "source_type": "tournet website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Ubisoft engaged tournet (which works with Neyroo on metaverse events) for the Anno 117 Pax Romana booth at an event, receiving full-service package including gaming PCs, network infrastructure, and streaming solutions.", - "partner_name": "Ubisoft", - "people": [], - "source_type": "tournet website -> Case Study" - } - ], - "target_company": "Neyroo" - }, - { - "connections": [ - { - "category": "SUBSIDIARY", - "context": "piazza blu² is a subsidiary of novomind AG, specialising in the novomind portfolio for modern digital commerce", - "partner_name": "novomind AG", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Official partner for frontend development, working successfully with novomind for over 12 years on e-commerce projects", - "partner_name": "creativestyle GmbH", - "people": [], - "source_type": "novomind website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Competent partner for projects in product information management (PIM), media asset management (MAM), content management, and e-commerce", - "partner_name": "PRISCA GmbH", - "people": [], - "source_type": "novomind website -> Partners page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "B2B shop redesign project implemented with Shopware 6 for exclusive importer of Maxxis Tyres bicycle tyres in Germany and Austria", - "partner_name": "MAXXIS | Bikemarketing BMG GmbH", - "people": [], - "source_type": "ZYRES website -> News section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Developed a future-proof online shop uniting B2B and B2C commerce on a high-performance platform", - "partner_name": "DRK-Service GmbH", - "people": [], - "source_type": "ZYRES website -> News section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Collaboration on detailed product configurator and comprehensive B2B portal with direct connection to payment and manufacturing systems", - "partner_name": "Teba GmbH & Co. KG", - "people": [], - "source_type": "ZYRES website -> News section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Mentioned as partner providing exciting solutions alongside piazza blu² and ZYRES at Accelerator Day event", - "partner_name": "eCube GmbH", - "people": [], - "source_type": "ZYRES website -> News section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Collaboration on e-commerce projects and joint participation in industry events; Oliver Goerke from piazza blu² conducted sessions on AI in e-commerce", - "partner_name": "ZYRES", - "people": [ - "Oliver Goerke (piazza blu² GmbH)" - ], - "source_type": "ZYRES website -> News section" - } - ], - "target_company": "piazza blu² GmbH" - }, - { - "connections": [ - { - "category": "SUBSIDIARY", - "context": "kommIT GmbH & Co. KG became part of AKDB as of 01.01.2026. AKDB is now the legal successor of kommIT.", - "partner_name": "AKDB (Anstalt für Kommunale Datenverarbeitung in Bayern)", - "people": [], - "source_type": "Company website (komm-it.de)" - }, - { - "category": "SUBSIDIARY", - "context": "kommIT is a joint subsidiary of AKDB and Dataport.", - "partner_name": "Dataport", - "people": [], - "source_type": "Company website (akdb.de partner page)" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner on AKDB/kommIT partner page. Wilken Group includes multiple subsidiaries (Wilken AG, Wilken Neutrasoft GmbH, Wilken Entire GmbH, Wilken Rechenzentrum GmbH, Wilken Ciwi GmbH, Wilken Informationsmanagement GmbH, Wilken Prozessmanagement GmbH).", - "partner_name": "Wilken GmbH", - "people": [ - "Reiner Bielmeier" - ], - "source_type": "Company website (akdb.de partner page)" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as strategic partner for public sector IT solutions and digital transformation services.", - "partner_name": "Fujitsu Technology Solutions GmbH", - "people": [], - "source_type": "Company website (akdb.de partner page)" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner. Market leader in municipal debt collection and enforcement software.", - "partner_name": "DATA-team GmbH", - "people": [ - "Herr Bielmeier" - ], - "source_type": "Company website (akdb.de partner page)" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Strategic partnership established where Prosoz took over social, youth, and construction activities from AKDB and kommIT as of January 2026. All employees in these areas transferred to Prosoz.", - "partner_name": "Prosoz", - "people": [ - "Rudolf Schleyer (AKDB Vorstandsvorsitzender)" - ], - "source_type": "Kommune21 news article" - }, - { - "category": "SUBSIDIARY", - "context": "Telecomputer's sales activities were transferred to kommIT for customers outside Bavaria as of July 1, 2022, as part of AKDB integration.", - "partner_name": "Telecomputer GmbH", - "people": [], - "source_type": "Telecomputer.de news article" - } - ], - "target_company": "kommIT Gesellschaft für Informationstechnik mbH & Co. KG" - }, - { - "connections": [ - { - "category": "REFERENCE_CLIENT", - "context": "Customer testimonial: Dr. Louis Bahlmann, Managing Director of Luoro GmbH, provided a quote praising work4all's CRM capabilities for storing all customer communication in one system.", - "partner_name": "Luoro GmbH", - "people": [ - "Dr. Louis Bahlmann (Luoro GmbH)" - ], - "source_type": "Company website -> CRM & DMS Features page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Customer testimonial: Andrea Ziethen, Tax advisor at Breitenbach & Zimmermann, provided a quote highlighting work4all's DATEV integration for paperless document management.", - "partner_name": "Breitenbach & Zimmermann", - "people": [ - "Andrea Ziethen (Breitenbach & Zimmermann)" - ], - "source_type": "Company website -> Integrations page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "DPD hosts a dedicated work4all CRM information page, indicating a formal partnership or integration relationship.", - "partner_name": "DPD", - "people": [], - "source_type": "DPD website -> work4all CRM page" - } - ], - "target_company": "work4all" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as Embedded Part Manufacturer partner on DICAD's partners page", - "partner_name": "ANCOTECH GmbH", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as Embedded Part Manufacturer partner on DICAD's partners page", - "partner_name": "Leviat GmbH", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as Embedded Part Manufacturer partner on DICAD's partners page", - "partner_name": "Simpson Strong-Tie GmbH", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as Embedded Part Manufacturer partner on DICAD's partners page", - "partner_name": "Stahlwerk Annahütte (Max Aicher GmbH & CO.KG)", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as software partner on DICAD's partners page", - "partner_name": "RIB Software GmbH", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as software partner on DICAD's partners page", - "partner_name": "SOFTBAUWARE GmbH", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as Statics Software partner on DICAD's partners page", - "partner_name": "FRILO Software GmbH", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as ERP Software partner on DICAD's partners page", - "partner_name": "IBB – Informatik im Betonfertigteilbau GmbH", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as Statics Software partner on DICAD's partners page", - "partner_name": "Dlubal Software GmbH", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner on DICAD's partners page", - "partner_name": "InfoGraph GmbH", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Distribution partner for Belgium", - "partner_name": "ACS-Technics nv", - "people": [ - "Dominiek Vandendriessche" - ], - "source_type": "Company website -> Distribution Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Distribution partner for Luxembourg", - "partner_name": "C2IT", - "people": [ - "Olivier Cauret" - ], - "source_type": "Company website -> Distribution Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Distribution partner for Hungary", - "partner_name": "Archimage", - "people": [ - "Hortobágyi Tamás" - ], - "source_type": "Company website -> Distribution Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Distribution partner for Slovenia", - "partner_name": "Adriabim (E-Disti)", - "people": [ - "Toni Čančar" - ], - "source_type": "Company website -> Distribution Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "DICAD Systeme GmbH listed as partner on Cadenas partners page", - "partner_name": "Cadenas", - "people": [], - "source_type": "Cadenas website -> Partners page" - } - ], - "target_company": "DICAD Systeme GmbH" - }, - { - "connections": [], - "target_company": "innovas GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "mindshape GmbH is a certified TYPO3 Solution Partner and Gold member of TYPO3 Association, specializing in TYPO3 website development and implementation since 2004", - "partner_name": "TYPO3", - "people": [], - "source_type": "Company website -> Partner Directory, Official TYPO3 Partners page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "mindshape partnered with Klühspies, Germany's leading school trip provider, to relaunch their website in 2024 using TYPO3 v11.5 with mobile-first UX design and SEO optimization", - "partner_name": "Klühspies", - "people": [], - "source_type": "TYPO3 website -> Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "mindshape GmbH is listed as a cooperation partner and provider for Baumer HHS", - "partner_name": "Baumer HHS", - "people": [], - "source_type": "Company website -> Sustainability page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "mindshape GmbH provides 'mindshape CookieConsent' service used on Radiosoft's website", - "partner_name": "Radiosoft", - "people": [], - "source_type": "Company website -> Imprint/Legal Information" - } - ], - "target_company": "mindshape GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Sav.com implemented SedoMLS Platinum to integrate Sedo's domain inventory of 19M+ domains into their registrar platform, enabling users to purchase domains and pursue secondary market acquisitions.", - "partner_name": "Sav.com", - "people": [], - "source_type": "Company website -> Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Call.com acquired the ultra-premium domain call.com with support from Sedo's Domain Broker service.", - "partner_name": "Call.com", - "people": [ - "Rolf Larsen (Call.com, CEO)" - ], - "source_type": "Company website -> Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "IONOS engaged Sedo's domain broker to acquire multiple domain names across relevant top-level domains during their rebranding initiative from 1&1 Webhosting to IONOS.", - "partner_name": "IONOS", - "people": [ - "Claudia Frese (IONOS, Chief Brand Officer)" - ], - "source_type": "Company website -> Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "HubSpot secured a premium domain with Sedo's assistance.", - "partner_name": "HubSpot", - "people": [], - "source_type": "Company website -> Case Study" - }, - { - "category": "SUBSIDIARY", - "context": "Sedo has been a member of United Internet AG since 2001.", - "partner_name": "United Internet AG", - "people": [], - "source_type": "Company website -> About Us" - } - ], - "target_company": "Sedo" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Telonic is a reseller in the Allegro Packets network, distributing Allegro Network Multimeters and diagnostic tools to customers in administration, industry, logistics, banking, finance, and energy sectors.", - "partner_name": "Allegro Packets", - "people": [ - "Klaus Degner (Allegro Packets)" - ], - "source_type": "Allegro Packets blog" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Telonic is confirmed as a Juniper Networks Elite Plus Partner and has passed the Partner Assured Audit.", - "partner_name": "Juniper Networks", - "people": [], - "source_type": "Telonic website" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Telonic GmbH won Emerging Partner of the Year at Rapid7's 2025 Partner of the Year Awards.", - "partner_name": "Rapid7", - "people": [], - "source_type": "Rapid7 investor relations" - } - ], - "target_company": "Telonic GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Long-term partnership providing reliable data and voice connections for SoCura's services, from site connectivity to integrated IP telephony solutions", - "partner_name": "Vodafone", - "people": [], - "source_type": "SoCura website -> Service Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Strategic partnership with Microsoft as a key technology focus area for SoCura's service offerings", - "partner_name": "Microsoft", - "people": [], - "source_type": "SoCura website -> Service Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "SoCura listed as a Managed Detection and Response partner in Google Cloud's partner directory", - "partner_name": "Google Cloud", - "people": [], - "source_type": "Google Cloud Partner Directory" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Consultancy partner offering incident response retainer and security assessment services to Socura customers", - "partner_name": "Thomas Murray", - "people": [], - "source_type": "Socura UK website -> Partners page" - } - ], - "target_company": "SoCura" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "NEOMATIC explicitly identifies SAP as a 'Fokus-Partner' (focus partner). They are listed as a consulting company and app provider for SAP Fioneer end-to-end solutions, specializing in Customer Experience and Sales Performance Management with SAP.", - "partner_name": "SAP", - "people": [], - "source_type": "Company website -> Partner section, SAP Fioneer partner directory, SAP AppExchange" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "NEOMATIC identifies Salesforce as a 'Fokus-Partner' (focus partner). They are listed on Salesforce AppExchange as a consulting and solution provider specializing in Customer Experience and Sales Performance Management with Salesforce.", - "partner_name": "Salesforce", - "people": [ - "Marcus Findeisen (NEOMATIC AG)" - ], - "source_type": "Company website -> Partner section, Salesforce AppExchange" - } - ], - "target_company": "NEOMATIC AG" - }, - { - "connections": [], - "target_company": "lise GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "mobilezone agiert als strategischer Partner der Telefónica Deutschland mit exklusiven Partnerschaften für Netzvermarktung", - "partner_name": "Telefónica Deutschland", - "people": [], - "source_type": "Company website -> Partners/Ecosystem" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Exklusive Partnerschaft für Netzvermarktung und Tarifportfolio", - "partner_name": "Telekom", - "people": [], - "source_type": "Company website -> Partners/Ecosystem" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Exklusive Partnerschaft für Netzvermarktung und Tarifportfolio", - "partner_name": "Vodafone", - "people": [], - "source_type": "Company website -> Partners/Ecosystem" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Exklusive Partnerschaft für Netzvermarktung", - "partner_name": "yourfone", - "people": [], - "source_type": "Company website -> Partners/Ecosystem" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Exklusive Partnerschaft für Netzvermarktung", - "partner_name": "ay yildiz", - "people": [], - "source_type": "Company website -> Partners/Ecosystem" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Langjährige strategische Partnerschaft für Hardware-Vertrieb", - "partner_name": "Samsung", - "people": [], - "source_type": "Company website -> Partners/Ecosystem" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Langjährige strategische Partnerschaft für Hardware-Vertrieb", - "partner_name": "Xiaomi", - "people": [], - "source_type": "Company website -> Partners/Ecosystem" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Langjährige strategische Partnerschaft für Hardware-Vertrieb", - "partner_name": "Apple", - "people": [], - "source_type": "Company website -> Partners/Ecosystem" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partnerschaft mit bedeutendem Hersteller für Hardware-Vertrieb", - "partner_name": "Google", - "people": [], - "source_type": "Company website -> Partners/Ecosystem" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partnerschaft mit bedeutendem Hersteller für Hardware-Vertrieb", - "partner_name": "Nothing", - "people": [], - "source_type": "Company website -> Partners/Ecosystem" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Exklusive Vertriebspartnerschaft für Vertrieb freenet-eigener Tarife und Mobilfunkprodukte in allen MediaMarkt- und Saturn-Märkten, verlängert um weitere fünf Jahre", - "partner_name": "MediaMarktSaturn Deutschland", - "people": [], - "source_type": "Company website -> Press Release, Freenet AG press release" - }, - { - "category": "SUBSIDIARY", - "context": "mobilezone Deutschland wurde von freenet AG übernommen; freenet DLS GmbH (hundertprozentige Tochtergesellschaft der freenet AG) erwarb 100 Prozent der Geschäftsanteile", - "partner_name": "freenet AG", - "people": [ - "Robin Harries (freenet AG)" - ], - "source_type": "Company website -> News, Freenet AG press release" - } - ], - "target_company": "mobilezone Deutschland" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Growth partner that entered blueworld in 2021 to exploit the company's potential", - "partner_name": "AUCTUS Capital Partners AG", - "people": [], - "source_type": "Company website (AUCTUS) -> Investment page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "blueworld.group invested €12 million in reCup's growth financing round for reusable packaging solutions", - "partner_name": "reCup GmbH", - "people": [ - "Dr Rigbert Fischer (blueworld.group)" - ], - "source_type": "Company website (ox8-cf.com) -> Transaction advisory, blueworld.group website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Portfolio company of blueworld.group providing renewable energy storage solutions", - "partner_name": "Instagrid", - "people": [], - "source_type": "blueworld.group website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Portfolio company of blueworld.group focused on traditional bakery craftsmanship", - "partner_name": "Haus der Bäcker", - "people": [], - "source_type": "blueworld.group website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Portfolio company of blueworld.group providing automated logistics and transport planning", - "partner_name": "Smartlane", - "people": [], - "source_type": "blueworld.group website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Portfolio company of blueworld.group developing circular economy software for inventory management", - "partner_name": "Seventhings", - "people": [], - "source_type": "blueworld.group website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Portfolio company of blueworld.group providing B2B platform for retirement technologies distribution", - "partner_name": "Xaver", - "people": [], - "source_type": "blueworld.group website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Portfolio company of blueworld.group providing AI-powered external workforce management platform", - "partner_name": "pactos", - "people": [], - "source_type": "blueworld.group website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Portfolio company of blueworld.group developing global talent marketplace", - "partner_name": "Wandel", - "people": [], - "source_type": "blueworld.group website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Portfolio company of blueworld.group building omnichannel optician group in Europe", - "partner_name": "OG3", - "people": [], - "source_type": "blueworld.group website -> Portfolio" - } - ], - "target_company": "blueworld GmbH" - }, - { - "connections": [], - "target_company": "Ford Bank AG" - }, - { - "connections": [ - { - "category": "REFERENCE_CLIENT", - "context": "KI group built Eurowings Digital, a digital platform that provides seamless travel experience services for Eurowings customers", - "partner_name": "Eurowings", - "people": [], - "source_type": "Company website -> Case Study/Project" - }, - { - "category": "REFERENCE_CLIENT", - "context": "KI group built Saloodo!, a digital platform for DHL that connects small- to mid-sized freight shippers and carriers", - "partner_name": "DHL", - "people": [], - "source_type": "Company website -> Case Study/Project" - } - ], - "target_company": "KI group HQ" - }, - { - "connections": [], - "target_company": "Balu AI" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Werusys and Seeq work together as partners to offer advanced analytics solutions. Werusys is a Seeq certified instructor and delivers Seeq training and certification in Germany and Europe.", - "partner_name": "Seeq", - "people": [], - "source_type": "Company website -> Partner page, Services page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Werusys is an official System Integrator partner of AVEVA, supporting customers in integrating the PI System real-time infrastructure.", - "partner_name": "AVEVA (formerly OSIsoft)", - "people": [], - "source_type": "Company website -> Services page, Home page, Products page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Werusys Industrieinformatik and Delta Control cooperate on energy controlling and management, combining Werusys energy management system with Delta Control's patented iPDU® technology.", - "partner_name": "Delta Control", - "people": [], - "source_type": "Company website -> Products page" - }, - { - "category": "SUBSIDIARY", - "context": "Werusys was acquired by Amitec Germany GmbH (subsidiary of Amitec Norway), representing a merger/acquisition relationship.", - "partner_name": "Amitec Germany GmbH", - "people": [], - "source_type": "Company website -> Blog post" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as a strategic, global technology partner supporting Werusys in technological progress and staying ahead for customers.", - "partner_name": "Fraunhofer Gesellschaft SCAI", - "people": [], - "source_type": "Company website -> Services page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as a strategic, global technology partner supporting Werusys in technological progress.", - "partner_name": "Microsoft", - "people": [], - "source_type": "Company website -> Services page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as a strategic, global technology partner supporting Werusys in technological progress.", - "partner_name": "FH-Aachen", - "people": [], - "source_type": "Company website -> Services page" - } - ], - "target_company": "Werusys GmbH + Co. KG" - }, - { - "connections": [ - { - "category": "SUBSIDIARY", - "context": "KYOCERA completed the acquisition of ALOS GmbH in July 2018, making ALOS a subsidiary of KYOCERA Document Solutions Europe", - "partner_name": "KYOCERA Document Solutions Europe", - "people": [ - "Takuya Marubayashi (KYOCERA Document Solutions Europe)", - "Friedhelm Schnittker (ALOS GmbH)" - ], - "source_type": "Company website -> News article" - }, - { - "category": "REFERENCE_CLIENT", - "context": "ALOS has more than 60 years of experience working with Kraft as a client", - "partner_name": "Kraft", - "people": [], - "source_type": "Company website -> News article" - }, - { - "category": "REFERENCE_CLIENT", - "context": "ALOS has more than 60 years of experience working with BP as a client", - "partner_name": "BP", - "people": [], - "source_type": "Company website -> News article" - }, - { - "category": "REFERENCE_CLIENT", - "context": "ALOS has more than 60 years of experience working with AT&T as a client", - "partner_name": "AT&T", - "people": [], - "source_type": "Company website -> News article" - }, - { - "category": "REFERENCE_CLIENT", - "context": "ALOS has more than 60 years of experience working with Unilever as a client", - "partner_name": "Unilever", - "people": [], - "source_type": "Company website -> News article" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "ALOS GmbH is listed as a partner in SEH Technology's TAP (Technology Alliance Partner) program", - "partner_name": "SEH Technology", - "people": [], - "source_type": "Partner website -> TAP Program" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "ALOS GmbH is recognized as one of DocuWare's top partners in their worldwide network of over 800 partners", - "partner_name": "DocuWare", - "people": [], - "source_type": "Partner website -> Top Partners list" - } - ], - "target_company": "ALOS GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Joint development of Corona Validation Service for access control and check-in processes integration", - "partner_name": "T-Systems", - "people": [ - "Jannusch Frontzek (ticket i/O GmbH)" - ], - "source_type": "Company website -> Blog/Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Using ticket.io from the beginning to manage events and online ticket sales; scaled platform over several years", - "partner_name": "Bootshaus Cologne", - "people": [ - "Tom Thomas (Bootshaus Cologne)" - ], - "source_type": "Company website -> Testimonials/Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Event organizer using ticket.io for ticketing and event management", - "partner_name": "Nibirii Festival", - "people": [ - "Niclas Aigner (Nibirii Festival)" - ], - "source_type": "Company website -> Testimonials" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Event organizer offering online ticket sales via ticket i/O as additional service for customers", - "partner_name": "PollerWiesen", - "people": [ - "Arda Kus (PollerWiesen)" - ], - "source_type": "Company website -> Testimonials" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Event organizer using ticket.io for ticketing solutions", - "partner_name": "KASALLA", - "people": [ - "Basti Campmann (KASALLA)" - ], - "source_type": "Company website -> Testimonials" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Event venue using ticket.io for event management and online ticket sales", - "partner_name": "Mary Jane Berlin", - "people": [ - "Nhung Nguyen (Mary Jane Berlin)" - ], - "source_type": "Company website -> Testimonials" - } - ], - "target_company": "ticket i/O GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "T-Systems manages centrally issued keys and security certificates in a trust center for VDV eTicket Service", - "partner_name": "T-Systems", - "people": [], - "source_type": "Company website (eticket-deutschland.de) -> About Us section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partner providing the ASM-Tool web service available to business customers of VDV eTicket Service", - "partner_name": "IVU Traffic Technologies AG", - "people": [], - "source_type": "Company website (eticket-deutschland.de) -> About Us section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Service provider operating the central switching point (ZVM) for internal data exchange and enabling the interoperable network (ION) for eTicket Deutschland", - "partner_name": "Atos Worldline GmbH", - "people": [], - "source_type": "Company website (eticket-deutschland.de) -> About Us section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Independent company operating its own test laboratory for certification of ticketing components used in eTicket Deutschland", - "partner_name": "cetecom advanced GmbH", - "people": [], - "source_type": "Company website (eticket-deutschland.de) -> About Us section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "eos.ticketingsuite certified by VDV eTicket Service GmbH as 100% VDV-KA compliant; platform used for digital sales and ticketing", - "partner_name": "eos.uptrade", - "people": [ - "Mathias Hüske (eos.uptrade)" - ], - "source_type": "eos.uptrade website -> News article" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Close cooperation with Google Wallet to integrate Motics functionalities, enabling secure mobile phone tickets in Google Wallet", - "partner_name": "Google Wallet", - "people": [], - "source_type": "Company website (eticket-deutschland.de) -> Motics section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Close cooperation with PaderSprinter and Ride to integrate Motics functionalities into Google Wallet", - "partner_name": "PaderSprinter", - "people": [], - "source_type": "Company website (eticket-deutschland.de) -> Motics section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Close cooperation with Ride to integrate Motics functionalities into Google Wallet", - "partner_name": "Ride", - "people": [], - "source_type": "Company website (eticket-deutschland.de) -> Motics section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "First German public transport operator to use Motics; since 2021, public transport tickets via DB Navigator are protected using Motics", - "partner_name": "Deutsche Bahn", - "people": [], - "source_type": "Company website (eticket-deutschland.de) -> Motics section" - }, - { - "category": "SUBSIDIARY", - "context": "Limited partner in VDV eTicket Service GmbH & Co. KG", - "partner_name": "BVG Beteiligungsholding GmbH & Co. KG", - "people": [], - "source_type": "Company website (eticket-deutschland.de) -> About Us section" - }, - { - "category": "SUBSIDIARY", - "context": "Limited partner in VDV eTicket Service GmbH & Co. KG", - "partner_name": "DB Vertrieb GmbH", - "people": [], - "source_type": "Company website (eticket-deutschland.de) -> About Us section" - }, - { - "category": "SUBSIDIARY", - "context": "Limited partner in VDV eTicket Service GmbH & Co. KG", - "partner_name": "Duisburger Verkehrsgesellschaft AG", - "people": [], - "source_type": "Company website (eticket-deutschland.de) -> About Us section" - }, - { - "category": "SUBSIDIARY", - "context": "Limited partner in VDV eTicket Service GmbH & Co. KG", - "partner_name": "Hamburger Hochbahn AG", - "people": [], - "source_type": "Company website (eticket-deutschland.de) -> About Us section" - }, - { - "category": "SUBSIDIARY", - "context": "Limited partner in VDV eTicket Service GmbH & Co. KG", - "partner_name": "Kölner Verkehrsbetriebe AG", - "people": [], - "source_type": "Company website (eticket-deutschland.de) -> About Us section" - } - ], - "target_company": "VDV eTicket Service GmbH & Co. KG" - }, - { - "connections": [], - "target_company": "Onelity" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Co-development of the mobivention App Marketplace in a coding lab at Apple's European headquarters in Cork, Ireland. Close collaboration on iOS app distribution platform.", - "partner_name": "Apple", - "people": [ - "Dr Hubert Weid (mobivention GmbH)" - ], - "source_type": "Company website -> Press Release" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Infrastructure partner hosting the servers for the mobivention App Marketplace backend in Germany.", - "partner_name": "Hetzner Online", - "people": [], - "source_type": "Company website -> App Marketplace page" - } - ], - "target_company": "mobivention GmbH" - }, - { - "connections": [ - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client on FACCTs website", - "partner_name": "Eli Lilly and Company", - "people": [], - "source_type": "Company website -> Clients section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client on FACCTs website", - "partner_name": "Samsung", - "people": [], - "source_type": "Company website -> Clients section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client on FACCTs website", - "partner_name": "X, The Moonshot Factory", - "people": [], - "source_type": "Company website -> Clients section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client on FACCTs website", - "partner_name": "LG", - "people": [], - "source_type": "Company website -> Clients section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Vice President, Head of Molecular Design at Bayer provided testimonial describing FACCTs as 'a reliable partner in providing us with state-of-the-art workflows'", - "partner_name": "Bayer", - "people": [ - "Dr. Clara Christ (Bayer)" - ], - "source_type": "Company website -> Testimonials section" - } - ], - "target_company": "FACCTs GmbH" - }, - { - "connections": [ - { - "category": "SUBSIDIARY", - "context": "ProSyst was acquired by Bosch Software Innovations GmbH (a wholly-owned subsidiary of the Bosch Group) in February 2015 and merged into Bosch Group's software and systems unit", - "partner_name": "Bosch Group", - "people": [ - "Daniel Schellhoss (ProSyst)", - "Rainer Kallenbach (Bosch Software Innovations)" - ], - "source_type": "Company website, News articles, Wikipedia" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "ProSyst was among the first companies to join the OSGi Alliance in 1999 and made important contributions to OSGi specification development. ProSyst is a member of the OSGi Alliance board of directors", - "partner_name": "OSGi Alliance", - "people": [], - "source_type": "Wikipedia" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "IBM is listed as a fellow member of the OSGi Alliance board of directors alongside ProSyst", - "partner_name": "IBM", - "people": [], - "source_type": "Wikipedia" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Nokia is listed as a fellow member of the OSGi Alliance board of directors alongside ProSyst", - "partner_name": "Nokia", - "people": [], - "source_type": "Wikipedia" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Siemens is listed as a fellow member of the OSGi Alliance board of directors alongside ProSyst", - "partner_name": "Siemens", - "people": [], - "source_type": "Wikipedia" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Oracle Corporation is listed as a fellow member of the OSGi Alliance board of directors alongside ProSyst", - "partner_name": "Oracle Corporation", - "people": [], - "source_type": "Wikipedia" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Samsung is listed as a fellow member of the OSGi Alliance board of directors alongside ProSyst", - "partner_name": "Samsung", - "people": [], - "source_type": "Wikipedia" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Motorola is listed as a fellow member of the OSGi Alliance board of directors alongside ProSyst", - "partner_name": "Motorola", - "people": [], - "source_type": "Wikipedia" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "NTT is listed as a fellow member of the OSGi Alliance board of directors alongside ProSyst", - "partner_name": "NTT", - "people": [], - "source_type": "Wikipedia" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Telcordia is listed as a fellow member of the OSGi Alliance board of directors alongside ProSyst", - "partner_name": "Telcordia", - "people": [], - "source_type": "Wikipedia" - } - ], - "target_company": "ProSyst" - }, - { - "connections": [], - "target_company": "Veniture" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Ifunds listed as Microsoft gold partner on mscrm-addons reseller & partner program page, collaborating on Microsoft Dynamics 365 solutions", - "partner_name": "mscrm-addons.com", - "people": [], - "source_type": "mscrm-addons.com partner page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner on mscrm-addons page; uses mscrm-addons products in Microsoft Dynamics 365 implementations for over 10 years", - "partner_name": "EVE Consulting und Beteiligungsgesellschaft mbH", - "people": [], - "source_type": "mscrm-addons.com partner page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner on mscrm-addons page; has worked with mscrm-addons for several years on customer projects", - "partner_name": "Digia", - "people": [], - "source_type": "mscrm-addons.com partner page" - }, - { - "category": "SUBSIDIARY", - "context": "Listed as IT-Services, Software, Web client of Layer2 Solutions; appears to be related entity within Ifunds group", - "partner_name": "Ifunds Nederland B.V.", - "people": [], - "source_type": "Layer2 Solutions clients page" - } - ], - "target_company": "Ifunds Germany GmbH" - }, - { - "connections": [ - { - "category": "REFERENCE_CLIENT", - "context": "pso developed the concept for Deutsche Telekom's online-based partner program (Telekom Profis) with over 320,000 intermediaries and operates it as full-service. Also manages Telekom Direktvertrieb, employee incentive programs, and Telekom empfehlen (friend referral program). Certified Internet distribution partner of Telekom Deutschland GmbH.", - "partner_name": "Deutsche Telekom", - "people": [ - "Matthias Pirner (pso vertriebsprogramme GmbH)", - "Daniel Teufer (pso vertriebsprogramme GmbH)", - "Dietmar Meschede (pso vertriebsprogramme GmbH)" - ], - "source_type": "Company website -> Case Study, Telekom official partner directory" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Multi-service company EWE is listed as a named customer of pso for distribution solutions.", - "partner_name": "EWE", - "people": [], - "source_type": "Company website -> Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "EWE subsidiary osnatel is a named customer of pso.", - "partner_name": "osnatel", - "people": [], - "source_type": "Company website -> Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Direct vehicle insurer Verti is a named customer of pso for distribution solutions.", - "partner_name": "Verti", - "people": [], - "source_type": "Company website -> Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "E.ON subsidiary E WIE EINFACH is a named customer. pso developed a complete solution consisting of referral program, part-time intermediaries, and classic distribution partner program on a shared technical platform. Internationalization to Austria occurred in 2017.", - "partner_name": "E WIE EINFACH", - "people": [], - "source_type": "Company website -> Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Digital business customer bank FYRST (Deutsche Bank offering and division) is a named customer of pso.", - "partner_name": "FYRST", - "people": [], - "source_type": "Company website -> Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Innovative direct insurer FRIDAY is a named customer. pso developed a lean referral program for the digital car insurance company with mileage-based billing and monthly cancellation options.", - "partner_name": "FRIDAY", - "people": [], - "source_type": "Company website -> Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "InsureTech company DFV Deutsche Familienversicherung is a named customer of pso.", - "partner_name": "DFV Deutsche Familienversicherung", - "people": [], - "source_type": "Company website -> Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Yello Strom chose a distribution solution from pso for energy marketing.", - "partner_name": "Yello Strom", - "people": [], - "source_type": "Company website -> Case Study" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "pso works in close collaboration with HappyDigits, the operator of Deutsche Telekom's bonus program, for the operation of Telekom Profis partner program.", - "partner_name": "HappyDigits", - "people": [], - "source_type": "Company website -> Case Study" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Centrical is offered as part of pso's omnichannel distribution solutions, providing modern employee experience with real-time performance management, personalized training, and gamification.", - "partner_name": "Centrical", - "people": [], - "source_type": "Company website -> Product offering" - } - ], - "target_company": "pso vertriebsprogramme GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "I-D Media is listed as a Solution Partner on Contentful's partner page, experienced in building with Contentful solutions and services", - "partner_name": "Contentful", - "people": [], - "source_type": "Contentful website -> Partner Directory" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "I-D Media is listed as a Silver Partner on Ibexa's partner page, specializing in Ibexa Digital Experience Platform implementation", - "partner_name": "Ibexa", - "people": [], - "source_type": "Ibexa website -> Partner Directory" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Gothaer Insurance is mentioned as a client relying on I-D Media's expertise for digital experience platform", - "partner_name": "Gothaer Insurance", - "people": [], - "source_type": "Contentful website -> Partner page, I-D Media website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "NBank is listed as a client of I-D Media", - "partner_name": "NBank", - "people": [], - "source_type": "Contentful website -> Partner page, I-D Media website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Nintendo is mentioned as a client relying on I-D Media's expertise", - "partner_name": "Nintendo", - "people": [], - "source_type": "Contentful website -> Partner page, I-D Media website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Skoda is listed as a client of I-D Media", - "partner_name": "Skoda", - "people": [], - "source_type": "Contentful website -> Partner page, I-D Media website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Sky is mentioned as a client relying on I-D Media's expertise", - "partner_name": "Sky", - "people": [], - "source_type": "Contentful website -> Partner page, I-D Media website" - }, - { - "category": "SUBSIDIARY", - "context": "I-D Media has been part of the Dohmen Digital Group since 2024", - "partner_name": "Dohmen Digital Group", - "people": [], - "source_type": "Contentful website -> Partner page, I-D Media website" - }, - { - "category": "SUBSIDIARY", - "context": "Intentive GmbH is a group company within Dohmen Digital Group alongside I-D Media", - "partner_name": "Intentive GmbH", - "people": [], - "source_type": "Contentful website -> Partner page, I-D Media website" - }, - { - "category": "SUBSIDIARY", - "context": "Intentive Systems GmbH is a group company within Dohmen Digital Group alongside I-D Media", - "partner_name": "Intentive Systems GmbH", - "people": [], - "source_type": "Contentful website -> Partner page, I-D Media website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Agravis is listed as a client served by Dohmen Digital Group agencies", - "partner_name": "Agravis", - "people": [], - "source_type": "Contentful website -> Partner page, I-D Media website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Barmenia is listed as a client served by Dohmen Digital Group agencies", - "partner_name": "Barmenia", - "people": [], - "source_type": "Contentful website -> Partner page, I-D Media website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Bayern LB is listed as a client served by Dohmen Digital Group agencies", - "partner_name": "Bayern LB", - "people": [], - "source_type": "Contentful website -> Partner page, I-D Media website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Dachser is listed as a client served by Dohmen Digital Group agencies", - "partner_name": "Dachser", - "people": [], - "source_type": "Contentful website -> Partner page, I-D Media website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "DKV is listed as a client served by Dohmen Digital Group agencies", - "partner_name": "DKV", - "people": [], - "source_type": "Contentful website -> Partner page, I-D Media website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Evangelische Kirche Deutschlands is listed as a client served by Dohmen Digital Group agencies", - "partner_name": "Evangelische Kirche Deutschlands", - "people": [], - "source_type": "Contentful website -> Partner page, I-D Media website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Fresenius is listed as a client served by Dohmen Digital Group agencies", - "partner_name": "Fresenius", - "people": [], - "source_type": "Contentful website -> Partner page, I-D Media website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Henkel is listed as a client served by Dohmen Digital Group agencies", - "partner_name": "Henkel", - "people": [], - "source_type": "Contentful website -> Partner page, I-D Media website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Heraeus is listed as a client served by Dohmen Digital Group agencies", - "partner_name": "Heraeus", - "people": [], - "source_type": "Contentful website -> Partner page, I-D Media website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "IG Metall is listed as a client served by Dohmen Digital Group agencies", - "partner_name": "IG Metall", - "people": [], - "source_type": "Contentful website -> Partner page, I-D Media website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Juris is listed as a client served by Dohmen Digital Group agencies", - "partner_name": "Juris", - "people": [], - "source_type": "Contentful website -> Partner page, I-D Media website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Karl Storz Endoskope is listed as a client served by Dohmen Digital Group agencies", - "partner_name": "Karl Storz Endoskope", - "people": [], - "source_type": "Contentful website -> Partner page, I-D Media website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Koelnmesse is listed as a client served by Dohmen Digital Group agencies", - "partner_name": "Koelnmesse", - "people": [], - "source_type": "Contentful website -> Partner page, I-D Media website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Knauf Interfer is listed as a client served by Dohmen Digital Group agencies", - "partner_name": "Knauf Interfer", - "people": [], - "source_type": "Contentful website -> Partner page, I-D Media website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "KWS Saat is listed as a client served by Dohmen Digital Group agencies", - "partner_name": "KWS Saat", - "people": [], - "source_type": "Contentful website -> Partner page, I-D Media website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Lidl is listed as a client served by Dohmen Digital Group agencies", - "partner_name": "Lidl", - "people": [], - "source_type": "Contentful website -> Partner page, I-D Media website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Meyerwerft is listed as a client served by Dohmen Digital Group agencies", - "partner_name": "Meyerwerft", - "people": [], - "source_type": "Contentful website -> Partner page, I-D Media website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Miele is listed as a client served by Dohmen Digital Group agencies", - "partner_name": "Miele", - "people": [], - "source_type": "Contentful website -> Partner page, I-D Media website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Olympus is listed as a client served by Dohmen Digital Group agencies", - "partner_name": "Olympus", - "people": [], - "source_type": "Contentful website -> Partner page, I-D Media website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Pepperl+Fuchs is listed as a client served by Dohmen Digital Group agencies", - "partner_name": "Pepperl+Fuchs", - "people": [], - "source_type": "Contentful website -> Partner page, I-D Media website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Schlüter Systems is listed as a client served by Dohmen Digital Group agencies", - "partner_name": "Schlüter Systems", - "people": [], - "source_type": "Contentful website -> Partner page, I-D Media website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "SMS group is listed as a client served by Dohmen Digital Group agencies", - "partner_name": "SMS group", - "people": [], - "source_type": "Contentful website -> Partner page, I-D Media website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Stihl is listed as a client served by Dohmen Digital Group agencies", - "partner_name": "Stihl", - "people": [], - "source_type": "Contentful website -> Partner page, I-D Media website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Vodafone is listed as a client served by Dohmen Digital Group agencies", - "partner_name": "Vodafone", - "people": [], - "source_type": "Contentful website -> Partner page, I-D Media website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Vossloh is listed as a client served by Dohmen Digital Group agencies", - "partner_name": "Vossloh", - "people": [], - "source_type": "Contentful website -> Partner page, I-D Media website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Wacker is listed as a client served by Dohmen Digital Group agencies", - "partner_name": "Wacker", - "people": [], - "source_type": "Contentful website -> Partner page, I-D Media website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "WDR Television is listed as a client served by Dohmen Digital Group agencies", - "partner_name": "WDR Television", - "people": [], - "source_type": "Contentful website -> Partner page, I-D Media website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Sky Germany Television is listed as a client served by Dohmen Digital Group agencies", - "partner_name": "Sky Germany Television", - "people": [], - "source_type": "Contentful website -> Partner page, I-D Media website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Deutsche Bank is listed as a client of I-D Media", - "partner_name": "Deutsche Bank", - "people": [], - "source_type": "RocketReach" - }, - { - "category": "REFERENCE_CLIENT", - "context": "DZ Privatbank is listed as a client of I-D Media", - "partner_name": "DZ Privatbank", - "people": [], - "source_type": "RocketReach" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Eon is listed as a client of I-D Media", - "partner_name": "Eon", - "people": [], - "source_type": "RocketReach" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Toshiba is listed as a client of I-D Media", - "partner_name": "Toshiba", - "people": [], - "source_type": "RocketReach" - } - ], - "target_company": "I-D Media" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Dual study program cooperation for training IT specialists in Business Informatics with specialization in Software Engineering at FHDW Bergisch Gladbach location", - "partner_name": "FHDW (Fachhochschule der Wirtschaft)", - "people": [], - "source_type": "Company website -> Partnership page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Aleri Solutions GmbH is an official implementation and technology partner for imperia CMS", - "partner_name": "pirobase imperia", - "people": [], - "source_type": "pirobase imperia website -> Partner page, News section" - }, - { - "category": "SUBSIDIARY", - "context": "Aleri is a spin-off (Ausgründung) from Cassini Consulting, bringing nearly 20 years of experience from the parent company", - "partner_name": "Cassini Consulting", - "people": [], - "source_type": "Company website -> About section" - } - ], - "target_company": "Aleri Solutions GmbH" - }, - { - "connections": [ - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "NetZero", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "NexusRFP", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "Sommalife", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "IECO", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "Kesho AI", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "Valutus", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "PeerCarbon", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "Data Innovation Lab", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "Consenz", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "Ceretai", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "Brain Pool Tech", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "Kanda Weather", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "Endangered Wildlife OÜ", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "Transformative", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "Finz.", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "RenewSenses", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "Violetta", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "PlayFitt", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "Venner", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "iPlena", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "Kora", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "Budget Collector", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "School Leader's Advantage", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "Klarifi", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "Repzone", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "Haruki Health", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "FOIA Assist", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "SonoCare", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "Intermediate Data Systems", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "iPage Global", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "ThinkZone", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "WayBetter", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "OpenDevEd", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "Project Canopy", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "GOE Wellness", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "Remote Symphony", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "CogniFit", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "HeartKinetics", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "Dayrize", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "KYield", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "MyCover AI", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "BigCodeGen", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "APL Group", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "Mediconcen", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "Ureca", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "Provenance", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "Turaco", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "Airata", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "Latitudo 40", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "Good Boost", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "Linkers", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "Farrpro", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "Zeraki", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "University of Bern", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "Colour the World", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "Voice 4 Impact", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "UNHCR", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "RA365 Humanitarian Foundation", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "Impact Hub Istanbul", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "Zero Abuse Project", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client/project in Omdena's portfolio of completed AI solutions", - "partner_name": "World Energy Council", - "people": [], - "source_type": "Omdena website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Senior Advisor of Technology for Development and Innovation provided testimonial about Omdena project results", - "partner_name": "Save the Children", - "people": [ - "John Zoltner (Save the Children)" - ], - "source_type": "Omdena website -> Business Hubs testimonials" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Global Data Analytics and Reporting Lead provided testimonial on collaborative AI solutions", - "partner_name": "Catholic Relief Services", - "people": [ - "Kathryn M. Clifton, PhD (Catholic Relief Services)" - ], - "source_type": "Omdena website -> Business Hubs testimonials" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Co-Founder provided testimonial about leveraging AI prediction for immunotherapy development", - "partner_name": "Belyntic GmbH", - "people": [ - "Andreas Regnery (Belyntic GmbH)" - ], - "source_type": "Omdena website -> Business Hubs testimonials" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Collaborated with Omdena to build an AI-driven ESG scoring and greenwashing detection system", - "partner_name": "VOY Finance", - "people": [], - "source_type": "Omdena website -> Impact projects" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partner offering free access to paid courses worth up to $500 for Omdena collaborators", - "partner_name": "Dataquest", - "people": [], - "source_type": "Omdena website -> Career Paths" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partner offering free access to paid courses worth up to $500 for Omdena collaborators", - "partner_name": "Datacamp", - "people": [], - "source_type": "Omdena website -> Career Paths" - } - ], - "target_company": "Omdena Cologne Chapter" - }, - { - "connections": [ - { - "category": "SUBSIDIARY", - "context": "abcfinlab GmbH is a subsidiary of Wilh. Werhahn KG and serves as the innovation motor (Innovationsmotor) of the Werhahn Group", - "partner_name": "Wilh. Werhahn KG", - "people": [], - "source_type": "Company website (abcfinlab.de), Werhahn Annual Report 2024" - }, - { - "category": "SUBSIDIARY", - "context": "abcfinlab operates as an incubator (Inkubator) of the abcfinance Group, developing digital business models and implementing promising ideas", - "partner_name": "abcfinance Group", - "people": [], - "source_type": "Company website (abcfinlab.de), Werhahn Annual Report 2024" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "abcfinlab participated as a speaker in a joint event with Maschinenraum discussing how Mittelstand and Startups can co-create, indicating collaboration within the innovation ecosystem", - "partner_name": "Maschinenraum", - "people": [ - "Tobias Rappers (Maschinenraum)" - ], - "source_type": "Maschinenraum event page, WHU Family Business Club" - } - ], - "target_company": "abcfinlab GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Trust & Will unveiled EstateOS™ as their intelligent platform for modern legacy planning, indicating EstateOS is the core technology/product of Trust & Will's operations", - "partner_name": "Trust & Will", - "people": [], - "source_type": "Press release (PR Newswire)" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed among 200+ enterprise partners and financial institutions using EstateOS platform", - "partner_name": "AARP", - "people": [], - "source_type": "Press release (PR Newswire)" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Trust & Will (EstateOS operator) announced strategic partnership with LPL Financial and its advisor network for estate planning integration", - "partner_name": "LPL Financial", - "people": [], - "source_type": "Industry publication (Wealth Management)" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Mentioned as partner in estate tech ecosystem; Vanilla (competing platform) partnered with Vanguard, indicating institutional adoption of estate planning platforms", - "partner_name": "Vanguard", - "people": [], - "source_type": "Industry publication (Wealth Management)" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Pure Portfolios partnered with Estately (Free Will's advisor version) for estate planning services, demonstrating advisor adoption of estate planning platforms in the ecosystem", - "partner_name": "Pure Portfolios", - "people": [ - "Aon Varges (Pure Portfolios)" - ], - "source_type": "YouTube video" - } - ], - "target_company": "estateOS GmbH" - }, - { - "connections": [ - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a customer of bitside on their main website", - "partner_name": "IU Internationale Hochschule", - "people": [], - "source_type": "Company website -> Customers section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a customer of bitside on their main website", - "partner_name": "Zurich Versicherung", - "people": [], - "source_type": "Company website -> Customers section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a customer of bitside on their main website", - "partner_name": "Gothaer Versicherung", - "people": [], - "source_type": "Company website -> Customers section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Developed a self-service customer portal for this fitness industry manufacturer; quoted testimonial on services page", - "partner_name": "Johnson Health Tech", - "people": [ - "Michael Hoffmann (Johnson Health Tech GmbH)" - ], - "source_type": "Company website -> Services page, Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a customer of bitside on their main website", - "partner_name": "Handelsblatt", - "people": [], - "source_type": "Company website -> Customers section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a customer of bitside on their main website", - "partner_name": "IKB", - "people": [], - "source_type": "Company website -> Customers section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Nokia worked with bitside since 2007; bitside became a strategic development partner to Nokia for mobile development and Nokia Maps; Nokia acquired bitside in 2009", - "partner_name": "Nokia", - "people": [ - "Michael Halbherr (Nokia)", - "Thom Brenner (bitside GmbH)" - ], - "source_type": "Nokia newsroom, Company website" - } - ], - "target_company": "bitside GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Cooperation partner in the dual Bachelor program Business Informatics at FHDW in Bergisch Gladbach; provides students with intensive support during practical phases", - "partner_name": "FHDW (Fachhochschule der Wirtschaft)", - "people": [], - "source_type": "Company website -> Partner page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Reseller Partner recognized by Hyland Software for providing innovative digital workflow automation solutions using OnBase; located in Bensalem, Pennsylvania", - "partner_name": "Hyland Software", - "people": [], - "source_type": "Hyland partner directory" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Implemented Hyland OnBase for mobile service workflow digitization", - "partner_name": "Bucks County Sheriff's Office", - "people": [], - "source_type": "Hyland partner directory -> Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Implemented Hyland OnBase for case management and tax lien processing", - "partner_name": "Cumberland County", - "people": [], - "source_type": "Hyland partner directory -> Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Streamlined order and fulfillment with Hyland OnBase", - "partner_name": "MI Windows and Doors", - "people": [], - "source_type": "Hyland partner directory -> Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Reduced litigation pack creation time using Hyland OnBase", - "partner_name": "NMS Labs", - "people": [], - "source_type": "Hyland partner directory -> Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Revolutionized invoice processing with Hyland OnBase", - "partner_name": "Nixon Medical", - "people": [], - "source_type": "Hyland partner directory -> Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Streamlined sales quoting process and raw material certification tracking with Hyland OnBase", - "partner_name": "PennEngineering", - "people": [], - "source_type": "Hyland partner directory -> Case Study" - } - ], - "target_company": "PAPERLESS-SOLUTIONS GmbH" - }, - { - "connections": [ - { - "category": "REFERENCE_CLIENT", - "context": "Mercedes-Benz HQ provided testimonial praising Newroom Media's IoT solution for process overview and data-driven decision making", - "partner_name": "Mercedes-Benz", - "people": [], - "source_type": "Company website -> Testimonial/Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Bermann Landmaschinen highlighted virtual production hall solution as a project highlight for showcasing their agricultural machinery", - "partner_name": "Bermann Landmaschinen", - "people": [], - "source_type": "Company website -> Testimonial/Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Digital beach bar solution for guest experiences at Dümmer See", - "partner_name": "Bar dü Mar", - "people": [], - "source_type": "Company website -> Project Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Digital solutions for modern guest experience", - "partner_name": "Casa Colonia", - "people": [], - "source_type": "Company website -> Project Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Solution for measuring insulation layer thickness", - "partner_name": "Armacell", - "people": [], - "source_type": "Company website -> Project Portfolio" - } - ], - "target_company": "Newroom Media" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "G&L partnered with Hydrolix under the Powered By Hydrolix program to enhance streaming media delivery through large-scale data aggregation technology and advanced analytics capabilities", - "partner_name": "Hydrolix", - "people": [ - "Alexander Leschinsky (G&L Systemhaus)" - ], - "source_type": "Company website -> Partner page, Blog, Press release" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Strategic partnership to leverage Avesha's KubeSlice product for establishing connectivity between G&L's on-premises data centers and Akamai Connected Cloud for media processing and orchestration", - "partner_name": "Avesha", - "people": [ - "Alexander Leschinsky (G&L Systemhaus)" - ], - "source_type": "Press release, Company website" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "G&L works with Akamai Technologies as market leader and has achieved Elite-level partner status", - "partner_name": "Akamai Technologies", - "people": [], - "source_type": "Company website -> Partner section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partnership to integrate Signapse's automated sign language translation technology into G&L's live and on-demand workflows, with customization for German Sign Language", - "partner_name": "Signapse", - "people": [], - "source_type": "Company website -> Partner page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "G&L coordinates with Touchstream as a partner for actionable insights in operations and monitoring", - "partner_name": "Touchstream", - "people": [], - "source_type": "Blog, Press release" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "G&L integrates with Grafana for flexible data visualization capabilities in their streaming solutions", - "partner_name": "Grafana", - "people": [], - "source_type": "Blog, Press release" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "netTrek has worked with G&L for over a decade supporting TV and broadcasting stations with software development and specialized requirements", - "partner_name": "netTrek", - "people": [], - "source_type": "Company website -> Partner page" - } - ], - "target_company": "G&L Systemhaus" - }, - { - "connections": [ - { - "category": "SUBSIDIARY", - "context": "kommIT was a joint subsidiary of AKDB and Dataport. As of 01.01.2026, kommIT became part of AKDB as AKDB is now the total legal successor of kommIT GmbH & Co. KG.", - "partner_name": "AKDB (Anstalt für Kommunale Datenverarbeitung in Bayern)", - "people": [], - "source_type": "Company website (komm-it.de)" - }, - { - "category": "SUBSIDIARY", - "context": "kommIT was a joint subsidiary (gemeinsame Tochter) of AKDB and Dataport, operating from Cologne providing municipal administration services and software solutions.", - "partner_name": "Dataport", - "people": [], - "source_type": "Company website (akdb.de partner page)" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Wilken GmbH and its subsidiary companies (Wilken AG, Wilken Neutrasoft GmbH, Wilken Entire GmbH, Wilken Rechenzentrum GmbH, Wilken Ciwi GmbH, Wilken Informationsmanagement GmbH, Wilken Prozessmanagement GmbH) are listed as partners on the AKDB/kommIT partner page.", - "partner_name": "Wilken GmbH", - "people": [], - "source_type": "Company website (akdb.de partner page)" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "DATAteam GmbH is listed as a partner on the AKDB/kommIT partner page, specializing in collection and enforcement in municipal environments.", - "partner_name": "DATAteam GmbH", - "people": [ - "Reiner Bielmeier (DATAteam GmbH)" - ], - "source_type": "Company website (akdb.de partner page)" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Fujitsu is listed as a partner on the AKDB/kommIT partner page with a long-standing partnership in the public sector, supporting public administration customers with technical and organizational IT transformation.", - "partner_name": "Fujitsu Technology Solutions GmbH", - "people": [], - "source_type": "Company website (akdb.de partner page)" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "As of July 1, 2022, Telecomputer's sales activities for customers outside Bavaria were transferred to kommIT. kommIT now offers Telecomputer's entire product and service portfolio including IKOL and eKOL specialist procedures.", - "partner_name": "Telecomputer GmbH", - "people": [], - "source_type": "Third-party source (telecomputer.de)" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "As of January 2026, AKDB and kommIT's activities in social services, youth, and construction sectors were bundled into OTS (Organisationseinheit für Soziales, Jugend und Bauwesen), which was taken over by Prosoz.", - "partner_name": "Prosoz", - "people": [], - "source_type": "Third-party source (kommune21.de)" - } - ], - "target_company": "kommIT Gesellschaft für Informationstechnik mbH & Co. KG" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "MobiLab is an award-winning and certified Microsoft Solutions Partner, certified in 10 expert areas, exclusively focused on Microsoft Azure for Cloud Integration solutions", - "partner_name": "Microsoft", - "people": [], - "source_type": "Company website -> Partnerships page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "MobiLab recognized as NetApp Cloud Partner of the Year 2025 for EMEA & LATAM; collaboration on SAP and VMware migrations using NetApp technology", - "partner_name": "NetApp", - "people": [ - "Pouya Azimi (MobiLab)", - "Kristian Kerr (NetApp)" - ], - "source_type": "Company website -> Partnerships page, NetApp partner directory, Blog" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "MobiLab Solutions has a certified partnership with Databricks for data integration and AI-driven solutions", - "partner_name": "Databricks", - "people": [], - "source_type": "Company website -> Partnerships page" - } - ], - "target_company": "MobiLab Solutions" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "In Kooperation mit der bracketlab GmbH bietet Schalast praxisnahe Workshops zum Thema Künstliche Intelligenz (KI) an – speziell für Geschäftsführer und IT-Leiter", - "partner_name": "Schalast", - "people": [ - "Diana Grün (Schalast)", - "Inga Rau (Schalast)" - ], - "source_type": "Company website -> Workshops page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Case study: 'How Invarion built adaptive infrastructure for faster therapeutic development'", - "partner_name": "Invarion", - "people": [], - "source_type": "bracketlab.ai website -> Case study" - } - ], - "target_company": "bracketlab GmbH" - }, - { - "connections": [ - { - "category": "SUBSIDIARY", - "context": "seneos GmbH has been a wholly owned subsidiary of Astemo Ltd. (formerly Hitachi Automotive Systems) since April 15, 2020", - "partner_name": "Astemo Ltd.", - "people": [], - "source_type": "Company website -> About Us page, Astemo corporate website -> Global Network" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a customer in the automotive sector", - "partner_name": "BROSE", - "people": [], - "source_type": "Company website -> Automotive page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a customer in the automotive sector", - "partner_name": "Continental", - "people": [], - "source_type": "Company website -> Automotive page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a customer in the automotive sector", - "partner_name": "aptiv", - "people": [], - "source_type": "Company website -> Automotive page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a customer in the automotive sector", - "partner_name": "Dometic Waeco", - "people": [], - "source_type": "Company website -> Automotive page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a customer in the automotive sector", - "partner_name": "Ford", - "people": [], - "source_type": "Company website -> Automotive page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a customer in the automotive sector", - "partner_name": "Helbako", - "people": [], - "source_type": "Company website -> Automotive page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a customer in the automotive sector", - "partner_name": "Johnson Controls", - "people": [], - "source_type": "Company website -> Automotive page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a customer in the industrial sector", - "partner_name": "Vaillant", - "people": [], - "source_type": "Company website -> Industry page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a customer in the industrial sector", - "partner_name": "Owlet", - "people": [], - "source_type": "Company website -> Industry page" - } - ], - "target_company": "seneos GmbH" - }, - { - "connections": [ - { - "category": "REFERENCE_CLIENT", - "context": "German public broadcaster WDR uses Convit's Big Data and AI solutions for media production, including editorial planning, newsroom systems, archive systems, production systems, and distribution systems. Long-term cooperation agreement confirmed.", - "partner_name": "WDR (Westdeutscher Rundfunk)", - "people": [], - "source_type": "Company website -> Case Study/Partnership Page" - } - ], - "target_company": "Convit GmbH" - }, - { - "connections": [ - { - "category": "REFERENCE_CLIENT", - "context": "KI group built Eurowings Digital, a digital platform that provides seamless travel experience services for Eurowings customers", - "partner_name": "Eurowings", - "people": [], - "source_type": "Company website -> Project showcase" - }, - { - "category": "REFERENCE_CLIENT", - "context": "KI group built Saloodo!, a digital platform for DHL that connects small- to mid-sized freight shippers and carriers", - "partner_name": "DHL", - "people": [], - "source_type": "Company website -> Project showcase" - }, - { - "category": "SUBSIDIARY", - "context": "KI.M merged with Acture Germany GmbH as a joint partnership for future growth", - "partner_name": "Acture Germany", - "people": [], - "source_type": "Company website -> News/Merger announcement" - } - ], - "target_company": "KI group HQ" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Business partner from Switzerland providing digital signage and smart solutions. Together they develop interactive applications featuring Humanizing's avatars seamlessly integrated into existing infrastructures.", - "partner_name": "TMI", - "people": [ - "Nicolas Schibler (tm-i.ch)" - ], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Business partner developing powerful solutions for efficient visitor management with intelligent appointment scheduling and queue management systems. Collaborates with Humanizing Technologies on integrated solutions.", - "partner_name": "tempus software GmbH", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Hardware partner transforming customer experience with cutting-edge holography and interactive AI-powered solutions. Enables retailers, hospitality providers, and entertainment industry to deliver life-sized 3D product presentations.", - "partner_name": "VisionEye AI", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Hardware partner and pioneer in personal digital video service solutions. Partnership enables combination of 24/7 service processes via Avatar Kim and human service contact in over 100 languages across DACH region.", - "partner_name": "vidone", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partnership discussed in interview regarding interactive avatars and digital employees strategy. Both companies targeting labor shortage solutions through robotics and avatar technology.", - "partner_name": "RobotLab", - "people": [ - "Elad Inbar (RobotLab CEO)", - "Tim Schuster (Humanizing CEO)" - ], - "source_type": "YouTube interview" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Client using Humanize IT platform. Developed effective process for Account Management team to upgrade clients to cybersecurity offerings and grow existing client base.", - "partner_name": "JMark Business Solutions", - "people": [ - "Garry Adams (Client Relationship Manager)" - ], - "source_type": "Company website -> Client testimonials" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Client using Humanize IT platform. Implemented consistent and effective QBR process that helped win more projects and maintain business conversations with executives.", - "partner_name": "Heroic Technologies", - "people": [ - "Nick Stevens (Founding Partner)" - ], - "source_type": "Company website -> Client testimonials" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Client using Humanize IT platform. Reduced QBR process time in half, enabling regular QBRs with all key clients and delegation of project opportunities to service team.", - "partner_name": "Expro It", - "people": [ - "Wouter Mertens (Business Manager)" - ], - "source_type": "Company website -> Client testimonials" - } - ], - "target_company": "Humanizing Technologies" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Sunhat is an EcoVadis Accredited Core Consulting Partner, supporting companies with their EcoVadis assessment", - "partner_name": "EcoVadis", - "people": [], - "source_type": "Company website -> Our Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Sunhat is an official CDP Accredited Solutions Provider, empowering companies to optimize their environmental reporting and enhance CDP assessments", - "partner_name": "CDP", - "people": [ - "Jackie Davis (CDP)" - ], - "source_type": "Company website -> Our Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partnership enabling companies to fulfill ESG reporting requirements more efficiently; Cozero is a carbon management software that complements Sunhat's expertise", - "partner_name": "Cozero", - "people": [ - "Helen Tacke (Cozero)" - ], - "source_type": "Company website -> Our Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Sunhat is Friends of EFRAG, staying on top of latest reporting and sustainability standards", - "partner_name": "EFRAG", - "people": [], - "source_type": "Company website -> Our Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Network partnership committed to sustainable transformation and driving positive change", - "partner_name": "Klimaschutz Unternehmen e.V.", - "people": [], - "source_type": "Company website -> Our Partners page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Case study: EnBW is establishing a collaborative platform for ESG data with Sunhat", - "partner_name": "EnBW", - "people": [], - "source_type": "Company website -> Customer Stories page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Case study: TRICOR optimizes ESG reporting with Cozero and Sunhat", - "partner_name": "TRICOR", - "people": [], - "source_type": "Company website -> Customer Stories page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Case study: Ingredion centralizes ESG data with Sunhat's collaborative proof platform", - "partner_name": "Ingredion", - "people": [], - "source_type": "Company website -> Customer Stories page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Customer mentioned as using Sunhat's AI to answer questions from stakeholders and questionnaires", - "partner_name": "Geberit", - "people": [], - "source_type": "Company website -> Blog" - } - ], - "target_company": "Sunhat" - }, - { - "connections": [ - { - "category": "REFERENCE_CLIENT", - "context": "Case study: easyRadiology Innovation Package for full digitization across 24 locations", - "partner_name": "DIE RADIOLOGIE", - "people": [], - "source_type": "Company website -> Success Stories" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Case study: easyRadiology patient and referring physician portal implementation", - "partner_name": "Radiologisches Zentrum Mühlhausen", - "people": [], - "source_type": "Company website -> Success Stories" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "easyRadiology AG listed as member of German Health Alliance; portal solution featured in GHA solution directory", - "partner_name": "German Health Alliance (GHA)", - "people": [], - "source_type": "GHA website -> Member listing" - } - ], - "target_company": "easyRadiology AG" - }, - { - "connections": [ - { - "category": "REFERENCE_CLIENT", - "context": "IBM Deutschland GmbH engaged andagon people GmbH for test automation and quality assurance services. Testimonial highlights excellent planning, methodology, and expertise in test coverage and infrastructure maintenance.", - "partner_name": "IBM Deutschland GmbH", - "people": [ - "Bernd Eberhardt (IBM SAP International Competency Center)" - ], - "source_type": "Company website -> Case Study/Success Stories" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Trading Hub Europe GmbH collaborated with andagon for test management services using the aqua ALM platform. Client praised the team's expertise and advanced test management functions.", - "partner_name": "Trading Hub Europe GmbH", - "people": [ - "Mohamed Makhloufi (Application Manager)" - ], - "source_type": "Company website -> Client Testimonial" - }, - { - "category": "REFERENCE_CLIENT", - "context": "andagon people GmbH served as a reliable partner on a confidential project for a major German government agency for several years. Services included test management, Scrum support, and test automation. Product was rolled out nationwide with approximately 2,500 users.", - "partner_name": "German Federal Agency", - "people": [], - "source_type": "Company website -> Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "andagon provided external automation specialists for fund calculation software project, helping identify automation-suitable test cases and reduce ongoing testing effort.", - "partner_name": "Leading German Financial Services Provider", - "people": [], - "source_type": "Company website -> Client Testimonial" - } - ], - "target_company": "andagon people GmbH" - }, - { - "connections": [ - { - "category": "REFERENCE_CLIENT", - "context": "Walmart Global Tech partnership with Balu AI for AI search visibility and optimization across AI platforms", - "partner_name": "Walmart", - "people": [ - "Balu Chaturvedula (Walmart)" - ], - "source_type": "YouTube video - Partnership mention" - }, - { - "category": "REFERENCE_CLIENT", - "context": "GEO used Balu to optimize prompts and achieved 50% increase in brand mentions across AI platforms in two months", - "partner_name": "GEO", - "people": [ - "Max Voß (GEO, Co-Founder & Partner)" - ], - "source_type": "Company website - Testimonial" - } - ], - "target_company": "Balu AI" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "360 Consulting GmbH is a Business Solution Partner of Microsoft, distributing and implementing Microsoft Dynamics 365 Business Central solutions", - "partner_name": "Microsoft", - "people": [], - "source_type": "360 Consulting website -> Product page (Microsoft Dynamics 365 Business Central)" - } - ], - "target_company": "360 Consulting GmbH" - }, - { - "connections": [ - { - "category": "SUBSIDIARY", - "context": "Loql is a 100% REWE startup founded in December 2022, operating as OC Food Solutions GmbH, a subsidiary company of the REWE Group. Loql was created from the REWE Innovations-Hub and operates within the REWE Group ecosystem to connect local producers with REWE markets.", - "partner_name": "REWE Group", - "people": [ - "Clemens Tsalikis (Loql)" - ], - "source_type": "Company website -> About page, Blog, Partner information" - }, - { - "category": "REFERENCE_CLIENT", - "context": "REWE markets are primary clients and partners of Loql. The platform connects local agricultural businesses and manufacturers with REWE markets across Germany. REWE store managers maintain long-standing partnerships with local producers, some dating back over 20 years, which Loql strengthens through its digital platform.", - "partner_name": "REWE-Märkte (REWE Markets)", - "people": [], - "source_type": "Company website -> About page, Blog articles" - } - ], - "target_company": "Loql - B2B lokale Lebensmittel" - }, - { - "connections": [], - "target_company": "Onelity" - }, - { - "connections": [ - { - "category": "REFERENCE_CLIENT", - "context": "Working with Ordio since 2023 for on-hold audio solutions and marketing content management across their dealership network", - "partner_name": "King Toyota and Lexus of Wellington", - "people": [], - "source_type": "Company website -> Who We Work With page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Working with Ordio since 2023 for on-hold audio solutions and marketing content management", - "partner_name": "Rutherford Bond", - "people": [], - "source_type": "Company website -> Who We Work With page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Worked with Ordio to create bespoke on-hold messages about membership benefits and organizational work", - "partner_name": "New Zealand Veterinary Association", - "people": [], - "source_type": "Company website -> Who We Work With page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Capnamic is a founding investor and supporter of Ordio, with Jörg Binnenbrücker as a founding supporter who empowered the founders", - "partner_name": "Capnamic", - "people": [ - "Jörg Binnenbrücker (Capnamic, Managing Partner)" - ], - "source_type": "Capnamic website -> Investment article" - } - ], - "target_company": "Ordio" - }, - { - "connections": [], - "target_company": "CK Consulting" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Masiar Ighanini, CEO of skillbyte GmbH, provided a testimonial on EVNE Developers' website praising their quality expertise and ability to convert concepts into effective solutions.", - "partner_name": "EVNE Developers", - "people": [ - "Masiar Ighanini (skillbyte GmbH)" - ], - "source_type": "EVNE Developers website -> Testimonials/Case Studies" - }, - { - "category": "REFERENCE_CLIENT", - "context": "skillbyte GmbH (identified as the software development company behind GravityCV) solved development work for the GravityCV platform.", - "partner_name": "GravityCV", - "people": [], - "source_type": "GravityCV website -> Case Studies" - } - ], - "target_company": "skillbyte GmbH" - }, - { - "connections": [ - { - "category": "SUBSIDIARY", - "context": "SAG Digital serves as the Digital Hub for the Swiss Automotive Group (SAG) from its base in Cologne, Germany, with 4,500 dedicated employees and annual turnover exceeding EUR 1.4 billion", - "partner_name": "Swiss Automotive Group (SAG)", - "people": [], - "source_type": "Company website -> About/Home page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as a tool and solution that SAG Digital loves to work with", - "partner_name": "TecAlliance", - "people": [], - "source_type": "Company website -> Tools and solutions section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Google Tag Manager and Google Analytics listed as tools and solutions SAG Digital loves to work with", - "partner_name": "Google", - "people": [], - "source_type": "Company website -> Tools and solutions section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as a tool and solution that SAG Digital loves to work with", - "partner_name": "Cloudflare", - "people": [], - "source_type": "Company website -> Tools and solutions section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Jira & Confluence listed as tools and solutions SAG Digital loves to work with", - "partner_name": "Atlassian", - "people": [], - "source_type": "Company website -> Tools and solutions section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as a tool and solution that SAG Digital loves to work with", - "partner_name": "Slack", - "people": [], - "source_type": "Company website -> Tools and solutions section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as a tool and solution that SAG Digital loves to work with", - "partner_name": "Figma", - "people": [], - "source_type": "Company website -> Tools and solutions section" - } - ], - "target_company": "SAG Digital" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "I-D Media is listed as a Solution Partner on Contentful's partner page, experienced in building with Contentful solutions and services", - "partner_name": "Contentful", - "people": [], - "source_type": "Company website -> Partner Directory" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "I-D Media is a Silver Partner of Ibexa DXP, integrating the Ibexa Digital Experience Platform for clients", - "partner_name": "Ibexa", - "people": [], - "source_type": "Company website -> Partner Directory" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Gothaer Insurance is listed as a client relying on I-D Media's expertise for digital experience platform requirements", - "partner_name": "Gothaer Insurance", - "people": [], - "source_type": "Company website -> Partner Directory, Company website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "NBank is listed as a client relying on I-D Media's expertise for digital experience platform requirements", - "partner_name": "NBank", - "people": [], - "source_type": "Company website -> Partner Directory, Company website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Nintendo is listed as a client relying on I-D Media's expertise for digital experience platform requirements", - "partner_name": "Nintendo", - "people": [], - "source_type": "Company website -> Partner Directory, Company website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Skoda is listed as a client relying on I-D Media's expertise for digital experience platform requirements", - "partner_name": "Skoda", - "people": [], - "source_type": "Company website -> Partner Directory, Company website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Sky is listed as a client relying on I-D Media's expertise for digital experience platform requirements", - "partner_name": "Sky", - "people": [], - "source_type": "Company website -> Partner Directory, Company website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Agravis is listed among the Dohmen Digital Group's clients served by I-D Media", - "partner_name": "Agravis", - "people": [], - "source_type": "Company website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Barmenia is listed among the Dohmen Digital Group's clients served by I-D Media", - "partner_name": "Barmenia", - "people": [], - "source_type": "Company website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Bayern LB is listed among the Dohmen Digital Group's clients served by I-D Media", - "partner_name": "Bayern LB", - "people": [], - "source_type": "Company website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Dachser is listed among the Dohmen Digital Group's clients served by I-D Media", - "partner_name": "Dachser", - "people": [], - "source_type": "Company website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "DKV is listed among the Dohmen Digital Group's clients served by I-D Media", - "partner_name": "DKV", - "people": [], - "source_type": "Company website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Evangelische Kirche Deutschlands is listed among the Dohmen Digital Group's clients served by I-D Media", - "partner_name": "Evangelische Kirche Deutschlands", - "people": [], - "source_type": "Company website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Fresenius is listed among the Dohmen Digital Group's clients served by I-D Media", - "partner_name": "Fresenius", - "people": [], - "source_type": "Company website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Henkel is listed among the Dohmen Digital Group's clients served by I-D Media", - "partner_name": "Henkel", - "people": [], - "source_type": "Company website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Heraeus is listed among the Dohmen Digital Group's clients served by I-D Media", - "partner_name": "Heraeus", - "people": [], - "source_type": "Company website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "IG Metall is listed among the Dohmen Digital Group's clients served by I-D Media", - "partner_name": "IG Metall", - "people": [], - "source_type": "Company website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Juris is listed among the Dohmen Digital Group's clients served by I-D Media", - "partner_name": "Juris", - "people": [], - "source_type": "Company website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Karl Storz Endoskope is listed among the Dohmen Digital Group's clients served by I-D Media", - "partner_name": "Karl Storz Endoskope", - "people": [], - "source_type": "Company website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Koelnmesse is listed among the Dohmen Digital Group's clients served by I-D Media", - "partner_name": "Koelnmesse", - "people": [], - "source_type": "Company website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Knauf Interfer is listed among the Dohmen Digital Group's clients served by I-D Media", - "partner_name": "Knauf Interfer", - "people": [], - "source_type": "Company website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "KWS Saat is listed among the Dohmen Digital Group's clients served by I-D Media", - "partner_name": "KWS Saat", - "people": [], - "source_type": "Company website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Lidl is listed among the Dohmen Digital Group's clients served by I-D Media", - "partner_name": "Lidl", - "people": [], - "source_type": "Company website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Meyerwerft is listed among the Dohmen Digital Group's clients served by I-D Media", - "partner_name": "Meyerwerft", - "people": [], - "source_type": "Company website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Miele is listed among the Dohmen Digital Group's clients served by I-D Media", - "partner_name": "Miele", - "people": [], - "source_type": "Company website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Olympus is listed among the Dohmen Digital Group's clients served by I-D Media", - "partner_name": "Olympus", - "people": [], - "source_type": "Company website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Pepperl+Fuchs is listed among the Dohmen Digital Group's clients served by I-D Media", - "partner_name": "Pepperl+Fuchs", - "people": [], - "source_type": "Company website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Schlüter Systems is listed among the Dohmen Digital Group's clients served by I-D Media", - "partner_name": "Schlüter Systems", - "people": [], - "source_type": "Company website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "SMS group is listed among the Dohmen Digital Group's clients served by I-D Media", - "partner_name": "SMS group", - "people": [], - "source_type": "Company website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Stihl is listed among the Dohmen Digital Group's clients served by I-D Media", - "partner_name": "Stihl", - "people": [], - "source_type": "Company website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Vodafone is listed among the Dohmen Digital Group's clients served by I-D Media", - "partner_name": "Vodafone", - "people": [], - "source_type": "Company website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Vossloh is listed among the Dohmen Digital Group's clients served by I-D Media", - "partner_name": "Vossloh", - "people": [], - "source_type": "Company website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Wacker is listed among the Dohmen Digital Group's clients served by I-D Media", - "partner_name": "Wacker", - "people": [], - "source_type": "Company website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "WDR Television is listed among the Dohmen Digital Group's clients served by I-D Media", - "partner_name": "WDR Television", - "people": [], - "source_type": "Company website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Sky Germany Television is listed among the Dohmen Digital Group's clients served by I-D Media", - "partner_name": "Sky Germany Television", - "people": [], - "source_type": "Company website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Deutsche Bank is listed as a client of I-D Media", - "partner_name": "Deutsche Bank", - "people": [], - "source_type": "Third-party source (RocketReach)" - }, - { - "category": "REFERENCE_CLIENT", - "context": "DZ Privatbank is listed as a client of I-D Media", - "partner_name": "DZ Privatbank", - "people": [], - "source_type": "Third-party source (RocketReach)" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Eon is listed as a client of I-D Media", - "partner_name": "Eon", - "people": [], - "source_type": "Third-party source (RocketReach)" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Toshiba is listed as a client of I-D Media", - "partner_name": "Toshiba", - "people": [], - "source_type": "Third-party source (RocketReach)" - }, - { - "category": "SUBSIDIARY", - "context": "I-D Media has been part of the Dohmen Digital Group since 2024, operating as a subsidiary within the group", - "partner_name": "Dohmen Digital Group", - "people": [], - "source_type": "Company website" - }, - { - "category": "SUBSIDIARY", - "context": "Intentive GmbH is a group company within the Dohmen Digital Group alongside I-D Media", - "partner_name": "Intentive GmbH", - "people": [], - "source_type": "Company website" - }, - { - "category": "SUBSIDIARY", - "context": "Intentive Systems GmbH is a group company within the Dohmen Digital Group alongside I-D Media", - "partner_name": "Intentive Systems GmbH", - "people": [], - "source_type": "Company website" - } - ], - "target_company": "I-D Media" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "ilert integration sends Datadog alerts to ilert for incident management and DevOps/SRE action", - "partner_name": "Datadog", - "people": [], - "source_type": "Company website -> Integrations page, Datadog documentation" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "ilert integrates with Prometheus monitoring platform", - "partner_name": "Prometheus", - "people": [], - "source_type": "Company website -> Integrations page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "ilert integrates with Microsoft Teams for collaboration and incident response", - "partner_name": "Microsoft Teams", - "people": [], - "source_type": "Company website -> Integrations page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "ilert integrates with ServiceNow for ticketing and ITSM workflows", - "partner_name": "ServiceNow", - "people": [], - "source_type": "Company website -> Integrations page, MSPs guide" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "ilert integrates with Jira for issue tracking and incident management", - "partner_name": "Jira", - "people": [], - "source_type": "Company website -> Integrations page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "ilert integrates with AWS CloudWatch for cloud monitoring and alerting", - "partner_name": "AWS CloudWatch", - "people": [], - "source_type": "Company website -> Integrations page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "ilert integrates with Grafana for monitoring and visualization", - "partner_name": "Grafana", - "people": [], - "source_type": "Company website -> Integrations page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "ilert integrates with Slack for collaboration and incident notifications", - "partner_name": "Slack", - "people": [], - "source_type": "Company website -> Integrations page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "ilert integration identifies suspicious activity and responds to security incidents", - "partner_name": "AWS GuardDuty", - "people": [], - "source_type": "Company website -> Integrations page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "ilert integrates with CrowdStrike for faster security incident response", - "partner_name": "CrowdStrike", - "people": [], - "source_type": "Company website -> Integrations page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "ilert integration ensures security threats are not missed", - "partner_name": "CrowdStrike Falcon LogScale", - "people": [], - "source_type": "Company website -> Integrations page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "ilert integrates with Elasticsearch Watcher for critical alert response", - "partner_name": "Elasticsearch Watcher", - "people": [], - "source_type": "Company website -> Integrations page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "ilert integration enables smarter and faster incident response", - "partner_name": "Fortinet FortiSOAR", - "people": [], - "source_type": "Company website -> Integrations page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "ilert enhances Google Security Command Center with alerting and on-call schedules", - "partner_name": "Google Security Command Center", - "people": [], - "source_type": "Company website -> Integrations page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "ilert integrates with Graylog for faster incident response", - "partner_name": "Graylog", - "people": [], - "source_type": "Company website -> Integrations page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "ilert extends HashiCorp Consul with reliable alerting and on-call schedules", - "partner_name": "HashiCorp Consul", - "people": [], - "source_type": "Company website -> Integrations page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "ilert integrates with Healthchecks.io for cron job monitoring and incident response", - "partner_name": "Healthchecks.io", - "people": [], - "source_type": "Company website -> Integrations page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "ilert integrates with Kapacitor to turn critical alerts into incidents", - "partner_name": "Kapacitor", - "people": [], - "source_type": "Company website -> Integrations page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "ilert integration covers the entire incident cycle", - "partner_name": "Kentix AlarmManager", - "people": [], - "source_type": "Company website -> Integrations page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "ilert integrates with LibreNMS for smarter network alerting and incident response", - "partner_name": "LibreNMS", - "people": [], - "source_type": "Company website -> Integrations page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "ilert integration establishes a resilient incident management platform", - "partner_name": "Lightstep", - "people": [], - "source_type": "Company website -> Integrations page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "ilert receives and acknowledges Microsoft Azure alerts", - "partner_name": "Microsoft Azure", - "people": [], - "source_type": "Company website -> Integrations page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "ilert integration brings incident management to a new level", - "partner_name": "Microsoft SCOM", - "people": [], - "source_type": "Company website -> Integrations page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "ilert integration receives critical alerts via phone call, push notification, or SMS", - "partner_name": "Mimir", - "people": [], - "source_type": "Company website -> Integrations page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "ilert integrates with MongoDB Atlas for alert notifications via SMS, voice, or push", - "partner_name": "MongoDB Atlas", - "people": [], - "source_type": "Company website -> Integrations page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "ilert integration reduces incident impact on business", - "partner_name": "Salesforce", - "people": [], - "source_type": "Company website -> Integrations page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "ilert is the preferred choice for operations teams using InfluxDB for incident response", - "partner_name": "InfluxDB", - "people": [], - "source_type": "InfluxDB partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "ilert partners with Make to extend capabilities with custom integrations for incident management", - "partner_name": "Make", - "people": [], - "source_type": "Company website -> Blog article" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "ilert partners with Autotask PSA for MSP incident management", - "partner_name": "Autotask PSA", - "people": [], - "source_type": "Company website -> MSPs guide" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "ilert partners with HaloPSA for MSP incident management", - "partner_name": "HaloPSA", - "people": [], - "source_type": "Company website -> MSPs guide" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "ilert integrates with Dead Man's Snitch for reliable task scheduling", - "partner_name": "Dead Man's Snitch", - "people": [], - "source_type": "Company website -> Integrations page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "IKEA is mentioned as an ilert customer in case studies", - "partner_name": "IKEA", - "people": [], - "source_type": "Company website -> Incident Management Buyer's Guide" - }, - { - "category": "REFERENCE_CLIENT", - "context": "REWE is mentioned as an ilert customer in case studies", - "partner_name": "REWE", - "people": [], - "source_type": "Company website -> Incident Management Buyer's Guide" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Adesso AG is an ilert customer; Manager Thilo Maass provided testimonial about ilert usage", - "partner_name": "Adesso AG", - "people": [ - "Thilo Maass (Adesso AG)" - ], - "source_type": "Company website -> Customers section" - } - ], - "target_company": "ilert" - }, - { - "connections": [ - { - "category": "REFERENCE_CLIENT", - "context": "Listed as one of Quiply's renowned customers using the employee app for internal communication", - "partner_name": "Hengst SE", - "people": [], - "source_type": "Company website -> Blog" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as one of Quiply's renowned customers using the employee app for internal communication", - "partner_name": "Engbers GmbH & Co. KG", - "people": [], - "source_type": "Company website -> Blog" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as one of Quiply's renowned customers using the employee app for internal communication", - "partner_name": "FRÄNKISCHE Rohrwerke Gebr. Kirchner GmbH & Co. KG", - "people": [], - "source_type": "Company website -> Blog" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as one of Quiply's renowned customers using the employee app for internal communication", - "partner_name": "RheinfelsQuellen H. Hövelmann GmbH & Co. KG", - "people": [], - "source_type": "Company website -> Blog" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as one of Quiply's renowned customers using the employee app for internal communication", - "partner_name": "Andermatt Swiss Alps AG", - "people": [], - "source_type": "Company website -> Blog" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as one of Quiply's renowned customers using the employee app for internal communication", - "partner_name": "TKD KABEL GmbH", - "people": [], - "source_type": "Company website -> Blog" - }, - { - "category": "REFERENCE_CLIENT", - "context": "CEO Ramon Näf quoted as customer testimonial on Quiply employee app solution page", - "partner_name": "HAT-Tech AG", - "people": [ - "Ramon Näf (CEO HAT-Tech AG & Näf Tech AG)" - ], - "source_type": "Atoria website -> Employee app solution page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "CEO Ramon Näf quoted as customer testimonial on Quiply employee app solution page", - "partner_name": "Näf Tech AG", - "people": [ - "Ramon Näf (CEO HAT-Tech AG & Näf Tech AG)" - ], - "source_type": "Atoria website -> Employee app solution page" - }, - { - "category": "SUBSIDIARY", - "context": "Since July 2025, Quiply has been part of Atoria - the people software GmbH as an employee app", - "partner_name": "Atoria - the people software GmbH", - "people": [], - "source_type": "Company website -> About Us" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "proALPHA acquired Quiply Technologies GmbH in February 2024 to expand its HR portfolio; Quiply integrated into proALPHA's comprehensive HR platform", - "partner_name": "proALPHA", - "people": [ - "Markus Steinberger (CEO, tisoware and Persis)" - ], - "source_type": "proALPHA website -> Blog" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Persis (leading provider of innovative HR software) merged with tisoware; Quiply acquisition followed as next strategic step to expand HR product portfolio within proALPHA Group", - "partner_name": "Persis", - "people": [ - "Markus Steinberger (CEO, tisoware and Persis)" - ], - "source_type": "proALPHA website -> Blog" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "tisoware (specialist in time management and access control) merged with Persis; Quiply acquisition followed as next strategic step to expand HR product portfolio within proALPHA Group", - "partner_name": "tisoware", - "people": [ - "Markus Steinberger (CEO, tisoware and Persis)" - ], - "source_type": "proALPHA website -> Blog" - } - ], - "target_company": "Quiply Technologies GmbH" - }, - { - "connections": [], - "target_company": "Digitale Leute" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Platinum partner for Loyalty Lion with proven concepts and proven results", - "partner_name": "LoyaltyLion", - "people": [], - "source_type": "LoyaltyLion Service Partner Directory" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Successful Shopify Plus scaling project; tante-e helped with continuous growth and optimization, developed individual templates and extended checkout", - "partner_name": "KESS Berlin", - "people": [], - "source_type": "Shopify Partners Directory -> Featured work" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Theme customization service; client rated quality of work and communication as 5/5", - "partner_name": "Paulis Kitchen", - "people": [], - "source_type": "Shopify Partners Directory -> Client review" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Theme customization service; client rated quality of work and communication as 4/4", - "partner_name": "BODY IP Nutrition", - "people": [], - "source_type": "Shopify Partners Directory -> Client review" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Theme customization service; client rated quality of work and communication as 5/5", - "partner_name": "Rosewatch", - "people": [], - "source_type": "Shopify Partners Directory -> Client review" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Theme customization service; client praised Adrian and team for solid product knowledge, thoughtful suggestions, and responsiveness during website restructure", - "partner_name": "Kala Sundial", - "people": [ - "Adrian" - ], - "source_type": "Shopify Partners Directory -> Client review" - } - ], - "target_company": "tante-e" - }, - { - "connections": [ - { - "category": "SUBSIDIARY", - "context": "affinis AG acquired 86.09% of Collogia AG shares effective September 1, 2022. Collogia is now part of the affinis group and operates as affinis enterprise services GmbH.", - "partner_name": "affinis AG", - "people": [ - "Dr. Norbert Warnken (affinis AG)" - ], - "source_type": "Company website (collogia-it-services.de), Press release (heuking.de)" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Strategic partnership for SAP on Azure solutions, combining IT specialization and service offerings for customer requirements.", - "partner_name": "aConTech", - "people": [], - "source_type": "Company website (collogia-it-services.de)" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Collogia is a certified Service Partner of SAP AG with long-standing experience in SAP system consulting and implementation.", - "partner_name": "SAP AG", - "people": [], - "source_type": "Company website (collogia-it-services.de), Historical document (isis-specials.de)" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Named partner for SAP HANA BW solutions offered alongside hardware suppliers and application partners.", - "partner_name": "PCS", - "people": [], - "source_type": "Company website (collogia-it-services.de/leistungen/consulting/sap)" - } - ], - "target_company": "Collogia Unternehmensberatung AG" - }, - { - "connections": [ - { - "category": "REFERENCE_CLIENT", - "context": "Listed as client on MIR MEDIA's clients list and mentioned in iF Design Award sectors", - "partner_name": "Thalia Theater", - "people": [], - "source_type": "Company website -> Clients List, iF Design Award" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed in iF Design Award sectors as client", - "partner_name": "Cologne Opera", - "people": [], - "source_type": "Company website -> iF Design Award" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Website relaunch project listed on clients list and iF Design Award with case study available", - "partner_name": "Ruhrtriennale", - "people": [], - "source_type": "Company website -> Clients List, iF Design Award, Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Website relaunch project listed on clients list and iF Design Award with case study available", - "partner_name": "Theaterhaus Stuttgart", - "people": [], - "source_type": "Company website -> Clients List, iF Design Award, Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Website relaunch project listed in iF Design Award with case study", - "partner_name": "Hfk Bremen", - "people": [], - "source_type": "Company website -> iF Design Award, Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Website relaunch project listed in iF Design Award with case study", - "partner_name": "NÖKU cultural platform", - "people": [], - "source_type": "Company website -> iF Design Award, Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Website relaunch project listed in iF Design Award with case study", - "partner_name": "Oper Leipzig", - "people": [], - "source_type": "Company website -> iF Design Award, Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Website relaunch project listed on clients list and iF Design Award with case study", - "partner_name": "Lucerne Festival", - "people": [], - "source_type": "Company website -> Clients List, iF Design Award, Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Cultural website project listed in iF Design Award with case study", - "partner_name": "Beethovenfest Bonn", - "people": [], - "source_type": "Company website -> iF Design Award, Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on MIR MEDIA's clients list", - "partner_name": "Deutscher Musikrat", - "people": [], - "source_type": "Company website -> Clients List" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on MIR MEDIA's clients list", - "partner_name": "Deutsche Staatsphilharmonie Rheinland-Pfalz", - "people": [], - "source_type": "Company website -> Clients List" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on MIR MEDIA's clients list", - "partner_name": "Deutsches Musikinformationszentrum (MIZ)", - "people": [], - "source_type": "Company website -> Clients List" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on clients list with case study available", - "partner_name": "Donaufestival", - "people": [], - "source_type": "Company website -> Clients List, Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on MIR MEDIA's clients list", - "partner_name": "Diageo Great Britain Limited", - "people": [], - "source_type": "Company website -> Clients List" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on MIR MEDIA's clients list", - "partner_name": "Deutscher Bühnenverein", - "people": [], - "source_type": "Company website -> Clients List" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on MIR MEDIA's clients list", - "partner_name": "Felix-Mendelssohn-Bartholdy-Stiftung", - "people": [], - "source_type": "Company website -> Clients List" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on clients list with case study available", - "partner_name": "Festspiele Reichenau", - "people": [], - "source_type": "Company website -> Clients List, Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on clients list with case study available", - "partner_name": "Festspielhaus St. Pölten", - "people": [], - "source_type": "Company website -> Clients List, Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on clients list with case study available", - "partner_name": "Festival Imago Dei", - "people": [], - "source_type": "Company website -> Clients List, Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on MIR MEDIA's clients list", - "partner_name": "Fonds Soziokultur", - "people": [], - "source_type": "Company website -> Clients List" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on MIR MEDIA's clients list", - "partner_name": "Galerie Boisserée", - "people": [], - "source_type": "Company website -> Clients List" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on MIR MEDIA's clients list", - "partner_name": "GRIPS Theater", - "people": [], - "source_type": "Company website -> Clients List" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on clients list for social media work", - "partner_name": "Guinness", - "people": [], - "source_type": "Company website -> Clients List" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on clients list with case study available", - "partner_name": "Konzerthaus Berlin", - "people": [], - "source_type": "Company website -> Clients List, Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on MIR MEDIA's clients list for TV work", - "partner_name": "Kölner Philharmonie", - "people": [], - "source_type": "Company website -> Clients List" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on clients list with case study available", - "partner_name": "Kunstraum Niederoesterreich", - "people": [], - "source_type": "Company website -> Clients List, Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on clients list with case study available", - "partner_name": "Klangraum Krems", - "people": [], - "source_type": "Company website -> Clients List, Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on clients list with case study available", - "partner_name": "Lausitz Festival", - "people": [], - "source_type": "Company website -> Clients List, Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on MIR MEDIA's clients list", - "partner_name": "Landestheater Detmold", - "people": [], - "source_type": "Company website -> Clients List" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on MIR MEDIA's clients list", - "partner_name": "Landestheater Niederösterreich", - "people": [], - "source_type": "Company website -> Clients List" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on MIR MEDIA's clients list", - "partner_name": "Moët Hennessy Diageo", - "people": [], - "source_type": "Company website -> Clients List" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on MIR MEDIA's clients list", - "partner_name": "Musikfabrik Köln", - "people": [], - "source_type": "Company website -> Clients List" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on MIR MEDIA's clients list", - "partner_name": "Meisterkonzerte Braunschweig", - "people": [], - "source_type": "Company website -> Clients List" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on MIR MEDIA's clients list", - "partner_name": "Meisterkonzerte Bremen", - "people": [], - "source_type": "Company website -> Clients List" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on MIR MEDIA's clients list", - "partner_name": "NIKON EUROPE B.V.", - "people": [], - "source_type": "Company website -> Clients List" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on MIR MEDIA's clients list", - "partner_name": "Nikon", - "people": [], - "source_type": "Company website -> Clients List" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on MIR MEDIA's clients list", - "partner_name": "Neumarkter Konzertfreunde", - "people": [], - "source_type": "Company website -> Clients List" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on MIR MEDIA's clients list", - "partner_name": "Philharmonie Luxembourg", - "people": [], - "source_type": "Company website -> Clients List" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on MIR MEDIA's clients list", - "partner_name": "ProArte Hamburg", - "people": [], - "source_type": "Company website -> Clients List" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on MIR MEDIA's clients list", - "partner_name": "PRO MUSICA", - "people": [], - "source_type": "Company website -> Clients List" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on MIR MEDIA's clients list", - "partner_name": "Rituals Cosmetics", - "people": [], - "source_type": "Company website -> Clients List" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on MIR MEDIA's clients list", - "partner_name": "RWI Essen", - "people": [], - "source_type": "Company website -> Clients List" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on MIR MEDIA's clients list", - "partner_name": "Rimowa", - "people": [], - "source_type": "Company website -> Clients List" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on MIR MEDIA's clients list", - "partner_name": "Radeberger Gruppe", - "people": [], - "source_type": "Company website -> Clients List" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on MIR MEDIA's clients list", - "partner_name": "Schweißtisch Shop", - "people": [], - "source_type": "Company website -> Clients List" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on MIR MEDIA's clients list", - "partner_name": "SimpaTec", - "people": [], - "source_type": "Company website -> Clients List" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on MIR MEDIA's clients list", - "partner_name": "Stiftung Elbphilharmonie", - "people": [], - "source_type": "Company website -> Clients List" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on MIR MEDIA's clients list", - "partner_name": "Sir Peter Ustinov Stiftung", - "people": [], - "source_type": "Company website -> Clients List" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on clients list for social media work", - "partner_name": "Smirnoff", - "people": [], - "source_type": "Company website -> Clients List" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on MIR MEDIA's clients list", - "partner_name": "Staatsballett Berlin", - "people": [], - "source_type": "Company website -> Clients List" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on clients list with case study available", - "partner_name": "Staatliche Kunsthall Karlsruhe", - "people": [], - "source_type": "Company website -> Clients List, Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on MIR MEDIA's clients list", - "partner_name": "Schallaburg", - "people": [], - "source_type": "Company website -> Clients List" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on clients list with case study available", - "partner_name": "Stadttheater Wiener Neustadt", - "people": [], - "source_type": "Company website -> Clients List, Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on MIR MEDIA's clients list", - "partner_name": "Theater St. Gallen", - "people": [], - "source_type": "Company website -> Clients List" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on clients list with case study available", - "partner_name": "Theater Bonn", - "people": [], - "source_type": "Company website -> Clients List, Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on clients list with case study available", - "partner_name": "Tonkünstler Orchester", - "people": [], - "source_type": "Company website -> Clients List, Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on clients list with case study available", - "partner_name": "Gürzenich Orchester", - "people": [], - "source_type": "Company website -> Clients List, Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on clients list with case study available", - "partner_name": "NÖ Kulturwirtschaft", - "people": [], - "source_type": "Company website -> Clients List, Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on clients list for social media work", - "partner_name": "Dimple", - "people": [], - "source_type": "Company website -> Clients List" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on MIR MEDIA's clients list", - "partner_name": "die schmiede", - "people": [], - "source_type": "Company website -> Clients List" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on MIR MEDIA's clients list", - "partner_name": "derticketservice.de", - "people": [], - "source_type": "Company website -> Clients List" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on MIR MEDIA's clients list", - "partner_name": "Fondation EME", - "people": [], - "source_type": "Company website -> Clients List" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on MIR MEDIA's clients list", - "partner_name": "morgengrau.net", - "people": [], - "source_type": "Company website -> Clients List" - } - ], - "target_company": "MIR MEDIA" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Listed among 200+ enterprise partners and financial institutions supporting EstateOS platform", - "partner_name": "AARP", - "people": [], - "source_type": "Trust & Will press release (PR Newswire)" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Strategic partnership announced in April, integrating estate planning with LPL Financial's advisor network", - "partner_name": "LPL Financial", - "people": [], - "source_type": "Wealth Management article" - } - ], - "target_company": "EstateOS GmbH" - }, - { - "connections": [ - { - "category": "SUBSIDIARY", - "context": "axxessio GmbH acquired pirobase imperia GmbH on May 5, making it a subsidiary of the axxessio group", - "partner_name": "axxessio GmbH", - "people": [ - "Thomas Dannenfeldt (axxessio)", - "Niko Henschen (pirobase imperia GmbH)" - ], - "source_type": "Company website - Press Release" - }, - { - "category": "REFERENCE_CLIENT", - "context": "AXA Germany is listed as a customer using pirobase imperia solutions", - "partner_name": "AXA Germany", - "people": [], - "source_type": "Company website - Customers page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "ING-DiBa uses imperia 8.6 information portal to guarantee customer dialogue and improve service", - "partner_name": "ING-DiBa", - "people": [], - "source_type": "Company website - Customers page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Stadt Hanau created hanau.de using imperia in 2019; customer since 2003", - "partner_name": "Stadt Hanau", - "people": [], - "source_type": "Company website - Customers page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Siegenia Aubi is listed as a customer of pirobase imperia", - "partner_name": "Siegenia Aubi", - "people": [], - "source_type": "Company website - Customers page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Deutsche Leasing is listed as a customer of pirobase imperia", - "partner_name": "Deutsche Leasing", - "people": [], - "source_type": "Company website - Customers page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "KOMM.ONE is listed as a customer of pirobase imperia", - "partner_name": "KOMM.ONE", - "people": [], - "source_type": "Company website - Customers page" - } - ], - "target_company": "pirobase imperia GmbH" - }, - { - "connections": [ - { - "category": "REFERENCE_CLIENT", - "context": "Willkie appointed DATENDO GmbH as external Data Protection Officer for its German offices in Frankfurt am Main, Hamburg, and Munich", - "partner_name": "Willkie", - "people": [], - "source_type": "Willkie privacy policy" - }, - { - "category": "REFERENCE_CLIENT", - "context": "BackBone Ventures AG appointed DATENDO GmbH as external data protection officer", - "partner_name": "BackBone Ventures AG", - "people": [], - "source_type": "BackBone Ventures privacy policy" - }, - { - "category": "REFERENCE_CLIENT", - "context": "TAS Force appointed DATENDO GmbH as data protection officer", - "partner_name": "TAS Force", - "people": [], - "source_type": "TAS Force privacy policy" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Exakt Health GmbH appointed DATENDO GmbH as data protection officer", - "partner_name": "Exakt Health GmbH", - "people": [], - "source_type": "Exakt Health privacy policy" - }, - { - "category": "REFERENCE_CLIENT", - "context": "TalentSpy appointed DATENDO GmbH as data protection officer", - "partner_name": "TalentSpy", - "people": [], - "source_type": "TalentSpy privacy policy" - } - ], - "target_company": "DATENDO GmbH" - }, - { - "connections": [ - { - "category": "REFERENCE_CLIENT", - "context": "Eurowings ensures the quality of travel & bookings through constant testing with Appmatics manual testing services", - "partner_name": "Eurowings", - "people": [], - "source_type": "Company website -> Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "BVG is listed as a customer for whom Appmatics tests digital products for function, usability and performance", - "partner_name": "BVG", - "people": [], - "source_type": "Company website -> Customer list" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Aktion Mensch is listed as a customer for whom Appmatics tests digital products for function, usability and performance", - "partner_name": "Aktion Mensch", - "people": [], - "source_type": "Company website -> Customer list" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Deutsche Bahn is listed as a customer for whom Appmatics tests digital products for function, usability and performance", - "partner_name": "Deutsche Bahn", - "people": [], - "source_type": "Company website -> Customer list" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Duden is listed as a customer for whom Appmatics tests digital products for function, usability and performance", - "partner_name": "Duden", - "people": [], - "source_type": "Company website -> Customer list" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Springer Fachmedien is listed as a customer for whom Appmatics tests digital products for function, usability and performance", - "partner_name": "Springer Fachmedien", - "people": [], - "source_type": "Company website -> Customer list" - }, - { - "category": "REFERENCE_CLIENT", - "context": "TUI is listed as a customer for whom Appmatics tests digital products for function, usability and performance", - "partner_name": "TUI", - "people": [], - "source_type": "Company website -> Customer list" - }, - { - "category": "REFERENCE_CLIENT", - "context": "WetterOnline is listed as a customer for whom Appmatics tests digital products for function, usability and performance", - "partner_name": "WetterOnline", - "people": [], - "source_type": "Company website -> Customer list" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Wanzl worked with Appmatics on QA consulting to set new standards with innovative quality standards and QA strategies", - "partner_name": "Wanzl", - "people": [], - "source_type": "Company website -> Case Study" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "HANNOVER Finanz acquired a 40 percent minority stake in Appmatics GmbH as part of a growth financing deal. Founders retain 60 percent stake and continue to develop Appmatics together with HANNOVER Finanz", - "partner_name": "HANNOVER Finanz", - "people": [ - "Christian Groebe (Appmatics)", - "Ayk Odabasyan (Appmatics)" - ], - "source_type": "Company website -> Deal announcement, Carlsquare deal history" - } - ], - "target_company": "Appmatics GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "nablet is the official developer of Sony format plugins for Avid Media Composer", - "partner_name": "Sony", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "nablet and Intel collaborate on Accelerated Video Transcoding; Intel released a Solution Brief about the gains achieved. nablet mediaEngine has official Intel Smart Edge optimization", - "partner_name": "Intel", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "nablet partnered with ARRI to develop the ARRIRAW plugin for Media Composer and on MXF Live SMPTE Draft Standard", - "partner_name": "ARRI", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "nablet is an Official Developer of Plugins for Avid Media Composer", - "partner_name": "Avid", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Technical partnership announced; x-dream-media integrates nablet's mediaEngine into its portfolio for transcoding, HDR conversion, MXF normalization and repair, forensic watermarking, and video fingerprint monitoring", - "partner_name": "x-dream-media GmbH", - "people": [ - "Stefan Pfütze (x-dream-media GmbH)", - "Muzaffer Beygirci (nablet GmbH)" - ], - "source_type": "Company website -> Blog/News" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Strategic partnership declared with integration of Spin Digital's HEVC and VVC codecs into the nablet mediaEngine", - "partner_name": "Spin Digital", - "people": [], - "source_type": "Company website -> News page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client of nablet", - "partner_name": "Vizrt", - "people": [], - "source_type": "PRWeb press release" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client of nablet", - "partner_name": "IBM", - "people": [], - "source_type": "PRWeb press release" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client of nablet", - "partner_name": "Telestream", - "people": [], - "source_type": "PRWeb press release" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client of nablet", - "partner_name": "Foundry", - "people": [], - "source_type": "PRWeb press release" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a client of nablet", - "partner_name": "Syncbak", - "people": [], - "source_type": "PRWeb press release" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Major organization that downloads nablet plugins for use on all editing workstations", - "partner_name": "BBC", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Major organization that downloads nablet plugins for use on all editing workstations", - "partner_name": "CNN", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Development partnership; nablet's Shrynk and Heightscreen AI-based tools are available as options for VidiNet subscribers; nablet codecs utilized by Arvato Systems's VidiCoder", - "partner_name": "Arvato Systems", - "people": [ - "Stefan Eckardt (Arvato Systems)", - "Muzaffer Beygrici (nablet)" - ], - "source_type": "Pressebox press release" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partnership to provide highly optimized video delivery", - "partner_name": "Visaic", - "people": [], - "source_type": "EINNews press release" - }, - { - "category": "REFERENCE_CLIENT", - "context": "nablet GmbH listed as a partner of Solveig Multimedia", - "partner_name": "Solveig Multimedia", - "people": [], - "source_type": "Solveig Multimedia website -> Partners and customers page" - } - ], - "target_company": "nablet GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Apartments B2B partners with ampido to offer flexible parking solutions for tenants of their furnished rental properties in cities like Cologne, Düsseldorf, and Bonn.", - "partner_name": "Apartments B2B", - "people": [], - "source_type": "Apartments B2B website" - } - ], - "target_company": "ampido" - }, - { - "connections": [], - "target_company": "Compello" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "novaCapta is a Microsoft Solutions Partner in all six categories (Business Applications, Data & AI, Digital & App Innovation, Infrastructure Azure, Modern Work and Security) and a Fabric Featured Partner, placing them in the exclusive circle of less than one percent of Microsoft partner companies in Germany. Recognized multiple times with Microsoft Partner of the Year Award.", - "partner_name": "Microsoft", - "people": [ - "Oliver Palmer (novaCapta)" - ], - "source_type": "Company website -> About Us page" - }, - { - "category": "SUBSIDIARY", - "context": "novaCapta is a subsidiary of TIMETOACT GROUP, which employs over 1,700 people across multiple countries and generated revenue of more than 465 million euros in 2025.", - "partner_name": "TIMETOACT GROUP", - "people": [], - "source_type": "TIMETOACT GROUP website -> Tochterunternehmen (Subsidiaries) page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "novaCapta is listed as a governance partner on Rencore's partner finder platform for digital transformation solutions.", - "partner_name": "Rencore", - "people": [], - "source_type": "Rencore partner directory website" - } - ], - "target_company": "novaCapta" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Partnership mentioned on UnitedCrowd roadmap as opening new avenues for the company", - "partner_name": "Effecta", - "people": [], - "source_type": "Company website -> Roadmap" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "UnitedCrowd is a founding member of ITSA", - "partner_name": "International Token Standardization Association (ITSA)", - "people": [], - "source_type": "Company website -> Roadmap" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "UnitedCrowd is a member, strengthening position as tokenization partner for German companies", - "partner_name": "Federal Association of Medium-Sized Businesses (BVMW)", - "people": [], - "source_type": "Company website -> Roadmap" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Official member of association for promotion of blockchain technology in Germany", - "partner_name": "Blockchain Association Germany", - "people": [], - "source_type": "Company website -> Roadmap" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partnership listed in future plans for platform KYC Videoident integration", - "partner_name": "IDnow GmbH", - "people": [], - "source_type": "Company website -> Roadmap" - } - ], - "target_company": "UnitedCrowd" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Technology partnership to integrate envelio's Intelligent Grid Platform with PowerClerk, Clean Power Research's workflow management solution for utility interconnection processes", - "partner_name": "Clean Power Research", - "people": [ - "Luigi Montana (envelio Inc.)", - "Joe Beer (Clean Power Research)" - ], - "source_type": "Company website -> Partners page, Press release" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Integration partnership between epilot.cloud and envelio's Intelligent Grid Platform to enable automated grid capacity checks and digital grid connection processes", - "partner_name": "epilot", - "people": [], - "source_type": "Company website -> Partners page, Portal Integration page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partnership to develop interface between BTC Netzportal and envelio's Intelligent Grid Platform Connection Request app for end-to-end grid connection process digitalization", - "partner_name": "BTC", - "people": [], - "source_type": "Company website -> Partners page, Portal Integration page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partnership integrating Smallworld GIS, Asset Management Suite, and envelio's Intelligent Grid Platform to automate grid connection processes", - "partner_name": "Mettenmeier", - "people": [], - "source_type": "Company website -> Partners page, GIS Integration page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partnership combining eSmart Systems' Grid Vision AI technology with envelio's IGP to expand virtual inspections and grid inventory capabilities", - "partner_name": "eSmart Systems", - "people": [], - "source_type": "Company website -> Partners page, Innovation Partner page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner in envelio's partner ecosystem", - "partner_name": "BeEnergy", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner in envelio's partner ecosystem", - "partner_name": "BentoNet", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner in envelio's partner ecosystem", - "partner_name": "BET Energie", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner in envelio's partner ecosystem", - "partner_name": "BUW", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner in envelio's partner ecosystem", - "partner_name": "co.met", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner in envelio's partner ecosystem", - "partner_name": "Comtac", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner in envelio's partner ecosystem", - "partner_name": "D E M GmbH", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner in envelio's partner ecosystem", - "partner_name": "Die Netzwerkpartner", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner in envelio's partner ecosystem", - "partner_name": "digikoo", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner in envelio's partner ecosystem", - "partner_name": "Digimondo", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner in envelio's partner ecosystem", - "partner_name": "EPRI", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner in envelio's partner ecosystem", - "partner_name": "IAEW RWTH Aachen", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner in envelio's partner ecosystem", - "partner_name": "INTENSE", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner in envelio's partner ecosystem", - "partner_name": "LACROIX SAE", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner in envelio's partner ecosystem", - "partner_name": "Lemonbeat", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner in envelio's partner ecosystem", - "partner_name": "Lovion", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner in envelio's partner ecosystem", - "partner_name": "repath", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner in envelio's partner ecosystem", - "partner_name": "Robotron", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner in envelio's partner ecosystem", - "partner_name": "smartOPTIMO", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner in envelio's partner ecosystem", - "partner_name": "SMIGHT", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner in envelio's partner ecosystem", - "partner_name": "SPIE", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner in envelio's partner ecosystem", - "partner_name": "Trianel", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner in envelio's partner ecosystem", - "partner_name": "Westenergie proDSO", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner in envelio's partner ecosystem", - "partner_name": "E.ON One", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner in envelio's partner ecosystem", - "partner_name": "Integral Analytics", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "One of Germany's largest distribution system operators that partnered with envelio's Intelligent Grid Platform to streamline interconnection requests for distributed energy resources", - "partner_name": "E.DIS Netz GmbH", - "people": [], - "source_type": "Company website -> Customer Stories" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Finnish electricity network serving 410,000+ customers in Helsinki that partnered with envelio's Intelligent Grid Platform", - "partner_name": "Helen Electricity Network", - "people": [], - "source_type": "Company website -> Customer Stories" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Grid operator that integrated envelio's Intelligent Grid Platform with epilot customer portal to reduce manual effort and process PV connection requests from three hours to 15 minutes", - "partner_name": "E-Werk Netze", - "people": [], - "source_type": "Company website -> References page" - } - ], - "target_company": "envelio" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Bregal Unternehmerkapital became majority owner of GUS Group through acquisition, with management and Elvaston retaining shares. Committed to long-term partnership supporting organic and strategic growth.", - "partner_name": "Bregal Unternehmerkapital", - "people": [ - "Dirk Bingler (GUS Group)" - ], - "source_type": "Company website -> News/Press Release" - }, - { - "category": "SUBSIDIARY", - "context": "GUS Group became majority shareholder in DORNER, an IT laboratory and life science specialist. DORNER is now part of GUS Group's network alongside Blomesystem GmbH and iCD System GmbH.", - "partner_name": "DORNER", - "people": [ - "Dirk Bingler (GUS Group)" - ], - "source_type": "Company website -> News/Press Release" - }, - { - "category": "SUBSIDIARY", - "context": "Part of GUS Group since 2017. Laboratory company integrated into GUS Group's portfolio of laboratory solutions providers in the DACH region.", - "partner_name": "Blomesystem GmbH", - "people": [ - "Dirk Bingler (GUS Group)" - ], - "source_type": "Company website -> News/Press Release" - }, - { - "category": "SUBSIDIARY", - "context": "Part of GUS Group since 2020. Laboratory company integrated into GUS Group's portfolio of laboratory solutions providers in the DACH region.", - "partner_name": "iCD System GmbH", - "people": [ - "Dirk Bingler (GUS Group)" - ], - "source_type": "Company website -> News/Press Release" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Previous majority owner of GUS Group. Retained share in company following Bregal Unternehmerkapital acquisition.", - "partner_name": "Elvaston", - "people": [], - "source_type": "Company website -> News/Press Release" - } - ], - "target_company": "GUS Group" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "CleverPartners is a joint solution with PartnerStack built to support B2B affiliate, referral, and reseller partner programs. Cleverbridge provides access to PartnerStack's network of over 100,000 B2B partners.", - "partner_name": "PartnerStack", - "people": [], - "source_type": "Cleverbridge website -> CleverPartners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Integration Hub powered by Workato for no-code connections to Cleverbridge platform.", - "partner_name": "Workato", - "people": [], - "source_type": "Cleverbridge website -> CleverPartners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Snowflake data sharing and BI tool compatibility with Cleverbridge platform.", - "partner_name": "Snowflake", - "people": [], - "source_type": "Cleverbridge website -> CleverPartners page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Dell uses Cleverbridge for subscription billing and eCommerce solutions. Mark Dykstra, Senior Manager of Internet Marketing at Dell, provided testimonial.", - "partner_name": "Dell", - "people": [ - "Mark Dykstra (Dell)" - ], - "source_type": "Cleverbridge website -> Our Clients page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Minitab uses Cleverbridge global subscription billing solutions. Jeff Ozarski, Business Development Manager at Minitab, provided testimonial about implementation.", - "partner_name": "Minitab", - "people": [ - "Jeff Ozarski (Minitab)" - ], - "source_type": "Cleverbridge website -> Our Clients page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "K9 Tools switched to Cleverbridge in 2009 for subscription billing and reporting capabilities. Chandan Garg is CEO.", - "partner_name": "K9 Tools", - "people": [ - "Chandan Garg (K9 Tools)" - ], - "source_type": "Cleverbridge website -> Our Clients page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Malwarebytes transitioned from perpetual license model to subscriptions using Cleverbridge platform. Marcin Kleczynski is CEO.", - "partner_name": "Malwarebytes", - "people": [ - "Marcin Kleczynski (Malwarebytes)" - ], - "source_type": "Cleverbridge website -> Our Clients page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "SmartBear uses Cleverbridge for eCommerce and subscription billing.", - "partner_name": "SmartBear", - "people": [], - "source_type": "InfoClutch Cleverbridge Customers List" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Webroot uses Cleverbridge for eCommerce and subscription billing.", - "partner_name": "Webroot", - "people": [], - "source_type": "InfoClutch Cleverbridge Customers List" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Paddle uses Cleverbridge for recurring billing and payments.", - "partner_name": "Paddle", - "people": [], - "source_type": "TheirStack.com - Companies using Cleverbridge" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Ashampoo uses Cleverbridge for recurring billing and payments.", - "partner_name": "Ashampoo GmbH & Co. KG", - "people": [], - "source_type": "TheirStack.com - Companies using Cleverbridge" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Amaris Consulting uses Cleverbridge for recurring billing and payments.", - "partner_name": "Amaris Consulting", - "people": [], - "source_type": "TheirStack.com - Companies using Cleverbridge" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Acronis uses Cleverbridge for recurring billing and payments.", - "partner_name": "Acronis", - "people": [], - "source_type": "TheirStack.com - Companies using Cleverbridge" - }, - { - "category": "REFERENCE_CLIENT", - "context": "PTC uses Cleverbridge for recurring billing and payments.", - "partner_name": "PTC", - "people": [], - "source_type": "TheirStack.com - Companies using Cleverbridge" - }, - { - "category": "REFERENCE_CLIENT", - "context": "ApprovalMax uses Cleverbridge for recurring billing and payments.", - "partner_name": "ApprovalMax", - "people": [], - "source_type": "TheirStack.com - Companies using Cleverbridge" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Alludo uses Cleverbridge for recurring billing and payments.", - "partner_name": "Alludo", - "people": [], - "source_type": "TheirStack.com - Companies using Cleverbridge" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Humanit uses Cleverbridge for recurring billing and payments.", - "partner_name": "Humanit", - "people": [], - "source_type": "TheirStack.com - Companies using Cleverbridge" - }, - { - "category": "REFERENCE_CLIENT", - "context": "FlippingBook uses Cleverbridge for eCommerce since 2016.", - "partner_name": "FlippingBook", - "people": [], - "source_type": "AppsRunTheWorld - Cleverbridge Customers Database" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Parallels International uses Cleverbridge for eCommerce since 2015.", - "partner_name": "Parallels International", - "people": [], - "source_type": "AppsRunTheWorld - Cleverbridge Customers Database" - }, - { - "category": "SUBSIDIARY", - "context": "Cleverbridge United States is a subsidiary of Cleverbridge, established 2014.", - "partner_name": "Cleverbridge United States", - "people": [], - "source_type": "AppsRunTheWorld - Cleverbridge Customers Database" - } - ], - "target_company": "Cleverbridge" - }, - { - "connections": [ - { - "category": "REFERENCE_CLIENT", - "context": "Global accounting giant listed as client of NAIX for document anonymization services", - "partner_name": "Ernst & Young (EY)", - "people": [], - "source_type": "YouTube video - Apertum SportsFuture Platform" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Elite magic circle law firm listed as client of NAIX for legal document anonymization", - "partner_name": "Clifford Chance", - "people": [], - "source_type": "YouTube video - Apertum SportsFuture Platform" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Major telecom leader listed as client of NAIX for document anonymization and GDPR compliance", - "partner_name": "Deutsche Telecom", - "people": [], - "source_type": "YouTube video - Apertum SportsFuture Platform" - } - ], - "target_company": "NAIX" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "TIMETOACT became an official partner of OpenChain (Linux Foundation project) to advise companies on open-source license management and ISO/IEC 5230 implementation", - "partner_name": "OpenChain", - "people": [ - "Simon Pletschacher (TIMETOACT)", - "Shane Coughlan (OpenChain)" - ], - "source_type": "OpenChain official website - Partnership announcement" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "TIMETOACT GROUP partnered with PLANET AI for application integration in Enterprise Content Management (ECM) using AI-powered document processing", - "partner_name": "PLANET AI", - "people": [ - "Nelson Fernandes (PLANET AI)", - "Dr. Matthias Quaisser (TIMETOACT GROUP)" - ], - "source_type": "PLANET AI website - Partnership announcement" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "TIMETOACT GROUP is listed as a Reseller partner of Raynet", - "partner_name": "Raynet", - "people": [], - "source_type": "Raynet partner page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "TIMETOACT GROUP is a strategic partner of Atlassian; catworkx (part of TIMETOACT GROUP) is an Atlassian Platinum Solution Partner", - "partner_name": "Atlassian", - "people": [], - "source_type": "Walldorf Consulting website (TIMETOACT GROUP subsidiary), catworkx website" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "TIMETOACT GROUP is a strategic partner of AWS; listed on AWS Marketplace offering cloud strategy, consulting, and implementation services", - "partner_name": "AWS", - "people": [], - "source_type": "Walldorf Consulting website, AWS Marketplace" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "TIMETOACT GROUP is a strategic partner of Google", - "partner_name": "Google", - "people": [], - "source_type": "Walldorf Consulting website" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "TIMETOACT GROUP is a strategic partner of IBM", - "partner_name": "IBM", - "people": [], - "source_type": "Walldorf Consulting website" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "TIMETOACT GROUP is a strategic partner of Microsoft", - "partner_name": "Microsoft", - "people": [], - "source_type": "Walldorf Consulting website" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "TIMETOACT GROUP is a strategic partner of SAP", - "partner_name": "SAP", - "people": [], - "source_type": "Walldorf Consulting website" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "TIMETOACT is a Reseller Partner for Hyland's OnBase product, offering cloud transformation and process integration solutions", - "partner_name": "Hyland (OnBase)", - "people": [], - "source_type": "Hyland partner directory" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "TIMETOACT is a strategic ESG consulting and reseller partner of Sustaira for sustainability software solutions in the DACH region", - "partner_name": "Sustaira", - "people": [ - "Vincent de la Mar (Sustaira)" - ], - "source_type": "Sustaira blog - Partnership announcement" - }, - { - "category": "REFERENCE_CLIENT", - "context": "KWC Professional is a reference client with testimonial on TIMETOACT website praising their constructive collaboration", - "partner_name": "KWC Professional", - "people": [ - "Viktor Bernhardt (KWC Professional)" - ], - "source_type": "TIMETOACT GROUP website - Success stories/testimonials" - }, - { - "category": "REFERENCE_CLIENT", - "context": "ZF is a reference client with testimonial on TIMETOACT website highlighting productive collaboration and short communication channels", - "partner_name": "ZF", - "people": [ - "Sarah Moser (ZF)" - ], - "source_type": "TIMETOACT GROUP website - Success stories/testimonials" - }, - { - "category": "REFERENCE_CLIENT", - "context": "N-ERGIE is a reference client with testimonial on TIMETOACT website praising resource availability and support", - "partner_name": "N-ERGIE", - "people": [ - "Wolfgang Schütz (N-ERGIE)" - ], - "source_type": "TIMETOACT GROUP website - Success stories/testimonials" - }, - { - "category": "REFERENCE_CLIENT", - "context": "HDI IT is a reference client with testimonial on TIMETOACT website regarding ITAM system development support", - "partner_name": "HDI IT", - "people": [ - "Patrick Milas (HDI IT)" - ], - "source_type": "TIMETOACT GROUP website - Success stories/testimonials" - }, - { - "category": "SUBSIDIARY", - "context": "ARS is one of the eight IT brands comprising TIMETOACT GROUP", - "partner_name": "ARS", - "people": [], - "source_type": "TIMETOACT GROUP website, Raynet partner page, Hyland partner directory" - }, - { - "category": "SUBSIDIARY", - "context": "CLOUDPILOTS is one of the eight IT brands comprising TIMETOACT GROUP", - "partner_name": "CLOUDPILOTS", - "people": [], - "source_type": "TIMETOACT GROUP website, Raynet partner page" - }, - { - "category": "SUBSIDIARY", - "context": "edcom is one of the eight IT brands comprising TIMETOACT GROUP", - "partner_name": "edcom", - "people": [], - "source_type": "TIMETOACT GROUP website, Raynet partner page" - }, - { - "category": "SUBSIDIARY", - "context": "IPG is one of the eight IT brands comprising TIMETOACT GROUP", - "partner_name": "IPG", - "people": [], - "source_type": "TIMETOACT GROUP website, Raynet partner page" - }, - { - "category": "SUBSIDIARY", - "context": "novaCapta is one of the eight IT brands comprising TIMETOACT GROUP", - "partner_name": "novaCapta", - "people": [], - "source_type": "TIMETOACT GROUP website, Raynet partner page" - }, - { - "category": "SUBSIDIARY", - "context": "synaigy is one of the eight IT brands comprising TIMETOACT GROUP", - "partner_name": "synaigy", - "people": [], - "source_type": "TIMETOACT GROUP website, Raynet partner page" - }, - { - "category": "SUBSIDIARY", - "context": "X-INTEGRATE is one of the eight IT brands comprising TIMETOACT GROUP", - "partner_name": "X-INTEGRATE", - "people": [], - "source_type": "TIMETOACT GROUP website, Raynet partner page" - }, - { - "category": "SUBSIDIARY", - "context": "catworkx is part of TIMETOACT GROUP and an Atlassian Platinum Solution Partner", - "partner_name": "catworkx", - "people": [], - "source_type": "catworkx website" - }, - { - "category": "SUBSIDIARY", - "context": "brainbits was acquired by catworkx (part of TIMETOACT GROUP) as a regional Atlassian specialist", - "partner_name": "brainbits", - "people": [], - "source_type": "catworkx website" - }, - { - "category": "SUBSIDIARY", - "context": "STAGIL was acquired by catworkx (part of TIMETOACT GROUP) as a regional Atlassian specialist", - "partner_name": "STAGIL", - "people": [], - "source_type": "catworkx website" - }, - { - "category": "SUBSIDIARY", - "context": "Zuara was acquired by catworkx (part of TIMETOACT GROUP) as a regional Atlassian specialist", - "partner_name": "Zuara", - "people": [], - "source_type": "catworkx website" - }, - { - "category": "SUBSIDIARY", - "context": "EverIT was acquired by catworkx (part of TIMETOACT GROUP) as a regional Atlassian specialist", - "partner_name": "EverIT", - "people": [], - "source_type": "catworkx website" - }, - { - "category": "SUBSIDIARY", - "context": "Herzum became part of catworkx and TIMETOACT GROUP, expanding presence in the USA as an Atlassian specialist", - "partner_name": "Herzum", - "people": [], - "source_type": "catworkx website" - }, - { - "category": "SUBSIDIARY", - "context": "Walldorf Consulting is part of TIMETOACT GROUP", - "partner_name": "Walldorf Consulting", - "people": [], - "source_type": "Walldorf Consulting website" - } - ], - "target_company": "TIMETOACT Software & Consulting GmbH" - }, - { - "connections": [], - "target_company": "The Good Workshop" - }, - { - "connections": [ - { - "category": "REFERENCE_CLIENT", - "context": "Partnering with Circle K - 17,000+ sites across Europe - to build a next-gen EV charging app", - "partner_name": "Circle K", - "people": [], - "source_type": "Widelab website -> Case Study/Project showcase" - }, - { - "category": "REFERENCE_CLIENT", - "context": "CloudKitchens, from ex-Uber CEO Travis Kalanick, builds delivery-first kitchens to reinvent food delivery", - "partner_name": "CloudKitchens", - "people": [], - "source_type": "Widelab website -> Client showcase" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Helped platform providing a quick fix in gaining capital for start-up founders to gather 161M+$", - "partner_name": "Founderpath", - "people": [], - "source_type": "Widelab website -> Client showcase" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as client in Widelab's portfolio", - "partner_name": "Zenity", - "people": [], - "source_type": "Widelab website -> Client logo carousel" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as client in Widelab's portfolio", - "partner_name": "Xyte", - "people": [], - "source_type": "Widelab website -> Client logo carousel" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as client in Widelab's portfolio", - "partner_name": "Wibbitz", - "people": [], - "source_type": "Widelab website -> Client logo carousel" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as client in Widelab's portfolio", - "partner_name": "Frontegg", - "people": [], - "source_type": "Widelab website -> Client logo carousel" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as client in Widelab's portfolio", - "partner_name": "Koro", - "people": [], - "source_type": "Widelab website -> Client logo carousel" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as client in Widelab's portfolio", - "partner_name": "Diesel", - "people": [], - "source_type": "Widelab website -> Client logo carousel" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as client in Widelab's portfolio", - "partner_name": "Monclear", - "people": [], - "source_type": "Widelab website -> Client logo carousel" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as client in Widelab's portfolio", - "partner_name": "Hopin", - "people": [], - "source_type": "Widelab website -> Client logo carousel" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as client in Widelab's portfolio", - "partner_name": "Train Effective", - "people": [], - "source_type": "Widelab website -> Client logo carousel" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as client in Widelab's portfolio", - "partner_name": "Gaivota", - "people": [], - "source_type": "Widelab website -> Client logo carousel" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as client in Widelab's portfolio", - "partner_name": "WeWork", - "people": [], - "source_type": "Widelab website -> Client logo carousel" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as client in Widelab's portfolio", - "partner_name": "Fitch Ratings", - "people": [], - "source_type": "Widelab website -> Client logo carousel" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as client in Widelab's portfolio", - "partner_name": "Traba", - "people": [], - "source_type": "Widelab website -> Client logo carousel" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as client in Widelab's portfolio", - "partner_name": "Trolley", - "people": [], - "source_type": "Widelab website -> Client logo carousel" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as client in Widelab's portfolio", - "partner_name": "Minnow", - "people": [], - "source_type": "Widelab website -> Client logo carousel" - } - ], - "target_company": "Widget Lab" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Google Translate services integrated into Dakwak's machine translation option; Mike Cassidy served as mentor to Dakwak team at Oasis500 incubator", - "partner_name": "Google", - "people": [ - "Mike Cassidy (Google)" - ], - "source_type": "Company website/News article" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Bing Translate services integrated into Dakwak's machine translation option", - "partner_name": "Bing", - "people": [], - "source_type": "Company website/News article" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Professional translation agency partner leveraged in Dakwak's full translation solution combining APIs and professional translation services", - "partner_name": "Gengo", - "people": [], - "source_type": "Company website/News article" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as one of Dakwak's 12 clients during beta launch phase", - "partner_name": "Fustany.com", - "people": [], - "source_type": "Company website/News article" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Complementary crowdsourced translation platform with potential API integration into Dakwak's system for professional translation services", - "partner_name": "Qordoba", - "people": [], - "source_type": "Company website/News article" - } - ], - "target_company": "Dakwak" - }, - { - "connections": [], - "target_company": "plusserver" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Pride Capital Partners provided seven-figure growth financing to talentsconnect AG. Described as a financing partner specializing in the software and IT industry supporting talentsconnect's transformation from sales-led to product-led growth.", - "partner_name": "Pride Capital Partners", - "people": [ - "Lars van 't Hoenderdaal (Pride Capital Partners)" - ], - "source_type": "Company website -> News/Press" - }, - { - "category": "REFERENCE_CLIENT", - "context": "E.ON is listed as one of more than 250 customers using the JobShop product.", - "partner_name": "E.ON", - "people": [], - "source_type": "Company website -> News/Press" - }, - { - "category": "REFERENCE_CLIENT", - "context": "McDonald's is listed as one of more than 250 customers using the JobShop product.", - "partner_name": "McDonald's", - "people": [], - "source_type": "Company website -> News/Press" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Viessmann is listed as one of more than 250 customers using the JobShop product.", - "partner_name": "Viessmann", - "people": [], - "source_type": "Company website -> News/Press" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Fressnapf is listed as one of more than 250 customers using the JobShop product.", - "partner_name": "Fressnapf", - "people": [], - "source_type": "Company website -> News/Press" - }, - { - "category": "REFERENCE_CLIENT", - "context": "OBI is listed as one of more than 250 customers using the JobShop product.", - "partner_name": "OBI", - "people": [], - "source_type": "Company website -> News/Press" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Deutsche Börse is listed as one of more than 250 customers using the JobShop product.", - "partner_name": "Deutsche Börse", - "people": [], - "source_type": "Company website -> News/Press" - } - ], - "target_company": "talentsconnect AG" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "VR Expert supports Draxon with full-service hardware deployment strategy including custom-designed flight cases, stock and logistics management, pre-installation of software, and ongoing logistical support for global rollout of aviation VR training solutions.", - "partner_name": "VR Expert", - "people": [ - "Alexander Obermüller (VR Expert)" - ], - "source_type": "Company website -> Blog/News Article" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partnership combining wingsacademy's web-based theoretical training with Draxon's VR modules for aircraft ground handling. Cooperation agreement signed in May to offer harmonized theoretical and VR training solutions tailored to the aviation industry.", - "partner_name": "wingsacademy", - "people": [], - "source_type": "Company website -> News/Partnership Announcement" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Draxon is listed as an IATA Strategic Partner providing standardized VR training for ground handlers based on IATA standards (AHM 1110 and IGOM).", - "partner_name": "IATA", - "people": [], - "source_type": "IATA Strategic Partners Directory" - } - ], - "target_company": "Draxon" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as an Enterprise Partner for content management and composable architecture solutions", - "partner_name": "Contentful", - "people": [], - "source_type": "Company website -> Enterprise Partners section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as an Enterprise Partner for headless CMS and content experience solutions", - "partner_name": "Storyblok", - "people": [], - "source_type": "Company website -> Enterprise Partners section; Storyblok partner page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as an Enterprise Partner for content management systems", - "partner_name": "TYPO3", - "people": [], - "source_type": "Company website -> Enterprise Partners section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Strategic partnership for e-commerce platform development and scaling; Max Helke quoted on Scayle partner page", - "partner_name": "Scayle", - "people": [ - "Max Helke (BRANDUNG)" - ], - "source_type": "Company website -> Enterprise Partners section; Scayle partner page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as an Enterprise Partner for e-commerce solutions", - "partner_name": "Shopware", - "people": [], - "source_type": "Company website -> Enterprise Partners section; Shopware partner page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Solution Partner for e-commerce and digital communication", - "partner_name": "Spryker", - "people": [], - "source_type": "Company website -> Enterprise Partners section; Spryker partner page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as an Enterprise Partner for product information management", - "partner_name": "Akeneo", - "people": [], - "source_type": "Company website -> Enterprise Partners section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Premium partner in Usercentrics partner network", - "partner_name": "Usercentrics", - "people": [], - "source_type": "Usercentrics partner network page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Named as a customer that trusts BRANDUNG", - "partner_name": "Tchibo Mobil", - "people": [], - "source_type": "Company website -> Customers section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Named as a customer for e-commerce platform development", - "partner_name": "Snipes", - "people": [], - "source_type": "Company website -> Customers section; Scayle partner page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Named as a customer (WWF Germany)", - "partner_name": "WWF", - "people": [], - "source_type": "Company website -> Customers section; Storyblok partner page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Named as a customer in insurance sector", - "partner_name": "HDI Versicherung", - "people": [], - "source_type": "Company website -> Customers section; Storyblok partner page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Named as a customer", - "partner_name": "McFIT", - "people": [], - "source_type": "Company website -> Customers section; Storyblok partner page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Named as a customer", - "partner_name": "Diakonie", - "people": [], - "source_type": "Company website -> Customers section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Named as a customer in FMCG sector", - "partner_name": "Bahlsen", - "people": [], - "source_type": "Company website -> Customers section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Named as a fashion e-commerce customer", - "partner_name": "Kapten & Son", - "people": [], - "source_type": "Company website -> E-Commerce expertise section; Scayle partner page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Named as a fashion e-commerce customer", - "partner_name": "About You", - "people": [], - "source_type": "Company website -> E-Commerce expertise section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Named as a fashion e-commerce customer", - "partner_name": "Steiff", - "people": [], - "source_type": "Company website -> E-Commerce expertise section; Storyblok partner page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Named as a customer for e-commerce platform development", - "partner_name": "Gerry Weber", - "people": [], - "source_type": "Scayle partner page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Named as a customer for e-commerce platform development", - "partner_name": "Deichmann", - "people": [], - "source_type": "Scayle partner page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Named as a customer for e-commerce platform development", - "partner_name": "Renault", - "people": [], - "source_type": "Scayle partner page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Named as a customer", - "partner_name": "German Red Cross", - "people": [], - "source_type": "Storyblok partner page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Named as a customer", - "partner_name": "Carhartt WIP", - "people": [], - "source_type": "Storyblok partner page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Named as a customer in sports sector", - "partner_name": "1. FC Köln", - "people": [], - "source_type": "Storyblok partner page" - } - ], - "target_company": "BRANDUNG" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Intentsify is listed as a partner in LiveRamp's partner directory. LiveRamp customers benefit from Intentsify's B2B intent data, identity graph, and audience activation solutions integrated with LiveRamp's platform.", - "partner_name": "LiveRamp", - "people": [], - "source_type": "LiveRamp partner directory" - } - ], - "target_company": "Intentify" - }, - { - "connections": [], - "target_company": "YouCharge.Me" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Led AuditOne's seed funding round of €800k in December 2023", - "partner_name": "High-Tech Gründerfonds (HTGF)", - "people": [ - "Tobias Jacob (HTGF)" - ], - "source_type": "Company website -> About/Funding, HTGF website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Industry-leading project audited by AuditOne; launched $1 million bug bounty partnership with AuditOne; Aurora ecosystem security partner", - "partner_name": "Aurora", - "people": [], - "source_type": "Company website -> Track Record" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Industry-leading project audited by AuditOne", - "partner_name": "Humans.ai", - "people": [], - "source_type": "Company website -> Track Record" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Industry-leading project audited by AuditOne", - "partner_name": "RedStone", - "people": [], - "source_type": "Company website -> Track Record" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Established partnership with AuditOne", - "partner_name": "Tokenize.it", - "people": [], - "source_type": "Company website -> Track Record" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Joined forces with AuditOne", - "partner_name": "Soonaverse", - "people": [], - "source_type": "Company website -> Track Record" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Post-audit security collaboration with AuditOne", - "partner_name": "Cyverse", - "people": [], - "source_type": "Company website -> Track Record" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Client testimonial praising AuditOne's smart contract auditing services", - "partner_name": "Miljn AI", - "people": [ - "Olaf Birkner (Miljn AI)" - ], - "source_type": "Company website -> Testimonials" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Client testimonial praising AuditOne's security gap identification services", - "partner_name": "Newwit", - "people": [ - "Taylor (Newwit)" - ], - "source_type": "Company website -> Testimonials" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Client testimonial praising AuditOne's smart contract auditing and security standards", - "partner_name": "TokenLabs.network", - "people": [ - "Adrien (TokenLabs.network)" - ], - "source_type": "Company website -> Testimonials" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partner offering coverage pools for AuditOne-audited smart contracts", - "partner_name": "Safura", - "people": [], - "source_type": "Company website -> About" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Venture builder that supported AuditOne's inception", - "partner_name": "Soonami.io", - "people": [], - "source_type": "News article (fintech.global)" - } - ], - "target_company": "AuditOne GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Joint investor in F4e's $1M funding round for AI-powered performance management platform", - "partner_name": "Arya GSYF", - "people": [], - "source_type": "F4e website - Investment announcement" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Joint investor in F4e's $1M funding round; Maxis Coordinator Selami Düz commented on the synergy between Maxis funds", - "partner_name": "Maxis Ventures", - "people": [ - "Selami Düz (Maxis Ventures)" - ], - "source_type": "F4e website - Investment announcement" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Investor in F4e's $1M funding round for AI-powered performance management platform", - "partner_name": "Boğaziçi Ventures", - "people": [], - "source_type": "F4e website - Investment announcement" - } - ], - "target_company": "F4e" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "SUNZINET is a certified Contentful Silver Partner with expertise in headless CMS and MACH architecture, having delivered over 100 CMS projects", - "partner_name": "Contentful", - "people": [], - "source_type": "Company website -> Partner Directory" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "SUNZINET is a certified HubSpot Platinum Partner offering CRM implementation, marketing automation, and CMS solutions", - "partner_name": "HubSpot", - "people": [ - "Katrin Köster (BPW)" - ], - "source_type": "Company website -> HubSpot Agency Page, HubSpot Ecosystem" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "SUNZINET is a Shopware Platinum Partner supporting ecommerce project implementation", - "partner_name": "Shopware", - "people": [], - "source_type": "Shopware Partner Directory" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "SUNZINET is listed as a partner agency on Storyblok's platform", - "partner_name": "Storyblok", - "people": [], - "source_type": "Storyblok Partner Directory" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "SUNZINET is an Actindo Sales Partner for cloud-based ERP and omni-channel commerce solutions", - "partner_name": "Actindo", - "people": [], - "source_type": "Company website -> Partners Page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "SUNZINET is a Crownpeak Premier Partner with close cooperation for software implementation and support", - "partner_name": "Crownpeak", - "people": [], - "source_type": "Company website -> Partners Page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "SUNZINET is a Flip Partner for employee app integration and digital workplace solutions", - "partner_name": "Flip", - "people": [], - "source_type": "Company website -> Partners Page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Fraunhofer Institute FIT has been a strategic partner for over five years in usability and joint projects", - "partner_name": "Fraunhofer Institute FIT", - "people": [], - "source_type": "Company website -> Partners Page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "SUNZINET is an official Hootsuite partner agency", - "partner_name": "Hootsuite", - "people": [], - "source_type": "Company website -> Partners Page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "SUNZINET is an Inxmail Technology Partner", - "partner_name": "Inxmail", - "people": [], - "source_type": "Company website -> Partners Page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "SUNZINET is a certified Salesforce partner offering CRM implementation and integration services", - "partner_name": "Salesforce", - "people": [], - "source_type": "Company website -> CRM Implementation Page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "SUNZINET is a certified Microsoft Dynamics partner with integration capabilities", - "partner_name": "Microsoft Dynamics", - "people": [], - "source_type": "Company website -> CRM Implementation Page, HubSpot Ecosystem" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Bosch is listed as a client of SUNZINET", - "partner_name": "Bosch", - "people": [], - "source_type": "Company website -> Partner Overview, Storyblok Partner Directory" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Siemens is listed as a client of SUNZINET", - "partner_name": "Siemens", - "people": [], - "source_type": "Company website -> Partner Overview, Storyblok Partner Directory, HubSpot Ecosystem" - }, - { - "category": "REFERENCE_CLIENT", - "context": "ZEISS is listed as a client of SUNZINET", - "partner_name": "ZEISS", - "people": [], - "source_type": "Company website -> Partner Overview, Storyblok Partner Directory" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Canon is listed as a client of SUNZINET", - "partner_name": "Canon", - "people": [], - "source_type": "Company website -> Partner Overview, HubSpot Ecosystem" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Creditreform is listed as a client of SUNZINET", - "partner_name": "Creditreform", - "people": [], - "source_type": "Company website -> Partner Overview, Storyblok Partner Directory" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Schufa is listed as a client of SUNZINET", - "partner_name": "Schufa", - "people": [], - "source_type": "Company website -> Partner Overview, Storyblok Partner Directory" - }, - { - "category": "REFERENCE_CLIENT", - "context": "BPW is listed as a client of SUNZINET with testimonial from Katrin Köster", - "partner_name": "BPW", - "people": [ - "Katrin Köster (BPW)" - ], - "source_type": "Company website -> Partner Overview, Storyblok Partner Directory" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Deutsche Familienversicherung is listed as a client of SUNZINET", - "partner_name": "Deutsche Familienversicherung", - "people": [], - "source_type": "Company website -> Partner Overview, Storyblok Partner Directory" - }, - { - "category": "REFERENCE_CLIENT", - "context": "OBI is listed as a client of SUNZINET", - "partner_name": "OBI", - "people": [], - "source_type": "Company website -> Partner Overview, Storyblok Partner Directory" - }, - { - "category": "REFERENCE_CLIENT", - "context": "RTL is listed as a client of SUNZINET", - "partner_name": "RTL", - "people": [], - "source_type": "Company website -> Partner Overview, Storyblok Partner Directory" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Ecclesia is listed as a client of SUNZINET", - "partner_name": "Ecclesia", - "people": [], - "source_type": "HubSpot Ecosystem" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Volksbank is listed as a client of SUNZINET", - "partner_name": "Volksbank", - "people": [], - "source_type": "HubSpot Ecosystem" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Lufthansa Airplus is listed as a client of SUNZINET", - "partner_name": "Lufthansa Airplus", - "people": [], - "source_type": "HubSpot Ecosystem" - }, - { - "category": "REFERENCE_CLIENT", - "context": "SUNZINET won the German Brand Award 2024 for their AIFS project involving platform development and HubSpot integration", - "partner_name": "AIFS", - "people": [], - "source_type": "HubSpot Ecosystem" - }, - { - "category": "REFERENCE_CLIENT", - "context": "DuMont Mediengruppe is a client with testimonial from Enterprise Architect Jörg Bartke regarding intranet solution selection", - "partner_name": "DuMont Mediengruppe", - "people": [ - "Jörg Bartke (DuMont Mediengruppe)" - ], - "source_type": "Company website -> Homepage" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Niedax is listed as a project client for brand relaunch", - "partner_name": "Niedax", - "people": [], - "source_type": "Company website -> HubSpot Agency Page" - } - ], - "target_company": "SUNZINET GmbH" - }, - { - "connections": [], - "target_company": "Banking One" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "denkwerk is listed as a Bronze Partner on Intershop's partner page", - "partner_name": "Intershop", - "people": [], - "source_type": "Company website -> Partner Directory" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "denkwerk is listed as a partner on CoreMedia's partner page", - "partner_name": "CoreMedia", - "people": [], - "source_type": "Company website -> Partner Directory" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "denkwerk is listed as a Gold Partner on Ibexa's partner page", - "partner_name": "Ibexa", - "people": [], - "source_type": "Company website -> Partner Directory" - }, - { - "category": "REFERENCE_CLIENT", - "context": "denkwerk served as strategic partner for STIEBEL ELTRON's E-Commerce transformation, developing a scalable platform architecture and digital strategy", - "partner_name": "STIEBEL ELTRON", - "people": [ - "José Salam (denkwerk)" - ], - "source_type": "denkwerk website -> Case Study/Blog" - }, - { - "category": "REFERENCE_CLIENT", - "context": "denkwerk led a cross-media campaign for easyCredit's liquidity management product, working on strategy, brand story, and campaign launch", - "partner_name": "easyCredit", - "people": [], - "source_type": "denkwerk website -> Blog" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a long-term client of denkwerk", - "partner_name": "BMW", - "people": [], - "source_type": "CoreMedia partner page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a long-term client of denkwerk", - "partner_name": "OBI", - "people": [], - "source_type": "CoreMedia partner page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a long-term client of denkwerk", - "partner_name": "UNICEF", - "people": [], - "source_type": "CoreMedia partner page" - } - ], - "target_company": "denkwerk GmbH" - }, - { - "connections": [], - "target_company": "QUiNFOS" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Qvest Group renewed Gold sponsorship with SVG Europe; Qvest.US signed Premier sponsorship with SVG in the US. Partnership allows deepening relationships with media professionals.", - "partner_name": "SVG Europe", - "people": [ - "Justin Karpowich (Qvest.US)" - ], - "source_type": "Company website -> Blog, SVG Europe website" - }, - { - "category": "SUBSIDIARY", - "context": "Qvest Group acquired Hamburg-based OTT specialist TeraVolt. TeraVolt is now an integral part of Qvest, providing OTT solutions for TV, streaming platforms and content providers.", - "partner_name": "TeraVolt", - "people": [ - "Tobias Künkel (TeraVolt CEO)", - "Peter Nöthen (Qvest Group CEO)" - ], - "source_type": "Company website -> News/Acquisition announcement" - }, - { - "category": "REFERENCE_CLIENT", - "context": "TeraVolt (now Qvest subsidiary) has long-standing partnership with broadcaster ZDF for OTT and digital platform services.", - "partner_name": "ZDF", - "people": [], - "source_type": "Company website -> News/Acquisition announcement (TeraVolt partnership)" - }, - { - "category": "REFERENCE_CLIENT", - "context": "TeraVolt (now Qvest subsidiary) has long-standing partnership with broadcaster RTL for OTT and digital platform services.", - "partner_name": "RTL", - "people": [], - "source_type": "Company website -> News/Acquisition announcement (TeraVolt partnership)" - }, - { - "category": "REFERENCE_CLIENT", - "context": "TeraVolt (now Qvest subsidiary) has long-standing partnership with Deutsche Telekom's Magenta Sport digital platform.", - "partner_name": "Deutsche Telekom (Magenta Sport)", - "people": [], - "source_type": "Company website -> News/Acquisition announcement (TeraVolt partnership)" - }, - { - "category": "REFERENCE_CLIENT", - "context": "TeraVolt (now Qvest subsidiary) has long-standing partnership with digital platform Vodafone for OTT services.", - "partner_name": "Vodafone", - "people": [], - "source_type": "Company website -> News/Acquisition announcement (TeraVolt partnership)" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Qvest is listed as an AWS Partner, serving clients across media & entertainment, telecom, automotive, healthcare, consumer goods, retail, logistics, and public sector.", - "partner_name": "Amazon Web Services (AWS)", - "people": [], - "source_type": "AWS Partner Network listing" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Qvest is a Salesforce consulting partner with deep Salesforce experience, delivering solutions for media & entertainment clients including broadcasters, publishers, and agencies.", - "partner_name": "Salesforce", - "people": [], - "source_type": "Salesforce AppExchange listing" - } - ], - "target_company": "Qvest Global" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "HERE Technologies provides map and location services technology integrated into LKW.APP, including truck routing service and geodata translation. MBI Geodata acts as the licensed interface between HERE and Aparkado.", - "partner_name": "HERE Technologies", - "people": [ - "Roland Moussavi (Aparkado)" - ], - "source_type": "Company website -> Partners page, Blog" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "MBI Geodata is the licensed HERE solution partner that provides the interface and contact for projects between HERE Technologies and LKW.APP, enabling seamless communication and collaboration.", - "partner_name": "MBI Geodata", - "people": [ - "Roland Moussavi (Aparkado)" - ], - "source_type": "Company website -> Partners page, MBI Geodata website" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Industry partner offering vehicle rental and subletting services integrated with LKW.APP for commercial vehicle management.", - "partner_name": "COLONIA", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Product partner providing GDPR compliance and personal data protection solutions for Aparkado.", - "partner_name": "heydata", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Network partner collaborating with Aparkado on logistics industry initiatives.", - "partner_name": "Logistik.NRW", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Product partner integrated with LKW.APP ecosystem.", - "partner_name": "Michael Bauer International", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Product partner providing data space solutions for Aparkado.", - "partner_name": "Mobility Data Space (MDS)", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Industry partner specializing in recruiting qualified specialists for logistics companies using LKW.APP.", - "partner_name": "SimpleJOBS GmbH", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Network partner, logistics industry association focused on fighting blood cancer and blood-forming system diseases.", - "partner_name": "Blut transportiert", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Product partner providing loyalty solutions integrated with LKW.APP.", - "partner_name": "cb loyalty GmbH", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Industry partner collaborating with Aparkado on logistics solutions.", - "partner_name": "Sirum GmbH", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Provides real-time truck parking occupancy data powered by Toll Collect for LKW.APP.", - "partner_name": "Toll Collect", - "people": [], - "source_type": "Google Play Store listing" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Provides real-time truck parking occupancy data powered by Autobahn GmbH for LKW.APP.", - "partner_name": "Autobahn GmbH", - "people": [], - "source_type": "Google Play Store listing" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Provides live shipment tracking integration within LKW.APP for transport visibility and dispatcher management.", - "partner_name": "TIMOCOM", - "people": [], - "source_type": "Google Play Store listing, App Store listing" - } - ], - "target_company": "Aparkado" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Official partnership announced in May 2025 to provide municipalities with comprehensive solutions for digitalization and modernization of public buildings, combining HottCAD with PLAN4 software", - "partner_name": "PLAN4 Software GmbH", - "people": [], - "source_type": "Company website -> Blog/News" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Hottgenroth became the 79th E-Markenpartner in December 2023, joining the alliance to support digitalization in electrical trades", - "partner_name": "Qualitätsbündnis der E-Handwerke (E-Markenpartner)", - "people": [ - "Stefan Ehinger (Zentralverband der Deutschen Elektro- und Informationstechnischen Handwerke)" - ], - "source_type": "Third-party website (software-journal.de)" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Hottgenroth Software engages as a member in the VDI BIM Coordination Circle working on BIM guidelines and standards", - "partner_name": "VDI (Verein Deutscher Ingenieure)", - "people": [], - "source_type": "Company website -> BIM page" - } - ], - "target_company": "Hottgenroth Gruppe" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Strategic partnership with jointly developed material compliance web portal. gds is a full-service provider for technical documentation and part of technotrans SE group.", - "partner_name": "gds GmbH", - "people": [ - "Ludger Heisterkamp (gds GmbH)", - "Martin Hecker (AmaliTech)" - ], - "source_type": "Company website -> Blog article" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Official partnership announced April 2025. AmaliTech created proprietary AI tool for Silverside to streamline large-scale brand campaign development. Partnership spans entire brand portfolio.", - "partner_name": "Silverside AI", - "people": [ - "Martin Hecker (AmaliTech)" - ], - "source_type": "Company website -> Blog article" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Collaboration launched November 2023 to train over 5,000 people in cloud computing in Ghana. AWS Partner Network investment allocated over three years. Joint pledge for sustainable local job creation with Cloud Architect roles.", - "partner_name": "Amazon Web Services (AWS)", - "people": [ - "Martin Hecker (AmaliTech)" - ], - "source_type": "Company website -> Cloud Transformation page, external news source" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Small digital agency that engaged AmaliTech for capacity expansion and long-term team expansion on new project.", - "partner_name": "RockIT Manufacturing GmbH", - "people": [], - "source_type": "Company website -> Collaboration Models page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Fortune 500 brand utilizing Silverside AI's services powered by AmaliTech's proprietary AI tool for custom content creation at scale.", - "partner_name": "Coca-Cola", - "people": [], - "source_type": "Company website -> Blog article" - } - ], - "target_company": "AmaliTech" - }, - { - "connections": [], - "target_company": "7P Group" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "HANNOVER Finanz acquired a 40% minority stake in Appmatics GmbH as part of a growth financing deal. Founders retain 60% stake and continue development together.", - "partner_name": "HANNOVER Finanz", - "people": [ - "Christian Groebe (Appmatics)", - "Ayk Odabasyan (Appmatics)" - ], - "source_type": "Company website -> About section, Deloitte Legal transaction announcement" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Eurowings uses Appmatics for quality assurance testing of travel and bookings digital products through manual testing services.", - "partner_name": "Eurowings", - "people": [], - "source_type": "Company website -> Case Studies, About section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Deutsche Bahn is listed as a customer for whom Appmatics tests digital products for function, usability and performance.", - "partner_name": "Deutsche Bahn", - "people": [], - "source_type": "Company website -> About section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "TUI is listed as a customer for whom Appmatics tests digital products for function, usability and performance.", - "partner_name": "TUI", - "people": [], - "source_type": "Company website -> About section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "BVG is listed as a customer for whom Appmatics tests digital products for function, usability and performance.", - "partner_name": "BVG", - "people": [], - "source_type": "Company website -> About section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Aktion Mensch is listed as a customer for whom Appmatics tests digital products for function, usability and performance.", - "partner_name": "Aktion Mensch", - "people": [], - "source_type": "Company website -> About section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Duden is listed as a customer for whom Appmatics tests digital products for function, usability and performance.", - "partner_name": "Duden", - "people": [], - "source_type": "Company website -> About section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Springer Fachmedien is listed as a customer for whom Appmatics tests digital products for function, usability and performance.", - "partner_name": "Springer Fachmedien", - "people": [], - "source_type": "Company website -> About section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "WetterOnline is listed as a customer for whom Appmatics tests digital products for function, usability and performance.", - "partner_name": "WetterOnline", - "people": [], - "source_type": "Company website -> About section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Wanzl is featured in Appmatics case studies for QA consulting services, setting new standards with innovative quality assurance strategies.", - "partner_name": "Wanzl", - "people": [], - "source_type": "Company website -> Case Studies" - } - ], - "target_company": "Appmatics GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "empower participates in the Microsoft Compatibility Lab and works closely with the Microsoft 365 Developer Team to define APIs for new Web add-ins. Microsoft is also a client using empower to manage their extensive slide libraries.", - "partner_name": "Microsoft", - "people": [], - "source_type": "Company website -> Microsoft Partnership page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "empower Suite integrates with Frontify's DAM and Brand Guidelines to streamline design workflows and ensure brand consistency in Microsoft Office documents.", - "partner_name": "Frontify", - "people": [], - "source_type": "Frontify integrations page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Integration between Bynder and empower Suite enables seamless access to Bynder's image library directly through empower for document creation in Microsoft Office.", - "partner_name": "Bynder", - "people": [], - "source_type": "Bynder marketplace" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "empower is listed on SoftwareOne Marketplace as a productivity solution that seamlessly integrates with Microsoft's cloud services.", - "partner_name": "SoftwareOne", - "people": [], - "source_type": "SoftwareOne Marketplace" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "sa.global, a Microsoft Dynamics 365 Gold Partner, develops the empower suite of cloud-based productivity solutions built on Microsoft Dynamics 365, Power Platform, and Azure for Professional Services firms.", - "partner_name": "sa.global", - "people": [], - "source_type": "sa.global news article" - } - ], - "target_company": "empower" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Partnership started May 1, 2024. Mapel SPA, a specialist in production of knitted fabrics for fashion industry, joined DMIx ecosystem to digitally offer products and drive digital transformation.", - "partner_name": "Mapel SPA", - "people": [], - "source_type": "DMIx company website -> Partnership announcement" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Leading Portuguese textile manufacturer using DMIx platform for digital product development. Partnered with ColorDigital GmbH to use DMIx for accelerating digital transformation and reducing environmental impact in sampling and prototype processes.", - "partner_name": "IMPETUS GROUP", - "people": [], - "source_type": "DMIx company website -> Case Study" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Strategic partnership announced May 2025. World's leading manufacturer in thread and structural components for apparel and footwear. Partnership incorporates DMIx's spectral-based digital colour workflows, 3D asset libraries, and digital twin capabilities to improve development speed and sustainability.", - "partner_name": "Coats Group plc", - "people": [ - "Adrian Elliott (Coats Group plc)" - ], - "source_type": "Coats company website -> News announcement (May 2025)" - } - ], - "target_company": "DMIx" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as an Enterprise Partner for content management and composable architecture solutions", - "partner_name": "Contentful", - "people": [], - "source_type": "Company website -> Enterprise Partners section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as an Enterprise Partner for headless CMS and content experience solutions", - "partner_name": "Storyblok", - "people": [], - "source_type": "Company website -> Enterprise Partners section; Storyblok partner profile" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as an Enterprise Partner for content management systems", - "partner_name": "TYPO3", - "people": [], - "source_type": "Company website -> Enterprise Partners section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Strategic partnership for e-commerce platform development and scaling; Max Helke quoted on Scayle partner page", - "partner_name": "Scayle", - "people": [ - "Max Helke (BRANDUNG)" - ], - "source_type": "Company website -> Enterprise Partners section; Scayle partner profile" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as an Enterprise Partner for e-commerce solutions", - "partner_name": "Shopware", - "people": [], - "source_type": "Company website -> Enterprise Partners section; Shopware partner page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Solution Partner for e-commerce and digital commerce platforms", - "partner_name": "Spryker", - "people": [], - "source_type": "Company website -> Enterprise Partners section; Spryker Solution Partner profile" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as an Enterprise Partner for product information management", - "partner_name": "Akeneo", - "people": [], - "source_type": "Company website -> Enterprise Partners section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Premium partner in Usercentrics partner network", - "partner_name": "Usercentrics", - "people": [], - "source_type": "Usercentrics partner network page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Named as a customer that trusts BRANDUNG", - "partner_name": "Tchibo Mobil", - "people": [], - "source_type": "Company website -> Customer testimonials" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Named as a customer for e-commerce platform development", - "partner_name": "Snipes", - "people": [], - "source_type": "Company website -> Customer testimonials; Scayle partner page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Named as a customer (WWF Germany)", - "partner_name": "WWF", - "people": [], - "source_type": "Company website -> Customer testimonials; Storyblok partner page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Named as a customer in insurance sector", - "partner_name": "HDI Versicherung", - "people": [], - "source_type": "Company website -> Customer testimonials; Storyblok partner page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Named as a customer", - "partner_name": "McFIT", - "people": [], - "source_type": "Company website -> Customer testimonials; Storyblok partner page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Named as a customer", - "partner_name": "Diakonie", - "people": [], - "source_type": "Company website -> Customer testimonials" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Named as a customer in FMCG sector", - "partner_name": "Bahlsen", - "people": [], - "source_type": "Company website -> Customer testimonials" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Named as a customer for fashion e-commerce platform development", - "partner_name": "Kapten & Son", - "people": [], - "source_type": "Company website -> Customer testimonials; Scayle partner page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Named as a customer for fashion e-commerce platform development", - "partner_name": "About You", - "people": [], - "source_type": "Company website -> Customer testimonials" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Named as a customer for e-commerce platform development", - "partner_name": "Steiff", - "people": [], - "source_type": "Company website -> Customer testimonials; Storyblok partner page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Named as a customer for e-commerce platform development", - "partner_name": "Gerry Weber", - "people": [], - "source_type": "Scayle partner page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Named as a customer for e-commerce platform development", - "partner_name": "Deichmann", - "people": [], - "source_type": "Scayle partner page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Named as a customer for e-commerce platform development", - "partner_name": "Renault", - "people": [], - "source_type": "Scayle partner page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Named as a customer", - "partner_name": "German Red Cross", - "people": [], - "source_type": "Storyblok partner page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Named as a customer", - "partner_name": "Carhartt WIP", - "people": [], - "source_type": "Storyblok partner page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Named as a customer in sports sector", - "partner_name": "1. FC Köln", - "people": [], - "source_type": "Storyblok partner page" - } - ], - "target_company": "BRANDUNG" - }, - { - "connections": [], - "target_company": "plusserver" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Pride Capital Partners provided seven-figure growth financing to talentsconnect AG. Described as a financing partner specializing in the software and IT industry supporting talentsconnect's transformation from sales-led to product-led growth.", - "partner_name": "Pride Capital Partners", - "people": [ - "Lars van 't Hoenderdaal (Pride Capital Partners)" - ], - "source_type": "Company website -> News/Press" - }, - { - "category": "REFERENCE_CLIENT", - "context": "E.ON is listed as one of more than 250 customers that have used the JobShop product developed by talentsconnect.", - "partner_name": "E.ON", - "people": [], - "source_type": "Company website -> News/Press" - }, - { - "category": "REFERENCE_CLIENT", - "context": "McDonald's is listed as one of more than 250 customers that have used the JobShop product developed by talentsconnect.", - "partner_name": "McDonald's", - "people": [], - "source_type": "Company website -> News/Press" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Viessmann is listed as one of more than 250 customers that have used the JobShop product developed by talentsconnect.", - "partner_name": "Viessmann", - "people": [], - "source_type": "Company website -> News/Press" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Fressnapf is listed as one of more than 250 customers that have used the JobShop product developed by talentsconnect.", - "partner_name": "Fressnapf", - "people": [], - "source_type": "Company website -> News/Press" - }, - { - "category": "REFERENCE_CLIENT", - "context": "OBI is listed as one of more than 250 customers that have used the JobShop product developed by talentsconnect.", - "partner_name": "OBI", - "people": [], - "source_type": "Company website -> News/Press" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Deutsche Börse is listed as one of more than 250 customers that have used the JobShop product developed by talentsconnect.", - "partner_name": "Deutsche Börse", - "people": [], - "source_type": "Company website -> News/Press" - } - ], - "target_company": "talentsconnect AG" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "VR Expert supports Draxon with full-service hardware deployment strategy including custom flight cases, stock and logistics management, software pre-installation, and ongoing logistical support for global rollout of aviation VR training solutions.", - "partner_name": "VR Expert", - "people": [ - "Alexander Obermüller (VR Expert)" - ], - "source_type": "Company website -> Blog/News Article" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partnership combining wingsacademy's web-based theoretical training with Draxon's VR modules for aircraft ground handling training. Cooperation agreement signed in May to offer harmonized theoretical and VR training solutions tailored to the aviation industry.", - "partner_name": "wingsacademy", - "people": [], - "source_type": "wingsacademy website -> News/Partnership Article" - } - ], - "target_company": "Draxon" - }, - { - "connections": [ - { - "category": "REFERENCE_CLIENT", - "context": "AOK engaged Cologne Intelligence in a transformative data analysis project aimed at unlocking insights to enhance customer experience within the insurance industry, conducted in collaboration with Futureneers.", - "partner_name": "AOK", - "people": [], - "source_type": "Futureneers website -> Case Study" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Strategic partnership combining Cologne Intelligence's InPlaces business app with MapsPeople's MapsIndoors indoor navigation platform to offer augmented reality wayfinding solutions.", - "partner_name": "MapsPeople", - "people": [ - "Christian Frederiksen (MapsPeople)", - "Peter Krämer (Cologne Intelligence)" - ], - "source_type": "MapsPeople blog -> Partnership announcement" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Leading global technology company partnership for cloud platform services and solutions.", - "partner_name": "Amazon Web Services (AWS)", - "people": [], - "source_type": "Cologne Intelligence website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partnership with leading enterprise cloud data management provider for data-driven digital transformation solutions.", - "partner_name": "Informatica", - "people": [], - "source_type": "Cologne Intelligence website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partnership with leading independent business intelligence company for enterprise analytics platform solutions.", - "partner_name": "MicroStrategy", - "people": [], - "source_type": "Cologne Intelligence website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partnership with leading data integration and data integrity company for data fabric and data management solutions.", - "partner_name": "Talend", - "people": [], - "source_type": "Cologne Intelligence website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Medium-sized IT consultancy partnership where trimplement provides complementary software services, technical consulting, and expertise in Java technologies and online payments domain.", - "partner_name": "trimplement", - "people": [], - "source_type": "trimplement website -> Testimonials" - } - ], - "target_company": "Cologne Intelligence" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Technology partnership integrating envelio's Intelligent Grid Platform with Clean Power Research's PowerClerk workflow management solution for utility interconnection automation", - "partner_name": "Clean Power Research", - "people": [ - "Luigi Montana (envelio Inc.)", - "Joe Beer (Clean Power Research)" - ], - "source_type": "Company website -> Partners page, Press release" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partnership integrating epilot's customer portal solution with envelio's Intelligent Grid Platform for automated grid capacity checks and digital grid connection processes", - "partner_name": "epilot", - "people": [], - "source_type": "Company website -> Partners page, Portal Integration" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partnership developing interface between BTC Netzportal 4.0 and envelio's Intelligent Grid Platform Connection Request app for end-to-end grid connection process digitalization", - "partner_name": "BTC", - "people": [], - "source_type": "Company website -> Partners page, Portal Integration" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partnership developing envelioConnect, a standardized interface between Smallworld GIS and envelio's Intelligent Grid Platform for automated grid connection processes", - "partner_name": "Mettenmeier", - "people": [], - "source_type": "Company website -> Partners page, GIS Integration" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partnership integrating SMIGHT Grid2 measurement data with envelio's Intelligent Grid Platform for real-time grid transparency in low-voltage grids", - "partner_name": "SMIGHT", - "people": [], - "source_type": "Company website -> Partners page, Measurement Data Integration" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partnership combining eSmart Systems' Grid Vision AI solution with envelio's Intelligent Grid Platform for virtual inspections and grid inventory management", - "partner_name": "eSmart Systems", - "people": [], - "source_type": "Company website -> Partners page, Innovation Partner" - }, - { - "category": "REFERENCE_CLIENT", - "context": "One of Germany's largest distribution system operators using envelio's Intelligent Grid Platform to automate interconnection requests and reduce application processing time", - "partner_name": "E.DIS Netz GmbH", - "people": [], - "source_type": "Company website -> Customer Stories" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Finnish utility serving 410,000+ customers in Helsinki partnered with envelio's Intelligent Grid Platform for scenario-based grid simulations and carbon-neutral infrastructure planning", - "partner_name": "Helen Electricity Network", - "people": [], - "source_type": "Company website -> Customer Stories" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner in envelio's partner ecosystem", - "partner_name": "BeEnergy", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner in envelio's partner ecosystem", - "partner_name": "BentoNet", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner in envelio's partner ecosystem", - "partner_name": "BET Energie", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner in envelio's partner ecosystem", - "partner_name": "BUW", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner in envelio's partner ecosystem", - "partner_name": "co.met", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner in envelio's partner ecosystem", - "partner_name": "Comtac", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner in envelio's partner ecosystem", - "partner_name": "D E M GmbH", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner in envelio's partner ecosystem", - "partner_name": "Die Netzwerkpartner", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner in envelio's partner ecosystem", - "partner_name": "digikoo", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner in envelio's partner ecosystem", - "partner_name": "Digimondo", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner in envelio's partner ecosystem", - "partner_name": "EPRI", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner in envelio's partner ecosystem", - "partner_name": "IAEW RWTH Aachen", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner in envelio's partner ecosystem", - "partner_name": "INTENSE", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner in envelio's partner ecosystem", - "partner_name": "Lemonbeat", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner in envelio's partner ecosystem", - "partner_name": "Lovion", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner in envelio's partner ecosystem", - "partner_name": "repath", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner in envelio's partner ecosystem", - "partner_name": "Robotron", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner in envelio's partner ecosystem", - "partner_name": "smartOPTIMO", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner in envelio's partner ecosystem", - "partner_name": "SPIE", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner in envelio's partner ecosystem", - "partner_name": "Trianel", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner in envelio's partner ecosystem", - "partner_name": "Westenergie proDSO", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner in envelio's partner ecosystem", - "partner_name": "E.ON One", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner in envelio's partner ecosystem", - "partner_name": "Integral Analytics", - "people": [], - "source_type": "Company website -> Partners page" - } - ], - "target_company": "envelio" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "CleverPartners is a joint solution with PartnerStack built to support B2B affiliate, referral, and reseller partner programs, providing access to PartnerStack's network of over 100,000 B2B partners", - "partner_name": "PartnerStack", - "people": [], - "source_type": "Cleverbridge website -> CleverPartners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Integration Hub powered by Workato for no-code connections with Cleverbridge platform", - "partner_name": "Workato", - "people": [], - "source_type": "Cleverbridge website -> CleverPartners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Snowflake data sharing and BI tool compatibility for Cleverbridge integrations", - "partner_name": "Snowflake", - "people": [], - "source_type": "Cleverbridge website -> CleverPartners page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Dell uses Cleverbridge for subscription billing and eCommerce solutions", - "partner_name": "Dell", - "people": [ - "Mark Dykstra (Dell)" - ], - "source_type": "Cleverbridge website -> Our Clients page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Minitab uses Cleverbridge global subscription billing solutions", - "partner_name": "Minitab", - "people": [ - "Jeff Ozarski (Minitab)" - ], - "source_type": "Cleverbridge website -> Our Clients page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "K9 Tools switched to Cleverbridge in 2009 for subscription billing and reporting", - "partner_name": "K9 Tools", - "people": [ - "Chandan Garg (K9 Tools)" - ], - "source_type": "Cleverbridge website -> Our Clients page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Malwarebytes transitioned from perpetual license model to subscriptions using Cleverbridge platform", - "partner_name": "Malwarebytes", - "people": [ - "Marcin Kleczynski (Malwarebytes)" - ], - "source_type": "Cleverbridge website -> Our Clients page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Parallels International uses Cleverbridge for eCommerce", - "partner_name": "Parallels International", - "people": [], - "source_type": "AppsRunTheWorld -> Cleverbridge Customers Database" - }, - { - "category": "REFERENCE_CLIENT", - "context": "FlippingBook uses Cleverbridge for eCommerce since 2016", - "partner_name": "FlippingBook", - "people": [], - "source_type": "AppsRunTheWorld -> Cleverbridge Customers Database" - }, - { - "category": "REFERENCE_CLIENT", - "context": "SmartBear uses Cleverbridge for eCommerce and subscription billing", - "partner_name": "SmartBear", - "people": [], - "source_type": "InfoClutch -> Cleverbridge Customers List" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Webroot uses Cleverbridge for eCommerce solutions", - "partner_name": "Webroot", - "people": [], - "source_type": "InfoClutch -> Cleverbridge Customers List" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Paddle uses Cleverbridge for recurring billing and payments", - "partner_name": "Paddle", - "people": [], - "source_type": "TheirStack -> Companies using Cleverbridge" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Ashampoo uses Cleverbridge for recurring billing and payments", - "partner_name": "Ashampoo GmbH & Co. KG", - "people": [], - "source_type": "TheirStack -> Companies using Cleverbridge" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Amaris Consulting uses Cleverbridge for recurring billing and payments", - "partner_name": "Amaris Consulting", - "people": [], - "source_type": "TheirStack -> Companies using Cleverbridge" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Acronis uses Cleverbridge for recurring billing and payments", - "partner_name": "Acronis", - "people": [], - "source_type": "TheirStack -> Companies using Cleverbridge" - }, - { - "category": "REFERENCE_CLIENT", - "context": "PTC uses Cleverbridge for recurring billing and payments", - "partner_name": "PTC", - "people": [], - "source_type": "TheirStack -> Companies using Cleverbridge" - }, - { - "category": "REFERENCE_CLIENT", - "context": "ApprovalMax uses Cleverbridge for recurring billing and payments", - "partner_name": "ApprovalMax", - "people": [], - "source_type": "TheirStack -> Companies using Cleverbridge" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Alludo uses Cleverbridge for recurring billing and payments", - "partner_name": "Alludo", - "people": [], - "source_type": "TheirStack -> Companies using Cleverbridge" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Humanit uses Cleverbridge for recurring billing and payments", - "partner_name": "Humanit", - "people": [], - "source_type": "TheirStack -> Companies using Cleverbridge" - } - ], - "target_company": "Cleverbridge" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "PLANET AI announced TIMETOACT GROUP as their new partner for application integration in Enterprise Content Management (ECM)", - "partner_name": "PLANET AI", - "people": [ - "Nelson Fernandes (PLANET AI)", - "Dr. Matthias Quaisser (TIMETOACT GROUP)" - ], - "source_type": "Company website -> Blog/Partners" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "TIMETOACT GROUP is listed as a Reseller partner of Raynet", - "partner_name": "Raynet", - "people": [], - "source_type": "Raynet website -> Partners page" - }, - { - "category": "SUBSIDIARY", - "context": "JOIN(+) GmbH became part of the TIMETOACT GROUP as an acquisition, strengthening their Data & AI portfolio", - "partner_name": "JOIN(+) GmbH", - "people": [], - "source_type": "Press release" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "TIMETOACT GROUP is an Atlassian Platinum Solution Partner providing custom development, managed services and consulting", - "partner_name": "Atlassian", - "people": [], - "source_type": "Company website -> Technologies page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "TIMETOACT GROUP is an HCL Platinum Business Partner and one of the largest HCL Software Services providers in Germany, Austria and Switzerland", - "partner_name": "HCL", - "people": [], - "source_type": "Company website -> Technologies page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "TIMETOACT GROUP is an IBM Business Partner with practical experience on the entire portfolio of IBM Software Solutions Group", - "partner_name": "IBM", - "people": [], - "source_type": "Company website -> Technologies page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "TIMETOACT GROUP is a strategic partner of AWS", - "partner_name": "AWS", - "people": [], - "source_type": "Press release" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "TIMETOACT GROUP is a strategic partner of Google, working with Google Cloud Platform and related services", - "partner_name": "Google", - "people": [], - "source_type": "Company website -> Technologies page and Press release" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "TIMETOACT GROUP is a strategic partner of Microsoft", - "partner_name": "Microsoft", - "people": [], - "source_type": "Press release" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "TIMETOACT GROUP is a strategic partner of SAP", - "partner_name": "SAP", - "people": [], - "source_type": "Company website -> Technologies page and Press release" - }, - { - "category": "REFERENCE_CLIENT", - "context": "KWC Professional engaged TIMETOACT to realign their IT infrastructure, reducing IT running costs by over 20 percent", - "partner_name": "KWC Professional", - "people": [ - "Viktor Bernhardt (CFO, KWC Professional)" - ], - "source_type": "Company website -> References/Success Stories" - }, - { - "category": "REFERENCE_CLIENT", - "context": "ZF has worked with TIMETOACT on numerous projects with constructive collaboration", - "partner_name": "ZF", - "people": [ - "Sarah Moser (OSPO Project Lead, ZF)" - ], - "source_type": "Company website -> References/Success Stories" - }, - { - "category": "REFERENCE_CLIENT", - "context": "N-ERGIE collaborated with TIMETOACT on productive projects with short communication channels", - "partner_name": "N-ERGIE", - "people": [ - "Wolfgang Schütz (Group Lead Portals and Platforms, N-ERGIE)" - ], - "source_type": "Company website -> References/Success Stories" - }, - { - "category": "REFERENCE_CLIENT", - "context": "HDI IT engaged TIMETOACT GROUP throughout the entire development process of their ITAM system", - "partner_name": "HDI IT", - "people": [ - "Patrick Milas (Software License Manager, HDI IT)" - ], - "source_type": "Company website -> References/Success Stories" - }, - { - "category": "REFERENCE_CLIENT", - "context": "McKesson Corporation received experienced support from TIMETOACT in navigating complex vendor engagements", - "partner_name": "McKesson Corporation", - "people": [ - "Faith VanLesser (Senior Vice President, Indirect Sourcing & Procurement, McKesson Corporation)" - ], - "source_type": "Company website -> References/Success Stories" - }, - { - "category": "REFERENCE_CLIENT", - "context": "MTU Aero Engines AG worked with TIMETOACT GROUP to transform a complex challenge into a customized, future-proof solution", - "partner_name": "MTU Aero Engines AG", - "people": [ - "Benjamin Schubert (IT Lead Military Support System, MTU Aero Engines AG)" - ], - "source_type": "Company website -> References/Success Stories" - }, - { - "category": "REFERENCE_CLIENT", - "context": "MAN Truck & Bus AG completed a project with TIMETOACT using their agile way of working", - "partner_name": "MAN Truck & Bus AG", - "people": [ - "Axel Ebert (Team Lead Order Processing, MAN Truck & Bus AG)" - ], - "source_type": "Company website -> References/Success Stories" - } - ], - "target_company": "TIMETOACT GROUP" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Extended partnership agreement where Nextcloud Enterprise users can include Dovecot Pro email server software from Open-Xchange group. Nextcloud offers Nextcloud Groupware bundled with Dovecot Pro.", - "partner_name": "Nextcloud", - "people": [], - "source_type": "Open-Xchange website -> Blog, Nextcloud website -> Blog" - }, - { - "category": "REFERENCE_CLIENT", - "context": "ServeTheWorld, the oldest independent web hosting provider in Norway, partnered with Open-Xchange to deliver services to its customers.", - "partner_name": "ServeTheWorld", - "people": [ - "Chris Holder (Open-Xchange)" - ], - "source_type": "Open-Xchange website -> Blog" - }, - { - "category": "REFERENCE_CLIENT", - "context": "HOSTAFRICA chose Open-Xchange to deliver secure email services, beginning rollout with GO54 and WhoGoHost brands.", - "partner_name": "HOSTAFRICA", - "people": [ - "Chris Holder (Open-Xchange)" - ], - "source_type": "Open-Xchange website -> Blog" - }, - { - "category": "REFERENCE_CLIENT", - "context": "OX Customer Success team partnered with GoDaddy to improve performance in established European brands and support launch activities in Latin America, India, Malaysia, South Africa, and Turkey.", - "partner_name": "GoDaddy", - "people": [], - "source_type": "Open-Xchange website -> Customer Examples" - }, - { - "category": "REFERENCE_CLIENT", - "context": "OX Customer Success team worked on full-service engagement for TalkTalk's migration to OX App Suite.", - "partner_name": "TalkTalk Telecom Group", - "people": [], - "source_type": "Open-Xchange website -> Customer Examples" - }, - { - "category": "REFERENCE_CLIENT", - "context": "OX Customer Success team partnered with Optimum on content for their migration to OX App Suite.", - "partner_name": "Optimum", - "people": [], - "source_type": "Open-Xchange website -> Customer Examples" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Rackspace uses OX Dovecot Pro and OX productivity tools to provide best possible performance to their customers.", - "partner_name": "Rackspace", - "people": [], - "source_type": "Open-Xchange website -> Customer Examples" - }, - { - "category": "REFERENCE_CLIENT", - "context": "BT equipped with DNS solutions from Open-Xchange to meet broadband, 5G, and IoT traffic and security demands.", - "partner_name": "BT", - "people": [], - "source_type": "Open-Xchange website -> Customer Examples" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Allot signed agreement with Open-Xchange to integrate OX PowerDNS technology into the Allot Secure family of cybersecurity solutions.", - "partner_name": "Allot", - "people": [], - "source_type": "Open-Xchange website -> News (via ZoomInfo)" - } - ], - "target_company": "Open-Xchange" - }, - { - "connections": [ - { - "category": "REFERENCE_CLIENT", - "context": "Trusted industry leader using Buynomics' AI-powered platform for revenue optimization", - "partner_name": "Danone", - "people": [], - "source_type": "Company website -> About Us" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Trusted industry leader using Buynomics' AI-powered platform for revenue optimization", - "partner_name": "Unilever", - "people": [], - "source_type": "Company website -> About Us" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Trusted industry leader using Buynomics' AI-powered platform for revenue optimization", - "partner_name": "L'Oréal", - "people": [], - "source_type": "Company website -> About Us" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Trusted industry leader using Buynomics' platform across telecommunications sector", - "partner_name": "Vodafone", - "people": [], - "source_type": "Company website -> About Us" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Led Series B funding round of $30M in March 2025", - "partner_name": "Forestay Capital", - "people": [], - "source_type": "Company website -> Funding announcement" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Participated in Series B funding round in March 2025", - "partner_name": "Anais Ventures", - "people": [], - "source_type": "Company website -> Funding announcement" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Participated in Series B funding round in March 2025", - "partner_name": "VI Partners", - "people": [], - "source_type": "Company website -> Funding announcement" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Lead investor in Series A funding round (€13M in November 2022) and existing investor in Series B round", - "partner_name": "Insight Partners", - "people": [ - "Max Wolff (Insight Partners)" - ], - "source_type": "Company website -> Funding announcement and Portfolio" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Existing investor participating in Series B funding round in March 2025", - "partner_name": "Seedcamp", - "people": [], - "source_type": "Company website -> Funding announcement" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Existing investor participating in Series B funding round in March 2025", - "partner_name": "DvH Ventures", - "people": [], - "source_type": "Company website -> Funding announcement" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Existing investor participating in Series B funding round in March 2025", - "partner_name": "Tomahawk Ventures", - "people": [], - "source_type": "Company website -> Funding announcement" - } - ], - "target_company": "Buynomics" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Strategic partnership enabling Eurowings customers to book FlixBus tickets directly through the airline's app. Partnership made possible by digital platform Yilu.", - "partner_name": "FlixBus", - "people": [ - "Oliver Wagner (Eurowings)" - ], - "source_type": "Company website -> Blog/News, Future Travel Experience article" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Hotel provider partnership as part of Eurowings' smart travel platform strategy to offer end-to-end travel experience.", - "partner_name": "HRS", - "people": [ - "Oliver Wagner (Eurowings)" - ], - "source_type": "Company website -> News/Blog" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Existing cooperation mentioned as part of Eurowings' digital travel companion strategy.", - "partner_name": "mytaxi", - "people": [ - "Oliver Wagner (Eurowings)" - ], - "source_type": "Company website -> News/Blog" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "First airline partner integrated into Eurowings Marketplace for codeshare flight bookings directly via website and app.", - "partner_name": "AEGEAN Airlines", - "people": [ - "Michael Erfert (Eurowings Digital)" - ], - "source_type": "Company website -> News/Blog" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "First airline partner integrated into Eurowings Marketplace for codeshare flight bookings directly via website and app.", - "partner_name": "Smartwings", - "people": [ - "Michael Erfert (Eurowings Digital)" - ], - "source_type": "Company website -> News/Blog" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Developed Eurowings Marketplace project in close cooperation over almost two years, creating technical foundation for future integration of partner airlines.", - "partner_name": "Lufthansa Systems", - "people": [], - "source_type": "Company website -> News/Blog" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Collaborated on development of Eurowings Marketplace project for codeshare flight integration.", - "partner_name": "Lufthansa Group Digital Hangar", - "people": [], - "source_type": "Company website -> News/Blog" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Digital partnership for Electronic Technical Logbook (eTLB) integration and fleet management solutions including condition monitoring, predictive health analytics, and engineering analytics.", - "partner_name": "AVIATAR", - "people": [ - "Matthias Gruber (Eurowings Technik)", - "Frank Martens (Lufthansa Technik/AVIATAR)" - ], - "source_type": "Aviation Business News article" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Taxi service partner added to Eurowings Digital portfolio for transportation services.", - "partner_name": "TaxiTender", - "people": [], - "source_type": "Diggintravel article" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Virtual interlining partnership for distributing airline tickets through Eurowings Digital platform.", - "partner_name": "Norwegian Air Shuttle", - "people": [], - "source_type": "Diggintravel article" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Virtual interlining partnership for distributing airline tickets through Eurowings Digital platform.", - "partner_name": "SunExpress", - "people": [], - "source_type": "Diggintravel article" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partnership for new package holiday offers for last-minute travelers through Eurowings Holidays.", - "partner_name": "DERTOUR Deutschland", - "people": [], - "source_type": "Company website -> News/Blog" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Recruitment and personnel consulting partner involved in founding and development of Eurowings Digital, providing advice on specialist and management positions.", - "partner_name": "CareerTeam", - "people": [ - "Anna Semmelroth (CareerTeam)" - ], - "source_type": "CareerTeam Case Study" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Digital platform provider enabling Eurowings customers to book FlixBus tickets through airline app without leaving digital environment.", - "partner_name": "Yilu", - "people": [], - "source_type": "Future Travel Experience article" - } - ], - "target_company": "Eurowings Digital" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Joint investor in F4e's $1M funding round for AI-powered performance management platform", - "partner_name": "Arya GSYF", - "people": [ - "İrem Yelkenci (F4e, Co-Founder and CEO)" - ], - "source_type": "Company website (F4e.app) - Investment announcement" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Joint investor in F4e's $1M funding round; Maxis Coordinator highlighted synergy between Arya GSYF and Maxis Ventures GSYF", - "partner_name": "Maxis Ventures", - "people": [ - "Selami Düz (Maxis Coordinator)" - ], - "source_type": "Company website (F4e.app) - Investment announcement" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Investor in F4e's $1M funding round for AI-powered performance management platform", - "partner_name": "Boğaziçi Ventures", - "people": [], - "source_type": "Company website (F4e.app) - Investment announcement" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Individual investor in F4e's $1M funding round", - "partner_name": "Nurettin Şendoğan", - "people": [ - "Nurettin Şendoğan" - ], - "source_type": "Company website (F4e.app) - Investment announcement" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Expert investor with over 20 years of experience in implementing large-scale corporate technologies like SAP; provided valuable investment and support", - "partner_name": "Mehmet Aksu", - "people": [ - "Mehmet Aksu" - ], - "source_type": "Company website (F4e.app) - Investment announcement" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Expert investor with over 20 years of experience in implementing large-scale corporate technologies like SAP; provided valuable investment and support", - "partner_name": "Fatih Canca", - "people": [ - "Fatih Canca" - ], - "source_type": "Company website (F4e.app) - Investment announcement" - } - ], - "target_company": "F4e" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Certified Contentful Silver Partner with expertise in headless CMS and MACH architecture", - "partner_name": "Contentful", - "people": [], - "source_type": "Company website -> Partner Directory" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Certified HubSpot Platinum Partner offering CRM implementation, marketing automation, and CMS solutions", - "partner_name": "HubSpot", - "people": [ - "Katrin Köster (BPW)" - ], - "source_type": "Company website -> HubSpot Agency Page, HubSpot Ecosystem" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Shopware Platinum Partner for e-commerce implementation and digital solutions", - "partner_name": "Shopware", - "people": [], - "source_type": "Shopware Partner Directory" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Actindo Sales Partner for cloud-based ERP and omni-channel commerce solutions", - "partner_name": "Actindo", - "people": [], - "source_type": "Company website -> Partners Page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Crownpeak Premier Partner with close cooperation for software implementation and support", - "partner_name": "Crownpeak", - "people": [], - "source_type": "Company website -> Partners Page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Flip Partner for employee app integration with Microsoft 365 and SharePoint", - "partner_name": "Flip", - "people": [], - "source_type": "Company website -> Partners Page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Strategic Partner for over five years in usability and joint projects", - "partner_name": "Fraunhofer Institute FIT", - "people": [], - "source_type": "Company website -> Partners Page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Official Hootsuite Partner for social media management solutions", - "partner_name": "Hootsuite", - "people": [], - "source_type": "Company website -> Partners Page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Technology Partner for email marketing solutions", - "partner_name": "Inxmail", - "people": [], - "source_type": "Company website -> Partners Page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Certified Salesforce Partner for CRM implementation and integration", - "partner_name": "Salesforce", - "people": [], - "source_type": "Company website -> CRM Implementation Page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Certified Microsoft Dynamics Partner for CRM solutions and integration", - "partner_name": "Microsoft Dynamics", - "people": [], - "source_type": "Company website -> CRM Implementation Page, HubSpot Ecosystem" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partner for B2B lead generation and digital transformation services", - "partner_name": "B2Bsellers", - "people": [], - "source_type": "B2Bsellers Partner Directory" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partner for headless CMS and content management solutions", - "partner_name": "Storyblok", - "people": [], - "source_type": "Storyblok Partner Directory" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Client for digital transformation and CMS projects", - "partner_name": "Bosch", - "people": [], - "source_type": "Company website -> Partner Directory, HubSpot Ecosystem" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Client for digital transformation and CMS projects", - "partner_name": "Siemens", - "people": [], - "source_type": "Company website -> Partner Directory, HubSpot Ecosystem" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Client for digital transformation and CMS projects", - "partner_name": "ZEISS", - "people": [], - "source_type": "Company website -> Partner Directory" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Client for digital transformation and CMS projects", - "partner_name": "Canon", - "people": [], - "source_type": "Company website -> Partner Directory, HubSpot Ecosystem" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Client for digital transformation and CMS projects", - "partner_name": "Creditreform", - "people": [], - "source_type": "Company website -> Partner Directory" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Client for digital transformation and CMS projects", - "partner_name": "Schufa", - "people": [], - "source_type": "Company website -> Partner Directory" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Client for digital transformation, CMS projects, and HubSpot implementation", - "partner_name": "BPW", - "people": [ - "Katrin Köster (BPW)" - ], - "source_type": "Company website -> Partner Directory, HubSpot Ecosystem" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Client for digital transformation and CMS projects", - "partner_name": "Deutsche Familienversicherung", - "people": [], - "source_type": "Company website -> Partner Directory" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Client for digital transformation and CMS projects", - "partner_name": "OBI", - "people": [], - "source_type": "Company website -> Partner Directory" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Client for digital transformation and CMS projects", - "partner_name": "RTL", - "people": [], - "source_type": "Company website -> Partner Directory" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Client for digital solutions and HubSpot implementation", - "partner_name": "Ecclesia", - "people": [], - "source_type": "HubSpot Ecosystem" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Client for digital solutions and HubSpot implementation", - "partner_name": "Volksbank", - "people": [], - "source_type": "HubSpot Ecosystem" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Client for digital solutions and HubSpot implementation", - "partner_name": "Lufthansa Airplus", - "people": [], - "source_type": "HubSpot Ecosystem" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Client for platform development, digital marketing, and HubSpot integration (German Brand Award 2024)", - "partner_name": "AIFS", - "people": [], - "source_type": "HubSpot Ecosystem" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Client for brand relaunch and digital solutions", - "partner_name": "Niedax", - "people": [], - "source_type": "Company website -> HubSpot Agency Page" - } - ], - "target_company": "SUNZINET GmbH" - }, - { - "connections": [ - { - "category": "REFERENCE_CLIENT", - "context": "Kodak Alaris was a client of ITyX Solutions AG with a contractual relationship for services. The relationship ended in a legal dispute where ITyX won a multi-million dollar jury verdict against Kodak for breach of contract and improper competition.", - "partner_name": "Kodak Alaris Inc.", - "people": [ - "Süleyman Arayan (ITyX Solutions AG)", - "Heiko Groftschik (ITyX Solutions AG)" - ], - "source_type": "Legal case documentation, Court records" - } - ], - "target_company": "ITyX Solutions AG" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Wolftech integrated with VidiCore, part of Vidispine's VidiNet portfolio, for seamless video content management and story-centric media creation. Described as deepened partnership between Arvato Systems' Vidispine team and Wolftech Broadcast Solutions.", - "partner_name": "Wolftech", - "people": [ - "Annika Kimpel (Vidispine)" - ], - "source_type": "Company website -> Partnership Announcement, Blog" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Official partnership between Arvato Systems Vidispine team and Twelve Labs to integrate video AI solutions with natural language search capabilities into Vidispine's MediaPortal.", - "partner_name": "Twelve Labs", - "people": [ - "Annika Kimpel (Vidispine)" - ], - "source_type": "Blog -> Partnership Announcement" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partnership to modernize sports media supply chains, combining Vidispine's MAM and orchestration tools with TMT Insights' professional services for implementation and optimization.", - "partner_name": "TMT Insights", - "people": [ - "Annika Kimpel (Vidispine)" - ], - "source_type": "Blog -> Partnership Announcement" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Recognized as a strategic partner using Media Services from Arvato Systems' Vidispine Portfolio.", - "partner_name": "CBC/Radio-Canada", - "people": [], - "source_type": "Company website -> Partnership Announcement" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner on Bitmovin's partner connect platform, indicating integration or collaboration in media technology solutions.", - "partner_name": "Bitmovin", - "people": [], - "source_type": "Bitmovin Partner Directory" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Vidispine listed on NetApp's partner connect platform, indicating partnership in hybrid cloud data services and media operations.", - "partner_name": "NetApp", - "people": [], - "source_type": "NetApp Partner Directory" - }, - { - "category": "SUBSIDIARY", - "context": "Lumine Group acquired Vidispine brand and business from Arvato Systems. Vidispine became part of Lumine Group's Media Monetization portfolio as a corporate carve-out transaction.", - "partner_name": "Lumine Group", - "people": [ - "Tony Garcia (Lumine Group)", - "Matthias Moeller (Arvato Systems)", - "Nicolas Ley (Vidispine)" - ], - "source_type": "Company website -> Acquisition Announcement" - } - ], - "target_company": "Vidispine" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Strategic partnership announced November 2022 focused on data efficiency, with eClerx Digital providing consulting services and support for data processing, automation via RPA, and data lake solutions for epilot customers.", - "partner_name": "eClerx Digital", - "people": [ - "Lena Lankes (epilot GmbH)" - ], - "source_type": "Company website -> Blog/Press Release" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partnership integrating envelio's Intelligent Grid Platform with epilot's solution to enable grid operators and utilities to perform automated grid capacity checks and streamline the approval process for new network participants.", - "partner_name": "envelio", - "people": [], - "source_type": "Partner website -> Portal Integration" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as a Consulting Partner specializing in the energy industry, providing expertise in strategy, sales, and product and business development.", - "partner_name": "Kreutzer Consulting", - "people": [], - "source_type": "Company website -> Partners & Integrations page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Notable customer of epilot using the platform for digital transformation in the energy sector.", - "partner_name": "badenova", - "people": [], - "source_type": "Company website -> Funding announcement" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Notable customer of epilot using the platform for digital transformation in the energy sector.", - "partner_name": "DEW21", - "people": [], - "source_type": "Company website -> Funding announcement" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Notable customer of epilot using the platform for digital transformation in the energy sector.", - "partner_name": "enercity", - "people": [], - "source_type": "Company website -> Funding announcement" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Notable customer of epilot using the platform for digital transformation in the energy sector.", - "partner_name": "Mainzer Netze", - "people": [], - "source_type": "Company website -> Funding announcement" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Lead investor providing €10 million in funding (July 2024) with Will Sheldon joining epilot's Advisory Board.", - "partner_name": "Expedition Growth Capital", - "people": [ - "Will Sheldon (Expedition Growth Capital)" - ], - "source_type": "Company website -> Funding announcement" - } - ], - "target_company": "epilot GmbH" - }, - { - "connections": [ - { - "category": "REFERENCE_CLIENT", - "context": "Over 250 product managers from brands such as Beiersdorf already rely on eyva.ai's platform for product portfolio optimization", - "partner_name": "Beiersdorf", - "people": [], - "source_type": "Company website -> News/Funding announcement" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Over 250 product managers from brands such as Junglück already rely on eyva.ai's platform for product portfolio optimization", - "partner_name": "Junglück", - "people": [], - "source_type": "Company website -> News/Funding announcement" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Apollo Hospitals is mentioned as part of a medical professional panel collaborating with EYVA (health data insights product) for real-world clinical validation", - "partner_name": "Apollo Hospitals", - "people": [], - "source_type": "Third-party article" - }, - { - "category": "REFERENCE_CLIENT", - "context": "AIIMS is mentioned as part of a medical professional panel collaborating with EYVA for real-world clinical validation", - "partner_name": "AIIMS", - "people": [], - "source_type": "Third-party article" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Apollo Pharmacy is in active discussions with EYVA for potential partnership to include EYVA health tracking product in their pharmacy offerings", - "partner_name": "Apollo Pharmacy", - "people": [], - "source_type": "Third-party article" - } - ], - "target_company": "Eyva" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Device Insight and grandcentrix launched a partnership to provide holistic end-to-end IoT support, combining their expertise in IoT know-how, hardware, software, connectivity, and infrastructure integration.", - "partner_name": "Device Insight", - "people": [ - "Marten Schirge (Device Insight)" - ], - "source_type": "Company website -> Partnership announcement" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Scanfil and grandcentrix agreed on manufacturing and further developing the Modbus Cloud Connect IoT solution.", - "partner_name": "Scanfil", - "people": [ - "Philipp Buhl (grandcentrix)" - ], - "source_type": "Scanfil website -> Press release" - }, - { - "category": "SUBSIDIARY", - "context": "grandcentrix has been a 100% wholly owned subsidiary of Vodafone Germany since 2020. grandcentrix is one of four specialized product houses for IoT development within the Vodafone organization.", - "partner_name": "Vodafone", - "people": [], - "source_type": "Company website -> Multiple sources" - }, - { - "category": "REFERENCE_CLIENT", - "context": "grandcentrix uses SalesViewer's platform to gain insights into potential customers and optimize sales and marketing processes for IoT solutions.", - "partner_name": "SalesViewer", - "people": [ - "Philipp Buhl (grandcentrix)" - ], - "source_type": "SalesViewer website -> Case study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "grandcentrix utilizes Datacake, a powerful IoT platform, to achieve its goals and drive innovation in IoT solutions.", - "partner_name": "Datacake", - "people": [], - "source_type": "Datacake website -> Success story" - }, - { - "category": "REFERENCE_CLIENT", - "context": "grandcentrix developed the first networked Miele washing machine, demonstrating their expertise in IoT product development.", - "partner_name": "Miele", - "people": [], - "source_type": "Company website -> Project reference" - }, - { - "category": "REFERENCE_CLIENT", - "context": "grandcentrix developed the Toniebox for Boxine, a networked IoT product.", - "partner_name": "Boxine", - "people": [], - "source_type": "Company website -> Project reference" - }, - { - "category": "REFERENCE_CLIENT", - "context": "ALMiG, an industrial air compressor company, was one of the first large-scale customers for the Modbus Cloud Connect IoT solution developed by grandcentrix.", - "partner_name": "ALMiG", - "people": [], - "source_type": "Scanfil press release" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Viessmann relies on grandcentrix's expertise for IoT solution development.", - "partner_name": "Viessmann", - "people": [], - "source_type": "Company website -> Customer reference" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Husqvarna relies on grandcentrix's expertise for IoT solution development.", - "partner_name": "Husqvarna", - "people": [], - "source_type": "Company website -> Customer reference" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Reifenhäuser relies on grandcentrix's expertise for IoT solution development.", - "partner_name": "Reifenhäuser", - "people": [], - "source_type": "Company website -> Customer reference" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Leica relies on grandcentrix's expertise for IoT solution development.", - "partner_name": "Leica", - "people": [], - "source_type": "Company website -> Customer reference" - }, - { - "category": "REFERENCE_CLIENT", - "context": "grandcentrix and Würth collaborated on optimizing products and services through data discovery and service data analysis.", - "partner_name": "Würth", - "people": [], - "source_type": "Company website -> Blog article" - } - ], - "target_company": "grandcentrix" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as a partner on BFE-Fleet's partners and sponsorships page, offering electronic driving licence verification services", - "partner_name": "BFE-Fleet", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "DriversCheck app integrated into Ayvens' fleet management services for convenient app-based electronic driving licence checks", - "partner_name": "Ayvens", - "people": [], - "source_type": "Company website -> Fleet Management Services" - }, - { - "category": "SUBSIDIARY", - "context": "DriversCheck GmbH was acquired by HR WORKS (a Maguar Capital portfolio company) in autumn 2022 and is now part of the HR WORKS Group", - "partner_name": "HR WORKS", - "people": [ - "Christoph Bischoff (HR WORKS)" - ], - "source_type": "Company website -> Press release, Maguar Capital portfolio" - }, - { - "category": "SUBSIDIARY", - "context": "DriversCheck GmbH is owned by Maguar Capital as part of its HR WORKS portfolio company", - "partner_name": "Maguar Capital", - "people": [], - "source_type": "Company website -> Press release" - } - ], - "target_company": "DriversCheck GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Creative agency that creates innovative brand experiences and develops brands and products for FLOWFACT", - "partner_name": "twinspirit GmbH", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Installation partner providing IT and technical support for FLOWFACT Performer", - "partner_name": "Osite", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Installation partner providing IT and technical support for FLOWFACT Performer", - "partner_name": "subcura", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Installation partner providing IT and technical support for FLOWFACT Performer", - "partner_name": "WebKom EDV DIENSTE", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Installation partner providing IT and technical support for FLOWFACT Performer", - "partner_name": "Börder", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Installation partner providing IT and technical support for FLOWFACT Performer", - "partner_name": "CRMPRO", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Installation partner providing IT and technical support for FLOWFACT Performer", - "partner_name": "QL-IT Lösungen", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Digital agency from Berlin specializing in strategic IT consulting, innovative software solutions, and custom API development for FLOWFACT", - "partner_name": "bitlane", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "IT company partner for 3CX telephony solutions implementation", - "partner_name": "coretress", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Installation partner providing IT and technical support for FLOWFACT Performer", - "partner_name": "Albrecht", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Portal integration partner offering cost-efficient services to FLOWFACT users", - "partner_name": "ImmoScout24", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "SUBSIDIARY", - "context": "FLOWFACT is a subsidiary of Scout24 group", - "partner_name": "Scout24", - "people": [], - "source_type": "Third-party source (Mentoring Club)" - } - ], - "target_company": "FLOWFACT" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Certified Qibb partner with largest pool of certified Qibb developers globally. Provides implementation, consulting, and support services for media workflow orchestration using Qibb platform.", - "partner_name": "Acheron", - "people": [], - "source_type": "Company website -> Partnership page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partnership to support hybrid storage workflows. Ateliere's cloud-native media supply chain workflows integrate with qibb's media workflow connectors via GraphQL connector.", - "partner_name": "Ateliere Creative Technologies", - "people": [ - "Dan Goman (Ateliere CEO)", - "Roman Holzhause (qibb CTO)" - ], - "source_type": "Company website -> Blog, Provide Coalition article" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Technical partnership showcasing integrated sports workflows. Joint customer implementations using Vidispine products (VD Core, VD Flow, Media Portal) integrated with qibb platform.", - "partner_name": "Vidispine", - "people": [ - "Karsten Schragmann (Vidispine)", - "Walter Neuhaus (qibb)" - ], - "source_type": "YouTube video -> Partner Center Stage" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partnership transforming media workflows with combined AI-powered solution for instant content discoverability and media asset enrichment.", - "partner_name": "Moments Lab", - "people": [], - "source_type": "Moments Lab blog" - } - ], - "target_company": "qibb" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Accredited and official Salesforce Multi-Cloud partner of long standing; implements Salesforce Marketing Cloud, Sales Cloud, Service Cloud, and Commerce Cloud solutions", - "partner_name": "Salesforce", - "people": [], - "source_type": "Company website -> Partnership page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as HubSpot agency partner; provides Sales Hub and Marketing Hub optimization and implementation services", - "partner_name": "HubSpot", - "people": [], - "source_type": "HubSpot Ecosystem marketplace" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner for content management and headless CMS solutions", - "partner_name": "Magnolia CMS", - "people": [], - "source_type": "Magnolia CMS partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as partner for headless CMS and content management projects", - "partner_name": "Storyblok", - "people": [], - "source_type": "Storyblok partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partner for omnichannel personalization and AI-driven recommendation solutions; formerly known as prudsys AG", - "partner_name": "GK Artificial Intelligence for Retail AG", - "people": [], - "source_type": "Company website -> Case studies" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as customer of nexum AG", - "partner_name": "Adecco", - "people": [], - "source_type": "HubSpot Ecosystem marketplace, Storyblok partners page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as customer of nexum AG", - "partner_name": "apoBank", - "people": [], - "source_type": "HubSpot Ecosystem marketplace, Storyblok partners page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as customer of nexum AG", - "partner_name": "Braun", - "people": [], - "source_type": "HubSpot Ecosystem marketplace, Storyblok partners page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as customer of nexum AG", - "partner_name": "Claas", - "people": [], - "source_type": "HubSpot Ecosystem marketplace, Storyblok partners page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as customer of nexum AG", - "partner_name": "Coop Switzerland", - "people": [], - "source_type": "HubSpot Ecosystem marketplace, Magnolia CMS partners page, Storyblok partners page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as customer of nexum AG", - "partner_name": "Fresenius", - "people": [], - "source_type": "HubSpot Ecosystem marketplace, Storyblok partners page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as customer of nexum AG", - "partner_name": "Melitta", - "people": [], - "source_type": "HubSpot Ecosystem marketplace" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as customer of nexum AG (also referenced as Swiss Post)", - "partner_name": "Schweizerische Post", - "people": [], - "source_type": "HubSpot Ecosystem marketplace, Storyblok partners page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as customer of nexum AG", - "partner_name": "BMW", - "people": [], - "source_type": "Magnolia CMS partners page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as customer of nexum AG", - "partner_name": "DIS AG", - "people": [], - "source_type": "Magnolia CMS partners page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as customer of nexum AG", - "partner_name": "FIFA", - "people": [], - "source_type": "Magnolia CMS partners page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as customer of nexum AG", - "partner_name": "Intersnack", - "people": [], - "source_type": "Magnolia CMS partners page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as customer of nexum AG", - "partner_name": "Lufthansa World Store", - "people": [], - "source_type": "Magnolia CMS partners page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as customer of nexum AG", - "partner_name": "METRO", - "people": [], - "source_type": "Magnolia CMS partners page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as customer of nexum AG", - "partner_name": "Otto", - "people": [], - "source_type": "Magnolia CMS partners page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as customer of nexum AG", - "partner_name": "PENNY", - "people": [], - "source_type": "Magnolia CMS partners page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as customer of nexum AG", - "partner_name": "Sony", - "people": [], - "source_type": "Magnolia CMS partners page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as customer of nexum AG", - "partner_name": "Telefónica Germany", - "people": [], - "source_type": "Magnolia CMS partners page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as customer of nexum AG", - "partner_name": "Kenwood", - "people": [], - "source_type": "Storyblok partners page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Customer for omnichannel personalization and e-commerce solutions", - "partner_name": "BAUR", - "people": [], - "source_type": "Company website -> Case studies" - } - ], - "target_company": "nexum AG" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Joint coordinator in BIMKIT project; collaboration on BIM-compliant data exchange and AI services for energy-efficient building planning", - "partner_name": "Hottgenroth Software AG", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partner in BIMKIT project; developing AI methods for geometric and semantic information generation and GAIA-X-based ecosystem integration", - "partner_name": "Ruhr University Bochum", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Uses eTASK CAFM software to manage 4 administrative buildings with 31 floors and 41,000 sqm", - "partner_name": "Rhein-Sieg-Kreis", - "people": [], - "source_type": "Company website -> Customer testimonials" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Uses multiple modules of eTASK CAFM system for optimized operation of Competence Center Vienna (14 buildings) and Global Headquarters Berlin", - "partner_name": "Bombardier Transportation", - "people": [], - "source_type": "Company website -> Customer testimonials" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Uses eTASK CAFM System for facility management", - "partner_name": "ProSiebenSat.1 Media", - "people": [], - "source_type": "Third-party database -> AppsRunTheWorld" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Uses eTASK CAFM System for facility management since 2007", - "partner_name": "Oberbergischer Kreis", - "people": [], - "source_type": "Third-party database -> AppsRunTheWorld" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Uses eTASK CAFM System for facility management", - "partner_name": "Donau Treuhand", - "people": [], - "source_type": "Third-party database -> AppsRunTheWorld" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Uses eTASK Property Management Software; achieved efficiency improvements while maintaining stable costs", - "partner_name": "Evangelisches Johannesstift", - "people": [ - "Clemens Blauert (Evangelisches Johannesstift)" - ], - "source_type": "Company website -> Customer testimonials" - } - ], - "target_company": "eTASK Immobilien Software GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Native integration with Microsoft Suite including MS Teams and Outlook for workspace booking. anny is certified as a Microsoft 365 app partner.", - "partner_name": "Microsoft", - "people": [], - "source_type": "Company website -> Integrations section, Microsoft 365 App Certification" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "anny supports integration with Google Workspace and Google Calendar for seamless calendar synchronization.", - "partner_name": "Google Workspace", - "people": [], - "source_type": "Company website -> Integrations section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as one of the most utilized integrations in the HRIS field.", - "partner_name": "Personio", - "people": [], - "source_type": "Company website -> Integrations section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Integration for automatic creation of video meetings for bookings.", - "partner_name": "Zoom", - "people": [], - "source_type": "Company website -> Integrations section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Smart lock integration for automating access to rooms and buildings per booking.", - "partner_name": "Nuki", - "people": [], - "source_type": "Company website -> Integrations section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Smart lock integration partner for access control automation.", - "partner_name": "SaltoKS", - "people": [], - "source_type": "Company website -> Integrations section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Smart lock integration partner for access control automation.", - "partner_name": "KleverKey", - "people": [], - "source_type": "Company website -> Integrations section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Smart lock integration partner for access control automation.", - "partner_name": "Tapkey", - "people": [], - "source_type": "Company website -> Integrations section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Smart lock integration partner for access control automation.", - "partner_name": "dormakaba", - "people": [], - "source_type": "Company website -> Integrations section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Smart lock integration partner for access control automation.", - "partner_name": "iLOQ", - "people": [], - "source_type": "Company website -> Integrations section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Smart lock integration partner for access control automation.", - "partner_name": "Comydo", - "people": [], - "source_type": "Company website -> Integrations section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Integration mentioned for enterprise workspace management and scaling globally.", - "partner_name": "SAP", - "people": [], - "source_type": "Company website -> Solutions section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Integration for equipment pool management and workflow automation.", - "partner_name": "ServiceNow", - "people": [], - "source_type": "Company website -> Solutions section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Integration for secure access and identity management in workspace solutions.", - "partner_name": "Azure AD", - "people": [], - "source_type": "Company website -> Solutions section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Integration for equipment pool management and workflow automation.", - "partner_name": "Jira", - "people": [], - "source_type": "Company website -> Solutions section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Sports club using anny for padel court and tennis court booking management with payment processing.", - "partner_name": "SV Bergheim 1937 eV", - "people": [ - "Andrew (SV Bergheim 1937 eV)" - ], - "source_type": "Company website -> Activity booking system page" - } - ], - "target_company": "anny" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "chargecloud GmbH joined the EVRoaming Foundation as a full member to strengthen interoperability across Europe", - "partner_name": "EVRoaming Foundation", - "people": [], - "source_type": "Company website -> News/Press, mobilityportal.eu" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "chargecloud GmbH is listed as a participant in the Open Charge Alliance", - "partner_name": "Open Charge Alliance", - "people": [], - "source_type": "Open Charge Alliance website -> Participants directory" - } - ], - "target_company": "chargecloud GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "OMIKRON Bürosysteme GmbH is a Microsoft Certified Partner offering expertise in Microsoft Server and Client operating systems, as well as Hyper-V virtualization solutions", - "partner_name": "Microsoft", - "people": [], - "source_type": "Company website -> Partner page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "OMIKRON Bürosysteme GmbH is a VMware Partner Professional Solution Provider planning and implementing VMware virtualization solutions", - "partner_name": "VMware", - "people": [], - "source_type": "Company website -> Partner page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "OMIKRON Bürosysteme GmbH is a Veeam Silver pro Partner offering expertise in Always-On Business solutions", - "partner_name": "Veeam", - "people": [], - "source_type": "Company website -> Partner page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "OMIKRON Bürosysteme GmbH is a STARFACE Certified Partner providing communication solutions for digital workplaces", - "partner_name": "STARFACE", - "people": [], - "source_type": "Company website -> Partner page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "FUJITSU Technology Solutions is mentioned as a partner offering comprehensive portfolio of technology products, solutions and services", - "partner_name": "FUJITSU Technology Solutions", - "people": [], - "source_type": "Company website -> Partner page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "EBT Bürotechnik GmbH is listed as a partner working with OMIKRON Bürosysteme GmbH", - "partner_name": "EBT Bürotechnik GmbH", - "people": [], - "source_type": "Company website -> Partner page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "E.ON SE implemented MultiCash solution for integration of eBAM (Electronic Banking Account Management) into their systems", - "partner_name": "E.ON SE", - "people": [ - "Torsten Spieker (E.ON SE)" - ], - "source_type": "Company website -> Success Stories" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Aldi Süd uses MultiCash as a central, web-based payment transaction platform", - "partner_name": "Aldi Süd", - "people": [], - "source_type": "Company website -> Success Stories" - } - ], - "target_company": "Omikron Systemhaus" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "meinestadt.de uses NetSuite as their ERP system for digitalization and integration of commercial business processes", - "partner_name": "NetSuite", - "people": [ - "Dirk Schwartzkopff (meinestadt.de)" - ], - "source_type": "NetSuite customer testimonials page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "ICONY operates the meinestadt.de Singlebörse (dating service) as a partner, providing a partner network for secure matchmaking", - "partner_name": "ICONY", - "people": [], - "source_type": "meinestadt.de FAQ page - Partnersuche section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Wilken ERP is listed as part of meinestadt.de's technology stack alongside SAP R/3 and SAP Business ByDesign", - "partner_name": "Wilken ERP", - "people": [], - "source_type": "NetSuite customer testimonials page" - } - ], - "target_company": "meinestadt.de GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Strategic partnership with osapiens, a leading healthcare compliance and sustainability management provider, to expand BAYARD's healthcare division and simplify supplier management for healthcare service providers", - "partner_name": "osapiens", - "people": [ - "Björn Bayard (BAYARD)" - ], - "source_type": "Company website -> Press/News" - }, - { - "category": "SUBSIDIARY", - "context": "BAYARD is a company of Markant Group", - "partner_name": "Markant Group", - "people": [], - "source_type": "GS1 solution providers directory" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Retail company that has improved data quality and efficiency in procurement and syndication of product content using BAYARD's services", - "partner_name": "Schwarz Group", - "people": [ - "Robby Nabielek (Schwarz IT KG)" - ], - "source_type": "Company website -> Press/News" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Retail company that has significantly improved data quality and efficiency using BAYARD's services; testimonial from Head of PIM Consulting & Projects", - "partner_name": "Migros", - "people": [ - "Andreas Gerig (Migros-Genossenschafts-Bund)" - ], - "source_type": "Company website -> Press/News and Testimonials" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Retail company that has improved data quality and efficiency in procurement and syndication of product content using BAYARD's services", - "partner_name": "Colruyt", - "people": [], - "source_type": "Company website -> Press/News" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Consumer goods manufacturer that has significantly improved data quality and efficiency using BAYARD's services", - "partner_name": "Danone", - "people": [], - "source_type": "Company website -> Press/News" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Consumer goods manufacturer that has improved data quality and efficiency using BAYARD's services; testimonial from Head of Department Data Management", - "partner_name": "Radeberger Group", - "people": [ - "Alexander Gerhard (Radeberger Gruppe)" - ], - "source_type": "Company website -> Press/News and Testimonials" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Consumer goods manufacturer that has significantly improved data quality and efficiency using BAYARD's services", - "partner_name": "Cosnova", - "people": [], - "source_type": "Company website -> Press/News" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Healthcare product provider that has improved data quality and efficiency of product content sourcing, syndication and aggregation using BAYARD's services", - "partner_name": "Pajunk", - "people": [], - "source_type": "Company website -> Press/News and GS1 solution providers" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Healthcare product provider that has improved data quality and efficiency of product content sourcing, syndication and aggregation using BAYARD's services", - "partner_name": "Vygon", - "people": [], - "source_type": "Company website -> Press/News and GS1 solution providers" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Healthcare product provider that has improved data quality and efficiency of product content sourcing, syndication and aggregation using BAYARD's services", - "partner_name": "Medika", - "people": [], - "source_type": "Company website -> Press/News and GS1 solution providers" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Healthcare purchasing community that has significantly improved data quality and efficiency in procurement and aggregation of product content using BAYARD's services", - "partner_name": "Prospitalia", - "people": [], - "source_type": "Company website -> Press/News and GS1 solution providers" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Healthcare purchasing community that has significantly improved data quality and efficiency in procurement and aggregation of product content using BAYARD's services", - "partner_name": "P.E.G.", - "people": [], - "source_type": "Company website -> Press/News and GS1 solution providers" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Healthcare purchasing community that has significantly improved data quality and efficiency in procurement and aggregation of product content using BAYARD's services", - "partner_name": "EKKplus", - "people": [], - "source_type": "Company website -> Press/News and GS1 solution providers" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Client that has used BAYARD's ContentAggregation Platform to implement connections to Content Providers; testimonial from Senior Project Manager and Market Data Specialist", - "partner_name": "DOUGLAS", - "people": [ - "Anh Thu Nguyen (DOUGLAS)" - ], - "source_type": "Company website -> Testimonials" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Client that has benefited from BAYARD's integrated services including process know-how, integration software and GDSN data pool; testimonial from Programme Area Manager MDM", - "partner_name": "Denner AG", - "people": [ - "Daniel Kirschbaum (Denner AG)" - ], - "source_type": "Company website -> Testimonials" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Client that completed a strategy project with BAYARD; testimonial from Chief Digital Officer", - "partner_name": "MTS MarkenTechnikService GmbH & Co. KG", - "people": [ - "Moritz Förster (MTS MarkenTechnikService GmbH & Co. KG)" - ], - "source_type": "Company website -> Testimonials" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Client using BAYARD's b-synced dashboard; testimonial from Head of IT", - "partner_name": "Amecke GmbH & Co. KG", - "people": [ - "Volker Langkamp (Amecke GmbH & Co. KG)" - ], - "source_type": "Company website -> Testimonials" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Client that has benefited from BAYARD's complete know-how from consulting to implementation and employee training; testimonial from Team Leader E-Commerce Management", - "partner_name": "Ottakringer Getränke AG", - "people": [ - "Jörg Plundrak (Ottakringer Getränke AG)" - ], - "source_type": "Company website -> Testimonials" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Client that has worked with BAYARD on data management projects; testimonial from IT Application Consultant", - "partner_name": "Vitakraft pet care GmbH & Co. KG", - "people": [ - "Heiko Cichala (Vitakraft pet care GmbH & Co. KG)" - ], - "source_type": "Company website -> Testimonials" - } - ], - "target_company": "BAYARD" - }, - { - "connections": [], - "target_company": "ONIQ" - }, - { - "connections": [ - { - "category": "SUBSIDIARY", - "context": "Circlon became part of the Lexit Group in autumn 2025 through acquisition of majority stake. Circlon is now a subsidiary operating under the Lexit Group umbrella.", - "partner_name": "Lexit Group", - "people": [ - "Sjur Skaeveland (Lexit Group CEO)" - ], - "source_type": "Company website -> About Us, News" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Private equity firm Findos backs Lexit Group, which acquired Circlon. Findos is the financial backer of the parent company.", - "partner_name": "Findos", - "people": [], - "source_type": "M&A News coverage" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as one of the most well-known companies served by Lexit Group (which includes Circlon) in the Nordics and Germany.", - "partner_name": "Orkla", - "people": [], - "source_type": "Company website -> Customer references" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as one of the most well-known companies served by Lexit Group (which includes Circlon) in the Nordics and Germany.", - "partner_name": "Coop", - "people": [], - "source_type": "Company website -> Customer references" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as one of the most well-known companies served by Lexit Group (which includes Circlon) in the Nordics and Germany.", - "partner_name": "Norgesgruppen/ASKO", - "people": [], - "source_type": "Company website -> Customer references" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as one of the most well-known companies served by Lexit Group (which includes Circlon) in the Nordics and Germany.", - "partner_name": "Jula", - "people": [], - "source_type": "Company website -> Customer references" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as one of the most well-known companies served by Lexit Group (which includes Circlon) in the Nordics and Germany.", - "partner_name": "Kesko", - "people": [], - "source_type": "Company website -> Customer references" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as one of the most well-known companies served by Lexit Group (which includes Circlon) in the Nordics and Germany.", - "partner_name": "Volvo", - "people": [], - "source_type": "Company website -> Customer references" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as one of the most well-known companies served by Lexit Group (which includes Circlon) in the Nordics and Germany.", - "partner_name": "Edeka", - "people": [], - "source_type": "Company website -> Customer references" - } - ], - "target_company": "Circlon – Part of Lexit Group" - }, - { - "connections": [], - "target_company": "Fedger" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as a partner on DigitalTwin Technology GmbH's website", - "partner_name": "XR4Europe", - "people": [], - "source_type": "Company website -> Partners section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as a partner on DigitalTwin Technology GmbH's website", - "partner_name": "STUVA", - "people": [], - "source_type": "Company website -> Partners section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as a partner on DigitalTwin Technology GmbH's website", - "partner_name": "Aeneas", - "people": [], - "source_type": "Company website -> Partners section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as a partner on DigitalTwin Technology GmbH's website", - "partner_name": "DTC", - "people": [], - "source_type": "Company website -> Partners section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as a partner on DigitalTwin Technology GmbH's website", - "partner_name": "NW2020", - "people": [], - "source_type": "Company website -> Partners section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as a partner on DigitalTwin Technology GmbH's website", - "partner_name": "OARC", - "people": [], - "source_type": "Company website -> Partners section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as a partner on DigitalTwin Technology GmbH's website", - "partner_name": "SCAUT", - "people": [], - "source_type": "Company website -> Partners section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as a partner on DigitalTwin Technology GmbH's website", - "partner_name": "SIMCHRONIZE", - "people": [], - "source_type": "Company website -> Partners section" - } - ], - "target_company": "DigitalTwin Technology GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "BfW Bank invested €3 million in SCALARA's financing round and acquired €1.5 million in shares from existing investors. The bank is developing new digital banking functions and integrated banking products in cooperation with SCALARA, cementing a long-term strategic partnership.", - "partner_name": "BfW Bank", - "people": [ - "Mark Müller (BfW Bank)" - ], - "source_type": "Company website and news articles" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Long-standing partner of SCALARA that converted approximately €2 million in convertible loans into equity during the May 2025 financing round.", - "partner_name": "BeyondBuild", - "people": [], - "source_type": "Company news articles" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Long-standing partner of SCALARA that converted approximately €2 million in convertible loans into equity during the May 2025 financing round.", - "partner_name": "Bauwens", - "people": [], - "source_type": "Company news articles" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Long-standing partner of SCALARA that converted approximately €2 million in convertible loans into equity during the May 2025 financing round.", - "partner_name": "neoteq ventures", - "people": [], - "source_type": "Company news articles" - } - ], - "target_company": "SCALARA" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Crep Protect partnered with KLEKT to provide cleaning and protection services for pre-owned sneakers sold through KLEKT's USED platform, ensuring all used sneakers are given a fresh start using their industry-leading products and cleaning techniques.", - "partner_name": "Crep Protect", - "people": [ - "Riz Ahmed (Crep Protect Co-Founder and Director)" - ], - "source_type": "Complex article about KLEKT USED platform" - }, - { - "category": "REFERENCE_CLIENT", - "context": "3Search provided recruitment and talent placement services to KLEKT, successfully hiring multiple team members including a Marketing Director and Online Content & Social Manager.", - "partner_name": "3Search", - "people": [ - "Michael Judkins (3Search Director)", - "Sally Scott (KLEKT CEO)", - "Sarah Wilkinson (KLEKT Marketing Director)", - "Chris Moore (KLEKT Online Content & Social Manager)" - ], - "source_type": "3Search case study" - } - ], - "target_company": "KLEKT" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Sastrify and Capchase announced a partnership to provide flexible financing for SaaS licenses", - "partner_name": "Capchase", - "people": [], - "source_type": "Company website -> Blog/News, PR Newswire" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "API integration partnership enabling B2B customers to discover their company SaaS tools automatically", - "partner_name": "Google Workspace", - "people": [], - "source_type": "Case study on third-party website (getproductpeople.com)" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "API integration partnership enabling B2B customers to discover their company SaaS tools automatically", - "partner_name": "Xero", - "people": [], - "source_type": "Case study on third-party website (getproductpeople.com)" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "API integration partnership enabling B2B customers to discover their company SaaS tools automatically", - "partner_name": "NetSuite", - "people": [], - "source_type": "Case study on third-party website (getproductpeople.com)" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Europe's leading freight forwarder using Sastrify to manage 92 tools, achieving 15X ROI and $300K+ in savings", - "partner_name": "sennder", - "people": [], - "source_type": "Company website -> Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Fast-growing company using Sastrify for SaaS procurement", - "partner_name": "OnRunning", - "people": [], - "source_type": "Company website -> PR Newswire mention" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Company supported by Sastrify for SaaS procurement", - "partner_name": "Pleo", - "people": [], - "source_type": "Company website -> PR Newswire mention" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Fast-growing company using Sastrify for SaaS procurement", - "partner_name": "Babbel", - "people": [], - "source_type": "Company website -> PR Newswire mention" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Germany-based Professional Services organization using Sastrify for IT Asset Management and SaaS Spend Management since 2019", - "partner_name": "Gorillas", - "people": [], - "source_type": "Third-party database (appsruntheworld.com)" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Germany-based Retail organization using Sastrify for IT Asset Management and SaaS Spend Management", - "partner_name": "Westwing", - "people": [], - "source_type": "Third-party database (appsruntheworld.com)" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Netherlands-based Banking and Financial Services organization using Sastrify for IT Asset Management and SaaS Spend Management", - "partner_name": "Bitvavo", - "people": [], - "source_type": "Third-party database (appsruntheworld.com)" - } - ], - "target_company": "Sastrify" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Adobe and MoovIT work together to develop workflows for video production. Adobe developers and engineers work closely with MoovIT to improve integrations and provide on-site engineering support during major events.", - "partner_name": "Adobe", - "people": [ - "Jan Fröhling (MoovIT)", - "Wolfgang Felix (MoovIT)", - "Tom Rosenstein (EditShare)" - ], - "source_type": "Company website (Adobe) -> Case Study, MoovIT website -> References" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Exclusive global partnership announced to transform Adobe enterprise workflows. EditShare's EFS shared storage solution and FLOW media management are integrated with MoovIT's Helmut suite of products to provide comprehensive project management and remote editing workflow solutions.", - "partner_name": "EditShare", - "people": [ - "Tom Rosenstein (EditShare)", - "Wolfgang Felix (MoovIT)" - ], - "source_type": "ProVideo Coalition article, MoovIT website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "MoovIT is a long-standing partner of UEFA, providing support with technical planning and implementation of workflows for reporting at the European Football Championships (EURO). MoovIT was appointed as a host broadcast supplier for UEFA EURO 2020.", - "partner_name": "UEFA", - "people": [], - "source_type": "MoovIT website -> References" - }, - { - "category": "REFERENCE_CLIENT", - "context": "ZWILLING uses MoovIT's TitleTool to translate video content in real time and make it available for international marketing campaigns.", - "partner_name": "ZWILLING", - "people": [ - "Pierre Miggelt (ZWILLING)" - ], - "source_type": "MoovIT website -> References" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Swiss private broadcaster Telebasel uses MoovIT's optimized workflows to create future-proof structures for agile company operations.", - "partner_name": "Telebasel", - "people": [], - "source_type": "MoovIT website -> References" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Case study on technological and cultural change in post-production at rbb in close collaboration with MoovIT.", - "partner_name": "rbb", - "people": [ - "Patrick Westphal-Techen (rbb)", - "Carl Förster (rbb)" - ], - "source_type": "MoovIT website -> References" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Technology gold partner of MoovIT in the USA for growth in core post-production markets.", - "partner_name": "CHESA", - "people": [], - "source_type": "Pressebox article" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Technology gold partner of MoovIT in the UK for growth in core post-production markets.", - "partner_name": "Jigsaw24 Media", - "people": [], - "source_type": "Pressebox article" - }, - { - "category": "SUBSIDIARY", - "context": "MSP is a wholly owned subsidiary of MoovIT GmbH that develops software solutions for connecting video editing software to IT infrastructure.", - "partner_name": "MoovIT Software Products (MSP)", - "people": [], - "source_type": "MoovIT Software Products website" - } - ], - "target_company": "MoovIT GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Strategic partnership where hosttech implemented gridscale cloud technology to expand its service portfolio with public cloud infrastructures. hosttech operates as a reseller with white-label options.", - "partner_name": "hosttech GmbH", - "people": [ - "Marius Meuwly (hosttech GmbH)", - "Felix Kronlage-Dammers (gridscale)" - ], - "source_type": "Company website -> Press Release, Success Stories" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "gridscale partner using white-label cloud platform for managed services offerings to end customers.", - "partner_name": "solvito GmbH", - "people": [], - "source_type": "Company website -> Success Stories" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Server manufacturer and IT service provider partnering with gridscale to offer cloud services without in-house development.", - "partner_name": "Thomas-Krenn.AG", - "people": [], - "source_type": "Company website -> Success Stories" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Marketing automation and personalization company using gridscale's managed Kubernetes and data protection compliance for customer journey personalization.", - "partner_name": "Personal Business Machine AG", - "people": [], - "source_type": "Company website -> Success Stories" - }, - { - "category": "REFERENCE_CLIENT", - "context": "SaaS provider for physicians and psychotherapists using gridscale for certified security and German data protection standards with automated managed Kubernetes.", - "partner_name": "RED Medical Systems GmbH", - "people": [], - "source_type": "Company website -> Success Stories" - }, - { - "category": "REFERENCE_CLIENT", - "context": "IT services and IoT company using gridscale for secure IoT services for municipalities, processing over 450 million datasets from approximately 1,500 devices.", - "partner_name": "SMIGHT GmbH", - "people": [], - "source_type": "Company website -> Success Stories" - }, - { - "category": "REFERENCE_CLIENT", - "context": "International retailer using gridscale for high availability during performance peaks with immediate resource scaling and cost reduction.", - "partner_name": "BUTLERS GmbH", - "people": [], - "source_type": "Company website -> Success Stories" - }, - { - "category": "SUBSIDIARY", - "context": "OVHcloud acquired gridscale in full on August 4, 2023. gridscale became a subsidiary of OVHcloud, the European cloud leader.", - "partner_name": "OVHcloud", - "people": [ - "Henrik Hasenkamp (gridscale)" - ], - "source_type": "Company website -> Press Release, HTGF website" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Acronis' Backup-as-a-Service Solution is available in gridscale Marketplace as of June 28, 2023.", - "partner_name": "Acronis", - "people": [], - "source_type": "Company website -> Press Release" - } - ], - "target_company": "gridscale GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "OPEN is a Zendesk Premier Partner in DACH region, specializing in implementation, consulting, and optimization of Zendesk customer experience solutions", - "partner_name": "Zendesk", - "people": [], - "source_type": "Company website -> Partner page, Zendesk marketplace" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "OPEN is a HubSpot Diamond Partner in DACH region, providing implementation and consulting services for HubSpot CRM solutions across Sales, Marketing, and Service", - "partner_name": "HubSpot", - "people": [], - "source_type": "Company website -> Partner page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "OPEN is an official Shopify Partner Agency developing hybrid e-commerce solutions and B2C commerce implementations", - "partner_name": "Shopify", - "people": [], - "source_type": "Company website -> Partner page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Mercedes is listed as a client of OPEN Digitalgruppe", - "partner_name": "Mercedes", - "people": [], - "source_type": "Company website -> About page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "HDI.global is listed as a client of OPEN Digitalgruppe", - "partner_name": "HDI.global", - "people": [], - "source_type": "Company website -> About page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Fraport is listed as a client of OPEN Digitalgruppe", - "partner_name": "Fraport", - "people": [], - "source_type": "Company website -> About page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "SAMSUNG is listed as a client of OPEN Digitalgruppe", - "partner_name": "SAMSUNG", - "people": [], - "source_type": "Company website -> About page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "AUDI is listed as a client of OPEN Digitalgruppe", - "partner_name": "AUDI", - "people": [], - "source_type": "Company website -> About page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "RTL is listed as a client of OPEN Digitalgruppe", - "partner_name": "RTL", - "people": [], - "source_type": "Company website -> About page" - } - ], - "target_company": "OPEN Digitalgruppe" - }, - { - "connections": [ - { - "category": "SUBSIDIARY", - "context": "KERUN.ONE was acquired by CONET Group in July 2025 as part of CONET's HORIZON28 growth strategy to expand its Business Applications portfolio with Salesforce expertise. KERUN.ONE became an integral part of the CONET Group with its team of over 50 Salesforce specialists.", - "partner_name": "CONET Group", - "people": [ - "Martin Wibbe (CONET CEO)", - "Sascha Emons (KERUN.ONE Managing Director)" - ], - "source_type": "Company website -> Press Release, Salesforce AppExchange listing" - } - ], - "target_company": "KERUN.ONE GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Lead investor in $20 million Series Seed funding round; described as international partner to make octonomy broadly available across Europe and the USA", - "partner_name": "Macquarie Capital Venture Capital", - "people": [ - "Elmar Broscheit (Macquarie Capital Venture Capital)" - ], - "source_type": "Company website, Press release" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Sales partner distributing octonomy's AI solutions; established dedicated AI business unit for octonomy partnership as of August 2025", - "partner_name": "Erik Sterck GmbH", - "people": [ - "Erik Sterck (Erik Sterck GmbH)" - ], - "source_type": "Company website, Press release" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Co-investor in $20 million Series Seed financing round alongside Macquarie Capital Venture Capital and TechVision Fund", - "partner_name": "NRW.BANK", - "people": [], - "source_type": "Press release" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Co-investor in $20 million Series Seed financing round alongside Macquarie Capital Venture Capital and NRW.BANK", - "partner_name": "TechVision Fund", - "people": [], - "source_type": "Press release" - } - ], - "target_company": "octonomy" - }, - { - "connections": [], - "target_company": "catchHR" - }, - { - "connections": [ - { - "category": "REFERENCE_CLIENT", - "context": "Major client of Planted's ESG platform", - "partner_name": "Caritasverband Bruchsal", - "people": [], - "source_type": "Company website / News article" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Major client of Planted's ESG platform", - "partner_name": "Senacor Technologies AG", - "people": [], - "source_type": "Company website / News article" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Major client of Planted's ESG platform", - "partner_name": "Insta GmbH", - "people": [], - "source_type": "Company website / News article" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Lead investor in €5M seed funding round; backed by CUREosity and IonKraft", - "partner_name": "TechVision Fonds", - "people": [ - "Dr. Ansgar Schleicher (TechVision Fonds)" - ], - "source_type": "News article" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Investor in €5M seed funding round", - "partner_name": "WENVEST Capital", - "people": [], - "source_type": "News article" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Investor in €5M seed funding round", - "partner_name": "neoteq ventures", - "people": [], - "source_type": "News article" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Investor in €5M seed funding round", - "partner_name": "AWS Gründungsfonds", - "people": [], - "source_type": "News article" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Investor in €5M seed funding round", - "partner_name": "Smart Infrastructure Ventures", - "people": [], - "source_type": "News article" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Business angels from SoSafe invested in €5M seed funding round", - "partner_name": "SoSafe", - "people": [ - "Felix Schürholz (Co-Founder & MD SoSafe)", - "Frank Piotraschke (CRO SoSafe)" - ], - "source_type": "News article" - } - ], - "target_company": "Planted" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "HiveMQ MQTT Platform integrated into UMH's Open-Source Software Blueprint as the default MQTT platform for Industrial IoT infrastructure. Joint customer engagements announced.", - "partner_name": "HiveMQ", - "people": [ - "Dominik Obermaier (HiveMQ)", - "Kudzai Manditereza (HiveMQ)" - ], - "source_type": "Company website -> Partnership announcement" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Leading industrial organization using UMH to digitise their factories", - "partner_name": "HiPP", - "people": [], - "source_type": "Company website -> Funding announcement" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Leading industrial organization using UMH to digitise their factories", - "partner_name": "Edeka", - "people": [], - "source_type": "Company website -> Funding announcement" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Using UMH to digitise their factories. Head of PDA & Supply Chain reports rapid deployment and ability to connect new data sources and build digital use cases in hours instead of weeks.", - "partner_name": "Böllhoff", - "people": [ - "Lutz Hermanns (Böllhoff)" - ], - "source_type": "Company website -> Funding announcement" - } - ], - "target_company": "United Manufacturing Hub (UMH)" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Strategic cooperation to distribute infodas' solutions in conjunction with Spherea's testing solutions and develop joint ideas. Working on secure data exchange, reliable online maintenance, and artificial intelligence in classified data.", - "partner_name": "Spherea", - "people": [ - "Martin Kugelmann (Spherea GmbH)", - "Marc Akkermann (INFODAS GmbH)" - ], - "source_type": "Company website -> Strategic Partnership Page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Long-established strategic partnership of equals. infodas designated as Expert Partner. Combined hardware and software security solutions for public sector, critical infrastructure, and classified industries.", - "partner_name": "genua", - "people": [ - "Marc Tesch (genua)", - "Thorsten Ecke (infodas)" - ], - "source_type": "genua website -> News Article" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partnership to offer NATO, EU and German SECRET approved threat-free high-speed data transmission and secure patch management. Complementary product ranges for multi-domain operations and Industry 4.0.", - "partner_name": "OPSWAT", - "people": [ - "Thorsten Ecke (INFODAS)" - ], - "source_type": "OPSWAT website -> Partners Page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "infodas is an official reselling partner for Ciphertrace's browser-based intelligence platform for cryptocurrency and blockchain forensic analysis.", - "partner_name": "Ciphertrace", - "people": [], - "source_type": "infodas website -> Partners Page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "infodas is an official reselling partner for Domaintools' Iris Investigation Platform for DNS lookups and cybercrime investigation.", - "partner_name": "Domaintools", - "people": [], - "source_type": "infodas website -> Partners Page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "infodas is an official reselling partner for KnowBe4's security awareness training and phishing simulation platform.", - "partner_name": "KnowBe4", - "people": [], - "source_type": "infodas website -> Partners Page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "infodas is an official reselling partner for SoSafe's psychologically-based security awareness and attack simulation platform.", - "partner_name": "SoSafe", - "people": [], - "source_type": "infodas website -> Partners Page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "infodas and OpenText have worked together for almost 15 years on requirements management projects using OpenText Dimensions RM for European defense industry clients.", - "partner_name": "OpenText", - "people": [ - "Elisabeth Lux", - "Jenny Heylmann" - ], - "source_type": "OpenText website -> Customer Case Study" - }, - { - "category": "SUBSIDIARY", - "context": "Airbus Defence and Space completed acquisition of infodas in 2024. infodas is now a subsidiary of Airbus with approximately 250 employees and 50 million euros in annual revenues.", - "partner_name": "Airbus", - "people": [], - "source_type": "Airbus Cyber website -> Press Release, Freshfields website -> News" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "infodas listed as a customer/partner of Kernkonzept.", - "partner_name": "Kernkonzept", - "people": [], - "source_type": "Kernkonzept website -> Customers Page" - } - ], - "target_company": "infodas" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Led the €6.5 million seed funding round for JUPUS", - "partner_name": "Acton Capital", - "people": [], - "source_type": "Company website, News articles" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Existing investor in pre-seed round and participant in €6.5 million seed round; Germany's most active and largest early-stage investor", - "partner_name": "High-Tech Gründerfonds (HTGF)", - "people": [ - "Max Bergmann (HTGF)" - ], - "source_type": "Company website, News articles" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Design agency providing continuous design support including landing pages, ad creatives, investor decks, and motion design; supported JUPUS in creating the pitch deck for the €6.5M seed round", - "partner_name": "magier", - "people": [], - "source_type": "Case study on magier website" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Law firm software that integrates with JUPUS; mandates can be transferred from JUPUS to Advoware with one click", - "partner_name": "Advoware", - "people": [], - "source_type": "STP Marketplace product page" - } - ], - "target_company": "JUPUS" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Inspired Consulting officially joined the Eplan Partner Network as a technology partner in January 2025. Partnership focuses on integrated software solutions for maritime and electrical engineering industries, with Inspired Consulting developing the Engineering Data Hub that connects seamlessly with Eplan tools.", - "partner_name": "Eplan", - "people": [ - "Feeko Harders (Eplan)", - "Christian Albrecht (Inspired Consulting)" - ], - "source_type": "Company website -> Press/News" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Inspired Consulting is supporting the digitization and process optimization of Tafel Deutschland in a project.", - "partner_name": "Tafel Deutschland", - "people": [], - "source_type": "Company website -> Projects/Stories" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Memo Media is described as an interface between event service providers and event planners, mentioned as a project story on Inspired Consulting's website.", - "partner_name": "Memo Media", - "people": [], - "source_type": "Company website -> Projects/Stories" - } - ], - "target_company": "Inspired Consulting GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Strategic cooperation agreement where UMT settles payments for Evy Solutions and provides payment processing services via SEPA direct debit. Both companies exploring blockchain-based smart contracts for invoice settlement. UMT AG planning full business merger with Evy Solutions.", - "partner_name": "UMT United Mobility Technology AG", - "people": [ - "Erik Nagel (UMT AG)", - "Michael Vogel (Evy Solutions GmbH)" - ], - "source_type": "Company website -> Blog/News, UMT website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Uses Evy Xpact software for recording correspondence in receivables management, achieving 5-minute processing time. Regular collaboration with Evy Solutions team for software customization and updates.", - "partner_name": "Creditreform", - "people": [ - "Manuel Braun (Creditreform)" - ], - "source_type": "Company website -> Case Study/Success Stories" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Processes 350 transport orders daily using Evy Xpact, reducing approval time from standard processing to under one minute.", - "partner_name": "Hans Ihro GmbH", - "people": [], - "source_type": "Company website -> Case Study/Success Stories" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Processes 1,100 orders per day using Evy Xpact software, achieving average order processing time of 15 seconds.", - "partner_name": "Antalis GmbH", - "people": [], - "source_type": "Company website -> Case Study/Success Stories" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Handles 5,000 support requests daily using Evy Xpact, saving 12 hours of labour per day.", - "partner_name": "OBS OnlineBuchungService", - "people": [], - "source_type": "Company website -> Case Study/Success Stories" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Uses Evy Xpact for processing work certificates with AI, saving up to 30 minutes per document.", - "partner_name": "BEULCO", - "people": [], - "source_type": "Company website -> Case Study/Success Stories" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Processes 530 invoices per month using Evy Xpact, achieving 3 working days of time savings every month.", - "partner_name": "Intergermania", - "people": [], - "source_type": "Company website -> Case Study/Success Stories" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Processes freight forwarding collective invoices with up to 60 pages using Evy Xpact, saving 8 hours of time per week.", - "partner_name": "Mainfrucht", - "people": [ - "Alexander Amend (Mainfrucht)" - ], - "source_type": "Company website -> Case Study/Success Stories" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Uses Evy Xpact software for order processing, enabling sales administrator to transition from data entry to more demanding tasks.", - "partner_name": "GLA-WEL", - "people": [ - "Lara Meyer zu Reckendorf (GLA-WEL)" - ], - "source_type": "Company website -> Case Study/Success Stories" - } - ], - "target_company": "Evy Solutions GmbH" - }, - { - "connections": [ - { - "category": "REFERENCE_CLIENT", - "context": "Evolved from complex legacy systems into a streamlined containerized architecture with Giant Swarm's platform", - "partner_name": "Vodafone Group Services", - "people": [], - "source_type": "Giant Swarm website -> Customers page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Integrated Giant Swarm's fully managed cloud native stack from day one to transform IAM projects from month-long implementations into hours", - "partner_name": "Service Layers", - "people": [], - "source_type": "Giant Swarm website -> Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Accelerated transformation into a data-driven innovator using Giant Swarm's cloud-native infrastructure to turn heating appliances into smart, connected devices", - "partner_name": "Vaillant Group", - "people": [], - "source_type": "Giant Swarm website -> Customers page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "VP Enterprise Architecture at adidas praised Giant Swarm's expertise in containers and Kubernetes", - "partner_name": "adidas", - "people": [ - "Daniel Eichten (adidas)" - ], - "source_type": "Giant Swarm website -> Homepage testimonial" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "HubSpot Solutions Partner that implemented Giant Swarm's website migration to CMS Hub in less than three months", - "partner_name": "Media Junction", - "people": [], - "source_type": "HubSpot case study" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Giant Swarm uses HubSpot's CRM, Marketing Hub, and CMS Hub platform for campaign tracking, content management, and lead analysis", - "partner_name": "HubSpot", - "people": [ - "Tommy (Giant Swarm)" - ], - "source_type": "HubSpot case study and Giant Swarm website" - } - ], - "target_company": "Giant Swarm" - }, - { - "connections": [ - { - "category": "SUBSIDIARY", - "context": "Catapult acquired IMPECT in October 2025 for up to €78 million. IMPECT is now part of Catapult's corporate group, with plans to integrate IMPECT's tactical data analytics software into Catapult's Performance and Pro Video suites.", - "partner_name": "Catapult Sports", - "people": [ - "Benjamin Monheim (Osborne Clarke - Legal Advisor)", - "Will Lopes (Catapult Chief Executive)" - ], - "source_type": "News article - Osborne Clarke, SportsPro" - } - ], - "target_company": "IMPECT" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Quali has been a Qualitest partner since 2018, offering infrastructure automation platform for test environments", - "partner_name": "Quali", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partnership offering continuous testing and quality assurance services through Keysight's Eggplant Software", - "partner_name": "Keysight Technologies", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Qualitest is a Gold Partner with Microsoft, helping customers with digital transformation and modern workplace vision for over 6 years", - "partner_name": "Microsoft", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Certified Solution Partner relationship supporting digital transformation and continuous testing platform integration", - "partner_name": "Tricentis", - "people": [], - "source_type": "Company website -> Partners page, Tricentis website" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Continuous testing cloud platform partner for web and mobile apps testing", - "partner_name": "Sauce Labs", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Continuous quality testing cloud platform partner for developers and testers", - "partner_name": "LambdaTest", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "AI-powered codeless test automation and management platform partner", - "partner_name": "ACCELQ", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "AI-powered visual test automation platform partner for enterprise automation", - "partner_name": "Leapwork", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Test data provisioning partner with native CI/CD integrations", - "partner_name": "Synthesized", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Strategic alliance integrating Qualitest's cyber security services with Surf Security's Zero Trust browser technology", - "partner_name": "Surf Security", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Qualitest provides Managed Testing Services globally and serves as software testing partner for wireless protocol product line chip sets including Zigbee and Bluetooth", - "partner_name": "Texas Instruments", - "people": [ - "Neri Lavi (Qualitest USA)" - ], - "source_type": "Company website -> News/Blog" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Canadian multinational athletic apparel retailer partnered with Qualitest on crowd testing initiative for digital user experience and payment method expansion", - "partner_name": "Leading Athletic Apparel Retailer", - "people": [], - "source_type": "Company website -> Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Recorded user of Qualitest QA services", - "partner_name": "Legal & General Group", - "people": [], - "source_type": "Third-party database" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Recorded user of Qualitest QA services", - "partner_name": "McGraw Hill", - "people": [], - "source_type": "Third-party database" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Recorded user of Qualitest QA services", - "partner_name": "Zenith Vehicle Contracts", - "people": [], - "source_type": "Third-party database" - } - ], - "target_company": "Qualitest" - }, - { - "connections": [ - { - "category": "SUBSIDIARY", - "context": "GreenPocket was acquired by Hausheld Group in November 2025 as part of a strategic consolidation combining Hausheld AG, Solandeo, Mako365, and GreenPocket into Germany's largest independent smart metering platform.", - "partner_name": "Hausheld AG", - "people": [ - "Bouke Stoffelsma (Hausheld Group)" - ], - "source_type": "Company website -> Partner page, News article" - }, - { - "category": "SUBSIDIARY", - "context": "Solandeo is part of the same Hausheld Group consolidation as GreenPocket, combining expertise in smart metering systems.", - "partner_name": "Solandeo GmbH", - "people": [ - "Bouke Stoffelsma (Hausheld Group)" - ], - "source_type": "Company website -> Partner page, News article" - }, - { - "category": "SUBSIDIARY", - "context": "Mako365 was acquired alongside GreenPocket as part of the Hausheld Group consolidation to provide market communication solutions.", - "partner_name": "Mako365 GmbH", - "people": [ - "Bouke Stoffelsma (Hausheld Group)" - ], - "source_type": "Company website -> Partner page, News article" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partner in research projects including 'SHANGO' funded by BMWK and 'VISE-S: Smart Metering in SMEs', collaborating on IoT technology and smart metering solutions.", - "partner_name": "Bosch Software Innovations GmbH", - "people": [], - "source_type": "Company website -> Partner page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Municipal utility partner collaborating with GreenPocket on smart meter solutions and energy management services.", - "partner_name": "Dortmunder Energie- und Wasserversorgung GmbH (DEW21)", - "people": [], - "source_type": "Company website -> Partner page" - } - ], - "target_company": "GreenPocket GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Formal collaboration since 2016 for internship placements. AIESEC interns have supported eSagu's UK market growth by generating new customers and maintaining existing ones.", - "partner_name": "AIESEC Deutschland", - "people": [ - "Katerina Gjorgjieva (eSagu GmbH)" - ], - "source_type": "Company website -> Blog, AIESEC website" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "eSagu is an official partner in the Amazon Selling Partner Appstore with eSagu RePricing for Amazon solution.", - "partner_name": "Amazon", - "people": [], - "source_type": "Company website -> Product page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as integration partner for eSagu in ninepoint's clientele and technical integration services.", - "partner_name": "ninepoint software solutions GmbH", - "people": [], - "source_type": "Shopware Partner Directory, ninepoint website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Customer for 4 years using eSagu's repricing solution, testimonial on eSagu website highlighting improved sales and profits.", - "partner_name": "ARKS Global Ltd", - "people": [], - "source_type": "Company website -> Testimonials" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Customer using eSagu for automated pricing challenges, testimonial on eSagu website.", - "partner_name": "Hubert & Piening Handels GmbH", - "people": [], - "source_type": "Company website -> Testimonials" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Customer using eSagu's comprehensive re-pricing solution for Amazon and eBay, testimonial highlighting service quality and account management.", - "partner_name": "On-Demand Supplies", - "people": [ - "Nemo (eSagu Account Manager)" - ], - "source_type": "Company website -> Testimonials" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Customer testimonial on eSagu website praising the repricing system.", - "partner_name": "Selectric London Limited", - "people": [], - "source_type": "Company website -> Testimonials" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Case study customer showing 19% turnover increase using eSagu RePricing for Amazon, featured on product page.", - "partner_name": "KaffeeTechnik Seubert GmbH", - "people": [], - "source_type": "Company website -> Case Study, Product page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Customer using eSagu repricing tool for nearly 5 years, testimonial on eSagu website.", - "partner_name": "Kitwizard Ltd", - "people": [], - "source_type": "Company website -> Testimonials" - }, - { - "category": "REFERENCE_CLIENT", - "context": "eBay shop operator using eSagu to address competition and pricing challenges in office supplies market.", - "partner_name": "BBS Bürosysteme GmbH", - "people": [ - "Thomas Strack (BBS Bürosysteme GmbH)" - ], - "source_type": "Company website -> Case Study" - } - ], - "target_company": "eSagu GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Webmatch is a certified Shopware Platinum Partner since 2012, with over 14 years of intensive partnership. Shopware officially recognizes Webmatch as a key agency partner for MVP implementation, relaunches, migrations, and e-commerce project development.", - "partner_name": "Shopware", - "people": [], - "source_type": "Company website -> Technology Partners section, Shopware official partner page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Webmatch is an official commercetools Partner, developing headless e-commerce platforms using commercetools' cloud-based technology for B2C, D2C, and B2B projects.", - "partner_name": "commercetools", - "people": [], - "source_type": "Company website -> Technology Partners section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Shopify is listed among Webmatch's best-in-class technology partners for e-commerce solutions.", - "partner_name": "Shopify", - "people": [], - "source_type": "Company website -> Technology Partners section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Akeneo is listed as a leading technology partner for e-commerce projects, used for product information management (PIM) implementations.", - "partner_name": "Akeneo", - "people": [], - "source_type": "Company website -> Technology Partners section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Algolia is mentioned as one of Webmatch's best-in-class technology partners.", - "partner_name": "Algolia", - "people": [], - "source_type": "Company website -> Technology Partners section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Storyblok is listed among Webmatch's e-commerce technology partners.", - "partner_name": "Storyblok", - "people": [], - "source_type": "Company website -> Technology Partners section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Toyota is featured as a case study project on Webmatch's website, described as 'A new marketplace for Toyota in record time.'", - "partner_name": "Toyota", - "people": [], - "source_type": "Company website -> Case Studies/Projects section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "TAMRON is listed as a case study client on Webmatch's website.", - "partner_name": "TAMRON", - "people": [], - "source_type": "Company website -> Case Studies/Projects section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "ADAC is featured as a case study client on Webmatch's website.", - "partner_name": "ADAC", - "people": [], - "source_type": "Company website -> Case Studies/Projects section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Webmatch is listed as a partner agency of Maxcluster and is recognized as an outstanding Shopware Gold Partner.", - "partner_name": "Maxcluster", - "people": [], - "source_type": "Maxcluster partner overview page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Webmatch GmbH is listed as an agency partner of Smoxy for performance optimization of online shops.", - "partner_name": "Smoxy", - "people": [], - "source_type": "Smoxy agency partner page" - } - ], - "target_company": "Webmatch" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Italy's leading web hoster partnered with rankingCoach to offer SEO, Google Ads, and Brand Monitoring features to SMB customers", - "partner_name": "Aruba", - "people": [], - "source_type": "Global Business Tech Awards article, rankingCoach partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Popular website builder (12 million websites) partnered with rankingCoach to integrate DIY online marketing tools; rankingCoach Jimdo Edition available in 5 languages for 11 countries", - "partner_name": "Jimdo", - "people": [], - "source_type": "rankingCoach blog, Structure Research article" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Web hosting company; testimonial from former CEO Dr. Christian Böing on rankingCoach partners page; achieved 400% increase in average monthly customer interaction", - "partner_name": "STRATO", - "people": [ - "Christian Schneider (STRATO)" - ], - "source_type": "rankingCoach partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Technology company endorsing rankingCoach as industry leader partner", - "partner_name": "Open-Xchange", - "people": [ - "Rafael Laguna de la Vera (Open-Xchange)" - ], - "source_type": "rankingCoach partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Web hosting/website builder company endorsing rankingCoach", - "partner_name": "Dropmysite", - "people": [ - "Charif El-Ansari (Dropmysite)" - ], - "source_type": "rankingCoach partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Web hosting company endorsing rankingCoach as partner", - "partner_name": "Webgo", - "people": [ - "Sebastian Angermeyer (Webgo)" - ], - "source_type": "rankingCoach partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Company endorsing rankingCoach as industry leader partner", - "partner_name": "Europlanet Group", - "people": [ - "Gerasmus Perentidis (Europlanet Group)" - ], - "source_type": "rankingCoach partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Telecommunications company with Commercial PM eCommerce endorsing rankingCoach partnership", - "partner_name": "KPN", - "people": [ - "David Hauptmann (KPN)" - ], - "source_type": "rankingCoach partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Website builder platform offering rankingCoach SEO tool integration for customers", - "partner_name": "Wix", - "people": [], - "source_type": "rankingCoach website - Wix integration page" - } - ], - "target_company": "rankingCoach" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Major partnership with German sportswear giant Adidas, signaling Prematch's significance in the grassroots football market", - "partner_name": "Adidas", - "people": [], - "source_type": "Third-party article (soccerscene.com.au)" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partnership for sponsored Gatorade Team of the Month feature on the Prematch platform, boosting engagement with up to 42,000 nominations within a month", - "partner_name": "Gatorade", - "people": [], - "source_type": "Third-party article (soccerscene.com.au)" - } - ], - "target_company": "Prematch" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Hg invested in MeinAuto.de as a leading B2C online platform for new car purchases. Hg supported MeinAuto Group's development and later facilitated the sale of MeinAuto and Mobility Concept divisions to Renault Group's Mobilize Lease & Co in January 2024.", - "partner_name": "Hg (HgCapital)", - "people": [ - "Justin Von Simson (Hg)", - "Rudolf Rizzoli (MeinAuto Group)" - ], - "source_type": "Company website -> Press Release, Investment announcement" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Mobilize Lease & Co, a subsidiary of Mobilize Financial Services (part of Renault Group), acquired the MeinAuto and Mobility Concept divisions from MeinAuto Group in January 2024.", - "partner_name": "Mobilize Lease & Co (Renault Group)", - "people": [ - "Rudolf Rizzoli (MeinAuto Group)" - ], - "source_type": "Company website -> Press Release" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Prior investment by Hg in vehicle leasing services, part of Hg's broader automotive sector initiative that included MeinAuto.de investment.", - "partner_name": "Zenith", - "people": [], - "source_type": "Company website -> Investment announcement" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Prior investment by Hg in electronic network serving vehicle fleet operators and repair shops, part of Hg's automotive sector strategy.", - "partner_name": "Epyx", - "people": [], - "source_type": "Company website -> Investment announcement" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Prior investment by Hg in platform for automotive parts pricing data, part of Hg's integrated automotive services initiative.", - "partner_name": "Eucon", - "people": [], - "source_type": "Company website -> Investment announcement" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Prior investment by Hg in buying group and distribution network for after-market car parts, part of Hg's automotive sector ecosystem.", - "partner_name": "Parts Alliance", - "people": [], - "source_type": "Company website -> Investment announcement" - } - ], - "target_company": "MeinAuto.de" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Partnership announced for Canadian market expansion; mentioned as 'Partnerschaft mit EllisDon' in specter media section", - "partner_name": "EllisDon", - "people": [], - "source_type": "Company website -> Media mentions" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Major construction firm serving as client across Asia; explicitly listed as one of specter's major clients", - "partner_name": "Kajima Corporation", - "people": [], - "source_type": "Funding announcement (thesaasnews.com)" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Construction firm client of specter automation", - "partner_name": "Domoplan", - "people": [], - "source_type": "Funding announcement (thesaasnews.com)" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Major construction firm serving as client; explicitly listed among specter's major clients", - "partner_name": "Implenia AG", - "people": [], - "source_type": "Funding announcement (thesaasnews.com)" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Construction firm client of specter automation", - "partner_name": "Nesseler Bau GmbH", - "people": [], - "source_type": "Funding announcement (thesaasnews.com)" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Lead investor in €2.7M seed round (January 2023) and continued investor in €5M+ seed extension (March 2025)", - "partner_name": "TechVision Fund", - "people": [], - "source_type": "Funding announcements and press releases" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Co-investor in €2.7M seed round (January 2023) and continued investor in €5M+ seed extension (March 2025)", - "partner_name": "LBBW Venture Capital", - "people": [], - "source_type": "Funding announcements and press releases" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Co-investor in €2.7M seed round (January 2023) and continued investor in €5M+ seed extension (March 2025); provided operational support on pricing, client acquisition, and fundraising strategy", - "partner_name": "xdeck Ventures", - "people": [], - "source_type": "Funding announcements and press releases" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Investor in €5M+ seed extension round (March 2025)", - "partner_name": "Shilling VC", - "people": [], - "source_type": "Funding announcement (thesaasnews.com)" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Investor in €5M+ seed extension round (March 2025); Partner quoted on company's vision for global expansion", - "partner_name": "Almaz Capital", - "people": [ - "Aniruddha Nazre (Almaz Capital)" - ], - "source_type": "Funding announcements" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Investor in €5M+ seed extension round (March 2025)", - "partner_name": "PAWAO", - "people": [], - "source_type": "Funding announcement (thesaasnews.com)" - } - ], - "target_company": "specter automation" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Strategic partnership announced November 13, 2024, combining Intelizign's consulting and implementation expertise with Majotech's specialized training and German-speaking user support in PLM and IT services", - "partner_name": "Intelizign Engineering Services GmbH", - "people": [], - "source_type": "Company website -> Partnership announcement" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Majotech has been an implementation partner for Siemens for more than 15 years in CAD (I-deas/NX) and PLM (Metaphase/Teamcenter) environments", - "partner_name": "Siemens Digital Industries Software (SISW)", - "people": [], - "source_type": "Company website -> Implementation page" - } - ], - "target_company": "Majotech Partnership GmbH" - }, - { - "connections": [ - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a prominent client in dimedis's customer portfolio", - "partner_name": "Messe Düsseldorf", - "people": [], - "source_type": "Company website -> Client Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Entire XXXLutz Group listed as customer; case study mentions central pan-European digital signage solution", - "partner_name": "XXXLutz Group", - "people": [], - "source_type": "Company website -> Client Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as customer; case study mentions SPAR trusts dimedis for employees and customers", - "partner_name": "SPAR Austria Group", - "people": [], - "source_type": "Company website -> Client Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as prominent client in dimedis's customer portfolio", - "partner_name": "koelnmesse", - "people": [], - "source_type": "Company website -> Client Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as customer in dimedis's client portfolio", - "partner_name": "Messe Karlsruhe", - "people": [], - "source_type": "Company website -> Client Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as customer in dimedis's client portfolio", - "partner_name": "Hamburg Messe + Congress", - "people": [], - "source_type": "Company website -> Client Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as customer in dimedis's client portfolio", - "partner_name": "Westfalenhallen", - "people": [], - "source_type": "Company website -> Client Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as customer in dimedis's client portfolio", - "partner_name": "Messe Dortmund", - "people": [], - "source_type": "Company website -> Client Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as customer in dimedis's client portfolio", - "partner_name": "LANXESS Group", - "people": [], - "source_type": "Company website -> Client Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as customer in dimedis's client portfolio", - "partner_name": "Stockholmsmässan", - "people": [], - "source_type": "Company website -> Client Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Case study: 'From smartphone to video wall for Snipes' - uses kompas software throughout Europe", - "partner_name": "Snipes", - "people": [], - "source_type": "Company website -> Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as customer in dimedis's client portfolio", - "partner_name": "EnBW Group", - "people": [], - "source_type": "Company website -> Client Portfolio" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Joint venture 'dimedis Moments' - combining dimedis's digital visitor guidance and trade fair management software with Marketing of Moments's retail media expertise", - "partner_name": "Marketing of Moments", - "people": [ - "Dennis Götze (Marketing of Moments)", - "Georgi Mihov (dimedis)" - ], - "source_type": "Company website -> Blog, dimedismoments.com" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Innovative partnership to revolutionize in-store shopping experience by combining dimedis's digital touchpoints and IoT sensors with warrify's POS data interface; presented at Euroshop 2023", - "partner_name": "warrify", - "people": [], - "source_type": "warrify.com -> Partnership announcement" - } - ], - "target_company": "dimedis" - }, - { - "connections": [], - "target_company": "testbee GmbH" - }, - { - "connections": [ - { - "category": "REFERENCE_CLIENT", - "context": "CEO testimonial praising DOM as a thought partner for digital marketing services", - "partner_name": "NESI Solutions", - "people": [ - "Flor Utset (NESI Solutions)" - ], - "source_type": "Company website -> Testimonials" - }, - { - "category": "REFERENCE_CLIENT", - "context": "CEO testimonial stating DOM exceeded expectations in lowering CPA", - "partner_name": "ECA Partners", - "people": [ - "Ken Kanara (ECA Partners)" - ], - "source_type": "Company website -> Testimonials" - }, - { - "category": "REFERENCE_CLIENT", - "context": "CEO listed as client testimonial on DOM's agency partnerships page", - "partner_name": "Vioply", - "people": [ - "Shea Georgetti (Vioply)" - ], - "source_type": "Company website -> Testimonials" - }, - { - "category": "REFERENCE_CLIENT", - "context": "President & CEO recommends DOM for SEO and paid advertising services", - "partner_name": "Northwood Health Systems", - "people": [ - "Mark Games (Northwood Health Systems)" - ], - "source_type": "Company website -> Testimonials" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Senior Demand Operations Manager with 5+ years of partnership across two companies", - "partner_name": "Illumio", - "people": [ - "Jamie McDowell (Illumio)" - ], - "source_type": "Company website -> Testimonials" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Executive testimonial describing DOM as competitive edge in digital marketing", - "partner_name": "Kelly & Hayes", - "people": [ - "Christian Brockey (Kelly & Hayes)" - ], - "source_type": "Company website -> Testimonials" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "DOM and ITA partnered to provide customized reviews and strategic plans for increasing exporting efforts through digital marketing", - "partner_name": "ITA", - "people": [], - "source_type": "Company website -> Partnerships page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as major client of DOM Digital Online Media", - "partner_name": "Telekom Deutschland GmbH", - "people": [], - "source_type": "ZoomInfo listing" - } - ], - "target_company": "DOM Digital Online Media" - }, - { - "connections": [], - "target_company": "KEO GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "RÖDL acquired a strategic stake in neuland.ai AG to strengthen long-term cooperation. RÖDL contributes expertise from its global Automation & AI Team and RÖDL AI Hub to joint platform development. Announced as 'strategic AI partnership' on January 13, 2026.", - "partner_name": "RÖDL", - "people": [ - "Karl-Heinz Land (neuland.ai)" - ], - "source_type": "Company website -> News, Blog article" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Futureneers partnered with neuland.ai to design the AI Hub, developing end-to-end AI product strategy, UX architecture, and agent interaction model. Played key strategic role in positioning the AI Hub for investors, contributing to neuland.ai securing over €5 million in funding.", - "partner_name": "Futureneers", - "people": [], - "source_type": "Futureneers website -> Project case study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "HGK Shipping, Europe's largest inland waterway shipping company, partnered with neuland.ai to launch an in-house AI application in November 2025 to boost operational efficiency and enable data-driven services for customers.", - "partner_name": "HGK Shipping", - "people": [ - "Steffen Bauer (HGK AG)", - "Kevin Stepan (HGK Shipping)", - "Karl-Heinz Land (neuland.ai)" - ], - "source_type": "Third-party website (container-news.com) -> News article" - }, - { - "category": "REFERENCE_CLIENT", - "context": "CiS electronic digitized customer service and manufacturing with neuland.ai HUB. Case study published January 13, 2026. CEO testimonial: 'With the neuland.ai HUB, we have created a centralized, secure, and powerful platform that consolidates our corporate knowledge.'", - "partner_name": "CiS electronic GmbH", - "people": [ - "Martin Wöllner (CiS electronic GmbH)" - ], - "source_type": "Company website -> Case study, Testimonials" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Madiba Consult uses neuland.ai HUB for AI Tender Management, achieving 472% more tenders. CEO testimonial: 'The introduction of our own AI solution is a decisive milestone on our path to becoming a digital shipping company.'", - "partner_name": "Madiba Consult GmbH", - "people": [ - "Dr. Kristian Kampfer (Madiba Consult GmbH)" - ], - "source_type": "Company website -> Testimonials" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "neuland.ai gained access to the HPC infrastructure of RWTH Aachen University through the AI service center WestAI. Announced December 18, 2025.", - "partner_name": "RWTH Aachen University", - "people": [], - "source_type": "Company website -> News" - } - ], - "target_company": "neuland.ai" - }, - { - "connections": [], - "target_company": "mogenius" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Inspired Consulting officially joined the Eplan Partner Network as a technology partner in January 2025. Partnership focuses on integrated software solutions for maritime and electrical engineering industries, with Inspired Consulting developing the Engineering Data Hub that connects seamlessly with Eplan tools.", - "partner_name": "Eplan", - "people": [ - "Feeko Harders (Eplan)", - "Christian Albrecht (Inspired Consulting)" - ], - "source_type": "Company website -> Press/News" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Inspired Consulting is supporting the digitization and process optimization of Tafel Deutschland in a project.", - "partner_name": "Tafel Deutschland", - "people": [], - "source_type": "Company website -> Projects/Stories" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Memo Media is an interface between event service providers and event planners that Inspired Consulting has worked with on a project.", - "partner_name": "Memo Media", - "people": [], - "source_type": "Company website -> Projects/Stories" - } - ], - "target_company": "Inspired Consulting GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as cooperation partner providing consulting expertise in Office 365, strategy, conception and training", - "partner_name": "ArtReich GmbH", - "people": [], - "source_type": "Company website -> Cooperation Partner page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Cooperation partner specializing in lean management for industrial companies", - "partner_name": "Freiraum Bande GmbH & Co KG", - "people": [], - "source_type": "Company website -> Cooperation Partner page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Cooperation partner offering IT solutions, IT security, cloud and managed services; official DACH partner of Deutsche Telekom", - "partner_name": "indis Kommunikationssysteme GmbH", - "people": [], - "source_type": "Company website -> Cooperation Partner page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Full-service IT system house cooperation partner providing firewall, data backup, IP telephone systems and IT infrastructure support", - "partner_name": "IOK GmbH & Co KG", - "people": [], - "source_type": "Company website -> Cooperation Partner page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Cooperation partner providing expertise in management systems implementation, internal auditing and certification support", - "partner_name": "Jan Martin Hecker Management Consulting GmbH", - "people": [], - "source_type": "Company website -> Cooperation Partner page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Cooperation partner offering consulting services for standardized ERP solutions and custom software development since 1990", - "partner_name": "System AG", - "people": [], - "source_type": "Company website -> Cooperation Partner page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Cooperation partner offering consulting services for standardized ERP solutions and custom software development since 1990", - "partner_name": "@Data GmbH", - "people": [], - "source_type": "Company website -> Cooperation Partner page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Official business partner; collaboration ensures services meet highest quality and security standards", - "partner_name": "Deutsche Telekom", - "people": [], - "source_type": "Company website -> Cooperation Partner page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Medium-sized IT company cooperation partner supporting digitalization in infrastructure, cloud and data security", - "partner_name": "Unilab AG", - "people": [], - "source_type": "Company website -> Cooperation Partner page" - } - ], - "target_company": "Perspicuum Solutions" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Collaborated on hackathons together, including a second hackathon at SpeckleCon 23 focused on exploring Speckle as a dynamic database for participatory planning processes in real-time design workflows.", - "partner_name": "Austrian Institute of Technology (AIT)", - "people": [ - "Vicki (AIT)", - "Yosha Andre Egar (REHUB Forge)" - ], - "source_type": "YouTube video - SpeckleCon 23 presentation" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "REHUB Forge participated in SpeckleCon 23 hackathon and integrated Speckle streams into their workflow for real-time design collaboration and data management.", - "partner_name": "Speckle", - "people": [], - "source_type": "YouTube video - SpeckleCon 23 presentation" - } - ], - "target_company": "REHUB FORGE" - }, - { - "connections": [ - { - "category": "SUBSIDIARY", - "context": "Hayuno AG (formerly Freeyou AG) has a profit transfer agreement with DEVK RE. Hayuno is a subsidiary of DEVK RE with deep integration into the DEVK insurance group.", - "partner_name": "DEVK Rückversicherungs- und Beteiligungs-AG (DEVK RE)", - "people": [], - "source_type": "Company website, North Data, DEVK RE official documents" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Dash0 lists a CTO from Hayuno AG as a customer, indicating use of Dash0's OpenTelemetry native observability platform for enterprise-grade monitoring and instrumentation.", - "partner_name": "Dash0", - "people": [ - "CTO (Hayuno AG)" - ], - "source_type": "Dash0 website - Customer testimonials" - } - ], - "target_company": "Hayuno AG" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Railslove listed as technology partner providing front-end solutions with tailored designs, product development, engineering, and data services", - "partner_name": "Railsr", - "people": [], - "source_type": "Railsr website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Railslove listed as RCS for Business partner developing tailor-made app and software solutions", - "partner_name": "Google (RCS for Business)", - "people": [], - "source_type": "Google RCS for Business website -> Partners list" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Railslove is an RCS Contract Partner of German Mobile Carriers including Telefónica Deutschland", - "partner_name": "Telefónica Deutschland", - "people": [], - "source_type": "RCS Business Messaging website" - } - ], - "target_company": "Railslove" - }, - { - "connections": [ - { - "category": "REFERENCE_CLIENT", - "context": "OINK provided website concepts, print, consulting, social media, app development, customer portals, brand cooperation, blog, and promotional campaigns for Solventum. Design team worked on booth designs and assets for Solventum at IDS 2025.", - "partner_name": "Solventum", - "people": [], - "source_type": "Company website -> Design & Concept page, Blog" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Multi-year cooperation on numerous levels. Joint products developed: 3M MD-Management and 3M easySTROPS. OINK team presented joint products at 3M exhibition stand.", - "partner_name": "3M Health Information Systems", - "people": [ - "Björn Vogt (OINK)", - "Holger Bertok (OINK)" - ], - "source_type": "Company website -> Blog/Archive" - }, - { - "category": "REFERENCE_CLIENT", - "context": "OINK provided website, consulting, corporate identity, video, agricultural market, fertiliser portal, and app development services.", - "partner_name": "Chamber of Agriculture of North Rhine-Westphalia", - "people": [], - "source_type": "Company website -> Design & Concept page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "OINK provided website, consulting, harvest forecast, variety overview, and print services.", - "partner_name": "Maiskomitee", - "people": [], - "source_type": "Company website -> Design & Concept page" - } - ], - "target_company": "OINK Media GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "REINER SCT products were implemented at Explicatis GmbH for MFA (Multi-Factor Authentication) solutions to meet ISO 9001 and ISO 27001 certification requirements", - "partner_name": "REINER SCT", - "people": [], - "source_type": "Company website -> Case Study" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Explicatis GmbH is listed as a certified Sulu CMS implementation partner", - "partner_name": "Sulu CMS", - "people": [], - "source_type": "Sulu CMS partner directory" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Explicatis developed a KI-based live logo detection solution (KI Live Logo Detection für IRIS) for IRIS GmbH", - "partner_name": "IRIS GmbH", - "people": [], - "source_type": "Company website -> Case Study/Reference Project" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Explicatis jointly developed an IoT product (Smarter Federwiegenmotor) with Swing2Sleep, the market leader in baby swing motors", - "partner_name": "Swing2Sleep", - "people": [], - "source_type": "Company website -> Case Study/Reference Project" - } - ], - "target_company": "Explicatis GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "DG-i brought the ERP software david.net from zwei R consulting & software into the cloud as a SaaS solution", - "partner_name": "zwei R consulting & software", - "people": [], - "source_type": "Company website -> Press release (pressebox.de)" - } - ], - "target_company": "Dembach Goo Informatik GmbH & Co. KG" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Landmark partnership enabling automotive professionals to purchase ALLDATA's repair solutions via Würth Spain's sales network. ALLDATA Repair integrated into Würth Spain's product lineup to reach Spanish automotive market.", - "partner_name": "Würth Spain", - "people": [ - "Satwinder Mangat (ALLDATA)", - "Karol Englert (ALLDATA Europe)", - "David Abreu (Würth Spain)" - ], - "source_type": "Company website -> Partnership announcement" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Preferred Partner Agreement enabling Autologic to distribute ALLDATA Repair to its customers. Integration of ALLDATA's OEM diagnostic and repair information with Autologic's diagnostic solution for European vehicle servicing.", - "partner_name": "Autologic Diagnostics Limited", - "people": [ - "Kevin Culmo (ALLDATA Europe)", - "Kevin Finn (Autologic Diagnostics Limited)" - ], - "source_type": "Company website -> Partnership agreement announcement" - } - ], - "target_company": "ALLDATA Europe" - }, - { - "connections": [ - { - "category": "SUBSIDIARY", - "context": "Catapult Sports acquired 100% of IMPECT GmbH shares in October 2025 for up to €78 million. All four IMPECT founders and employees joined Catapult upon transaction completion.", - "partner_name": "Catapult Sports", - "people": [ - "Will Lopes (Catapult)", - "Stefan Reinartz (IMPECT Co-founder)", - "Jens Hegeler (IMPECT Co-founder)", - "Lukas Keppler (IMPECT Co-founder)", - "Matthias Sienz (IMPECT Co-founder)" - ], - "source_type": "Company website -> Acquisition Announcement, DLA Piper legal advisory, Osborne Clarke legal advisory" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "CIES Football Observatory announced a partnership with IMPECT as a leader in football analytics.", - "partner_name": "CIES Football Observatory", - "people": [], - "source_type": "CIES website -> Partnership announcement" - } - ], - "target_company": "IMPECT" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Exclusive partnership mentioned on Ogulo's website; OnOffice Software AG is integrated with Ogulo's platform for real estate property marketing", - "partner_name": "OnOffice Software AG", - "people": [], - "source_type": "Company website -> Partners section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Exclusive partnership mentioned on Ogulo's website; Flowfact AG is integrated with Ogulo's platform for real estate services", - "partner_name": "Flowfact AG", - "people": [], - "source_type": "Company website -> Partners section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Exclusive partnership mentioned on Ogulo's website; Immonet GmbH is integrated with Ogulo's platform for real estate property marketing", - "partner_name": "Immonet GmbH", - "people": [], - "source_type": "Company website -> Partners section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Exclusive partnership mentioned on Ogulo's website; Immowelt AG is integrated with Ogulo's platform for real estate services", - "partner_name": "Immowelt AG", - "people": [], - "source_type": "Company website -> Partners section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Ogulo implemented JustOn as a native billing system for their SaaS solution; integration and support documented in case study", - "partner_name": "JustOn", - "people": [ - "Johannes Kochs (Ogulo)" - ], - "source_type": "Third-party website (juston.com) -> Case Study" - } - ], - "target_company": "Ogulo" - }, - { - "connections": [], - "target_company": "drjve AG" - }, - { - "connections": [ - { - "category": "SUBSIDIARY", - "context": "Freytag & Petersen GmbH & Co. KG is listed as an affiliated subsidiary of IGEPA group GmbH & Co KG, a German paper distribution company", - "partner_name": "IGEPA group GmbH & Co KG", - "people": [], - "source_type": "UN Global Compact participants list, NorthData company registry" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Freytag & Petersen acquired a majority stake in Wagener Verpackung, indicating a business transaction/acquisition", - "partner_name": "Wagener Verpackung", - "people": [], - "source_type": "Transfer Partners deal announcement" - } - ], - "target_company": "Freytag & Petersen GmbH & Co. KG" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "synaigy is listed as a Silver Partner on Intershop's partner page", - "partner_name": "Intershop", - "people": [], - "source_type": "Company website -> Partner Directory" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "synaigy uses OVHcloud's public cloud infrastructure for GDPR-compliant e-commerce solutions and has migrated production systems to OVHcloud", - "partner_name": "OVHcloud", - "people": [ - "Joubin Rahimi (synaigy)" - ], - "source_type": "OVHcloud case study" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "synaigy is a Platinum Partner of Storyblok and has built multiple projects using Storyblok including ZEG Holz App, Ehlert Headless B2B Commerce Platform, and Klöckner & Co migration", - "partner_name": "Storyblok", - "people": [], - "source_type": "Storyblok partner directory" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "synaigy is a Platinum Partner of Shopware, recognized for exceptional expertise in implementing large and complex e-commerce projects", - "partner_name": "Shopware", - "people": [], - "source_type": "Shopware partner directory" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "synaigy is listed as a solution partner on Pimcore's partner finder", - "partner_name": "Pimcore", - "people": [], - "source_type": "Pimcore partner directory" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "synaigy switched to OGO Security for European-compliant cybersecurity solutions available on OVH Cloud Marketplace", - "partner_name": "OGO Security", - "people": [], - "source_type": "OGO Security interview/case study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "synaigy built the ZEG Holz App retail project using Storyblok", - "partner_name": "ZEG Holz", - "people": [], - "source_type": "Storyblok partner directory -> Projects" - }, - { - "category": "REFERENCE_CLIENT", - "context": "synaigy built Ehlert Headless B2B Commerce Platform & Corporate Experience using Storyblok and AWS", - "partner_name": "Ehlert", - "people": [], - "source_type": "Storyblok partner directory -> Projects" - }, - { - "category": "REFERENCE_CLIENT", - "context": "synaigy executed Global Multi-Tenant Corporate CMS Migration for Klöckner & Co using Storyblok", - "partner_name": "Klöckner & Co", - "people": [], - "source_type": "Storyblok partner directory -> Projects" - }, - { - "category": "SUBSIDIARY", - "context": "synaigy is a subsidiary of TIMETOACT GROUP with over 700 employees across Germany, Austria, Switzerland and the Netherlands", - "partner_name": "TIMETOACT GROUP", - "people": [], - "source_type": "Company website and TIMETOACT GROUP website" - } - ], - "target_company": "synaigy" - }, - { - "connections": [ - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a trusted customer on Qimia's customers page and mentioned in marketing materials as a leader choosing Qimia for AI-driven IT solutions", - "partner_name": "Volkswagen", - "people": [], - "source_type": "Company website -> Customers page, Company presentation" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Featured on Qimia's customers page as one of the world's best companies trusting Qimia", - "partner_name": "BMW", - "people": [], - "source_type": "Company website -> Customers page, Company presentation" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on Qimia's customers page as a trusted client", - "partner_name": "T-Mobile", - "people": [], - "source_type": "Company website -> Customers page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Featured on Qimia's customers page and company presentation as a reference client", - "partner_name": "Vodafone", - "people": [], - "source_type": "Company website -> Customers page, Company presentation" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on Qimia's customers page as one of the world's best companies", - "partner_name": "Siemens", - "people": [], - "source_type": "Company website -> Customers page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Featured on Qimia's customers page and company presentation", - "partner_name": "RTL", - "people": [], - "source_type": "Company website -> Customers page, Company presentation" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on Qimia's customers page as a reference client", - "partner_name": "GfK", - "people": [], - "source_type": "Company website -> Customers page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Featured on Qimia's customers page and company presentation", - "partner_name": "Allianz", - "people": [], - "source_type": "Company website -> Customers page, Company presentation" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on Qimia's customers page and company presentation", - "partner_name": "Deutsche Bahn", - "people": [], - "source_type": "Company website -> Customers page, Company presentation" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Featured on Qimia's customers page and company presentation", - "partner_name": "Rewe", - "people": [], - "source_type": "Company website -> Customers page, Company presentation" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on Qimia's customers page and company presentation", - "partner_name": "Otto", - "people": [], - "source_type": "Company website -> Customers page, Company presentation" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Featured on Qimia's customers page and company presentation", - "partner_name": "DHL", - "people": [], - "source_type": "Company website -> Customers page, Company presentation" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on Qimia's customers page and company presentation", - "partner_name": "Lufthansa", - "people": [], - "source_type": "Company website -> Customers page, Company presentation" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Featured on Qimia's customers page and company presentation", - "partner_name": "Henkel", - "people": [], - "source_type": "Company website -> Customers page, Company presentation" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed on Qimia's customers page and company presentation", - "partner_name": "AirPlus", - "people": [], - "source_type": "Company website -> Customers page, Company presentation" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Featured in Qimia's company presentation as a customer", - "partner_name": "E-ON", - "people": [], - "source_type": "Company presentation" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed in Qimia's company presentation as a customer", - "partner_name": "NORD/LB", - "people": [], - "source_type": "Company presentation" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Featured in Qimia's company presentation as a customer", - "partner_name": "UniCredit", - "people": [], - "source_type": "Company presentation" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed in Qimia's company presentation as a customer", - "partner_name": "LIDL", - "people": [], - "source_type": "Company presentation" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Engaged Qimia GmbH to develop a cloud-based application including data science, web development, and mobile solutions for food quality and safety", - "partner_name": "The Agriculture Company", - "people": [], - "source_type": "Third-party review site -> The Manifest" - } - ], - "target_company": "Qimia GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "neusta integrate GmbH (part of team neusta) is listed as a Silver Partner in the Ibexa Partner Network for DXP, CMS, and portal projects", - "partner_name": "Ibexa", - "people": [], - "source_type": "Company website -> Partner Network" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "team neusta is listed as a Crownpeak partner", - "partner_name": "Crownpeak", - "people": [], - "source_type": "Crownpeak website -> Partner Finder" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "neusta webservices is a service partner for Liferay portal platform and has developed a customized user interface for Liferay", - "partner_name": "Liferay", - "people": [], - "source_type": "Liferay website -> Partner Profile, Crownpeak website" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "neusta webservices is a partner for Magnolia Headless CMS and has implemented numerous projects using the platform", - "partner_name": "Magnolia", - "people": [], - "source_type": "Magnolia CMS website -> Partner Profile" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "neusta webservices is a service partner for FirstSpirit enterprise software", - "partner_name": "FirstSpirit", - "people": [], - "source_type": "Liferay website, FHDW website" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "team neusta is a partner of eCommerce platform Intershop", - "partner_name": "Intershop", - "people": [], - "source_type": "Crownpeak website" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "team neusta is a partner of eCommerce platform SAP Hybris", - "partner_name": "SAP Hybris", - "people": [], - "source_type": "Crownpeak website, Liferay website" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "team neusta is a service partner for CELUM DAM system", - "partner_name": "CELUM", - "people": [], - "source_type": "Crownpeak website, Liferay website" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partnership between neusta webservices and Mercury.ai GmbH for integration of AI-based chatbots into Digital Experience Platforms", - "partner_name": "Mercury.AI", - "people": [], - "source_type": "Team Neusta website -> News" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Medium to large customer for which neusta has successfully implemented web and portal projects", - "partner_name": "ApoBank", - "people": [], - "source_type": "Ibexa Partner website, Magnolia Partner website, Liferay Partner website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Medium to large customer for which neusta has successfully implemented web and portal projects", - "partner_name": "Canada Life", - "people": [], - "source_type": "Ibexa Partner website, Crownpeak Partner website, Magnolia Partner website, Liferay Partner website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Customer for which neusta has successfully implemented web and portal projects", - "partner_name": "Caritas", - "people": [], - "source_type": "Ibexa Partner website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Customer for which neusta has successfully implemented web and portal projects", - "partner_name": "CBR eCommerce", - "people": [], - "source_type": "Ibexa Partner website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Customer for which neusta has successfully implemented web and portal projects", - "partner_name": "DFL", - "people": [], - "source_type": "Ibexa Partner website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Customer for which neusta has successfully implemented web and portal projects", - "partner_name": "Deutsche Zentrale für Tourismus", - "people": [], - "source_type": "Ibexa Partner website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Customer for which neusta has successfully implemented web and portal projects", - "partner_name": "Edeka", - "people": [], - "source_type": "Ibexa Partner website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Customer for which neusta has successfully implemented web and portal projects", - "partner_name": "HDI Versicherung", - "people": [], - "source_type": "Ibexa Partner website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Customer for which neusta has successfully implemented web and portal projects", - "partner_name": "koelnmesse", - "people": [], - "source_type": "Ibexa Partner website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Customer for which neusta has successfully implemented web and portal projects", - "partner_name": "REWE", - "people": [], - "source_type": "Ibexa Partner website, Crownpeak Partner website, Liferay Partner website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Customer for which neusta has successfully implemented web and portal projects", - "partner_name": "Roland Rechtsschutz", - "people": [], - "source_type": "Ibexa Partner website, Crownpeak Partner website, Magnolia Partner website, Liferay Partner website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Customer for which neusta has successfully implemented web and portal projects", - "partner_name": "Stadtentwässerungsbetriebe Köln (StEB)", - "people": [], - "source_type": "Ibexa Partner website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Customer for which neusta has successfully implemented web and portal projects", - "partner_name": "ZF", - "people": [], - "source_type": "Ibexa Partner website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Customer for which neusta webservices has successfully implemented web and portal projects", - "partner_name": "Demag Cranes", - "people": [], - "source_type": "Magnolia Partner website, Liferay Partner website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Customer for which neusta webservices has successfully implemented web and portal projects", - "partner_name": "Audi", - "people": [], - "source_type": "Magnolia Partner website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Customer for which neusta webservices has successfully implemented web and portal projects", - "partner_name": "BMW", - "people": [], - "source_type": "Magnolia Partner website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Customer for which neusta webservices has successfully implemented web and portal projects", - "partner_name": "Deutsche Telekom", - "people": [], - "source_type": "Magnolia Partner website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Customer for which neusta webservices has successfully implemented web and portal projects", - "partner_name": "EV Zug", - "people": [], - "source_type": "Magnolia Partner website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Customer for which neusta webservices has successfully implemented web and portal projects", - "partner_name": "KGSt", - "people": [], - "source_type": "Magnolia Partner website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Customer for which neusta webservices has successfully implemented web and portal projects", - "partner_name": "Mainova", - "people": [], - "source_type": "Magnolia Partner website, Liferay Partner website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Customer for which neusta webservices has successfully implemented web and portal projects", - "partner_name": "Siemens", - "people": [], - "source_type": "Magnolia Partner website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Customer for which neusta webservices has successfully implemented web and portal projects", - "partner_name": "TUI", - "people": [], - "source_type": "Magnolia Partner website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Customer for which neusta webservices has successfully implemented web and portal projects", - "partner_name": "Volkswagen", - "people": [], - "source_type": "Magnolia Partner website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Customer for which neusta webservices has successfully implemented web and portal projects", - "partner_name": "WDR", - "people": [], - "source_type": "Magnolia Partner website, Liferay Partner website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Customer for which neusta has successfully implemented web and portal projects", - "partner_name": "Eaton", - "people": [], - "source_type": "Liferay Partner website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Austrian client for which neusta undertook the relaunch of a B2C white label e-commerce platform for customized travel offers", - "partner_name": "Travel Partner GmbH", - "people": [], - "source_type": "Team Neusta website -> Case Study" - }, - { - "category": "SUBSIDIARY", - "context": "neusta webservices GmbH is part of team neusta group", - "partner_name": "team neusta SE", - "people": [], - "source_type": "Multiple sources" - }, - { - "category": "SUBSIDIARY", - "context": "neusta integrate GmbH is part of team neusta group, specialist for DXP, CMS, DAM and portal projects", - "partner_name": "neusta integrate GmbH", - "people": [], - "source_type": "Ibexa Partner website, Crownpeak Partner website" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "CONTACT acquired a majority stake in team neusta SE", - "partner_name": "CONTACT", - "people": [], - "source_type": "Digital Engineering 247 website" - } - ], - "target_company": "neusta webservices GmbH" - }, - { - "connections": [], - "target_company": "AMPADA GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Pratham Software chosen as preferred offshore partner by SEVEN PRINCIPLES AG to supplement service portfolio with software development, Business Process Management and Enterprise Mobility Solutions", - "partner_name": "Pratham Software", - "people": [ - "Joseph Kronfli (SEVEN PRINCIPLES AG)" - ], - "source_type": "Company website -> Press Release/Partnership Announcement" - } - ], - "target_company": "Seven Principles Mobility GmbH" - }, - { - "connections": [], - "target_company": "SIDESTREAM" - }, - { - "connections": [ - { - "category": "REFERENCE_CLIENT", - "context": "dynabase developed and operates a platform with more than 30 online configurators for igus. The partnership began in 2017 with a prototype for configuring linear guide systems. igus increased revenue from 670 million to 1.115 billion between 2017-2023 with dynabase's support.", - "partner_name": "igus GmbH", - "people": [], - "source_type": "dynabase company website -> Case Study/Project" - }, - { - "category": "REFERENCE_CLIENT", - "context": "dynabase reimplemented the QA monitor for Mainzer Netze, a tool for data quality monitoring for network operators/public utilities in the public sector, including simulation, roles/rights, and Excel and SharePoint integration.", - "partner_name": "Mainzer Netze", - "people": [], - "source_type": "dynabase company website -> Project of the Month" - } - ], - "target_company": "dynabase Technologies GmbH" - }, - { - "connections": [ - { - "category": "REFERENCE_CLIENT", - "context": "Business-Partner and IT service provider for Fortuna Köln since the 2019/20 season", - "partner_name": "Fortuna Köln", - "people": [], - "source_type": "Company website -> About Us section" - } - ], - "target_company": "ifaktor GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Roofline is a Strategic Partner of the Edge AI Foundation, contributing to advancing the future of edge AI", - "partner_name": "Edge AI Foundation", - "people": [], - "source_type": "Company website -> News" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Roofline partnered with Siemens Cre8Ventures as an Automotive Digital Twin Marketplace partner to support EU Chips Act cohorts and provide AI deployment capabilities to automotive startups", - "partner_name": "Siemens Cre8Ventures", - "people": [], - "source_type": "Siemens blog" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Roofline is partnering with Arm as a leading chip vendor to integrate Arm IP optimizations with Roofline's SDK for edge AI deployment", - "partner_name": "Arm", - "people": [ - "Moritz Joseph (Roofline)", - "Thomas Zimmermann (Roofline)" - ], - "source_type": "Arm partner catalog" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Roofline is an Intel Liftoff member, leveraging Intel's Level Zero API and collaborating on hardware-agnostic AI processing solutions", - "partner_name": "Intel", - "people": [ - "Jan Moritz Joseph (Roofline)" - ], - "source_type": "Company website -> News" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Roofline participated in the oneAPI DevSummit hosted by UXL Foundation, presenting their MLIR toolchain for edge AI", - "partner_name": "UXL Foundation", - "people": [ - "Jan Moritz Joseph (Roofline)" - ], - "source_type": "Company website -> News" - } - ], - "target_company": "Roofline" - }, - { - "connections": [], - "target_company": "Datasolut" - }, - { - "connections": [], - "target_company": "Seven Principles Solutions & Consulting GmbH" - }, - { - "connections": [], - "target_company": "Talentship" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Reguvis is listed as a partner of AEB on their official partner page", - "partner_name": "AEB", - "people": [], - "source_type": "Company website -> Partner page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Pythagoras integrates Reguvis HADDEX sanctions lists into their platform for automated export control compliance", - "partner_name": "Pythagoras Solutions", - "people": [], - "source_type": "Pythagoras Solutions website -> Blog/Insights" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Reguvis and traide AI partner to advance digital solutions in the customs sector, with Reguvis providing tariff expertise", - "partner_name": "traide AI", - "people": [ - "Daniela Winkelhardt (Reguvis)", - "Markus Bitzer (Reguvis)" - ], - "source_type": "traide AI website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Reguvis develops HADDEX sanctions lists in cooperation with the German Federal Office of Economics and Export Control (BAFA)", - "partner_name": "BAFA (Bundesamt für Wirtschaft und Ausfuhrkontrolle)", - "people": [], - "source_type": "Reguvis website -> Partner page, Pythagoras Solutions website" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Reguvis Fachmedien is a cooperation partner of Bundesanzeiger Publishing house", - "partner_name": "Bundesanzeiger Verlag", - "people": [], - "source_type": "Reguvis website -> Partner page, Pythagoras Solutions website" - } - ], - "target_company": "Reguvis" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "New technology partnership enabling seamless integration of GUDE's smart power distribution units (PDUs) into Basalte home servers such as Core Plus, S4 and mini for smart home AV systems", - "partner_name": "Basalte", - "people": [], - "source_type": "Company website -> Partnership announcement" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partnership enabling GUDE's power distribution products including Expert Power Control series to integrate directly with Densitron's Intelligent Display System (IDS) for broadcast and professional control room applications", - "partner_name": "Densitron", - "people": [ - "Alexandra Jakins (Densitron)", - "Philipp Gude (GUDE Systems)" - ], - "source_type": "Company website -> Partnership announcement, Densitron website" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "RGB Communications appointed as exclusive UK distributor of GUDE Systems GmbH for power distribution units and monitoring solutions in residential and commercial markets", - "partner_name": "RGB Communications", - "people": [ - "Philipp Gude (GUDE Systems)", - "Caroline Britt (RGB Communications)" - ], - "source_type": "Company website -> Partnership announcement, RGB Communications website" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "US distribution agreement with Apex Technologies-US expanding GUDE's offerings in the power category for North American markets", - "partner_name": "Apex Technologies", - "people": [], - "source_type": "Company website -> Partnership announcement" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Distribution partnership in Canada strengthening GUDE Systems' presence in North America and extending reach into high-demand AV environments", - "partner_name": "Techni+Contact", - "people": [], - "source_type": "Company website -> Partnership announcement" - } - ], - "target_company": "GUDE Systems GmbH" - }, - { - "connections": [], - "target_company": "Lime Connect (formerly Userlike)" - }, - { - "connections": [], - "target_company": "RIS AG" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Akeneo is listed as a 'Heart partner' offering a modern Product Information Management System (PIM system) for commerce system architecture", - "partner_name": "Akeneo", - "people": [], - "source_type": "Company website (shopmacher.de) -> Heart Partner section" - } - ], - "target_company": "ERP-Macher GmbH" - }, - { - "connections": [], - "target_company": "VDEF" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Official Shopware Solution Partner since 2015 and Shopware Platinum Partner since 2022", - "partner_name": "Shopware", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Technology partner offering Microsoft Dynamics 365 Business Central, Microsoft Dynamics 365 CRM, TARGIT Business Intelligence, Microsoft SharePoint, IT infrastructure and cloud services", - "partner_name": "TSO-DATA", - "people": [ - "Dominik Witte (TSO-DATA, CSO)" - ], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Managed cluster hosting partner providing scalable, fail-safe and high-performance managed web clusters for online stores and e-commerce applications", - "partner_name": "Maxcluster", - "people": [], - "source_type": "Company website -> Partners page" - } - ], - "target_company": "b.com GmbH" - }, - { - "connections": [], - "target_company": "MULTIDROP GMBH" - }, - { - "connections": [ - { - "category": "SUBSIDIARY", - "context": "ARS is one of five companies that merged to form ATVANTAGE GmbH on October 1, 2025, as part of the TIMETOACT GROUP", - "partner_name": "ARS", - "people": [], - "source_type": "Company website (atvantage.com)" - }, - { - "category": "SUBSIDIARY", - "context": "brainbits is one of five companies that merged to form ATVANTAGE GmbH on October 1, 2025, as part of the TIMETOACT GROUP", - "partner_name": "brainbits", - "people": [], - "source_type": "Company website (atvantage.com)" - }, - { - "category": "SUBSIDIARY", - "context": "X-INTEGRATE is one of five companies that merged to form ATVANTAGE GmbH on October 1, 2025, as part of the TIMETOACT GROUP", - "partner_name": "X-INTEGRATE", - "people": [], - "source_type": "Company website (atvantage.com)" - }, - { - "category": "SUBSIDIARY", - "context": "JOIN (+) merged to form ATVANTAGE GmbH on November 1, 2025, as part of the TIMETOACT GROUP", - "partner_name": "JOIN (+)", - "people": [], - "source_type": "Company website (atvantage.com)" - }, - { - "category": "SUBSIDIARY", - "context": "TIMETOACT Software & Consulting is one of five companies that merged to form ATVANTAGE GmbH on October 1, 2025, as part of the TIMETOACT GROUP", - "partner_name": "TIMETOACT Software & Consulting", - "people": [], - "source_type": "Company website (atvantage.com)" - }, - { - "category": "REFERENCE_CLIENT", - "context": "TIMETOACT accompanied Hymer-Leichtmetallbau in the implementation of IBM Planning Analytics with Watson for intelligent enterprise planning and flexible reporting", - "partner_name": "Hymer-Leichtmetallbau", - "people": [], - "source_type": "Company website (atvantage.com) -> Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Felss Systems GmbH uses a custom-developed Predictive Analytics procedure from X-INTEGRATE for predictive quality scoring and automation", - "partner_name": "Felss Systems GmbH", - "people": [], - "source_type": "Company website (atvantage.com) -> Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "TIMETOACT & X-INTEGRATE accompanied energy supplier e-regio on the path to digitalization with consulting services including content management", - "partner_name": "e-regio", - "people": [], - "source_type": "Company website (atvantage.com/en/references)" - }, - { - "category": "REFERENCE_CLIENT", - "context": "catworkx (part of TIMETOACT GROUP) supported thyssenkrupp Marine Systems with comprehensive ITIL process understanding during the transfer of Atlassian tools from shadow IT into ITIL IT operations", - "partner_name": "thyssenkrupp Marine Systems", - "people": [], - "source_type": "Company website (timetoact-group.com) -> News" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "TIMETOACT GROUP is a strategic partner of Atlassian, supporting enterprises in maximizing the value of their cloud platforms", - "partner_name": "Atlassian", - "people": [], - "source_type": "Company website (atvantage.com, timetoact-group.com)" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "TIMETOACT GROUP is a strategic partner of AWS, supporting enterprises in maximizing the value of their cloud platforms", - "partner_name": "AWS", - "people": [], - "source_type": "Company website (atvantage.com, timetoact-group.com)" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "TIMETOACT GROUP is a strategic partner of Google, supporting enterprises in maximizing the value of their cloud platforms", - "partner_name": "Google", - "people": [], - "source_type": "Company website (atvantage.com, timetoact-group.com)" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "TIMETOACT GROUP is a strategic partner of IBM, supporting enterprises in maximizing the value of their cloud platforms", - "partner_name": "IBM", - "people": [], - "source_type": "Company website (atvantage.com, timetoact-group.com)" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "TIMETOACT GROUP is a strategic partner of Microsoft, supporting enterprises in maximizing the value of their cloud platforms", - "partner_name": "Microsoft", - "people": [], - "source_type": "Company website (atvantage.com, timetoact-group.com)" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "TIMETOACT GROUP is a strategic partner of SAP, supporting enterprises in maximizing the value of their cloud platforms", - "partner_name": "SAP", - "people": [], - "source_type": "Company website (atvantage.com, timetoact-group.com)" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "ATVANTAGE is listed as a partner of Solutions2Share, combining expertise for digital innovation, data-driven decisions, and efficient business processes", - "partner_name": "Solutions2Share", - "people": [], - "source_type": "Solutions2Share website (solutions2share.com/partner/atvantage-gmbh/)" - } - ], - "target_company": "ATVANTAGE GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "IT training company that donated €3,000 for IT vocational training and provides free access to open seminars for school teachers", - "partner_name": "GFU Cyrus AG", - "people": [], - "source_type": "Company website -> Partner page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Independent system integrator providing internships, project weeks, application training, career orientation days, and project topics", - "partner_name": "Kramer & Crew", - "people": [], - "source_type": "Company website -> Partner page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "City of Cologne IT department providing internships, project weeks, virtualization workshops, and project topics", - "partner_name": "Stadt Köln (Amt für Informationsverarbeitung)", - "people": [], - "source_type": "Company website -> Partner page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Cooperation partner since 2016 to facilitate transition between vocational college and university studies", - "partner_name": "Rheinische Fachhochschule Köln", - "people": [], - "source_type": "Company website -> Partner page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Responsible for web server connection in early years", - "partner_name": "Technische Hochschule Köln", - "people": [], - "source_type": "Company website -> Partner page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Spanish vocational school in Málaga with partnership since 2003/2004 under EU Leonardo da Vinci program for IT apprentice exchanges", - "partner_name": "I.E.S. Campanillas", - "people": [], - "source_type": "Company website -> Partner page and Partnerships page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "French school in Marseille with partnership since 2008 enabling student internships in both countries, supported by EU Leonardo project", - "partner_name": "Le Lycée Professionnel Régional AMPERE", - "people": [], - "source_type": "Company website -> Partnerships page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "French school in Dijon with exchange program for media production students collaborating on video production projects", - "partner_name": "Lycée Privé Les Arcades", - "people": [], - "source_type": "Company website -> Partnerships page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Polish technical secondary school with German-Polish youth exchange partnership for over 30 years", - "partner_name": "Technical school in Warsaw", - "people": [], - "source_type": "Company website -> Partnerships page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Polish school in Posen with new school partnership established for vocational training exchange", - "partner_name": "ZSK Posen", - "people": [ - "Ewa Tarabasz (ZSK Posen)", - "Renata Mikolajczak (ZSK Posen)", - "Ryszard Pyssa (ZSK Posen)" - ], - "source_type": "Company website -> Partnerships page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Spanish partner school in Málaga participating in Erasmus+ exchange program with IT apprentices", - "partner_name": "FP Alan Turing", - "people": [], - "source_type": "Company website -> Main page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Company using Georg-Simon-Ohm-Berufskolleg as educational partner for apprentices in IT system integration", - "partner_name": "EDCUD", - "people": [], - "source_type": "EDCUD website" - } - ], - "target_company": "Georg-Simon-Ohm-Berufskolleg Köln" - }, - { - "connections": [ - { - "category": "SUBSIDIARY", - "context": "affinis AG acquired a majority stake (86.09%) in Collogia AG, an IT company specializing in SAP Managed and Enterprise Services", - "partner_name": "Collogia AG", - "people": [ - "Dr. Philipp Jansen (Heuking)" - ], - "source_type": "News article - affinis AG acquisition" - } - ], - "target_company": "affinis data & ai" - }, - { - "connections": [ - { - "category": "SUBSIDIARY", - "context": "City Chic Collective acquired 100% of shares in JPC United GmbH (navabi's parent company) for €6.0m in February 2022. Navabi is now a subsidiary of City Chic Collective.", - "partner_name": "City Chic Collective", - "people": [ - "Phil Ryan (City Chic Collective - CEO and MD)" - ], - "source_type": "Company website acquisition announcement, Chambers.com legal advisory article" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Index Ventures led a €10 million Series C funding round in navabi in December 2013, with participation from existing investors Seventure Partners and Dumont Venture.", - "partner_name": "Index Ventures", - "people": [ - "Dominique Vidal (Index Ventures - Partner)" - ], - "source_type": "CB Insights funding announcement" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Seventure Partners was an existing investor that participated in navabi's €10 million Series C funding round in December 2013.", - "partner_name": "Seventure Partners", - "people": [], - "source_type": "CB Insights funding announcement" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Dumont Venture was an existing investor that participated in navabi's €10 million Series C funding round in December 2013.", - "partner_name": "Dumont Venture", - "people": [], - "source_type": "CB Insights funding announcement" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Thomson Geer advised City Chic Collective on its acquisition of navabi (JPC United) in February 2022.", - "partner_name": "Thomson Geer", - "people": [ - "David Schiavello (Thomson Geer - Partner)", - "Taylor Kayes (Thomson Geer - Associate)" - ], - "source_type": "Chambers.com legal advisory article" - } - ], - "target_company": "navabi by jpc united GmbH" - }, - { - "connections": [], - "target_company": "MYSOLITY" - }, - { - "connections": [ - { - "category": "SUBSIDIARY", - "context": "Sevenval was acquired by Avenga in June 2019 and is now operating as 'Sevenval powered by Avenga'. Sevenval merged with IT Kontrakt, CoreValue, and Solidbrain to form the global Avenga platform.", - "partner_name": "Avenga", - "people": [ - "Jan Webering (Avenga CEO, formerly Sevenval)" - ], - "source_type": "Company website, Press release" - }, - { - "category": "SUBSIDIARY", - "context": "IT Kontrakt merged with Sevenval, CoreValue, and Solidbrain to form Avenga in November 2019.", - "partner_name": "IT Kontrakt", - "people": [], - "source_type": "Press release, Company website" - }, - { - "category": "SUBSIDIARY", - "context": "CoreValue merged with Sevenval, IT Kontrakt, and Solidbrain to form Avenga in November 2019.", - "partner_name": "CoreValue", - "people": [], - "source_type": "Press release, Company website" - }, - { - "category": "SUBSIDIARY", - "context": "Solidbrain merged with Sevenval, IT Kontrakt, and CoreValue to form Avenga in November 2019.", - "partner_name": "Solidbrain", - "people": [], - "source_type": "Press release, Company website" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Oaktree Capital Management provides funds supporting Avenga (parent company of Sevenval).", - "partner_name": "Oaktree Capital Management L.P.", - "people": [], - "source_type": "Press release" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Cornerstone Partners provides funds supporting Avenga (parent company of Sevenval).", - "partner_name": "Cornerstone Partners", - "people": [], - "source_type": "Press release" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Avenga (parent of Sevenval) offers comprehensive Salesforce consulting, implementation, and application development services with certified experts.", - "partner_name": "Salesforce", - "people": [], - "source_type": "Avenga website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Avenga delivers full spectrum Microsoft services including Copilot readiness, Microsoft 365 architecture, and Power Platform development.", - "partner_name": "Microsoft", - "people": [], - "source_type": "Avenga website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Avenga works with AWS as a world-class technology leader to deliver innovative, scalable solutions.", - "partner_name": "AWS", - "people": [], - "source_type": "Avenga website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Avenga collaborates with Google Cloud Platform as a technology partner.", - "partner_name": "Google Cloud Platform", - "people": [], - "source_type": "Avenga website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Avenga provides comprehensive Atlassian solutions including full stack support, customized workflows for Jira, Confluence, and Jira Service Management.", - "partner_name": "Atlassian", - "people": [], - "source_type": "Avenga website -> Partners page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Avenga (parent of Sevenval) delivered solutions for opel.mobi and opel-rescuecards.com across 30 markets using XSLT parsing technology.", - "partner_name": "Opel", - "people": [], - "source_type": "CIO Bulletin article" - } - ], - "target_company": "Sevenval powered by Avenga" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "DE-CIX is owned by the eco Association and operates as a major Internet Exchange provider. eco is instrumental in DE-CIX's governance and strategic direction.", - "partner_name": "DE-CIX", - "people": [], - "source_type": "eco website -> Partners/Community Projects page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "RIPE NCC is listed as a community partner of eco, providing Regional Internet Registry services and technical coordination for Internet infrastructure.", - "partner_name": "RIPE NCC", - "people": [], - "source_type": "eco website -> Partners/Community Projects page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "eco is a founding member of IEIC, an independent committee promoting Internet diversity and infrastructure hardening alongside companies like Ford, Telxius, CenturyLink, Telia, and Ciena.", - "partner_name": "Internet Ecosystem Innovation Committee (IEIC)", - "people": [ - "Dr. Vint Cerf" - ], - "source_type": "eco website -> Partners/Community Projects page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Telekom/T-Systems supplies ID wallet services for Gaia-X Federation Services on behalf of eco Association, commissioned by the German Federal Ministry for Economic Affairs and Climate Action.", - "partner_name": "Telekom (T-Systems)", - "people": [], - "source_type": "Telekom media information" - }, - { - "category": "REFERENCE_CLIENT", - "context": "DATEV partnered with eco Association and Telekom/Verimi to develop a proof-of-concept ID wallet for tax consultants.", - "partner_name": "DATEV", - "people": [], - "source_type": "Telekom media information" - }, - { - "category": "REFERENCE_CLIENT", - "context": "enclaive is a member of eco, Europe's largest internet industry association, and participates in eco's digital development initiatives.", - "partner_name": "enclaive", - "people": [], - "source_type": "enclaive website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as a partner in the ACDC EU-funded project community, which includes eco as a steering organization for security-related discussions.", - "partner_name": "Engineering Ingegneria Informatica", - "people": [], - "source_type": "ACDC project website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as a supporting partner in the ACDC community, which is steered by eco for Internet industry security initiatives.", - "partner_name": "Link11 GmbH", - "people": [], - "source_type": "ACDC project website -> Supporting Partners section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "eco and EuroISPA are committed to jointly driving digital transformation and ensuring Europe remains a global leader in digital innovation.", - "partner_name": "EuroISPA", - "people": [], - "source_type": "EuroISPA website -> Joint statement" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "eco strengthens cooperation with i2coalition and other leading Internet associations to represent industry interests.", - "partner_name": "i2coalition", - "people": [], - "source_type": "i2coalition website -> Leading Internet Associations article" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a newest member of eco Association with around 1,000 total members.", - "partner_name": "STULZ GmbH", - "people": [], - "source_type": "eco website -> Members page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a newest member of eco Association.", - "partner_name": "Debusmann Critical Solution GmbH", - "people": [], - "source_type": "eco website -> Members page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a newest member of eco Association.", - "partner_name": "ebm-papst neo GmbH & Co. KG", - "people": [], - "source_type": "eco website -> Members page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a newest member of eco Association.", - "partner_name": "IEE International Electronics & Engineering S.A.", - "people": [], - "source_type": "eco website -> Members page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a newest member of eco Association.", - "partner_name": "Dussmann Stiftung & Co. KGaA", - "people": [], - "source_type": "eco website -> Members page" - } - ], - "target_company": "eco – Association of the Internet Industry" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "New technology partnership enabling seamless integration of GUDE's smart power distribution units (PDUs) into Basalte home servers such as Core Plus, S4 and mini for smart home AV systems", - "partner_name": "Basalte", - "people": [ - "Philipp Gude (GUDE Systems)" - ], - "source_type": "Company website -> Partnership announcement" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "US distribution agreement where Apex Technologies-US expanded its offerings in the power category through partnership with GUDE Systems", - "partner_name": "Apex Technologies-US", - "people": [], - "source_type": "Company website -> Partnership announcement" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partnership between GUDE Systems GmbH and UK-based Densitron for distribution of GUDE's power distribution products", - "partner_name": "Densitron", - "people": [], - "source_type": "Company website -> Partnership announcement, Third-party publication" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Collaboration between Neets and GUDE for professional AV equipment and control systems integration", - "partner_name": "Neets", - "people": [], - "source_type": "Company website -> Partnership announcement" - } - ], - "target_company": "GUDE Systems GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Strategic partnership announced November 2025 to provide AI-supported analytics technology integrated into expertplace's consulting services for medium-sized companies", - "partner_name": "Scavenger AI", - "people": [ - "Pascal Filla (expertplace networks group AG)", - "Thomas Rühlemann (Scavenger AI)" - ], - "source_type": "Company website -> Blog/Press Release" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Client testimonial highlighting expertplace's experience, structured methodology, and subject-matter expertise in supporting complex IT projects", - "partner_name": "FLOCERT GmbH", - "people": [ - "Andrew John Willis (FLOCERT GmbH)" - ], - "source_type": "Company website -> Testimonials" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Long-term client collaborating on various IT projects and organizational initiatives with consistent support in organizational development and process optimization", - "partner_name": "Schoeller Werk GmbH & Co. KG", - "people": [ - "Frank Poschen (Schoeller Werk GmbH & Co. KG)" - ], - "source_type": "Company website -> Testimonials" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Client testimonial indicating expertplace understands their business needs and customer requirements", - "partner_name": "q.beyond AG", - "people": [ - "Udo Kohorst (q.beyond AG)" - ], - "source_type": "Company website -> Testimonials" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Client partner supported by expertplace on educational offerings and projects", - "partner_name": "GFN AG", - "people": [ - "Nils Manegold (GFN AG)" - ], - "source_type": "Company website -> Testimonials" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Client collaborating with expertplace on digital strategies and projects", - "partner_name": "Koelnmesse GmbH", - "people": [ - "Achim Stolzki (Koelnmesse GmbH)" - ], - "source_type": "Company website -> Testimonials" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Client utilizing expertplace as a sparring partner for digital transformation initiatives", - "partner_name": "Progroup AG", - "people": [ - "Alexander Göttel (Progroup AG)" - ], - "source_type": "Company website -> Testimonials" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Client that implemented strategic and technical measures with expertplace's support", - "partner_name": "RUAG International Holding AG", - "people": [ - "Felix Ammann (RUAG International Holding AG)" - ], - "source_type": "Company website -> Testimonials" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Client with intensive collaboration experience over six months with expertplace management team", - "partner_name": "IKB Data", - "people": [ - "Jörg Pauseback (IKB Data)" - ], - "source_type": "Company website -> Testimonials" - } - ], - "target_company": "expertplace networks group AG" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Scalable Capital is mentioned as a podcast sponsor/advertising partner in multiple episodes of the Baby got Business podcast", - "partner_name": "Scalable Capital", - "people": [], - "source_type": "Podcast - Baby got Business (Apple Podcasts)" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Hansefit is mentioned as a podcast sponsor/advertising partner in Baby got Business podcast episodes", - "partner_name": "Hansefit", - "people": [], - "source_type": "Podcast - Baby got Business (Apple Podcasts)" - } - ], - "target_company": "Baby got Business" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "NetCologne chose BENOCS for network intelligence and analytics to optimize network traffic across their IP-network serving 485,000 customers.", - "partner_name": "BENOCS", - "people": [ - "Stephan Schroeder (BENOCS)" - ], - "source_type": "Company website -> Press Release" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Nomios Germany, IT networks and cyber security experts in the DACH region, integrated BENOCS Analytics into NetCologne's network infrastructure.", - "partner_name": "Nomios Germany", - "people": [ - "Thorben Schnittger (Nomios Germany)" - ], - "source_type": "Company website -> Press Release" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "NetCologne and Cisco partnered to offer end-to-end networking solutions using Cisco Powered Network, deploying Cisco routers and ATM switches for Internet services.", - "partner_name": "Cisco Systems", - "people": [ - "Peter Lewi (Cisco Systems Germany)" - ], - "source_type": "Cisco Newsroom -> Press Release" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "b.telligent partnered with NetCologne to implement Apteco solutions for trigger-based automation and customer targeting optimization.", - "partner_name": "b.telligent Deutschland GmbH", - "people": [], - "source_type": "Apteco website -> Case Study" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Apteco provided FastStats and PeopleStage solutions to NetCologne for optimizing customer processes and win-back campaigns.", - "partner_name": "Apteco", - "people": [], - "source_type": "Apteco website -> Case Study" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "ZTE reached a strategic partnership with NetCologne for G.fast access network solutions, becoming exclusive supplier for Gigabit access technology deployment.", - "partner_name": "ZTE", - "people": [ - "Timo von Lepel (NetCologne)" - ], - "source_type": "ZTE website -> Success Story" - }, - { - "category": "REFERENCE_CLIENT", - "context": "AOE partnered with NetCologne to develop and enhance a high-level MVP solution for digital and IT development initiatives.", - "partner_name": "AOE", - "people": [ - "Head of Digital & IT Development (NetCologne)" - ], - "source_type": "AOE website -> Clients" - }, - { - "category": "REFERENCE_CLIENT", - "context": "NetCologne implemented USU's integrated monitoring solution to monitor over 600 IT systems, networks and services with centralized platform and SLA management.", - "partner_name": "USU", - "people": [ - "Klaus Peitscher (NetCologne)" - ], - "source_type": "USU website -> Case Study" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "NetCologne formed a partnership with ZyXEL based on ZyXEL's VDSL2 technology expertise for high-performance network implementation.", - "partner_name": "ZyXEL", - "people": [], - "source_type": "ZyXEL website -> Press Release" - }, - { - "category": "REFERENCE_CLIENT", - "context": "NetCologne mirrors bareos.org repository, utilizing Bareos backup and recovery solutions for IT infrastructure.", - "partner_name": "Bareos", - "people": [], - "source_type": "Bareos website -> Portfolio" - } - ], - "target_company": "NetCologne IT Services GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Mistral is explicitly mentioned as a French AI provider partner in the Franco-German competence network for open source AI. STARTPLATZ invites industry partners like Mistral to use Cologne as a springboard into the German market and build projects together.", - "partner_name": "Mistral", - "people": [], - "source_type": "Company website -> AI Hub Rhineland page" - } - ], - "target_company": "STARTPLATZ AI HUB" - }, - { - "connections": [], - "target_company": "OAK - Online Akademie GmbH" - }, - { - "connections": [ - { - "category": "REFERENCE_CLIENT", - "context": "Hotel partner that increased bookings and additional sales through Animod's hotel marketing system", - "partner_name": "Ringhotel Sellhorn", - "people": [ - "Nele Landschof (Ringhotel Sellhorn)" - ], - "source_type": "Company website -> Testimonials/Hotel Partners" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Hotel partner receiving numerous bookings with optimal communication and increased occupancy through Animod", - "partner_name": "AMEDIA Plaza Dresden", - "people": [ - "Jonas Spiekermann (AMEDIA Plaza Dresden)" - ], - "source_type": "Company website -> Testimonials/Hotel Partners" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Hotel partner with professional personal contacts, uncomplicated online presence implementation, and successful special promotions", - "partner_name": "arcona HOTELS & RESORTS", - "people": [ - "Romy Endlicher (arcona HOTELS & RESORTS)" - ], - "source_type": "Company website -> Testimonials/Hotel Partners" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Multi-year hotel partner implementing successful marketing strategies for boutique hotels and SMARTY Hotels | Boardinghouses", - "partner_name": "Balance Hotel Leipzig Alte Messe", - "people": [ - "André Weigand (Balance Hotel Leipzig Alte Messe)" - ], - "source_type": "Company website -> Testimonials/Hotel Partners" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Formal partnership offering individual marketing and target group-specific campaigns for hotels; Animod reaches over 25 million people in German market", - "partner_name": "Hotel Net Solutions (HNS)", - "people": [ - "Sarah Dorner (Animod)" - ], - "source_type": "Hotel Net Solutions website -> Blog" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partner in hotel digitalization financing network; Animod listed as leading provider of short breaks and hotel vouchers since 2001", - "partner_name": "Beyond Bookings", - "people": [], - "source_type": "Beyond Bookings website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partner in hotel digitalization ecosystem providing software solutions for guest communication and energy management", - "partner_name": "Betterspace", - "people": [], - "source_type": "Beyond Bookings website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partner network connecting leading suppliers with hotel industry, providing shared internet presence and industry event participation", - "partner_name": "KAJ hotel networks", - "people": [], - "source_type": "Beyond Bookings website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Technical integration partner; Animod listed among 70+ seamless integrations with hotel management systems", - "partner_name": "HotelPartner", - "people": [], - "source_type": "HotelPartner website -> Integrations page" - } - ], - "target_company": "Animod GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Long-standing partner in the areas of Server, Clients, Cloud and Office 365. Listed as a leading partner technology.", - "partner_name": "Microsoft", - "people": [], - "source_type": "Company website -> Partners page, Homepage" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Technology partner providing EPMM/Neurons for smart device management, Neurons for Mobile Threat Defense, and incapptic Connect for app management.", - "partner_name": "Ivanti", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as a leading partner technology leveraged by EBF for modern workplace solutions.", - "partner_name": "BlackBerry", - "people": [], - "source_type": "Company website -> Homepage" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as a leading partner technology leveraged by EBF for modern workplace solutions.", - "partner_name": "Omnissa", - "people": [], - "source_type": "Company website -> Homepage" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as a leading partner technology leveraged by EBF for modern workplace solutions.", - "partner_name": "Jamf", - "people": [], - "source_type": "Company website -> Homepage" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as a leading partner technology leveraged by EBF for modern workplace solutions.", - "partner_name": "IBM", - "people": [], - "source_type": "Company website -> Homepage" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Telecommunications partner combining first-class connectivity and hardware with EBF's innovative solutions and services for modern workplace.", - "partner_name": "Deutsche Telekom", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Telecommunications partner combining first-class connectivity and hardware with EBF's innovative solutions and services for modern workplace.", - "partner_name": "T-Mobile US", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Telecommunications partner combining first-class connectivity and hardware with EBF's innovative solutions and services for modern workplace.", - "partner_name": "Verizon", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Technology partner providing leading IP telephony solutions with phone, mobile, and PC capabilities including Live-Chat and WhatsApp integration.", - "partner_name": "3CX GmbH", - "people": [], - "source_type": "Company website -> IT-Partner page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Technology partner providing leading, scalable backup appliances with built-in deduplication and encryption trojan protection.", - "partner_name": "ExaGrid Systems Inc.", - "people": [], - "source_type": "Company website -> IT-Partner page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Hardware partner for datacenter components including server and storage systems of all sizes.", - "partner_name": "Fujitsu Technology Solutions GmbH", - "people": [], - "source_type": "Company website -> IT-Partner page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Technology partner providing automated awareness benchmarking, spear-phishing simulation, and e-training for employee cybersecurity protection.", - "partner_name": "Hornetsecurity GmbH", - "people": [], - "source_type": "Company website -> IT-Partner page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Technology partner providing public and private cloud solutions from Germany.", - "partner_name": "IONOS SE", - "people": [], - "source_type": "Company website -> IT-Partner page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Technology partner providing leading German solution for legally compliant email archiving, available on-premise or in the cloud.", - "partner_name": "MailStore Software GmbH", - "people": [], - "source_type": "Company website -> IT-Partner page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Technology partner providing comprehensive time tracking software.", - "partner_name": "Shiftbase B.V.", - "people": [], - "source_type": "Company website -> IT-Partner page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Technology partner providing leading security solutions for firewall, endpoint security, mail and web, available as managed security services.", - "partner_name": "Sophos Ltd.", - "people": [], - "source_type": "Company website -> IT-Partner page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Technology partner providing scalable, flexible cloud infrastructure solutions for mid-market companies.", - "partner_name": "TERRA CLOUD GmbH", - "people": [], - "source_type": "Company website -> IT-Partner page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Technology partner providing market-leading data protection and high availability solution, available on-premise or in the cloud.", - "partner_name": "Veeam Software", - "people": [], - "source_type": "Company website -> IT-Partner page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Knowledge partnership exploring best practices in strategically important areas for businesses and citizens.", - "partner_name": "EY", - "people": [], - "source_type": "Company website -> Knowledge Partnerships page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Knowledge partnership providing industry-leading audit, assurance, tax, legal, consulting, and advisory services.", - "partner_name": "Deloitte", - "people": [], - "source_type": "Company website -> Knowledge Partnerships page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Long-standing partnership with EBF, praising innovative ideas, outstanding expertise, reliable support, and quick response times.", - "partner_name": "Deutsche Rückversicherung AG", - "people": [ - "Markus Klann (Deutsche Rückversicherung AG)" - ], - "source_type": "Company website -> References section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Client receiving IT services from EBF.", - "partner_name": "James River Air Conditioning Company", - "people": [ - "Rashawn Hairston (James River Air Conditioning Company)" - ], - "source_type": "Company website -> References section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Successfully implemented Microsoft Endpoint Manager with EBF through joint project execution and close cooperation.", - "partner_name": "Usedomer Bäderbahn GmbH", - "people": [ - "Jan Wienholz (Usedomer Bäderbahn GmbH)" - ], - "source_type": "Company website -> References section" - } - ], - "target_company": "EBF GmbH" - }, - { - "connections": [], - "target_company": "True Nature GmbH" - }, - { - "connections": [ - { - "category": "SUBSIDIARY", - "context": "sepago was acquired by Proact in 2022 and is now part of the Proact Group. The acquisition was valued at €12m with an additional €4m earn-out.", - "partner_name": "Proact IT Group AB", - "people": [ - "Jonas Hasselberg (Proact IT Group AB)", - "Paul Lütke Wissing (sepago GmbH)", - "Claus Friedrichs (sepago GmbH)" - ], - "source_type": "Company website -> About Us, News" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Microsoft is listed as a main partner of sepago. sepago specializes in Microsoft Azure and Microsoft 365 solutions. Marcel Meurer is a Microsoft MVP for Azure since 2016.", - "partner_name": "Microsoft", - "people": [ - "Marcel Meurer (sepago GmbH)" - ], - "source_type": "Company website -> Blog/About, Microsoft partner directory" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Citrix is listed as a main partner of sepago. sepago specializes in Citrix virtual desktops and modern workplace solutions.", - "partner_name": "Citrix", - "people": [ - "Marcel Meurer (sepago GmbH)" - ], - "source_type": "Company website -> Blog/About" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "sepago GmbH is listed as a deviceTRUST sales partner.", - "partner_name": "deviceTRUST", - "people": [], - "source_type": "deviceTRUST partner directory" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "sepago GmbH is listed in the Login VSI partner directory.", - "partner_name": "Login VSI", - "people": [], - "source_type": "Login VSI partner directory" - } - ], - "target_company": "sepago GmbH" - }, - { - "connections": [], - "target_company": "Heringer Consulting GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Strategic digital marketing consulting & operational implementation since 2021. Long-term partnership from foundation to successful financing rounds, providing SEO, Google Ads, LinkedIn, HubSpot, tracking and marketing automation.", - "partner_name": "Partner & Söhne", - "people": [ - "Justus Lauten (foodforecast)" - ], - "source_type": "Company website -> Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Leading food service operator using Foodforecast's platform. Customer case demonstrating proven traction across thousands of stores.", - "partner_name": "SSP Germany", - "people": [], - "source_type": "Company website -> Case Study, Press Release" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Leading food service, bakery and retail operator using Foodforecast's platform. Customer case demonstrating proven traction across thousands of stores.", - "partner_name": "Eat Happy", - "people": [], - "source_type": "Company website -> Case Study, Press Release" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Co-led Series A funding round of €8 million. Venture capital partner investing in Foodforecast's international expansion.", - "partner_name": "SHIFT Invest", - "people": [ - "Thijs Gitmans (SHIFT Invest)" - ], - "source_type": "Press Release, News Articles" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Co-led Series A funding round of €8 million. Impact investor focused on sustainability and circular bioeconomy.", - "partner_name": "European Circular Bioeconomy Fund (ECBF)", - "people": [ - "Isabelle Laurencin (ECBF)" - ], - "source_type": "Press Release, News Articles" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Dutch agrifood tech environmental impact investor. Participated in Series A funding round and existing investor.", - "partner_name": "Future Food Fund", - "people": [ - "Silla Scheepens (Future Food Fund)" - ], - "source_type": "Press Release, News Articles" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Existing investor participating in Series A funding round.", - "partner_name": "Aeronaut Invest", - "people": [], - "source_type": "Press Release, News Articles" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "London-based existing investor participating in Series A funding round.", - "partner_name": "Blue Horizon Ventures", - "people": [], - "source_type": "Press Release, News Articles" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Venture capital firm based in Osnabrück, Germany. Co-led earlier funding round investing in B2B software startups.", - "partner_name": "Scalehouse Capital", - "people": [], - "source_type": "News Articles" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Early-stage investor from leading DACH food service companies joining Series A funding round.", - "partner_name": "Subway", - "people": [], - "source_type": "News Articles" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Early-stage investor from leading DACH food service companies joining Series A funding round.", - "partner_name": "dean&david", - "people": [], - "source_type": "News Articles" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Early-stage investor from leading DACH food service companies joining Series A funding round.", - "partner_name": "Bäckerei Göing", - "people": [], - "source_type": "News Articles" - } - ], - "target_company": "foodforecast" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Formal cooperation between REISSWOLF and STELLWERK where customers experience integrated expertise in business management and system technology, particularly for ELO projects", - "partner_name": "REISSWOLF", - "people": [], - "source_type": "Company website -> Partner page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "STELLWERK is described as one of the most successful ELO partners in Germany, providing consulting, implementation, and long-term support for ELO projects", - "partner_name": "ELO", - "people": [], - "source_type": "Company website -> Partner page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partnership to realize holistic view of PACS, image and diagnostic findings distribution, and legally compliant archiving in medical IT", - "partner_name": "synedra information technologies GmbH", - "people": [], - "source_type": "Company website -> Partner page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "S/4HANA integration project where STELLWERK assisted with data and structure migration from Non-SAP systems to new S/4HANA system", - "partner_name": "STAWAG (Stadt- und Städteregionswerke Aachen AG)", - "people": [], - "source_type": "Company website -> Success Stories/References" - }, - { - "category": "REFERENCE_CLIENT", - "context": "S/4HANA migration project for this municipal IT service provider", - "partner_name": "regio iT", - "people": [], - "source_type": "Company website -> Success Stories/References" - }, - { - "category": "REFERENCE_CLIENT", - "context": "S/4HANA migration project for this Aachen-based utility provider", - "partner_name": "E.V.A.", - "people": [], - "source_type": "Company website -> Success Stories/References" - } - ], - "target_company": "STELLWERK Consulting AG" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as a technology partner on Mediakraft's partners page", - "partner_name": "Microsoft", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as a technology partner on Mediakraft's partners page", - "partner_name": "Meta", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as a technology partner on Mediakraft's partners page", - "partner_name": "Teradata", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as a technology partner on Mediakraft's partners page", - "partner_name": "Dell", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as a technology partner on Mediakraft's partners page", - "partner_name": "HP", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as a technology partner on Mediakraft's partners page", - "partner_name": "EMC", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as a technology partner on Mediakraft's partners page", - "partner_name": "Cadence", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as a technology partner on Mediakraft's partners page", - "partner_name": "SAP", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "QYOU and Mediakraft TV partnered to launch QYOU's first fully localized channel: QYOU Polska", - "partner_name": "QYOU", - "people": [], - "source_type": "CBInsights news" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Awarded 1 contract to Mediakraft Networks GmbH for Sustainable Agricultural Supply Chains and Standards", - "partner_name": "Deutsche Gesellschaft für Internationale Zusammenarbeit (GIZ)", - "people": [], - "source_type": "Devex.com" - } - ], - "target_company": "Mediakraft Networks" - }, - { - "connections": [ - { - "category": "REFERENCE_CLIENT", - "context": "globaleyez has been AUDI's brand protection partner for more than 5 years, managing AUDI brands in online retail with focus on decreasing trademark infringements.", - "partner_name": "AUDI AG", - "people": [ - "Senior Brand Protection Manager (AUDI AG)" - ], - "source_type": "Company website -> References/Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Stihl AG uses globaleyez's services for combatting online infringements and counterfeits.", - "partner_name": "Stihl AG & Co. KG", - "people": [ - "Function Manager Anti-Counterfeiting Online Enforcement (Stihl AG & Co. KG)" - ], - "source_type": "Company website -> References/Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "HUGO BOSS Group has worked with globaleyez for several years in fighting counterfeits and recently in NFT protection.", - "partner_name": "HUGO BOSS Group", - "people": [ - "Team Lead IP Department (HUGO BOSS Group)" - ], - "source_type": "Company website -> References/Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "fischerwerke has been using various services from globaleyez for years with satisfaction.", - "partner_name": "fischerwerke GmbH & Co. KG", - "people": [ - "Manager Brand Protection (fischerwerke GmbH & Co. KG)" - ], - "source_type": "Company website -> References/Case Study" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Janssen Cosmetics has relied on globaleyez for over 2 years for worldwide brand monitoring of JANSSEN COSMETICS brand.", - "partner_name": "Janssen Cosmetics GmbH", - "people": [ - "Managing Director (Janssen Cosmetics GmbH)" - ], - "source_type": "Company website -> References/Case Study" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "globaleyez and KURZ SCRIBOS have formed a strategic partnership to offer combined online-to-offline brand protection strategy, integrating online monitoring with physical brand protection measures.", - "partner_name": "KURZ SCRIBOS", - "people": [ - "Dr Tobias Kresse (Managing Director at SCRIBOS)", - "Oliver Guimaraes (Managing Director at globaleyez)" - ], - "source_type": "Company website -> Partners page and Press release" - } - ], - "target_company": "globaleyez GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "DuMont übernimmt zum 1. April 2026 die Herausgeberschaft und redaktionelle Verantwortung der Kölnischen Rundschau. Kooperationsvertrag seit 1998.", - "partner_name": "DuMont Mediengruppe", - "people": [ - "Dr. Christoph Bauer (DuMont CEO)", - "Thomas Schultz-Homberg (Kölner Stadt-Anzeiger Medien CEO)" - ], - "source_type": "Company website (BDZV, Kölnische Rundschau official)" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Kölner Stadt-Anzeiger Medien führt die journalistische Arbeit durch und integriert die Kölnische Rundschau in ihre redaktionellen Strukturen mit gemeinsamen Newsroom ab 1. April 2026.", - "partner_name": "Kölner Stadt-Anzeiger Medien", - "people": [ - "Thomas Schultz-Homberg (CEO)" - ], - "source_type": "Company website (BDZV, Kölnische Rundschau official)" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "RRG liefert seit 2014 Inhalte für Regional- und Lokalteile der Kölnischen Rundschau. Kölner Stadt-Anzeiger Medien übernehmen die Anteile des Heinen-Verlags an der RRG.", - "partner_name": "Rheinische Redaktionsgemeinschaft (RRG)", - "people": [], - "source_type": "Company website (BDZV, Kölnische Rundschau official)" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Mittelrhein Verlag in Koblenz produziert ab 4. Oktober 2023 die Tageszeitungen Kölner Stadt-Anzeiger, Kölnische Rundschau und EXPRESS im Druck.", - "partner_name": "Mittelrhein Verlag", - "people": [], - "source_type": "DuMont press release" - }, - { - "category": "REFERENCE_CLIENT", - "context": "REWE ist Partner des ABOCARD-Bonusprogramms der Kölnischen Rundschau mit über 1.500 Partnern in der Region.", - "partner_name": "REWE", - "people": [], - "source_type": "Kölnische Rundschau website (Vorteilswelt)" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Total ist Partner des ABOCARD-Bonusprogramms der Kölnischen Rundschau für Tanken und Kundenvergünstigungen.", - "partner_name": "Total", - "people": [], - "source_type": "Kölnische Rundschau website (Vorteilswelt)" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Heinen-Verlag ist Herausgeber der Kölnischen Rundschau und arbeitet seit 1998 mit DuMont zusammen. Zieht sich zum 31. März 2026 aus dem Zeitungsgeschäft zurück.", - "partner_name": "Heinen-Verlag GmbH", - "people": [], - "source_type": "Company website (BDZV, Kölnische Rundschau official)" - } - ], - "target_company": "Kölnische Rundschau" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "ebiscon GmbH is listed as a Shopware Agency Partner on Shopware's official partner directory, supporting implementation of Shopware ecommerce projects", - "partner_name": "Shopware", - "people": [], - "source_type": "Company website -> Partner Directory" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "ebiscon's integration platform works in partnership with Microsoft Azure to create scalable, intelligent solutions for secure networking", - "partner_name": "Microsoft Azure", - "people": [], - "source_type": "Company website -> Homepage" - } - ], - "target_company": "ebiscon" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "aireal is an audio tech provider that partnered with WDR mediagroup to implement the first programmatic radio case in public broadcasting for WDR 2", - "partner_name": "aireal", - "people": [ - "Markus Adomeit (aireal GmbH)" - ], - "source_type": "Company website -> Blog/Newsroom" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Ruhr Tourismus was the client for whom WDR mediagroup delivered a linear radio campaign digitally and programmatically on WDR 2 using aireal's platform", - "partner_name": "Ruhr Tourismus", - "people": [], - "source_type": "Company website -> Blog/Newsroom" - } - ], - "target_company": "WDR mediagroup digital GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "GoDaddy partnered with Concentrix, a worldwide leader in customer care, to provide localised product and customer care in 23 European markets in 16 languages through a customer care centre in Belfast, Northern Ireland.", - "partner_name": "Concentrix", - "people": [ - "Jyllene Miller (Concentrix)" - ], - "source_type": "Company website -> Press Release" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Amazon Web Services is GoDaddy's largest partner with 5,935 partners in the ecosystem.", - "partner_name": "Amazon Web Services", - "people": [], - "source_type": "PartnerBase" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Microsoft is listed as a technology partner of GoDaddy with 4,887 partners in the ecosystem.", - "partner_name": "Microsoft", - "people": [], - "source_type": "PartnerBase" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "PayPal is listed as a channel partner of GoDaddy with 824 partners in the ecosystem.", - "partner_name": "PayPal", - "people": [], - "source_type": "PartnerBase" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Stripe is listed as a technology partner of GoDaddy with 1,733 partners in the ecosystem.", - "partner_name": "Stripe", - "people": [], - "source_type": "PartnerBase" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "HubSpot is listed as a technology partner of GoDaddy with 3,935 partners in the ecosystem.", - "partner_name": "HubSpot", - "people": [], - "source_type": "PartnerBase" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Okta is listed as a technology partner of GoDaddy with 1,263 partners in the ecosystem.", - "partner_name": "Okta", - "people": [], - "source_type": "PartnerBase" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "GitHub is listed as a technology partner of GoDaddy with 662 partners in the ecosystem.", - "partner_name": "GitHub", - "people": [], - "source_type": "PartnerBase" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Square is listed as a technology partner of GoDaddy with 477 partners in the ecosystem.", - "partner_name": "Square", - "people": [], - "source_type": "PartnerBase" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Vimeo is listed as a channel partner of GoDaddy with 176 partners in the ecosystem.", - "partner_name": "Vimeo", - "people": [], - "source_type": "PartnerBase" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Elevance Health, formerly Anthem, Inc., is a recorded user of GoDaddy for Application Hosting and Computing Services.", - "partner_name": "Elevance Health", - "people": [], - "source_type": "AppsRunTheWorld" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Allianz is a recorded user of GoDaddy for Application Hosting and Computing Services.", - "partner_name": "Allianz", - "people": [], - "source_type": "AppsRunTheWorld" - }, - { - "category": "REFERENCE_CLIENT", - "context": "StoneX Group is a recorded user of GoDaddy for Application Hosting and Computing Services.", - "partner_name": "StoneX Group", - "people": [], - "source_type": "AppsRunTheWorld" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Life Insurance Corporation of India is a recorded user of GoDaddy for Application Hosting and Computing Services.", - "partner_name": "Life Insurance Corporation of India", - "people": [], - "source_type": "AppsRunTheWorld" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Psa Nederland is a recorded user of GoDaddy for Application Hosting and Computing Services.", - "partner_name": "Psa Nederland", - "people": [], - "source_type": "AppsRunTheWorld" - } - ], - "target_company": "GoDaddy EMEA" - }, - { - "connections": [], - "target_company": "Clever Funding" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Cooperation since 2016 in Bachelor program 'Wirtschaftsinformatik, Spezialisierung Software Engineering' with student internships and project implementations", - "partner_name": "FHDW (Fachhochschule der Wirtschaft)", - "people": [], - "source_type": "Company website -> Partner page" - }, - { - "category": "SUBSIDIARY", - "context": "Parent company; merged with HÄVG Rechenzentrum GmbH effective July 1, 2025, with HÄVG AG as legal successor", - "partner_name": "HÄVG Hausärztliche Vertragsgemeinschaft AG", - "people": [], - "source_type": "Company website -> Partner page, Fusion announcement" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Close cooperation in establishing and expanding market share in HZV (Hausarztzentrierte Versorgung) business field", - "partner_name": "Deutscher Hausärzteverband e.V.", - "people": [], - "source_type": "Company website -> Partner page" - } - ], - "target_company": "HÄVG Rechenzentrum GmbH" - }, - { - "connections": [ - { - "category": "REFERENCE_CLIENT", - "context": "Operator of group practices in Switzerland using SayWay for patient satisfaction surveys", - "partner_name": "Meconex", - "people": [ - "Regina Schönach (Specialist Integrated Care | Strategic Purchasing Meconex and Centramed)" - ], - "source_type": "Company website -> Testimonials" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Operator of group practices in Switzerland using SayWay for patient satisfaction surveys", - "partner_name": "Centramed", - "people": [ - "Regina Schönach (Specialist Integrated Care | Strategic Purchasing Meconex and Centramed)" - ], - "source_type": "Company website -> Testimonials" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Using SayWay to gauge customer satisfaction in real time", - "partner_name": "Porta Möbel", - "people": [ - "Michael Kunze (Managing Director Sales)" - ], - "source_type": "Company website -> Testimonials" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Using SayWay system for guest feedback and evaluation", - "partner_name": "innogy Gastronomie GmbH", - "people": [ - "David Ellinghaus" - ], - "source_type": "Company website -> Testimonials" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Using SayWay systems for real-time visitor and coworker feedback in zoo restaurants and facilities", - "partner_name": "Zoo Hannover GmbH", - "people": [ - "Marcel Fröhlich (Head of Marketing and Customer Analysis)" - ], - "source_type": "Company website -> Testimonials" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Hosting provider for SayWay GmbH's cloud infrastructure and data centers in Germany", - "partner_name": "Server4You", - "people": [], - "source_type": "Portfolio website (pecunalta.de)" - } - ], - "target_company": "SayWay GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "KMH Group is an approved installer for Panduit", - "partner_name": "Panduit", - "people": [], - "source_type": "Company website -> About Us page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "KMH Group is an approved installer for Excel", - "partner_name": "Excel", - "people": [], - "source_type": "Company website -> About Us page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "KMH Group is an approved installer for Brand Rex", - "partner_name": "Brand Rex", - "people": [], - "source_type": "Company website -> About Us page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "KMH Group is an approved installer for Nexans", - "partner_name": "Nexans", - "people": [], - "source_type": "Company website -> About Us page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "KMH Group is an approved installer for Matrix", - "partner_name": "Matrix", - "people": [], - "source_type": "Company website -> About Us page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "KMH Group is an approved installer for HPE", - "partner_name": "HPE", - "people": [], - "source_type": "Company website -> About Us page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "KMH Group is an approved installer for Axis", - "partner_name": "Axis", - "people": [], - "source_type": "Company website -> About Us page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "KMH Group is an approved installer for Milestone Systems", - "partner_name": "Milestone Systems", - "people": [], - "source_type": "Company website -> About Us page" - } - ], - "target_company": "KMH GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "brainbits is listed as an NGINX partner in Cologne, offering consulting, setup, and operation of DevOps architectures with NGINX Plus, NGINX engineering and consulting, and secure web app deployments with NGINX ModSecurity WAF", - "partner_name": "F5 Networks (NGINX)", - "people": [], - "source_type": "F5 company website -> Partner Directory" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "brainbits is an authorized Atlassian Platinum Solution Partner since 2007, with a dedicated Atlassian Consulting Team supporting customers with JIRA, Confluence, and other Atlassian products", - "partner_name": "Atlassian", - "people": [ - "Sascha Emondts (brainbits)", - "Patrick Schuh (brainbits)" - ], - "source_type": "Easy Agile Partners website, brainbits company information" - }, - { - "category": "SUBSIDIARY", - "context": "brainbits was acquired by TIMETOACT GROUP on June 22, 2023, and continues to operate as part of the group under the catworkx umbrella, with founders Emondts and Schuh becoming shareholders", - "partner_name": "TIMETOACT GROUP", - "people": [ - "Sascha Emondts (brainbits/TIMETOACT GROUP)", - "Patrick Schuh (brainbits/TIMETOACT GROUP)" - ], - "source_type": "TIMETOACT GROUP company website, legal documentation" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "brainbits is mentioned as a client using Appfire's JMWE tool for cloud migration, reducing migration time by 90%", - "partner_name": "Appfire", - "people": [], - "source_type": "Appfire customer stories" - } - ], - "target_company": "brainbits GmbH" - }, - { - "connections": [ - { - "category": "REFERENCE_CLIENT", - "context": "zarinfar GmbH provided project management and supervision (M&E) for the Dom Hotel Cologne project designed by ingenhoven associates", - "partner_name": "ingenhoven associates", - "people": [], - "source_type": "Company website -> Project documentation (Dom Hotel Cologne PDF)" - }, - { - "category": "REFERENCE_CLIENT", - "context": "zarinfar GmbH listed as Project Management and Supervision contractor for Dom Hotel Cologne project", - "partner_name": "Christoph Ingenhoven Architects", - "people": [], - "source_type": "Company website -> Project page (Dom Hotel)" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Collaborated with zarinfar GmbH on Dom Hotel Cologne project; BMS GmbH handled construction site logistics while zarinfar managed project supervision", - "partner_name": "BMS GmbH", - "people": [], - "source_type": "Company website -> Project documentation (Dom Hotel Cologne PDF)" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Collaborated with zarinfar GmbH on Dom Hotel Cologne project; SiteLog GmbH provided transport engineering services", - "partner_name": "SiteLog GmbH", - "people": [], - "source_type": "Company website -> Project documentation (Dom Hotel Cologne PDF)" - } - ], - "target_company": "zarinfar GmbH" - }, - { - "connections": [ - { - "category": "REFERENCE_CLIENT", - "context": "dualutions GmbH worked with Krombacher Brauerei to design and implement a hyperconverged infrastructure (HCI) solution from Lenovo, including 600 Lenovo ThinkPad T Series notebooks for business users.", - "partner_name": "Krombacher Brauerei", - "people": [ - "Jan Spuhler (Krombacher Brauerei)" - ], - "source_type": "Lenovo case study" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "dualutions is a Lenovo partner that recommends and implements Lenovo HCI solutions and ThinkPad products for clients.", - "partner_name": "Lenovo", - "people": [], - "source_type": "Lenovo case study" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "dualutions GmbH is listed as an IBM Business Partner for IBM Power products and services.", - "partner_name": "IBM", - "people": [], - "source_type": "IBM website" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "dualutions GmbH is a registered sales partner for deviceTRUST solutions.", - "partner_name": "deviceTRUST", - "people": [], - "source_type": "deviceTRUST partner directory" - }, - { - "category": "REFERENCE_CLIENT", - "context": "dualutions worked with Fahrlehrerversicherung Stuttgart as an IT partner to migrate its data center to Fujitsu servers.", - "partner_name": "Fahrlehrerversicherung Stuttgart", - "people": [], - "source_type": "Fujitsu infographics" - } - ], - "target_company": "dualutions GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Co-founding partner of Gateway Factory. Brings cutting-edge technological research and deep experience in industrial collaboration.", - "partner_name": "RWTH Aachen University", - "people": [ - "Professor Michael Riesener (RWTH Aachen Innovation GmbH)" - ], - "source_type": "Company website -> Partners section, Official press release" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Co-founding partner of Gateway Factory. Contributes leading expertise in management and finance.", - "partner_name": "University of Cologne", - "people": [ - "Professor Dr. Joybrato Mukherjee (University of Cologne)" - ], - "source_type": "Company website -> Partners section, Official press release" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Co-founding partner of Gateway Factory consortium.", - "partner_name": "Heinrich Heine University Düsseldorf", - "people": [], - "source_type": "Company website -> Partners section, Official press release" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Consortium member of Gateway Factory.", - "partner_name": "TH Köln", - "people": [], - "source_type": "Company website -> Partners section, Official press release" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Consortium member of Gateway Factory.", - "partner_name": "German Sport University Cologne", - "people": [], - "source_type": "Company website -> Partners section, Official press release" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Consortium member of Gateway Factory.", - "partner_name": "Rheinische Hochschule Köln", - "people": [], - "source_type": "Company website -> Partners section, Official press release" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Consortium member of Gateway Factory.", - "partner_name": "CBS International Business School", - "people": [], - "source_type": "Company website -> Partners section, Official press release" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Co-founding partner of Gateway Factory. Munich-based firm providing specialized scaling know-how and access to international networks.", - "partner_name": "Start2 Group", - "people": [], - "source_type": "Company website -> Partners section, Official press release" - } - ], - "target_company": "Gateway Factory" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "PAGNOS offers SAP Hosting solution on AWS Marketplace as an AWS Partner, providing managed SAP systems deployment on AWS infrastructure", - "partner_name": "Amazon Web Services (AWS)", - "people": [], - "source_type": "AWS Marketplace listing, AWS Partner Network" - } - ], - "target_company": "PAGNOS" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Gold Partner with Microsoft for IT solutions and infrastructure", - "partner_name": "Microsoft", - "people": [], - "source_type": "Company website -> Partner Information" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Preferred Partner with Hewlett Packard", - "partner_name": "Hewlett Packard", - "people": [], - "source_type": "Company website -> Partner Information" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Silver Partner with CITRIX", - "partner_name": "CITRIX", - "people": [], - "source_type": "Company website -> Partner Information" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Silver Partner with NetApp", - "partner_name": "NetApp", - "people": [], - "source_type": "Company website -> Partner Information" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partnership for backup and recovery services", - "partner_name": "Veeam", - "people": [], - "source_type": "Cloudtango -> Partnerships section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partnership for cybersecurity services", - "partner_name": "Symantec", - "people": [], - "source_type": "Cloudtango -> Partnerships section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partnership for cybersecurity services", - "partner_name": "Sophos", - "people": [], - "source_type": "Cloudtango -> Partnerships section" - } - ], - "target_company": "CYBERDYNE IT GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Joint Venture partnership to establish Certified Security Operations Center GmbH, combining competencies in cybersecurity and Security Operations Center (SOC) services for mid-market companies", - "partner_name": "dhpg IT-Services GmbH", - "people": [ - "Markus Müller (dhpg IT-Services)" - ], - "source_type": "Company website -> Press Release" - }, - { - "category": "REFERENCE_CLIENT", - "context": "JCC (Johanniter service provider) engaged TÜV TRUST IT to certify their data center operations according to 'Trusted Data Center' standard to demonstrate high security standards to customers", - "partner_name": "Johanniter GmbH", - "people": [], - "source_type": "Company website -> Case Study/Success Story" - }, - { - "category": "REFERENCE_CLIENT", - "context": "TÜV TRUST IT provided consulting for information security strategy and ISMS implementation across Roche Diagnostics locations in Germany, Switzerland, and England, resulting in ISO/IEC 27001:2013 certification", - "partner_name": "F. Hoffmann-La Roche AG (Roche Diagnostics)", - "people": [ - "Hans Georg Seiberlich (Head of Global Customer Support Quality, Roche)" - ], - "source_type": "Company website -> Case Study/Success Story" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as OpenText partner to offer complete solutions for digital transformation", - "partner_name": "OpenText", - "people": [], - "source_type": "OpenText Partner Directory" - } - ], - "target_company": "TÜV TRUST IT Unternehmensgruppe TÜV AUSTRIA" - }, - { - "connections": [], - "target_company": "rheindata GmbH" - }, - { - "connections": [ - { - "category": "REFERENCE_CLIENT", - "context": "Brand Manager DACH at Alliance Pharmaceuticals GmbH uses DatamedIQ to gain insights into the online channel, assess competition, and measure marketing activities success", - "partner_name": "Alliance Pharmaceuticals GmbH", - "people": [ - "Silva Bicker (Alliance Pharmaceuticals GmbH)" - ], - "source_type": "Company website -> Customer testimonials" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Leading online pharmacy included in DatamedIQ's panel; coverage significantly increased recently", - "partner_name": "Aponeo", - "people": [], - "source_type": "Company website -> Panel page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Leading online pharmacy included in DatamedIQ's panel; coverage significantly increased recently", - "partner_name": "Sanicare", - "people": [], - "source_type": "Company website -> Panel page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Leading online pharmacy included in DatamedIQ's panel; coverage significantly increased recently", - "partner_name": "Disapo", - "people": [], - "source_type": "Company website -> Panel page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "DatamedIQ's data basis includes sales from Amazon Marketplace business", - "partner_name": "Amazon Marketplace", - "people": [], - "source_type": "Company website -> Panel page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Third Party Access (TPA) integration allows DatamedIQ OTC Insights to be integrated with IQVIA databases for data exchange and collaboration", - "partner_name": "IQVIA", - "people": [], - "source_type": "Company website -> OTC Insights page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "DatamedIQ uses Officin Data from INSIGHT Health as part of its database; also integrated via Third Party Access for data collaboration", - "partner_name": "INSIGHT Health", - "people": [], - "source_type": "Company website -> Solutions page and OTC Insights page" - } - ], - "target_company": "DatamedIQ" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Capture is a Registered Partner for Central Europe and CEE for ServiceNow, a cloud computing platform for enterprise operations", - "partner_name": "ServiceNow", - "people": [], - "source_type": "Company website -> About page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Capture is a Silver Level Partner with Katalon, a software testing automation platform, serving Central and Eastern Europe (CEE) and DACH regions", - "partner_name": "Katalon", - "people": [], - "source_type": "Company website -> About page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Capture is a co-founder of Tricise, a Broadcom Value Added Distributor with footprint across all European countries", - "partner_name": "Tricise", - "people": [], - "source_type": "Company website -> About page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Capture supports deployment of the complete Broadcom Enterprise Software Portfolio through Tricise partnership", - "partner_name": "Broadcom", - "people": [], - "source_type": "Company website -> About page" - } - ], - "target_company": "Capture" - }, - { - "connections": [], - "target_company": "AT&T Cabling Systems" - }, - { - "connections": [ - { - "category": "REFERENCE_CLIENT", - "context": "Großbecker & Nordt has served tax consultants, auditors, and lawyers and their clients associated with DATEV e.G. (Nürnberg) since 1987", - "partner_name": "DATEV e.G.", - "people": [], - "source_type": "Company website (gn-koeln.de)" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Großbecker & Nordt serves companies in construction and related trades using PDS Program + Data Service (Rotenburg)", - "partner_name": "PDS Programm + Datenservice GmbH", - "people": [], - "source_type": "Company website (gn-koeln.de)" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Großbecker & Nordt provides IT services to dental practices using CompuGroup Medical Dentalsysteme (Koblenz)", - "partner_name": "CompuGroup Medical Dentalsysteme", - "people": [], - "source_type": "Company website (gn-koeln.de)" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Microsoft listed as a partnership and serves small and medium-sized enterprises and educational institutions (Microsoft AER)", - "partner_name": "Microsoft", - "people": [], - "source_type": "Company website (gn-koeln.de)" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Veeam listed in partnerships section", - "partner_name": "Veeam", - "people": [], - "source_type": "Company website (cloudtango.net)" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "VMware listed in partnerships section", - "partner_name": "VMware", - "people": [], - "source_type": "Company website (cloudtango.net)" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Intel listed in partnerships section", - "partner_name": "Intel", - "people": [], - "source_type": "Company website (cloudtango.net)" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Citrix listed in partnerships section", - "partner_name": "Citrix", - "people": [], - "source_type": "Company website (cloudtango.net)" - } - ], - "target_company": "Großbecker & Nordt Bürotechnik Handels GmbH" - }, - { - "connections": [ - { - "category": "REFERENCE_CLIENT", - "context": "Nokia selected aqua cloud as Enterprise Test Management Partner for global scale software testing with complex compliance and security requirements. Integration with existing toolchain including Jira, Confluence, Azure DevOps, Selenium, and Jenkins.", - "partner_name": "Nokia", - "people": [ - "Stefan Gogoll (aqua cloud CEO)" - ], - "source_type": "Press release on National Law Review" - } - ], - "target_company": "aqua cloud" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Co-founder of Cofinity-X joint venture alongside nine other automotive industry partners", - "partner_name": "BASF", - "people": [], - "source_type": "Company website -> Press Release, Cofinity-X website" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Co-founder of Cofinity-X joint venture; collaborated with Cofinity-X on Business Partner Data Management (BPDM) implementation using Golden Record service", - "partner_name": "BMW Group", - "people": [ - "Thomas Rösch (Cofinity-X)" - ], - "source_type": "Company website -> Press Release, Blog, Case Study" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Co-founder of Cofinity-X joint venture; committed to digital transformation and transparency in automotive value chain", - "partner_name": "Henkel", - "people": [ - "Mark Dorn (Henkel Adhesive Technologies)" - ], - "source_type": "Company website -> Press Release, Cofinity-X website" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Co-founder of Cofinity-X joint venture", - "partner_name": "Mercedes-Benz", - "people": [], - "source_type": "Company website -> Press Release" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Co-founder of Cofinity-X joint venture", - "partner_name": "SAP", - "people": [], - "source_type": "Company website -> Press Release" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Co-founder of Cofinity-X joint venture", - "partner_name": "Schaeffler", - "people": [], - "source_type": "Company website -> Press Release" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Co-founder of Cofinity-X joint venture; provides Catena-X applications for automotive value chain participants", - "partner_name": "Siemens", - "people": [ - "Cedrik Neike (Siemens AG)" - ], - "source_type": "Company website -> Press Release, Cofinity-X website" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Co-founder of Cofinity-X joint venture", - "partner_name": "T-Systems", - "people": [], - "source_type": "Company website -> Press Release" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Co-founder of Cofinity-X joint venture; supports sustainability and efficiency goals through the joint venture", - "partner_name": "Volkswagen", - "people": [ - "Hauke Stars (Volkswagen Group)" - ], - "source_type": "Company website -> Press Release, Cofinity-X website" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Co-founder of Cofinity-X joint venture", - "partner_name": "ZF", - "people": [], - "source_type": "Company website -> Press Release" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Strategic partnership where Cofinity-X hosts its Dataspace OS connector on AWS and lists it on AWS Marketplace for secure data exchange in automotive industry", - "partner_name": "AWS", - "people": [], - "source_type": "AWS case study" - } - ], - "target_company": "Cofinity-X" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Technology Partner providing BaFin and AML compliant video identifications for digital onboarding processes (KYC)", - "partner_name": "BSS", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Consultancy Partner providing audit, assurance, tax, legal, consulting, and advisory services. Also served as legal advisor for Validatis' acquisition of Kerentia", - "partner_name": "Deloitte", - "people": [ - "Dr. Michael von Rüden (Deloitte Legal)", - "Horst Heinzl (Deloitte Legal)" - ], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Consultancy Partner enabling connected commerce, automating and digitizing banking and retail solutions", - "partner_name": "Diebold Nixdorf", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Technology Partner providing digital identity checks and Know Your Customer solutions for European banks and regulated financial institutions", - "partner_name": "Fourthline", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Technology Partner providing real-time registry connections and Modular Compliance solutions for KYC processes", - "partner_name": "Know Your Customer", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Strategic partner offering international company profiles for business partner verification (KYC checks)", - "partner_name": "S&P Global Market Intelligence", - "people": [], - "source_type": "Company website -> Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Working closely with Validatis to provide legally compliant data for optimizing business processes", - "partner_name": "FinAPU", - "people": [], - "source_type": "FinAPU website -> Blog article" - }, - { - "category": "SUBSIDIARY", - "context": "AI fintech company acquired by Validatis in April 2025. Kerentia's ASTRALYS software integrated into Validatis product range for company performance analysis", - "partner_name": "Kerentia", - "people": [ - "Christopher Keller (Kerentia/Validatis)", - "Dr. Nico Engel (Kerentia/Validatis)", - "Steven Rau (Validatis)" - ], - "source_type": "Company website -> Partners page, DuMont press release, Deloitte Legal case study" - } - ], - "target_company": "Validatis" - }, - { - "connections": [], - "target_company": "KEEN ON Digital" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "RMH MEDIA is a multi-certified partner of IQVIA Technologies (OCE). Awarded Marketing Agency | Partner of the Year in 2020 and 2023 by IQVIA for consistently contributing to client success and driving digital transformation.", - "partner_name": "IQVIA Technologies", - "people": [], - "source_type": "Company website -> Partnership page" - } - ], - "target_company": "RMH MEDIA GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Close cooperation partner for digital direct printing technology. Shirtee.Cloud relies on Kornit's partnership to process thousands of high-quality textiles per day.", - "partner_name": "Kornit", - "people": [], - "source_type": "Company website -> About section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Official integration partner. Shirtee.Cloud offers a free Shopify App available in the Shopify App Store for seamless print-on-demand dropshipping integration.", - "partner_name": "Shopify", - "people": [], - "source_type": "Company website -> Integration Overview, Shopify Print on Demand page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Official integration partner. Shirtee.Cloud provides a free WooCommerce App for connecting e-commerce shops with print-on-demand service.", - "partner_name": "WooCommerce", - "people": [], - "source_type": "Company website -> Integration Overview" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Official marketplace integration partner. Shirtee.Cloud connects with Amazon seller accounts via free seller API for order fulfillment and dropshipping.", - "partner_name": "Amazon", - "people": [], - "source_type": "Company website -> Integration Overview, Blog article" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "API-integrated provider in Teeinblue POD Personalizer. Integration allows sellers to view Shirtee's catalog, import products, send orders directly, and receive automatic tracking updates.", - "partner_name": "Teeinblue", - "people": [], - "source_type": "Teeinblue website -> Shirtee.Cloud partnership page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Shop system integration partner. Shirtee.Cloud supports integration with Shopware e-commerce platform for print-on-demand dropshipping.", - "partner_name": "Shopware", - "people": [], - "source_type": "Company website -> About section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Marketplace integration partner. Shirtee.Cloud supports integration with eBay marketplace for order fulfillment and dropshipping.", - "partner_name": "eBay", - "people": [], - "source_type": "Company website -> About section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a dropshipper who successfully uses Shirtee.Cloud and its shop integrations.", - "partner_name": "AXEL WITSEL", - "people": [], - "source_type": "Company website -> Dropshippers section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a dropshipper who successfully uses Shirtee.Cloud and its shop integrations.", - "partner_name": "LOVECGN", - "people": [], - "source_type": "Company website -> Dropshippers section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Listed as a dropshipper who successfully uses Shirtee.Cloud and its shop integrations.", - "partner_name": "ANTHONY MODESTE", - "people": [], - "source_type": "Company website -> Dropshippers section" - } - ], - "target_company": "Shirtee.Cloud" - }, - { - "connections": [ - { - "category": "SUBSIDIARY", - "context": "The Platform Group acquired Hood Media GmbH, giving TPG control over Hood.de. Hood.de was added to TPG's consumer goods segment.", - "partner_name": "The Platform Group", - "people": [ - "Dominik Benner (The Platform Group, CEO)" - ], - "source_type": "Company website -> News/Acquisition announcement, Ecommerce News" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Hood.de is listed as a retailer in Tradebyte's network, indicating a formal business partnership for marketplace integration.", - "partner_name": "Tradebyte", - "people": [], - "source_type": "Tradebyte website -> Retailer Network" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Hood products are advertised via Google and Google Shopping as part of Hood's advertising strategy.", - "partner_name": "Google", - "people": [], - "source_type": "Tradebyte website -> Retailer Network" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Hood products are advertised via Bing as part of Hood's advertising strategy.", - "partner_name": "Bing", - "people": [], - "source_type": "Tradebyte website -> Retailer Network" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Hood products are advertised via Idealo as part of Hood's advertising strategy.", - "partner_name": "Idealo", - "people": [], - "source_type": "Tradebyte website -> Retailer Network" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Hood is involved as an advertising partner in the Bundesliga.", - "partner_name": "Bundesliga", - "people": [], - "source_type": "Tradebyte website -> Retailer Network" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Hood.de is featured in a pplwise case study demonstrating recruitment and headhunting services, showing Hood saved 55% of headhunting costs.", - "partner_name": "pplwise", - "people": [], - "source_type": "pplwise website -> Case Study" - } - ], - "target_company": "Hood Media GmbH" - }, - { - "connections": [ - { - "category": "SUBSIDIARY", - "context": "Algol Consulting was acquired by Argon & Co in February 2026, becoming a subsidiary of the global management consultancy firm", - "partner_name": "Argon & Co", - "people": [ - "Benjamin Trümpler (Algol Consulting)", - "Burkhard Wagner (Argon & Co)", - "Jean-François Laget (Argon & Co)" - ], - "source_type": "Company website -> Press Release, Consultancy.eu, Bridgepoint Group" - } - ], - "target_company": "Algol Consulting" - }, - { - "connections": [ - { - "category": "REFERENCE_CLIENT", - "context": "solute GmbH acquired Checkout Charlie GmbH from RTL interactive GmbH in August 2025", - "partner_name": "solute GmbH", - "people": [], - "source_type": "Company website (RSM Ebner Stolz press release), M&A news" - } - ], - "target_company": "RTL Interactive GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Investor in tradingtwins' €1 million capital investment round", - "partner_name": "Engelhardt Kaupp Kiefer & Co.", - "people": [], - "source_type": "Nordic9 news article" - } - ], - "target_company": "tradingtwins GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Strategic partnership announced to support customers in the DACH region with Data Analytics & AI project implementation. enthus provides IT infrastructure expertise combined with areto's strategy and implementation knowledge.", - "partner_name": "enthus", - "people": [ - "Christian Uhl (enthus)", - "Jan Strackbein (areto group)" - ], - "source_type": "Company website -> Blog, About Us page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Official partner since October 2024. Joint offering combining areto's Data & AI expertise with Vodafone's 5G and IoT capabilities for digital transformation solutions.", - "partner_name": "Vodafone Business", - "people": [], - "source_type": "Company website -> About Us page" - }, - { - "category": "SUBSIDIARY", - "context": "Fixed component of areto group based in Lisbon, Portugal. Provides nearshore team support for cloud data platforms, data virtualization, and data warehouse automation with 13+ years experience and 400+ completed projects.", - "partner_name": "Passio Consulting", - "people": [], - "source_type": "Company website -> Nearshoring page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Strategic technology partner with long-standing close collaboration based on shared innovation understanding, certified expertise, and deep technical knowledge.", - "partner_name": "Microsoft", - "people": [], - "source_type": "Company website -> Technology Partners page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Strategic technology partner with long-standing close collaboration for data platform solutions.", - "partner_name": "Snowflake", - "people": [], - "source_type": "Company website -> Technology Partners page, Blog" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Strategic technology partner with long-standing close collaboration for cloud infrastructure and data solutions.", - "partner_name": "AWS", - "people": [], - "source_type": "Company website -> Technology Partners page, Blog" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Strategic technology partner with long-standing close collaboration for enterprise data solutions.", - "partner_name": "SAP", - "people": [], - "source_type": "Company website -> Technology Partners page, Blog" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Strategic technology partner with long-standing close collaboration for data analytics and AI solutions.", - "partner_name": "Databricks", - "people": [], - "source_type": "Company website -> Technology Partners page, Blog" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Implementation of enterprise-wide data platform project.", - "partner_name": "Helm AG", - "people": [], - "source_type": "Company website -> Business Cases" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Development of data strategy including data warehouse implementation.", - "partner_name": "IT.NRW", - "people": [], - "source_type": "Company website -> Business Cases" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Data warehouse modernization project.", - "partner_name": "Goldhofer", - "people": [], - "source_type": "Company website -> Business Cases" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Enterprise-wide data warehouse implementation.", - "partner_name": "C&A", - "people": [], - "source_type": "Company website -> Business Cases" - } - ], - "target_company": "areto group" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Gold Partner / Implementation Gold Partner of commercetools; core technology partner for e-commerce projects", - "partner_name": "commercetools", - "people": [ - "Matthias Steinforth (kernpunkt Digital GmbH)" - ], - "source_type": "Company website -> Partner page, commercetools.com partner listing" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Gold Partner of Contentful; leading agency for Contentful in Germany; headless CMS technology partner", - "partner_name": "Contentful", - "people": [ - "Matthias Steinforth (kernpunkt Digital GmbH)" - ], - "source_type": "Company website -> Partner page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Gold Partner of Akeneo; certified agency for Product Experience and PIM implementations", - "partner_name": "Akeneo", - "people": [ - "Matthias Steinforth (kernpunkt Digital GmbH)" - ], - "source_type": "Company website -> Partner page, Akeneo partner listing" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Premier Partner of Algolia since 2015; AI-powered search engine technology partner for e-commerce", - "partner_name": "Algolia", - "people": [], - "source_type": "Company website -> Partner page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Technology partner for promotion and loyalty management in e-commerce projects", - "partner_name": "Talon.One", - "people": [], - "source_type": "Company website -> Partner page, Customer Data Platform page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Technology partner for fulfillment and logistics integration in e-commerce solutions", - "partner_name": "fulfillmenttools", - "people": [], - "source_type": "Company website -> Customer Data Platform page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Marketplace technology partner for composable commerce solutions", - "partner_name": "Mirakl", - "people": [], - "source_type": "Company website -> Customer Data Platform page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Headless CMS technology partner for digital experience platforms", - "partner_name": "Storyblok", - "people": [], - "source_type": "Company website -> Customer Data Platform page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Customer Data Platform technology partner for data management and personalization", - "partner_name": "Twilio Segment", - "people": [], - "source_type": "Company website -> Customer Data Platform page" - }, - { - "category": "REFERENCE_CLIENT", - "context": "E-commerce project client; testimonial praising kernpunkt's eCommerce experience and implementation approach", - "partner_name": "ONLINEPRINTERS", - "people": [ - "Head of Web Shop & Customer Sales (ONLINEPRINTERS)" - ], - "source_type": "commercetools.com partner page -> Case Study/Testimonial" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Platform development client; praised as reliable and experienced partner during critical phase of platform development", - "partner_name": "BIKE&CO", - "people": [ - "Head of Marketing & E-Commerce (BIKE&CO)", - "Georg Wagner (BIKE&CO)" - ], - "source_type": "commercetools.com partner page -> Case Study/Testimonial, Company website -> References" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Replatforming project with focus on Lead-to-Store strategy", - "partner_name": "e-motion e-bikes", - "people": [], - "source_type": "Company website -> Case Studies section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Digital Experience Platform implementation project", - "partner_name": "REWE FÜR-SIE GVG", - "people": [], - "source_type": "Company website -> Case Studies section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Professional PIM implementation with Akeneo", - "partner_name": "nu³", - "people": [], - "source_type": "Company website -> Case Studies section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Composable Commerce Replatforming project", - "partner_name": "celebrate Company", - "people": [], - "source_type": "Company website -> Case Studies section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Digital Experience platform for Tuning & Motorsport", - "partner_name": "KW automotive", - "people": [], - "source_type": "Company website -> Case Studies section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Complete online shop replatforming project", - "partner_name": "BLUME2000", - "people": [], - "source_type": "Company website -> Case Studies section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Digital marketplace MVP development", - "partner_name": "Bikes.de", - "people": [], - "source_type": "Company website -> Case Studies section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Digital business model 'Hello Health' implementation", - "partner_name": "RTL Deutschland", - "people": [], - "source_type": "Company website -> Case Studies section" - }, - { - "category": "REFERENCE_CLIENT", - "context": "E-commerce client; received targeted Algolia training and UX solutions for search optimization", - "partner_name": "Obeta", - "people": [ - "Pierre Demmer (Obeta)" - ], - "source_type": "Company website -> References page" - } - ], - "target_company": "kernpunkt Digital GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Cooperation mentioned: 'Cooperation: Teltonika x Fibaro' listed in etree News section", - "partner_name": "Teltonika", - "people": [], - "source_type": "Company website -> News/Cooperation section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Cooperation mentioned: 'Cooperation: Teltonika x Fibaro' listed in etree News section", - "partner_name": "Fibaro", - "people": [], - "source_type": "Company website -> News/Cooperation section" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Team up partnership: 'Etree and Forest Finance team up to support climate, animals and forests'", - "partner_name": "Forest Finance", - "people": [], - "source_type": "Company website -> Partnership announcement" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Distribution partnership for Xerox Everyday Toners and Xerox Remanufactured Toners", - "partner_name": "Xerox", - "people": [], - "source_type": "Company website -> Product offerings" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Featured product deal: 'Top Deal: Asus ProArt PA278QV' indicating distribution partnership", - "partner_name": "Asus", - "people": [], - "source_type": "Company website -> Product offerings" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Product guide offered: 'Fanvil Explained: To the Guide!' with comprehensive product information", - "partner_name": "Fanvil", - "people": [], - "source_type": "Company website -> Product guide" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "SAP Consulting partnership: 'SAP Consulting (by our partner Konsultec)' with dedicated SAP B1 consultants", - "partner_name": "Konsultec", - "people": [ - "Sebastian Rinne (Konsultec)", - "Sebastian Zasowski (etree/Konsultec)", - "Noraldeen Amayre (etree/Konsultec)" - ], - "source_type": "Company website -> Contact page" - } - ], - "target_company": "etree GmbH" - }, - { - "connections": [ - { - "category": "REFERENCE_CLIENT", - "context": "DAX-listed company using Crowdfox as pilot customer for AI-powered procurement optimization, achieving 70 minutes time savings per purchasing process", - "partner_name": "BASF", - "people": [], - "source_type": "Company document - Handelsblatt article (2024)" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Uses Crowdfox technology for procurement optimization", - "partner_name": "E.ON", - "people": [], - "source_type": "Company document - Handelsblatt article (2024)" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Uses Crowdfox technology for procurement optimization", - "partner_name": "DHL", - "people": [], - "source_type": "Company document - Handelsblatt article (2024)" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Uses Crowdfox technology for procurement optimization", - "partner_name": "Kirchhoff", - "people": [], - "source_type": "Company document - Handelsblatt article (2024)" - } - ], - "target_company": "Crowdfox" - }, - { - "connections": [ - { - "category": "SUBSIDIARY", - "context": "Harita Insurance Broking, which is featured on Insoro's website, is part of the TVS Group, a major Indian company with interests in logistics, automotive, and financial services.", - "partner_name": "TVS Group", - "people": [], - "source_type": "Insoro website -> Company details/Blog" - } - ], - "target_company": "Insoro" - }, - { - "connections": [], - "target_company": "Legalbird" - }, - { - "connections": [ - { - "category": "SUBSIDIARY", - "context": "In late 2024, Movinga was acquired by the Swiss moving company MoveAgain", - "partner_name": "MoveAgain", - "people": [], - "source_type": "Wikipedia" - }, - { - "category": "SUBSIDIARY", - "context": "In April 2023, Shift Group Ltd., a portfolio company of Fuel Ventures, acquired Movinga GmbH", - "partner_name": "Shift Group Ltd.", - "people": [], - "source_type": "Preqin Asset Profile" - }, - { - "category": "SUBSIDIARY", - "context": "Shift Group Ltd., a portfolio company of Fuel Ventures, acquired Movinga GmbH in April 2023", - "partner_name": "Fuel Ventures", - "people": [], - "source_type": "Preqin Asset Profile" - } - ], - "target_company": "Movinga" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Strategic partnership where greenfield uses CredaRate's ESG-Scoring Solution to support companies with their ESG processes and sustainability assessments", - "partner_name": "greenfield The Consulting Company GmbH", - "people": [], - "source_type": "Company website -> News/Blog" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Partnership where Arvato Systems provides server hosting and IT services for CredaRate's rating models and SaaS solutions", - "partner_name": "Arvato Systems", - "people": [ - "Patrick Bisdorff (CredaRate Solutions)", - "Maik Hanewinkel (Arvato Systems)" - ], - "source_type": "Company website -> Press Release, Arvato Systems website" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Client using CredaRate's Commercial Real Estate and Retail rating procedures for credit risk assessment", - "partner_name": "Ziraat Bank International AG", - "people": [], - "source_type": "Company website -> News/Blog" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Client using CredaRate's Corporates and Retail rating procedures for credit risk management", - "partner_name": "European Bank for Financial Services (ebase)", - "people": [], - "source_type": "Company website -> News/Blog" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Client using CredaRate's Commercial Real Estate application for credit risk assessment of real estate financing", - "partner_name": "BF.capital", - "people": [], - "source_type": "Company website -> News/Blog" - } - ], - "target_company": "CredaRate Solutions GmbH" - }, - { - "connections": [], - "target_company": "beQualified GmbH" - }, - { - "connections": [], - "target_company": "Colonia" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as a partner of ROCKETHOME in their partner ecosystem", - "partner_name": "ZyXEL", - "people": [], - "source_type": "Preqin company profile" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as a partner of ROCKETHOME in their partner ecosystem", - "partner_name": "Nuki Home Solutions", - "people": [], - "source_type": "Preqin company profile" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as a partner of ROCKETHOME in their partner ecosystem", - "partner_name": "Diehl Controls", - "people": [], - "source_type": "Preqin company profile" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as a partner of ROCKETHOME in their partner ecosystem", - "partner_name": "KIWI", - "people": [], - "source_type": "Preqin company profile" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as a partner of ROCKETHOME in their partner ecosystem", - "partner_name": "Wilka Locking Technology", - "people": [], - "source_type": "Preqin company profile" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as a partner of ROCKETHOME in their partner ecosystem", - "partner_name": "VDE", - "people": [], - "source_type": "Preqin company profile" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Listed as a partner of ROCKETHOME in their partner ecosystem", - "partner_name": "Intel", - "people": [], - "source_type": "Preqin company profile" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Cooperation partner offering dual Bachelor's degree program in Business Informatics with specialization in Cyber Security at FHDW Bergisch Gladbach campus", - "partner_name": "FHDW (Fachhochschule der Wirtschaft)", - "people": [], - "source_type": "ROCKETHOME website -> Partnership page" - } - ], - "target_company": "ROCKETHOME GmbH" - }, - { - "connections": [], - "target_company": "Alpha Global IT Solution" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Strategic partnership to create iXpro platform (System on Module and gateway) using NXP Semiconductors' chips for rapid IoT gateway development across multiple protocols", - "partner_name": "NXP Semiconductors", - "people": [ - "Jens Binder (ithinx)" - ], - "source_type": "Company website -> Blog, NXP partner profile" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Certified design partner providing semiconductor solutions and software for IoT applications", - "partner_name": "Silicon Labs", - "people": [], - "source_type": "Silicon Labs partner network" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Strategic technology partnership for IoT connectivity solutions", - "partner_name": "Sigfox", - "people": [], - "source_type": "Sigfox partner network" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Strategic technology partner delivering customized end-to-end IoT solutions", - "partner_name": "Onomondo", - "people": [], - "source_type": "Onomondo partner page" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Authorized distributor of electronic components partnership", - "partner_name": "DigiKey", - "people": [], - "source_type": "Company website -> Partners & Memberships" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Professional software development company collaborating on Zigbee PRO software platform for IoT interoperability", - "partner_name": "DSR Corporation", - "people": [], - "source_type": "Company website -> Partners & Memberships" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Leading digital telecommunications provider partnership", - "partner_name": "Deutsche Telekom", - "people": [], - "source_type": "Company website -> Partners & Memberships" - }, - { - "category": "SUBSIDIARY", - "context": "Parent company; ithinx established in May 2016 as subsidiary of Viessmann Group, now part of Carrier Global Corporation", - "partner_name": "Viessmann Climate Solutions", - "people": [], - "source_type": "Company website -> Partners & Memberships, Blog" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "International association membership for building automation and smart home solutions", - "partner_name": "EnOcean Alliance", - "people": [], - "source_type": "Company website -> Partners & Memberships" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Leading brand trusted by ithinx for IoT solutions", - "partner_name": "Tonies", - "people": [], - "source_type": "Onomondo partner page" - } - ], - "target_company": "ithinx GmbH" - }, - { - "connections": [ - { - "category": "SUBSIDIARY", - "context": "Axians is part of the global ICT solutions brand network of VINCI Energies", - "partner_name": "VINCI Energies", - "people": [], - "source_type": "Company website -> About Us" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Long-term technology partnership for network intelligence, automation, and security solutions", - "partner_name": "Arista Networks", - "people": [], - "source_type": "Company website -> Strategic Partners" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Over 25 years of partnership as reliable solution provider for BMC Software technologies and Helix platform", - "partner_name": "BMC Software", - "people": [], - "source_type": "Company website -> Strategic Partners" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "5 Stars Partner with long-term partnership for security solutions", - "partner_name": "Check Point", - "people": [], - "source_type": "Company website -> Strategic Partners" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Preferred Services Partner status for Citrix product portfolio services and licensing", - "partner_name": "Citrix", - "people": [], - "source_type": "Company website -> Strategic Partners" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Platinum Partner for storage and backup platforms across all customer segments", - "partner_name": "Dell Technologies", - "people": [], - "source_type": "Company website -> Strategic Partners" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "License Solution Provider and technology partner for complete Microsoft spectrum", - "partner_name": "Microsoft", - "people": [], - "source_type": "Company website -> Strategic Partners" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Expert Partner and Maintenance Partner for access management, radio networks, mobile network expansion, and antenna systems", - "partner_name": "Nokia", - "people": [], - "source_type": "Company website -> Strategic Partners" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Premier status regional partner in Broadcom's VMware partner program for licenses, renewals, and specialized services", - "partner_name": "Broadcom (VMware)", - "people": [], - "source_type": "Company website -> About Us" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Strategic partnership for ITK infrastructure modernization projects", - "partner_name": "Bisping & Bisping", - "people": [], - "source_type": "Company website -> About Us" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Commissioned by Deutsche Messe AG for redesign of ITK infrastructure in Hannover", - "partner_name": "Deutsche Messe AG", - "people": [], - "source_type": "Company website -> About Us" - }, - { - "category": "REFERENCE_CLIENT", - "context": "Service partnership for on-site maintenance services for eTower 200 charging infrastructure", - "partner_name": "Compleo Charging Solutions GmbH & Co. KG", - "people": [], - "source_type": "Company website -> Portfolio" - }, - { - "category": "REFERENCE_CLIENT", - "context": "White-label integration of Axians Security Analysis Service for customer offerings", - "partner_name": "ennit", - "people": [], - "source_type": "Company website -> Portfolio" - } - ], - "target_company": "Axians Deutschland NW&S GmbH" - }, - { - "connections": [ - { - "category": "STRATEGIC_PARTNER", - "context": "Xaver and Upvest partnered to enable end-to-end digital pension, savings, and investment solutions. Upvest serves as Xaver's partner for custody and brokerage, providing API-first infrastructure for launching new pension and investment products. Xaver chose Upvest for its proven scalability and regulatory robustness.", - "partner_name": "Upvest", - "people": [ - "Max Bachem (Xaver)", - "Martin Kassing (Upvest)" - ], - "source_type": "Company website -> Blog, Partner website" - }, - { - "category": "STRATEGIC_PARTNER", - "context": "Qdrant provides vector search infrastructure to Xaver, enabling scalable, efficient AI-driven financial consultations. Xaver outsourced the heavy lifting of vector search infrastructure to Qdrant as a trusted technology partner.", - "partner_name": "Qdrant", - "people": [], - "source_type": "Partner website -> Case Study" - } - ], - "target_company": "Xaver" - } -] diff --git a/leadfinder/src/main.rs b/leadfinder/src/main.rs index 030a96b..47a06b3 100644 --- a/leadfinder/src/main.rs +++ b/leadfinder/src/main.rs @@ -1,23 +1,29 @@ //TODO include [Y/n] confimrmation for API-calling commands and -y flag //TODO Use tracing crate +//TODO Implement structured output for Gemini and Perplexity +//TODO If parsing the response fails in prettify(), try to parse as {"error":"msg"} +//TODO Print Token usage in dbg print or somehting +//TODO Compile .typ from code +//TODO Retry after failing use clap::{Parser, Subcommand, ValueEnum}; use serde::{Deserialize, Serialize}; use std::{ collections::HashMap, env, - fmt::{Debug, Display}, + fmt::{Debug, Display, Write as _}, fs, path::{Path, PathBuf}, process::ExitCode, str::FromStr, }; use tokio::time; +use inline_colorization::*; #[derive(Subcommand)] enum Task { /// Parses a given input file (.csv) and lists the contained companies. Panics if a `name` column does not exist. List { - /// The csv file. + #[arg(short, long)] csv_file: String, }, /// Parses a given input file (.json) and counts the number of occurences per company as a reference client of other companies. @@ -25,6 +31,7 @@ enum Task { /// (TODO: Not quite. If there are multiple prompt results in a single file, concatination of multiple results has to be done manually at the moment. Thats why we like helix tho.) CountPartners { /// The json file, containing the required format. + #[arg(short, long)] json_file: String, }, /// WARNING: This might cost money to run! @@ -35,6 +42,8 @@ enum Task { #[arg(short, long)] system_prompt_file: String, #[arg(short, long)] + json_schema_file: Option, + #[arg(short, long)] pretty: bool, }, /// WARNING: This might cost money to run! @@ -47,9 +56,12 @@ enum Task { #[arg(short, long)] system_prompt_file: String, #[arg(short, long)] + json_schema_file: Option, + #[arg(short, long)] pretty: bool, }, /// WARNING: This might cost money to run! + /// Range boundaries are inclusive RangePrompt { range_start: usize, range_end: usize, @@ -60,10 +72,13 @@ enum Task { #[arg(short, long)] system_prompt_file: String, #[arg(short, long)] + json_schema_file: Option, + #[arg(short, long)] pretty: bool, }, /// WARNING: This might cost A LOT money to run! - Multiprompt { + /// Range boundaries are inclusive + MultiPrompt { range_start: usize, range_end: usize, range_step: usize, @@ -74,61 +89,74 @@ enum Task { #[arg(short, long)] system_prompt_file: String, #[arg(short, long)] + json_schema_file: Option, + #[arg(short, long)] pretty: bool, }, + /// Expects JSON format from multiprompt with Lead evaluation system prompt + /// Formats the recieved almost-JSON into valid JSON and verifies + /// output_format = Typst: Formats leads into human-readable .typ file + ProcessLeadEvalJson { + #[arg(short, long)] + json_file: String, + #[arg(short, long)] + min_attractiveness: usize, + #[arg(short, long)] + output_format: OutputFormat, + }, } #[derive(thiserror::Error, Debug)] enum Error { - #[error("context index range is invalid: {0}")] + #[error("{style_bold}{color_red}API Response Error: {style_reset}{color_reset}\n{0}")] + APIResponseError(String), + #[error("{style_bold}{color_red}Unexpected response structure Error: {style_reset}{color_reset}\n{0}")] + UnexpectedResponseStructure(String), + #[error("{style_bold}{color_red}context index range is invalid: {style_reset}{color_reset}\n{0}")] InvalidRange(String), - #[error("api key {0} does not exist in .env file")] + #[error("{style_bold}{color_red}api key does not exist in .env file: {style_reset}{color_reset}\n{0}")] ApiKeyNotFound(Model), - #[error("Error parsing {filename:?} as csv file: {source}")] + #[error("{style_bold}{color_red}Error parsing{filename:?} as csv file: {style_reset}{color_reset}\n{source}")] CsvFile { #[source] source: csv::Error, filename: Option, }, - #[error("Error parsing json: {0}")] + #[error("{style_bold}{color_red}Error parsing json: {style_reset}{color_reset}\n{0}")] SerdeJson(#[from] serde_json::Error), - #[error("Error parsing {filename:?} as json: {source}")] + #[error("{style_bold}{color_red}Error parsing {filename:?} as json: {style_reset}{color_reset}\n{source}")] SerdeJsonFile { #[source] source: serde_json::Error, filename: Option, }, - #[error("Error parsing json: \n\njson:\n{info}")] - SerdeJsonInfo { - #[source] - source: serde_json::Error, - info: String - }, - #[error("reqwest Error: {0}")] + #[error("{style_bold}{color_red}reqwest Error: {style_reset}{color_reset}\n{0}")] Reqwest(#[from] reqwest::Error), - #[error("io Error: {0}")] + #[error("{style_bold}{color_red}io Error: {style_reset}{color_reset}\n{0}")] Io(#[from] std::io::Error), } -#[derive(Debug, Deserialize)] +#[derive(Debug, Serialize, Deserialize)] struct CsvCompany { #[serde(rename = "Company Name")] name: String, #[serde(rename = "Website")] website: String, + #[serde(rename = "Company City")] + city: String, + #[serde(rename = "# Employees")] + employee_count: Option, } -#[allow(unused)] -#[derive(Debug, Deserialize)] -struct SerdeJsonTargetCompany { +#[derive(Debug, Serialize, Deserialize)] +struct FindPartnersTargetCompany { #[serde(rename = "target_company")] name: String, - connections: Vec, + connections: Vec, } -#[allow(unused)] -#[derive(Debug, Deserialize)] -struct SerdeJsonPartnerCompany { +#[derive(Debug, Serialize, Deserialize)] +struct FindPartnersPartnerCompany { category: String, context: String, partner_name: String, @@ -136,89 +164,65 @@ struct SerdeJsonPartnerCompany { source_type: String, } -#[allow(unused)] -#[derive(Debug, Deserialize)] -struct SerdeJsonContact { +#[derive(Debug, Serialize, Deserialize)] +struct EvalLeadsContact { value: String, + #[serde(rename = "type")] value_type: String, category: String, - label: String, source_url: String, } -#[allow(unused)] -#[derive(Debug, Deserialize)] -struct SerdeJsonEmployee { +#[derive(Debug, Serialize, Deserialize)] +struct EvalLeadsEmployee { name: String, role: String, email: String, phone: String, - linkedin_url: String, source_url: String, } -#[allow(unused)] -#[derive(Debug, Deserialize)] -struct SerdeJsonLead { +#[derive(Debug, Serialize, Deserialize)] +struct EvalLeadsLead { company_name: String, - website: String, - industry: String, description: String, employee_count: String, - general_contacts: Vec, - employees: Vec, + employees: Vec, + general_contacts: Vec, + industry: String, + lead_attractiveness_score: usize, + scoring_reasoning: String, + website: String, } -fn prettify(content: &str, model: Model) -> Result { - let ser_all: serde_json::Value = serde_json::from_str(content)?; - let cont = match model { - Model::Gemini => ser_all["candidates"][0]["content"]["parts"][0]["text"] - .as_str() - .unwrap() - .replace("\\\"", "\"") - .replace("\\n", "\n"), - Model::Perplexity => { - let raw_msg = ser_all["choices"][0]["message"]["content"] - .as_str() - .unwrap() - .replace("\\\"", "\"") - .replace("\\n", "\n"); - let pref_stripped_msg = raw_msg.strip_prefix("```json").unwrap_or(&raw_msg); - let bidir_stripped_msg = pref_stripped_msg - .strip_suffix("```") - .unwrap_or(&pref_stripped_msg); - bidir_stripped_msg.to_owned() - } - }; - - eprintln!("{cont}"); - let ser_cont: serde_json::Value = - serde_json::from_str(&cont).map_err(|source| Error::SerdeJson(source))?; - let cont_pretty = serde_json::to_string_pretty(&ser_cont)?; - Ok(cont_pretty) -} - -#[derive(ValueEnum, Clone, Copy, Default, Debug, Serialize)] +#[derive(ValueEnum, PartialEq, Clone, Copy, Default, Debug, Serialize)] enum Model { #[default] Gemini, + OpenAI, Perplexity, } impl Display for Model { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { match self { - Model::Gemini => { - write!(f, "Google Gemini: 2.5 Flash") - } - Model::Perplexity => { - write!(f, "Perplexity AI: Sonar") - } + Model::Gemini => write!(f, "Google Gemini: 2.5"), + Model::Perplexity => write!(f, "Perplexity AI: Sonar"), + Model::OpenAI => write!(f, "OpenAI: GPT-5"), } } } + +#[derive(ValueEnum, Clone, Copy, Default, Debug, Serialize)] +enum OutputFormat { + #[default] + Json, + Typst, +} + struct ApiKeys { gemini_api_key: String, + openai_api_key: String, perplexity_api_key: String, } @@ -228,6 +232,65 @@ struct Args { task: Task, } +fn extract_response(content: &str, model: Model) -> Result { + let ser_all: serde_json::Value = serde_json::from_str(content)?; + let cont = match model { + Model::Gemini => ser_all + .get("candidates") + .ok_or(Error::UnexpectedResponseStructure(content.to_owned()))? + .get(0) + .ok_or(Error::UnexpectedResponseStructure(content.to_owned()))? + .get("content") + .ok_or(Error::UnexpectedResponseStructure(content.to_owned()))? + .get("parts") + .ok_or(Error::UnexpectedResponseStructure(content.to_owned()))? + .get(0) + .ok_or(Error::UnexpectedResponseStructure(content.to_owned()))? + .get("text") + .ok_or(Error::UnexpectedResponseStructure(content.to_owned()))? + .as_str() + .unwrap() + .replace("\\\"", "\"") + .replace("\\n", "\n"), + Model::OpenAI => ser_all + .get("output") + .ok_or(Error::UnexpectedResponseStructure(content.to_owned()))? + .as_array() + .and_then(|arr| arr.last()) + .ok_or(Error::UnexpectedResponseStructure(content.to_owned()))? + .get("content") + .ok_or(Error::UnexpectedResponseStructure(content.to_owned()))? + .get(0) + .ok_or(Error::UnexpectedResponseStructure(content.to_owned()))? + .get("text") + .ok_or(Error::UnexpectedResponseStructure(content.to_owned()))? + .as_str() + .ok_or(Error::UnexpectedResponseStructure(content.to_owned()))? + .to_owned(), + Model::Perplexity => { + let raw_msg = ser_all["choices"][0]["message"]["content"] + .as_str() + .ok_or(Error::UnexpectedResponseStructure(content.to_owned()))? + .replace("\\\"", "\"") + .replace("\\n", "\n"); + let pref_stripped_msg = raw_msg.strip_prefix("```json").unwrap_or(&raw_msg); + let bidir_stripped_msg = pref_stripped_msg + .strip_suffix("```") + .unwrap_or(&pref_stripped_msg); + bidir_stripped_msg.trim().to_owned() + } + }; + Ok(cont) +} + +/// Validates that the response is any kind of json. Does not validate structure of json. +fn validate_json(cont: &str) -> Result { + let ser_cont: serde_json::Value = + serde_json::from_str(&cont).map_err(|source| Error::SerdeJson(source))?; + let cont_pretty = serde_json::to_string_pretty(&ser_cont)?; + Ok(cont_pretty) +} + fn parse_csv(file_path: &Path) -> Result, Error> { let mut reader = csv::ReaderBuilder::new() .has_headers(true) @@ -253,6 +316,7 @@ async fn prompt( api_keys: &ApiKeys, system_prompt: &str, context_prompt: &str, + schema: &Option, ) -> Result { match model { Model::Gemini => { @@ -264,6 +328,16 @@ async fn prompt( ) .await } + Model::OpenAI => { + openai_prompt( + reqclient, + &api_keys.openai_api_key, + system_prompt, + context_prompt, + schema, + ) + .await + } Model::Perplexity => { perplexity_prompt( reqclient, @@ -311,6 +385,75 @@ async fn perplexity_prompt( .await } +async fn openai_prompt( + reqclient: &reqwest::Client, + openai_api_key: &str, + system_prompt: &str, + context_prompt: &str, + schema: &Option, +) -> Result { + let schema_wrapped_fmt = if let Some(s) = schema { + Some(format!( + r#" + "text": {{ + "format": {{ + "name": "testname", + "type": "json_schema", + "schema": + {s_fmt} + }} + }} + "#, + s_fmt = s + )) + } else { + None + }; + + let body = format!( + r#" + {{ + "model": "gpt-5-mini", + "input": [ + {{ + "role": "system", + "content": "{system_prompt}" + }}, + {{ + "role": "user", + "content": "{context_prompt}" + }} + ], + "tools": [ + {{ "type": "web_search" }} + ]{opt_comma} + {schema_code} + }} + "#, + system_prompt = system_prompt.replace('"', "\\\"").replace('\n', "\\n"), + context_prompt = context_prompt.replace('"', "\\\"").replace('\n', "\\n"), + opt_comma = if schema_wrapped_fmt.is_some() { + "," + } else { + "" + }, + schema_code = if let Some(s) = schema_wrapped_fmt { + s + } else { + String::new() + }, + ); + + reqclient + .post("https://api.openai.com/v1/responses") + .header("Content-Type", "application/json") + .header("Authorization", format!("Bearer {openai_api_key}")) + .body(body) + .send() + .await +} + +/// Implements \\ async fn gemini_prompt( reqclient: &reqwest::Client, gemini_api_key: &str, @@ -361,6 +504,12 @@ async fn run(args: Args) -> Result<(), Error> { return Err(Error::ApiKeyNotFound(Model::Gemini)); } }; + let openai_key = match vars.remove("OPENAI_API_KEY") { + Some(key) => key, + None => { + return Err(Error::ApiKeyNotFound(Model::OpenAI)); + } + }; let perplexity_key = match vars.remove("PERPLEXITY_API_KEY") { Some(key) => key, None => { @@ -369,6 +518,7 @@ async fn run(args: Args) -> Result<(), Error> { }; let api_keys = ApiKeys { gemini_api_key: gemini_key, + openai_api_key: openai_key, perplexity_api_key: perplexity_key, }; @@ -378,16 +528,19 @@ async fn run(args: Args) -> Result<(), Error> { let csv = parse_csv(&pathbuf)?; for (idx, company) in csv.iter().enumerate() { println!( - "n = {: >5} | Company = {:?} ({:?})", - idx, company.name, company.website + "n = {:<4}\nCompany = {:<50?}\nWebsite: {:<30?}\nEmployee Count: {:<10?}\n", + idx + 1, + company.name, + company.website, + company.employee_count.as_deref().unwrap_or("unknown") ); } } Task::CountPartners { json_file } => { let pathbuf = PathBuf::from_str(&json_file).unwrap_or_else(|_| unreachable!()); let datafile = fs::read_to_string(json_file).unwrap(); - let companies: Vec = - serde_json::from_str(&datafile).map_err(|source| Error::SerdeJsonFile { + let companies: Vec = serde_json::from_str(&datafile) + .map_err(|source| Error::SerdeJsonFile { source, filename: Some(pathbuf), })?; @@ -413,18 +566,32 @@ async fn run(args: Args) -> Result<(), Error> { model, pretty, system_prompt_file, + json_schema_file, } => { - let system_prompt = - fs::read_to_string(system_prompt_file).unwrap_or_else(|_| unreachable!()); + let system_prompt = fs::read_to_string(system_prompt_file)?; + let json_schema = if let Some(json) = json_schema_file { + let x = fs::read_to_string(json)?; + Some(x) + } else { + None + }; let context_prompt = "Research Target Company T: Pandaloop\nWebsite: https://pandaloop.de\n".to_owned(); - let mut response = prompt(model, &client, &api_keys, &system_prompt, &context_prompt) - .await? - .text() - .await?; + let mut response = prompt( + model, + &client, + &api_keys, + &system_prompt, + &context_prompt, + &json_schema, + ) + .await? + .text() + .await?; if pretty { - response = prettify(&response, model)?; + response = extract_response(&response, model)?; + response = validate_json(&response)?; } println!("{response}"); } @@ -434,23 +601,36 @@ async fn run(args: Args) -> Result<(), Error> { model, system_prompt_file, pretty, + json_schema_file, } => { let pathbuf = PathBuf::from_str(&csv_file).unwrap_or_else(|_| unreachable!()); let csv = parse_csv(&pathbuf)?; let system_prompt = fs::read_to_string(system_prompt_file)?; + let json_schema = if let Some(json) = json_schema_file { + Some(fs::read_to_string(json)?) + } else { + None + }; - if let Some(company) = csv.get(idx) { + if let Some(company) = csv.get(idx-1) { let context_prompt = format!( "Research Target Company: {}\nWebsite: {}\n", company.name, company.website ); - let mut response = - prompt(model, &client, &api_keys, &system_prompt, &context_prompt) - .await? - .text() - .await?; + let mut response = prompt( + model, + &client, + &api_keys, + &system_prompt, + &context_prompt, + &json_schema, + ) + .await? + .text() + .await?; if pretty { - response = prettify(&response, model)?; + response = extract_response(&response, model)?; + response = validate_json(&response)?; } println!("{response}"); } else { @@ -464,37 +644,54 @@ async fn run(args: Args) -> Result<(), Error> { model, system_prompt_file, pretty, + json_schema_file, } => { let pathbuf = PathBuf::from_str(&csv_file).unwrap_or_else(|_| unreachable!()); let csv = parse_csv(&pathbuf)?; let system_prompt = fs::read_to_string(system_prompt_file)?; + let json_schema = if let Some(json) = json_schema_file { + Some(fs::read_to_string(json)?) + } else { + None + }; - if range_start >= range_end { + if range_start > range_end { return Err(Error::InvalidRange(format!( "range args {range_start}..{range_end} are invalid: range_start should be smaller than range_end" ))); } let mut context_prompt = String::new(); for i in range_start..=range_end { - if let Some(company) = csv.get(i) { + if let Some(company) = csv.get(i-1) { context_prompt = format!( - "{}\nResearch Target Company T: {}\nWebsite: {}\nTask: Find all companies that are partners or clients of T based on the research guidelines.", - context_prompt, company.name, company.website + "{}\nResearch Target Company T: {}\nWebsite: {}\nEmployee Count: {}\n\n", + context_prompt, + company.name, + company.website, + company.employee_count.as_deref().unwrap_or("unknown") ); } else { eprintln!("Index {:?} out of range, skipping.", i); } } - let mut response = prompt(model, &client, &api_keys, &system_prompt, &context_prompt) - .await? - .text() - .await?; + let mut response = prompt( + model, + &client, + &api_keys, + &system_prompt, + &context_prompt, + &json_schema, + ) + .await? + .text() + .await?; if pretty { - response = prettify(&response, model)?; + response = extract_response(&response, model)?; + response = validate_json(&response)?; } println!("{response}"); } - Task::Multiprompt { + Task::MultiPrompt { range_start, range_end, range_step, @@ -502,16 +699,27 @@ async fn run(args: Args) -> Result<(), Error> { model, system_prompt_file, pretty, + json_schema_file, } => { let pathbuf = PathBuf::from_str(&csv_file).unwrap_or_else(|_| unreachable!()); let csv = parse_csv(&pathbuf)?; let system_prompt = fs::read_to_string(system_prompt_file)?; - if range_start >= range_end {} + let json_schema = if let Some(json) = json_schema_file { + Some(fs::read_to_string(json)?) + } else { + None + }; + + if range_start > range_end { + return Err(Error::InvalidRange(format!( + "range args {range_start}..{range_end} are invalid: range_start should be smaller than range_end" + ))); + } let mut i = range_start; while i <= range_end { let mut context_prompt = String::new(); for j in i..i + range_step { - if let Some(company) = csv.get(j) { + if let Some(company) = csv.get(j-1) { context_prompt = format!( "{}\nResearch Target Company T: {}\nWebsite: {}\n\n\n", context_prompt, company.name, company.website @@ -521,30 +729,215 @@ async fn run(args: Args) -> Result<(), Error> { } } eprintln!( - "Dispatching prompt for range {}..={}", + "{style_bold}{color_bright_blue}Dispatching prompt for range {}..={}{style_reset}{color_reset}", i, i + range_step - 1 ); - let response_result = - prompt(model, &client, &api_keys, &system_prompt, &context_prompt).await; + let response_result = prompt( + model, + &client, + &api_keys, + &system_prompt, + &context_prompt, + &json_schema, + ) + .await; + match response_result { Ok(response) => { - if response.status() == reqwest::StatusCode::TOO_MANY_REQUESTS { - eprintln!("429 reached. Go to bed."); - return Ok(()); - } else { + let response_status = response.status(); + let response_text = response.text().await?; + match response_status { + reqwest::StatusCode::OK => { + if pretty { + match extract_response(&response_text, model) { + Ok(response_text_pretty) => { + println!("{response_text_pretty}"); + i += range_step; + } + Err(e) => { + return Err(e); + } + } + } else { + println!("{response_text}"); + i += range_step; + } + } + reqwest::StatusCode::TOO_MANY_REQUESTS => { + eprintln!("{style_bold}{color_bright_blue}429 reached. Go to bed.{color_reset}{style_reset}"); + return Err(Error::APIResponseError(response_text)) + } + reqwest::StatusCode::NOT_FOUND => { + return Err(Error::APIResponseError(response_text)) + } + _ => { + eprintln!("{style_bold}{color_bright_red}Response status != 200:{color_reset}{style_reset}\n{response_text}\n{style_bold}{color_bright_blue}Retrying in 5 seconds...{color_reset}{style_reset}"); + time::sleep(time::Duration::from_millis(5000)).await; + } } - let mut response_text = response.text().await?; - if pretty { - response_text = prettify(&response_text, model)?; + + } + Err(e) => { + return Err(Error::Reqwest(e)); + } + } + + if model == Model::OpenAI { + time::sleep(time::Duration::from_millis(60000)).await; + } + } + } + Task::ProcessLeadEvalJson { + json_file, + output_format, + min_attractiveness, + } => { + let raw_json = fs::read_to_string(json_file)?; + let heuristic = raw_json + .replace("]\n[\n", "") + .replace("}\n{", "},\n{") + .replace("}\n {", "},\n {"); + let parsed: Vec = serde_json::from_str(&heuristic)?; + match output_format { + OutputFormat::Json => { + let serialized = serde_json::to_string_pretty(&parsed)?; + println!("{serialized}"); + return Ok(()); + } + OutputFormat::Typst => { + let mut typcode = String::new(); + write!( + typcode, + r#"#set table(inset: 6pt) +#set text(font: "Geist") +#set page(margin: (left: 1cm, right: 1cm)) +#set heading(numbering: "1.") +#outline() +#pagebreak() + +"# + ) + .unwrap_or_else(|_| unreachable!()); + for lead in parsed { + if lead.lead_attractiveness_score < min_attractiveness { + continue; } - println!("{response_text}"); - i += range_step; - } - Err(error) => { - eprintln!("{}", error); - let _ = time::sleep(time::Duration::from_millis(5000)); + write!( + typcode, + r#"#table( + columns: (1fr, 0.5fr), + fill: luma(230), + table.cell(stroke: (right: none), [= {name}]), + table.cell(stroke: (left: none), align(right, [{domain}])), + [ + {desc} + + {industry} + ], + [Teamgröße: {empl}], + table.cell(colspan: 2, [ + *Allgemeine Kontakte*: +"#, + name = lead + .company_name + .replace("*", "\\*") + .replace("_", "\\_") + .replace(r"@", r"\@") + .replace(r"<", r"\<"), + domain = lead + .website + .replace("*", "\\*") + .replace("_", "\\_") + .replace(r"@", r"\@") + .replace(r"<", r"\<"), + desc = lead + .description + .replace("*", "\\*") + .replace("_", "\\_") + .replace(r"@", r"\@") + .replace(r"<", r"\<"), + industry = lead + .industry + .replace("*", "\\*") + .replace("_", "\\_") + .replace(r"@", r"\@") + .replace(r"<", r"\<"), + empl = lead + .employee_count + .replace("*", "\\*") + .replace("_", "\\_") + .replace(r"@", r"\@") + .replace(r"<", r"\<"), + ) + .unwrap_or_else(|_| unreachable!()); + + for contact in lead.general_contacts { + write!( + typcode, + r#" - {val} (Art / Abteilung: {type}) +"#, + val = contact.value.replace(r"*", r"\*").replace(r"@", r"\@").replace(r"_", r"\_"), + type = { + match contact.category.as_str() { + "SALES_DIRECT" => "Sales", + "GENERAL_INFO" => "Allgemein", + "SUPPORT" => "Support / Hotline", + "PRESS_MARKETING" => "Presse / Marketing", + "OTHER" => "Unbekannt", + _ => &contact.value_type + } + } + ) + .unwrap_or_else(|_| unreachable!()); + } + write!( + typcode, + r#"]), + table.cell(colspan: 2, [ + *Mitarbeiter*: + #table( + stroke: (paint: luma(100), thickness: 1pt, dash: "dashed"), + columns: (1fr, auto, auto), +"# + ) + .unwrap_or_else(|_| unreachable!()); + for empl in lead.employees { + write!( + typcode, + r#" "{name}, {role}", link("mailto:{mail}", "{mail}"), link("tel:{tel}", "{tel}"), +"#, + name = empl.name.replace("*", "\\*").replace("_", "\\_"), + role = empl.role.replace("*", "\\*").replace("_", "\\_"), + mail = { + let x = if empl.email.is_empty() || empl.email == "null" { + "-".to_owned() + } else { + empl.email.replace("*", "\\*").replace("_", "\\_") + }; + x + }, + tel = { + let x = if empl.phone.is_empty() || empl.phone == "null" { + "-".to_owned() + } else { + empl.phone.replace("*", "\\*").replace("_", "\\_") + }; + x + } + ) + .unwrap_or_else(|_| unreachable!()); + } + write!( + typcode, + r#" ) + ]), +) +"# + ) + .unwrap_or_else(|_| unreachable!()); } + println!("{typcode}"); } } } @@ -552,204 +945,6 @@ async fn run(args: Args) -> Result<(), Error> { Ok(()) - // match args { - // Args { - // list: true, - // test: _, - // index: _, - // range: _, - // multiprompt_range: _, - // output_file: _, - // model: _, - // pretty: _, - // count_partners: _, - // } => { - // for (idx, company) in csv.iter().enumerate() { - // println!("n = {: >5} | Company = {:?}", idx, company.name); - // } - // } - // Args { - // list: _, - // test: _, - // index: _, - // range: _, - // multiprompt_range: _, - // output_file: _, - // model: _, - // pretty: _, - // count_partners: true, - // } => { - // // TODO not hard-coded - // let mut partner_occurrences = HashMap::new(); - // let datafile = - // fs::read_to_string("/home/jan/pl/qwertus/leadfinder/out/perp_out.json").unwrap(); - // let json: serde_json::Value = serde_json::from_str(&datafile)?; - // let company_array = json.as_array().unwrap_or_else(|| panic!("U fucked up! json file to inspect should have array of companies as first level value.")); - // for target_company in company_array { - // let connections_array = target_company["connections"].as_array().unwrap_or_else(|| panic!("U fucked up! json file to inspect should have array of companies as first level value.")); - // for connection in connections_array { - // if connection["category"].as_str().unwrap_or_else(|| panic!("Ur AI probably fucked up: connection company with no partner_name in file!")) == "REFERENCE_CLIENT" { - // partner_occurrences - // .entry(connection["partner_name"].as_str().unwrap_or_else(|| panic!("Ur AI probably fucked up: connection company with no partner_name in file!"))) - // .and_modify(|count| *count += 1) - // .or_insert(1); - // } - // } - // } - // let mut count_vec: Vec<_> = partner_occurrences.iter().collect(); - // count_vec.sort_by(|a, b| b.1.cmp(a.1)); - // for (k, v) in count_vec { - // println!("Company {:>60} appears {:>3} times", k, v); - // } - // } - // Args { - // test: true, - // list: _, - // index: _, - // range: _, - // multiprompt_range: _, - // output_file: _, - // model, - // pretty, - // count_partners: _, - // } => { - // let context_prompt = "Research Target Company T: Pandaloop\n\ - // Website: https://pandaloop.de\n\ - // " - // .to_owned(); - - // let mut response = prompt(model, &client, &api_keys, &system_prompt, &context_prompt) - // .await? - // .text() - // .await?; - // if pretty { - // response = prettify(&response, model)?; - // } - // file.write_all(&response.as_bytes())?; - // } - // Args { - // index: Some(i), - // list: _, - // test: _, - // range: _, - // multiprompt_range: _, - // output_file: _, - // model, - // pretty, - // count_partners: _, - // } => { - // if let Some(company) = csv.get(i) { - // let context_prompt = format!( - // "Research Target Company T: {}\nWebsite: {}\nTask: Find all companies that are partners or clients of T based on the research guidelines.", - // company.name, company.website - // ); - // let mut response = - // prompt(model, &client, &api_keys, &system_prompt, &context_prompt) - // .await? - // .text() - // .await?; - // if pretty { - // response = prettify(&response, model)?; - // } - // file.write_all(&response.as_bytes())?; - // } else { - // println!("Index {:?} out of range, skipping.", i); - // } - // } - // Args { - // list: _, - // test: _, - // index: _, - // range: Some(range), - // multiprompt_range: _, - // output_file: _, - // model, - // pretty, - // count_partners: _, - // } => { - // if range[0] >= range[1] { - // println!("Range start larger than range end. Doing nothing."); - // return Ok(()); - // } - // let mut context_prompt = String::new(); - // for i in range[0]..=range[1] { - // if let Some(company) = csv.get(i) { - // context_prompt = format!( - // "{}\nResearch Target Company T: {}\nWebsite: {}\nTask: Find all companies that are partners or clients of T based on the research guidelines.", - // context_prompt, company.name, company.website - // ); - // } else { - // println!("Index {:?} out of range, skipping.", i); - // } - // } - // let mut response = prompt(model, &client, &api_keys, &system_prompt, &context_prompt) - // .await? - // .text() - // .await?; - // if pretty { - // response = prettify(&response, model)?; - // } - // file.write_all(&response.as_bytes())?; - // } - // Args { - // list: _, - // test: _, - // index: _, - // range: _, - // multiprompt_range: Some(multirange), - // output_file: _, - // model, - // pretty, - // count_partners: _, - // } => { - // if multirange[0] >= multirange[1] { - // println!("Range start larger than range end. Doing nothing."); - // return Ok(()); - // } - // let mut i = multirange[0]; - // while i <= multirange[1] { - // let mut context_prompt = String::new(); - // for j in i..i + multirange[2] { - // if let Some(company) = csv.get(j) { - // context_prompt = format!( - // "{}\nResearch Target Company T: {}\nWebsite: {}\nTask: Find all companies that are partners or clients of T based on the research guidelines.\n\n", - // context_prompt, company.name, company.website - // ); - // } else { - // println!("Index {:?} out of range, skipping.", j); - // } - // } - // println!( - // "Dispatching prompt for range {}..={}", - // i, - // i + multirange[2] - 1 - // ); - // let response_result = - // prompt(model, &client, &api_keys, &system_prompt, &context_prompt).await; - // match response_result { - // Ok(response) => { - // if response.status() == reqwest::StatusCode::TOO_MANY_REQUESTS { - // println!("429 reached. Go to bed."); - // return Ok(()); - // } else { - // } - // let mut response_text = response.text().await?; - // if pretty { - // response_text = prettify(&response_text, model)?; - // } - // file.write_all(&response_text.as_bytes())?; - // i += multirange[2]; - // } - // Err(error) => { - // println!("{}", error); - // let _ = time::sleep(time::Duration::from_millis(5000)); - // } - // } - // } - // } - // _ => unreachable!(), - // } - // - denkwerk Partner: *fraenk*, *OTTO*, *SWR*, *Union Investment*, *ARAG*, erenja, BurdaForward, Stiebel Eltron, edding, polymore, Telekom, Santander, DeepL, motel one, Struggly, Fondation Beyeler, Charite, mainova, Esprit, Sport Cast, Remondis, condor, , Aktion Mensch, easy credit, Sparkasse KölnBonn, multiloop, Storck, Teambank, Ranger, Microsoft } @@ -759,17 +954,6 @@ async fn main() -> ExitCode { match run(args).await { Ok(_) => ExitCode::SUCCESS, Err(e) => { - // match e { - // Error::CsvFile { source, filename } => match source.kind() { - // csv::ErrorKind::Io(e) => { - // if e.kind() == std::io::ErrorKind::NotFound { - // eprintln!("File {filename:?} does not exist."); - // } - // } - // _ => {}, - // }, - // _ => eprintln!("{e}"), - // } eprintln!("{e}"); ExitCode::FAILURE } diff --git a/lisa_physik_noten.py b/lisa_physik_noten.py index 7ed8a38..95f4e45 100644 --- a/lisa_physik_noten.py +++ b/lisa_physik_noten.py @@ -2,12 +2,27 @@ import numpy as np points = [ 27, 43, 18, 61, 38, 17, 50, 42, 24, 41, 33, 29, 44, 18, 40, 41, 16, 48, 38, 41, 82, 60, 34, 57, 65, 30, 27, 40, 57, 63, 36, 41, 33, 33, 17, 45, 67, 47, 29, 59, 43, 49, 50, 19, 67, 51, 46, 55, 53, 13, 26, 34, 35, 32, 57, 40, 30, 47, 16, 57, 44, 47, 45, 65, 25, 10, 60, 30, 65, 19, 63, 39, 85, 22, 40, 90, 19, 50, 51, 26, 18, 10, 22, 80, 54, 73, 42, 60, 31, 23, 40, 44, 97, 42, 62, 19, 15, 12, 60, 28, 29, 72, 61, 6, 18, 16, 24, 23, 43, 31, 40, 42, 26, 35, 49, 13, 25, 10, 40, 4, 32, 98, 23, 41, 38, 54, 62, 92, 42, 25, 59, 41, 8, 29, 23, 10, 87, 59, 71, 27, 49, 33, 2, 63, 30, 12, 47, 6, 38, 18, 43, 49, 22, 28, 14, 28, 8, 32, 9, 70, 30, 91, 73, 29, 40, 42, 72, 71, 25, 54, 21, 5, 34, 60, 30, 46, 39, 75, 71, 8, 17, 42, 35, 59, 69, 67, 30, 16, 23, 27, 61, 47, 56, 47, 29, 38, 44, 89, 42, 67, 31, 27, 55, 67, 36, 41, 30, 25, 31, 41, 55, 59, 43, 12, 42, 6, 52, 33, 44, 28, 24, 18, 89, 48, 40] -filtered = sorted(points) +points2 = [37, 42, 13, 34, 52, 35, 0, 0, 63, 20, 19, 41, 37, 18, 43, 32, 21, 32, 0, 17, 35, 0, 41, 0, 51, 0, 0, 47, 0, 0, 0, 0, 45, 0, 43, 11, 0, 0, 25, 0, 33, 4, 0, 46, 46, 35, 53, 17, 22, 0, 25, 0, 4, 43, 31, 0, 13, 0, 49, 25, 44, 58, 38, 61, 37, 0, 0, 80, 6, 51, 0, 60, 0, 16, 28, 57, 0, 0, 20, 69, 0, 0, 44, 0, 67, 0, 27, 38, 0, 34, 57, 61, 25, 48, 0, 38, 41, 13, 0, 56, 0, 58, 20, 1, 71, 47, 27, 46, 46, 0, 16, 27, 20, 20, 0, 16, 31, 23, 48, 0, 46, 1, 10, 44, 41, 51, 25, 0, 0, 57, 50, 0, 0, 0, 26, 37, 0, 1, 4, 59, 43, 16, 10, 24, 0, 0, 4, 38, 60, 29, 30, 25, 69, 52, 74, 45, 88, 31, 45, 31, 5, 48, 48, 47, 23, 26, 59, 50, 47, 83, 10, 64, 35, 55, 24, 60, 17, 31, 18, 83, 44, 55, 38, 25, 40, 52, 33, 18, 43, 69, 40, 57, 63, 3, 38, 12, 50, 27, 38, 55, 0, 7, 60, 46, 5, 65, 67, 0, 65, 27, 40, 62, 76, 65, 36, 55, 6, 3, 6, 13, 18] + +to_use = points2 +exclude_zeros = True -filtered = [p for p in points if p >= 40] + +sorted = sorted(to_use) +filtered = [] + +for s in sorted: + if exclude_zeros: + if s != 0: + filtered.append(s) + else: + filtered.append(s) + +succesful = [p for p in filtered if p >= 40] -print(sorted[round(len(points)/2)]) -print(sum(points) / len(points)) -print(len(filtered) / len(points)) +print(filtered[round(len(filtered)/2)]) +print(sum(filtered) / len(filtered)) +print(100*len(succesful) / len(filtered)) +print(sorted) diff --git a/notes.md b/notes.md index b5414f5..ab9ef22 100644 --- a/notes.md +++ b/notes.md @@ -1581,11 +1581,6 @@ Nicht zwingend heute - [ ] Change Handelsregister (Notar does this) -Hassan Schuldenliste: -02-23: 12.50 -03-04: 15.50 -03-05: 5.00 - # 2026-02-24 - [ ] Gehälter @@ -1996,6 +1991,13 @@ Posts (Einzelne bis Handvoll) # 2026-03-10 +- [ ] Island / Akquise + - [p] island Hero Frame Layouting Vorschläge + - [p] Copywriting Heroframe + - [ ] Agentic AI aufsetzen & ausprobieren + -> Liste Branchen -> Liste Unternehmen pro Branche -> Hilfreiche Infos & Telefonnummer / Unternehmen + - [ ] Unternehmen die oft / gerne mit kleinen Unternehmen zusammenarbeiten suchen + - [ ] Weitere Leads Thomas - [x] termshrek mp4 panic - [ ] Sarah schreiben - [ ] Wojtek Geschenk @@ -2018,11 +2020,9 @@ Posts (Einzelne bis Handvoll) - [ ] Vertragsentwurf erstellen - [ ] Rechnung Sholti - [ ] Übersicht aktiver Verträge? -- [ ] island Hero Frame Vorschläge - [ ] Mails schreiben für mündliche Prüfungen - [ ] Ust Eigenbelege - [ ] Büro nochmal anfragen? -- [ ] Weitere Leads Thomas - [ ] Physik - [ ] Führerschein informieren - [ ] Finanzierung durch GmbH @@ -2035,8 +2035,14 @@ Posts (Einzelne bis Handvoll) - [x] Hold GSV for Wojteks end at PL - [x] Hold notary appointment for both Anteilskauf and GF-Abberufung - [x] Change Handelsregister (Notar does this) - - [ ] Alle Verträge durchschauen nach Verpflichtungen unsererseits + - [q] Alle Verträge durchschauen nach Verpflichtungen unsererseits + - [x] GSV + - [x] (Unser Kaufvertrag) + - [q] Notar-Kaufvertrag + - [x] Aufhebung + - [x] Abfindung - [ ] Übrige Verträge unterschreiben + -> Sonntag - [x] GSV -> Beim Notar unterzeichnet - [x] Kaufvertrag @@ -2044,11 +2050,897 @@ Posts (Einzelne bis Handvoll) - [ ] Abfindungsvereinbarung - [ ] Aufhebungsvereinbarung - [ ] Wojtek austragen - - [ ] island - - [ ] Mail footer + - [x] island + - [x] Mail footer - [ ] Siehe issue + data_update_checklist.md in soul - [ ] Geld schicken - [ ] Mika & Corni -> Wojtek (bis 08.04.) - [ ] PL -> Wojtek (01.04.) - [ ] Noch explizite Dinge um Mika und Corni reinzuholen? - [ ] Schlüssel +Systemhaus Dialog Event: https://pretix.eu/eco/sd2030-hur/order/RNPED/gxk3bmczonixltea/ + +# 2026-03-11 + +- [ ] Eigene Programme auf github +- [ ] Wojtek & R1 + - [r] Notar-Kaufvertrag durchschauen nach Verpflichtungen unsererseits + - [x] Notar schreiben (Juuunge schick mal Verträge) + - [m] Übrige Verträge unterschreiben + - [m] Abfindungsvereinbarung + - [m] Aufhebungsvereinbarung + - [ ] Wojtek austragen + - [x] Transparenzregister + - [n] Elster + - [n] Gewerberegister + - [n] Bundesanzeiger? + - [n] Agentur für Arbeit? + - [n] VBG? + - [ ] Qonto? -> Identitätsnachweise + - [n] IHK + - [x] Siehe issue + - [ ] Geld schicken + - [ ] Mika & Corni -> Wojtek (bis 08.04.) + - [ ] PL -> Wojtek (ab 01.04.) + - [n] Noch explizite Dinge um Mika und Corni reinzuholen? + - [ ] Schlüssel +- [q] island Hero Frame Vorschläge +- [ ] Island / Akquise + - [p] island Hero Frame Layouting Vorschläge + - [p] Copywriting Heroframe + - [ ] Agentic AI aufsetzen & ausprobieren + - [ ] Unternehmen die oft / gerne mit kleinen Unternehmen zusammenarbeiten suchen + - [ ] Weitere Leads Thomas +- [x] Sarah schreiben Wojtek Update +- [ ] Wojtek Geschenk +- [ ] Anh-Tuan schreiben (Schlüssel + Geld) +- [x] Flaschenpost +- [ ] Uni + - [x] P5 rückmelden + - [ ] Mails schreiben für mündliche Prüfungen + - [ ] Noch was bei Uni? + - [ ] GT lernen +- [ ] GfM rückmelden +- [ ] Corni Abwesenheit Feuerwehr anmelden +- [ ] Linphone +- [x] Games Syndicate Situation? +- [ ] Steam WTF (warum existiert meine Notes Datei im Steam Ordner) +- [ ] Ella Media + - [ ] Vertragsentwurf erstellen +- [ ] Rechnung Sholti +- [d] Übersicht aktiver Verträge? +- [ ] Ust Eigenbelege +- [ ] Büro nochmal anfragen? +- [q] Physik +- [ ] Führerschein informieren + - [ ] Finanzierung durch GmbH + - [ ] Fink: 65€/h? + - [ ] Theorie üben +- [ ] Bob +- [ ] csv Editor + +# 2026-03-12 + +- [x] Siehe issue + data_update_checklist.md in soul +- [q] PL -> Wojtek (01.04.) +- [ ] Ella Media Vertragsentwurf fertigstellen +- [ ] Thomas Foto +- [x] Sarah schreiben +- [ ] Eigene Programme auf github +- [ ] Wojtek & R1 + - [ ] Notar-Kaufvertrag durchschauen nach Verpflichtungen unsererseits + - [ ] Wojtek austragen + - [p] Qonto? -> Identitätsnachweise + - [ ] Corni: Muss Termin beim Amt machen + - [ ] Geld schicken + - [ ] Mika & Corni -> Wojtek (bis 08.04.) + - [ ] PL -> Wojtek (ab 01.04.) + - [ ] Schlüssel +- [ ] Island / Akquise + - [ ] island Hero Frame Layouting Vorschläge + - [ ] Copywriting Heroframe + - [ ] Agentic AI aufsetzen & ausprobieren + - Langchain, rig + - denkwerk Partner: *OTTO*, *SWR*, erenja, BurdaForward, Stiebel Eltron, edding, polymore, *fraenk*, Telekom, Santander, DeepL, motel one, Struggly, Fondation Beyeler, Charite, *Union Investment*, mainova, Esprit, Sport Cast, Remondis, condor, *ARAG*, Aktion Mensch, easy credit, Sparkasse KölnBonn, multiloop, Storck, Teambank, Ranger, Microsoft + - [ ] Unternehmen die oft / gerne mit kleinen Unternehmen zusammenarbeiten suchen + - [ ] Weitere Leads Thomas + - [n] AfD Typ auf LinkedIn verfolgen? + - [x] Bundestag Penetration Rate ausrechnen? -> 71 / 630 +- [ ] Wojtek Geschenk +- [ ] Anh-Tuan schreiben (Schlüssel + Geld) +- [ ] Thomas + - [ ] Startplatz Mail + - [ ] GfM rückmelden +- [ ] Uni + - [ ] Mails schreiben für mündliche Prüfungen + - [ ] Noch was bei Uni? + - [ ] GT lernen +- [ ] Corni Abwesenheit Feuerwehr anmelden +- [ ] Linphone +- [ ] Steam WTF (warum existiert meine Notes Datei im Steam Ordner) +- [q] Ella Media + - [q] Vertragsentwurf erstellen +- [x] Rechnung Sholti +- [ ] Ust Eigenbelege +- [ ] Büro nochmal anfragen? +- [ ] Führerschein informieren + - [ ] Finanzierung durch GmbH + - [ ] Fink: 65€/h? + - [ ] Theorie üben +- [ ] Bob +- [ ] csv Editor + +# 2026-03-13 + +- [ ] LinkedIn + - [ ] Listen digitalisieren + - [ ] Post Entwürfe schreiben (für Fotographen und für interne Wellenlängenkohärenz) +- [ ] Visitenkarten +- [ ] Versicherungen (Hint von Thomas) +- [ ] autotodo Leerzeilen erlauben +- [ ] Cow Hours +- [ ] Ella Media Vertragsentwurf fertigstellen +- [ ] Thomas Foto +- [ ] Eigene Programme auf github +- [ ] Wojtek & R1 + - [ ] Notar-Kaufvertrag durchschauen nach Verpflichtungen unsererseits + - [x] Wojtek austragen + - [ ] Qonto? -> Identitätsnachweise + - [ ] Corni: Muss Termin beim Amt machen + - [ ] Mika: Warte auf AW + - [ ] Geld schicken + - [ ] Mika & Corni -> Wojtek (bis 08.04.) + - [ ] PL -> Wojtek (ab 01.04.) + - [ ] Schlüssel +- [q] Island / Akquise +- [ ] Island + - [ ] Telefonnummer oben + - [ ] Mehr durch die Website führen + - [ ] island Hero Frame Layouting Vorschläge + - [ ] Copywriting Heroframe +- [ ] Leadgen + - [p] Agentic AI aufsetzen & ausprobieren + - [ ] Unternehmen die oft / gerne mit kleinen Unternehmen zusammenarbeiten suchen + - [q] Weitere Leads Thomas +- [ ] Wojtek Geschenk +- [ ] Anh-Tuan schreiben (Schlüssel + Geld) +- [ ] Thomas + - [ ] Startplatz Mail + - [ ] GfM rückmelden +- [ ] Uni + - [ ] Mails schreiben für mündliche Prüfungen + - [ ] Noch was bei Uni? + - [ ] GT lernen +- [ ] Corni Abwesenheit Feuerwehr anmelden +- [ ] Linphone +- [ ] Steam WTF (warum existiert meine Notes Datei im Steam Ordner) +- [ ] Ust Eigenbelege +- [ ] Büro nochmal anfragen? +- [ ] Führerschein informieren + - [ ] Finanzierung durch GmbH + - [ ] Fink: 65€/h? + - [ ] Theorie üben +- [ ] Bob +- [ ] csv Editor + +# 2026-03-16 + +- [x] Meeting Zettner Meeting +- [ ] Meeting Zettner AW +- [x] Mail Stadt Hürth +- [x] Mail Notar +- [r] Robin +- [ ] Elmar zurückrufen +- [x] Cow Hours +- [ ] Ella Media Vertragsentwurf fertigstellen +- [q] Thomas Foto + -> Machen welche mit dem Fotografen, bis dahin seins von eye2eye + +- [ ] Leadgen + - [x] Agentic AI aufsetzen & ausprobieren + - [ ] Unternehmen die oft / gerne mit kleinen Unternehmen zusammenarbeiten suchen + - [x] JSON parsen und zählen + - [ ] Kontaktfinder für Liste von Unternehmen + +- [ ] Wojtek & R1 + - [x] Wojtek Verträge schicken + - [x] Wojtek Geld schicken + - [x] Notar-Kaufvertrag durchschauen nach Verpflichtungen unsererseits + - [ ] Qonto? -> Identitätsnachweise + - [i] Wojtek raus: Brauchen Handelsregisterauszug + - [ ] Corni: Muss Termin beim Amt machen + - [ ] Mika: Warte auf AW + - [ ] Markel Update? + - [ ] Geld schicken + - [ ] Mika & Corni -> Wojtek (bis 08.04.) + - [q] PL -> Wojtek (ab 01.04.) + - [ ] Schlüssel + - [ ] Wojtek Geschenk + +- [ ] Island + - [ ] Thomas in Team + - [ ] Telefonnummer oben + - [ ] Mehr durch die Website führen + - [ ] island Hero Frame Layouting Vorschläge + - [ ] Copywriting Heroframe + +- [ ] Anh-Tuan schreiben (Schlüssel + Geld) + +- [ ] Thomas + - [ ] Startplatz Mail + - [x] Fotografenmail (LinkedIn Posts, Ideen) + - [ ] LinkedIn + - [x] Listen digitalisieren + - [ ] Post Entwürfe schreiben (für Fotographen und für interne Wellenlängenkohärenz) + - [ ] Inhalte für Fotograph vorbereiten + - [ ] GfM rückmelden + - [ ] Ergebnis von LinkedIn-Post-Strukturrecherche erzählen + +Nicht heute: +- [ ] Steuerthemen + - [ ] Ust Eigenbelege + - [ ] Jahresabschluss + - [ ] Steuererklärungen Privat + - [x] Kuebra Mail + - [ ] Sarah Mail antworten (Unterlagen schicken) + - [ ] Sarah anrufen: Machen die die privaten Abrechnungen für Wojtek? +- [ ] Eigene Programme auf github +- [x] Morello updaten +- [x] autotodo Leerzeilen erlauben +- [ ] Visitenkarten +- [ ] Versicherungen (Hint von Thomas) +- [ ] Corni Abwesenheit Feuerwehr anmelden +- [ ] Uni + - [ ] Mails schreiben für mündliche Prüfungen + - [ ] Noch was bei Uni? + - [ ] GT lernen +- [ ] Linphone +- [ ] Steam WTF (warum existiert meine Notes Datei im Steam Ordner) +- [ ] Büro nochmal anfragen? +- [ ] Führerschein informieren + - [ ] Finanzierung durch GmbH + - [ ] Fink: 65€/h? + - [ ] Theorie üben +- [ ] Bob +- [ ] csv Editor +- [ ] Posteingang aufräumen + +- Wir können locker 120€/h nehmen +- wir helfen wo es brennt und keiner weiterkommt +- 18k für 6M Strategieschärfung +- holistisch Verwaltungsverträge +- Customer Journey +- ? Fördertöpfe +- Seine Kernthemen: Stabilität, Marke in Vordergrund, max. Umsätze +- Qualifizierungschancengesetz + +# 2026-03-17 + +- [ ] Corni helfen +- [p] Thunderbird Dictionaries +- [x] Meeting Zettner AW +- [r] Robin +- [ ] Elmar zurückrufen +- [ ] Ella Media Vertragsentwurf fertigstellen +- [ ] Leadgen + - [ ] Unternehmen die oft / gerne mit kleinen Unternehmen zusammenarbeiten suchen + - [ ] Kontaktfinder für Liste von Unternehmen +- [ ] Wojtek & R1 + - [ ] Qonto? -> Identitätsnachweise + - [ ] Corni: Muss Termin beim Amt machen + - [ ] Mika: Warte auf AW + - [ ] Markel Update? + - [ ] Geld schicken + - [ ] Mika & Corni -> Wojtek (bis 08.04.) + - [ ] Schlüssel + - [ ] Wojtek Geschenk +- [ ] Island + - [ ] Thomas in Team + - [ ] Telefonnummer oben + - [ ] Mehr durch die Website führen + - [ ] island Hero Frame Layouting Vorschläge + - [ ] Copywriting Heroframe +- [ ] Anh-Tuan schreiben (Schlüssel + Geld) +- [ ] Thomas + - [ ] GfM Angebot + - [x] Startplatz Mail + - [ ] LinkedIn + - [ ] Post Entwürfe schreiben (für Fotographen und für interne Wellenlängenkohärenz) + - [ ] Inhalte für Fotograph vorbereiten + - [x] GfM rückmelden + - [ ] Ergebnis von LinkedIn-Post-Strukturrecherche erzählen + +Nicht heute: +- [ ] Steuerthemen + - [ ] Ust Eigenbelege + - [ ] Jahresabschluss + - [ ] Steuererklärungen Privat + - [ ] Sarah Mail antworten (Unterlagen schicken) + - [ ] Sarah anrufen: Machen die die privaten Abrechnungen für Wojtek? +- [ ] Eigene Programme auf github +- [ ] Visitenkarten +- [ ] Versicherungen (Hint von Thomas) +- [ ] Corni Abwesenheit Feuerwehr anmelden +- [ ] Uni + - [ ] Mails schreiben für mündliche Prüfungen + - [ ] Noch was bei Uni? + - [ ] GT lernen +- [ ] Linphone +- [ ] Steam WTF (warum existiert meine Notes Datei im Steam Ordner) +- [ ] Büro nochmal anfragen? +- [ ] Führerschein informieren + - [ ] Finanzierung durch GmbH + - [ ] Fink: 65€/h? + - [ ] Theorie üben +- [ ] Bob +- [ ] csv Editor +- [ ] Posteingang aufräumen + +# 2026-03-18 + +- [x] Lisa helfen (H) +- [ ] Corni helfen +- [n] (Hassan helfen?) +- [ ] Thunderbird Dictionaries +- [ ] Robin (H) +- [ ] Elmar zurückrufen (H) +- [ ] Ella Media Vertragsentwurf fertigstellen +- [ ] Leadgen + - [x] Unternehmen die oft / gerne mit kleinen Unternehmen zusammenarbeiten suchen + - [x] Kontaktfinder für Liste von Unternehmen + - [x] OpenAI API nochmal versuchen + - [x] JSON Output merging + - [ ] JSON Output in Thomas-freundliches Format parsen + - [ ] Dokumentieren + - [x] Benutzen +- [ ] Wojtek & R1 + - [ ] Qonto? -> Identitätsnachweise + - [ ] Corni: Muss Termin beim Amt machen + - [ ] Mika: Warte auf AW + - [ ] Markel Update? + - [d] Geld schicken + - [d] Mika & Corni -> Wojtek (bis 08.04.) + - [ ] Schlüssel + - [ ] Wojtek Geschenk +- [ ] Island + - [ ] Thomas in Team + - [ ] Telefonnummer oben + - [ ] Mehr durch die Website führen + - [ ] island Hero Frame Layouting Vorschläge + - [ ] Copywriting Heroframe + - [ ] Portierung auf drake +- [ ] Anh-Tuan schreiben (Schlüssel + Geld) +- [ ] Thomas + - [ ] Visitenkarten + - [ ] GfM Angebot + - [ ] LinkedIn + - [ ] Post Entwürfe schreiben (für Fotographen und für interne Wellenlängenkohärenz) + - [ ] Inhalte für Fotograph vorbereiten + - [ ] Ergebnis von LinkedIn-Post-Strukturrecherche erzählen +- [ ] Steuerthemen + - [ ] Ust Eigenbelege + - [ ] Jahresabschluss + - [ ] Steuererklärungen Privat + - [ ] Sarah Mail antworten (Unterlagen schicken) + - [ ] Sarah anrufen: Machen die die privaten Abrechnungen für Wojtek? (H) +- [ ] Eigene Programme auf github +- [ ] Versicherungen (Hint von Thomas) +- [ ] Corni Abwesenheit Feuerwehr anmelden +- [q] Uni (H) + - [ ] Mails schreiben für mündliche Prüfungen + - [ ] Noch was bei Uni? + - [ ] GT lernen +- [ ] Linphone +- [ ] Steam WTF (warum existiert meine Notes Datei im Steam Ordner) (H) +- [ ] Büro nochmal anfragen? +- [ ] Führerschein informieren + - [ ] Finanzierung durch GmbH + - [ ] Fink: 65€/h? + - [ ] Theorie üben +- [ ] Bob +- [ ] csv Editor +- [ ] Posteingang aufräumen + +# 2026-03-19 + +- [p] Corni helfen +- [x] Thunderbird Dictionaries +- [ ] Robin +- [ ] Elmar zurückrufen +- [ ] Ella Media Vertragsentwurf fertigstellen +- [x] Leadgen + - [x] JSON Output in Thomas-freundliches Format parsen + - [x] Dokumentieren +- [ ] Wojtek & R1 + - [ ] Qonto? -> Identitätsnachweise + - [ ] Corni: Muss Termin beim Amt machen + - [x] Mika: Warte auf AW + - [x] Markel Update? + - [ ] Schlüssel + - [ ] Wojtek Geschenk +- [ ] Island + - [ ] Thomas in Team + - [ ] Telefonnummer oben + - [ ] Mehr durch die Website führen + - [ ] island Hero Frame Layouting Vorschläge + - [ ] Copywriting Heroframe + - [ ] Portierung auf drake +- [ ] Anh-Tuan schreiben (Schlüssel + Geld) +- [ ] Thomas + - [ ] Visitenkarten + - [ ] GfM Angebot + - [ ] LinkedIn + - [ ] Post Entwürfe schreiben (für Fotographen und für interne Wellenlängenkohärenz) + - [ ] Inhalte für Fotograph vorbereiten + - [ ] Ergebnis von LinkedIn-Post-Strukturrecherche erzählen +- [ ] Steuerthemen + - [ ] Ust Eigenbelege + - [ ] Jahresabschluss + - [ ] Steuererklärungen Privat + - [ ] Sarah Mail antworten (Unterlagen schicken) + - [ ] Sarah anrufen: Machen die die privaten Abrechnungen für Wojtek? +- [ ] Eigene Programme auf github +- [ ] Versicherungen (Hint von Thomas) +- [ ] Corni Abwesenheit Feuerwehr anmelden +- [ ] Uni + - [ ] Mails schreiben für mündliche Prüfungen + - [ ] Noch was bei Uni? + - [ ] GT lernen +- [ ] Linphone +- [x] Steam WTF (warum existiert meine Notes Datei im Steam Ordner) +- [ ] Büro nochmal anfragen? +- [ ] Führerschein informieren + - [ ] Finanzierung durch GmbH + - [ ] Fink: 65€/h? + - [ ] Theorie üben +- [ ] Bob +- [ ] csv Editor +- [x] Posteingang aufräumen + +# 2026-03-23 + +Thomas remagen Vertrag schicken + +Ella Media Thomas? +Remagen Thomas? +Neue leads! +Fotograf ins Studio + +- Sarah + - Wojtek private Abrechnungen + - Stammeinlage immer einfach einzahlbar? + +- [ ] Apollo rausquetschen + +- [x] Bei Freelance Projekt zurückrufen + - Sehr interessiert + - Normalerweise 85€, aber bei solchen Projekten flexibler + - Brauchen die Lebensläufe oder reicht unsere Website? +- [ ] Projektlisten übersenden +- [ ] Unternehmensberatung rechtliche Bedenken / Haftungspflichten +- [x] Morello updaten +- [x] Cow Hours +- [q] Robin (H) +- [q] Elmar zurückrufen (H) +- [q] Sarah anrufen: Machen die die privaten Abrechnungen für Wojtek? (H) +- [ ] Uni +- [x] Steam WTF (warum existiert meine Notes Datei im Steam Ordner) (H) +- [x] Corni helfen +- [ ] Robin +- [x] Elmar zurückrufen +- [ ] Ella Media Vertragsentwurf fertigstellen +- [ ] Wojtek & R1 + - [ ] Qonto? -> Identitätsnachweise + - [ ] Corni: Muss Termin beim Amt machen + - [ ] Schlüssel + - [ ] Wojtek Geschenk +- [ ] Island + - [ ] Thomas in Team + - [ ] Telefonnummer oben + - [ ] Mehr durch die Website führen + - [ ] island Hero Frame Layouting Vorschläge + - [ ] Copywriting Heroframe + - [ ] Portierung auf drake +- [ ] Anh-Tuan schreiben (Schlüssel + Geld) +- [ ] Thomas + - [ ] Visitenkarten + - [x] GfM Angebot + - [ ] LinkedIn + - [ ] Post Entwürfe schreiben (für Fotographen und für interne Wellenlängenkohärenz) + - [ ] Inhalte für Fotograph vorbereiten + - [ ] Ergebnis von LinkedIn-Post-Strukturrecherche erzählen +- [ ] Steuerthemen + - [ ] Ust Eigenbelege + - [ ] Jahresabschluss + - [ ] Steuererklärungen Privat + - [ ] Sarah Mail antworten (Unterlagen schicken) + - [ ] Sarah anrufen: Machen die die privaten Abrechnungen für Wojtek? +- [ ] Eigene Programme auf github +- [ ] Versicherungen (Hint von Thomas) +- [ ] Corni Abwesenheit Feuerwehr anmelden +- [ ] Uni + - [ ] Mails schreiben für mündliche Prüfungen + - [ ] Noch was bei Uni? + - [ ] GT lernen +- [ ] Linphone +- [ ] Büro nochmal anfragen? +- [ ] Führerschein informieren + - [ ] Finanzierung durch GmbH + - [ ] Fink: 65€/h? + - [ ] Theorie üben +- [ ] Bob +- [ ] csv Editor + +# 2026-03-24 + +- [x] Gehälter +- [ ] TK SV-Beiträge Überweisung +- [ ] Apollo rausquetschen +- [x] Projektlisten übersenden +- [ ] Unternehmensberatung rechtliche Bedenken / Haftungspflichten +- [ ] Robin +- [ ] Ella Media Vertragsentwurf fertigstellen +- [ ] Wojtek & R1 + - [ ] Qonto? -> Identitätsnachweise + - [ ] Corni: Muss Termin beim Amt machen + - [ ] Schlüssel + - [ ] Wojtek Geschenk +- [ ] Island + - [ ] Thomas in Team + - [ ] Telefonnummer oben + - [ ] Mehr durch die Website führen + - [ ] island Hero Frame Layouting Vorschläge + - [ ] Copywriting Heroframe + - [ ] Portierung auf drake +- [x] Anh-Tuan schreiben (Schlüssel + Geld) +- [ ] Thomas + - [ ] Visitenkarten + - [ ] LinkedIn + - [ ] Post Entwürfe schreiben (für Fotographen und für interne Wellenlängenkohärenz) + - [ ] Inhalte für Fotograph vorbereiten + - [ ] Ergebnis von LinkedIn-Post-Strukturrecherche erzählen +- [ ] Steuerthemen + - [ ] Stammkapitaleinzahlungen + - [ ] Qonto-Kredite + -> Steuerrechtlich kein Problem + - [ ] Ust Eigenbelege + - [ ] Jahresabschluss + - [ ] Steuererklärungen Privat + -> Unterlagen rüberschicken + - [x] Sarah Mail antworten (Unterlagen schicken) + - [n] Sarah anrufen: Machen die die privaten Abrechnungen für Wojtek? + -> Ne, es ging einfach darum dass die Löhne für Wojtek über uns abgerechnet werden +- [ ] Insolvenz? +- [ ] Kredit? +- [m] Eigene Programme auf github +- [q] Versicherungen (Hint von Thomas) +- [ ] Corni Abwesenheit Feuerwehr anmelden +- [ ] Uni + - [ ] Mails schreiben für mündliche Prüfungen + - [ ] Noch was bei Uni? + - [ ] GT lernen +- [ ] Linphone +- [ ] Büro nochmal anfragen? +- [ ] Führerschein informieren + - [ ] Finanzierung durch GmbH + - [ ] Fink: 65€/h? + - [ ] Theorie üben +- [ ] Bob +- [n] csv Editor + +# 2026-03-25 + +Angriff: +- Auf Remagen hoffen +- Auf Ella Media hoffen +- Thomas bei Akquise zuarbeiten (Island & LinkedIn) +- GTH Vorunterschrift für Stundenerhöhung +- GTH Odoo klarmachen (1 Manntag) +- Selbst Akquise machen +- FMS +- Weitere Förderungen +- STG +- Kredit (Privat?) + +Verteidigung: +- Mika Werkstudent +- Neues, billiges Büro (500€ Hürth Headquarters) +- Liquidität: Eigene Stammkapitaleinzahlungen +- Mit Thomas sprechen +- Jobs suchen +- Klarmachen, was Insolvenz bedeutet + +- [ ] Forsberg Angebot Fahrt- und Hotelkosten +- [ ] Mika Werkvertrag +- [ ] FMS Mail +- [ ] Insolvenz? +- [ ] Kredit? +- [x] TK SV-Beiträge Überweisung +- [ ] Apollo rausquetschen +- [x] Robin +- [ ] STG Miroboard angucken +- [ ] Ella Media Vertragsentwurf fertigstellen +- [ ] Wojtek & R1 + - [ ] Qonto? -> Identitätsnachweise + - [ ] Corni: Muss Termin beim Amt machen + - [ ] Schlüssel + - [ ] Wojtek Geschenk +- [ ] Island + - [x] Thomas in Team + - [x] Telefonnummer oben + - [m] Mehr durch die Website führen + - [x] island Hero Frame Layouting Vorschläge + - [x] Copywriting Heroframe + - [ ] Portierung auf drake +- [ ] Thomas + - [p] Visitenkarten + - [ ] LinkedIn + - [ ] Post Entwürfe schreiben (für Fotographen und für interne Wellenlängenkohärenz) + - [ ] Inhalte für Fotograph vorbereiten + - [ ] Ergebnis von LinkedIn-Post-Strukturrecherche erzählen +- [ ] Steuerthemen + - [ ] Stammkapitaleinzahlungen + - [ ] Qonto-Kredite + - [ ] Ust Eigenbelege + - [ ] Jahresabschluss + - [ ] Steuererklärungen Privat +- [ ] Corni Abwesenheit Feuerwehr anmelden +- [ ] Uni + - [ ] Mails schreiben für mündliche Prüfungen + - [ ] Noch was bei Uni? + - [ ] GT lernen +- [ ] Linphone +- [ ] Büro nochmal anfragen? +- [ ] Führerschein informieren + - [ ] Finanzierung durch GmbH + - [ ] Fink: 65€/h? + - [ ] Theorie üben +- [ ] Bob +- [ ] Unternehmensberatung rechtliche Bedenken / Haftungspflichten + +# 2026-03-26 + +- [ ] Thomas Rechnung +- [ ] Insolvenz? +- [ ] Kredit? +- [ ] Apollo rausquetschen +- [ ] Robin +- [ ] Ella Media Vertragsentwurf fertigstellen +- [ ] Wojtek & R1 + - [ ] Qonto? -> Identitätsnachweise + - [ ] Corni: Muss Termin beim Amt machen + - [ ] Schlüssel + - [ ] Wojtek Geschenk +- [ ] Island + - [ ] Portierung auf drake +- [ ] Thomas + - [p] Visitenkarten + - [ ] LinkedIn + - [ ] Post Entwürfe schreiben (für Fotographen und für interne Wellenlängenkohärenz) + - [ ] Inhalte für Fotograph vorbereiten + - [ ] Ergebnis von LinkedIn-Post-Strukturrecherche erzählen +- [ ] Steuerthemen + - [ ] Stammkapitaleinzahlungen + - [ ] Qonto-Kredite + - [ ] Ust Eigenbelege + - [ ] Jahresabschluss + - [ ] Steuererklärungen Privat +- [ ] Corni Abwesenheit Feuerwehr anmelden +- [ ] Uni + - [ ] Mails schreiben für mündliche Prüfungen + - [ ] Noch was bei Uni? + - [ ] GT lernen +- [ ] Linphone +- [ ] Büro nochmal anfragen? +- [ ] Führerschein informieren + - [ ] Finanzierung durch GmbH + - [ ] Fink: 65€/h? + - [ ] Theorie üben +- [ ] Bob +- [ ] Unternehmensberatung rechtliche Bedenken / Haftungspflichten + +# 2026-03-27 + +- [ ] Lebensläufe / Projektlisten +- [ ] Bis 31.03. Künstlerabgabenformular machen +- [x] Cow Hours +- [ ] Forsberg Angebot Fahrt- und Hotelkosten +- [ ] Mika Werkvertrag +- [x] FMS Mail +- [ ] Qonto Ratenzahlung +- [ ] Qonto weitere Kreditpartner +- [ ] STG Miroboard angucken +- [ ] Thomas Rechnung +- [q] Insolvenz? +- [q] Kredit? +- [x] Apollo rausquetschen +- [x] Robin +- [ ] Ella Media Vertragsentwurf fertigstellen +- [ ] Wojtek & R1 + - [ ] Qonto? -> Identitätsnachweise + - [ ] Corni: Muss Termin beim Amt machen + - [ ] Schlüssel + - [ ] Wojtek Geschenk +- [ ] Island + - [ ] Portierung auf drake +- [ ] Thomas + - [p] Visitenkarten + - [ ] LinkedIn + - [ ] Post Entwürfe schreiben (für Fotographen und für interne Wellenlängenkohärenz) + - [ ] Inhalte für Fotograph vorbereiten + - [ ] Ergebnis von LinkedIn-Post-Strukturrecherche erzählen +- [ ] Steuerthemen + - [ ] Stammkapitaleinzahlungen + - [ ] Qonto-Kredite + - [ ] Ust Eigenbelege + - [ ] Jahresabschluss + - [ ] Steuererklärungen Privat +- [ ] Corni Abwesenheit Feuerwehr anmelden +- [ ] Uni + - [ ] Mails schreiben für mündliche Prüfungen + - [ ] Noch was bei Uni? + - [ ] GT lernen +- [ ] Linphone +- [ ] Büro nochmal anfragen? +- [ ] Führerschein informieren + - [ ] Finanzierung durch GmbH + - [ ] Fink: 65€/h? + - [ ] Theorie üben +- [ ] Bob +- [ ] Unternehmensberatung rechtliche Bedenken / Haftungspflichten + +# 2026-03-30 + +- [ ] HTB Rechnungsrhythmus +- [ ] PL Jahresabschluss 2024 +- [ ] Qonto Support zu Datenupdates +- [x] Fotografentermin +- [ ] Morello updaten +- [x] Lebensläufe / Projektlisten +- [ ] Bis 31.03. Künstlerabgabenformular machen +- [ ] Forsberg Angebot Fahrt- und Hotelkosten +- [ ] Mika Werkstudentenvertrag +- [ ] Qonto Ratenzahlung +- [ ] Qonto weitere Kreditpartner +- [ ] STG Miroboard angucken +- [ ] Thomas Rechnung +- [ ] Ella Media Vertragsentwurf fertigstellen +- [ ] Wojtek & R1 + - [ ] Qonto? -> Identitätsnachweise + - [ ] Corni: Muss Termin beim Amt machen + - [ ] Schlüssel + - [ ] Wojtek Geschenk +- [ ] Island + - [ ] Portierung auf drake +- [ ] Thomas + - [p] Visitenkarten + - [ ] LinkedIn + - [ ] Post Entwürfe schreiben (für Fotographen und für interne Wellenlängenkohärenz) + - [n] Inhalte für Fotograph vorbereiten + - [x] Ergebnis von LinkedIn-Post-Strukturrecherche erzählen +- [ ] Steuerthemen + - [ ] Stammkapitaleinzahlungen + - [ ] Qonto-Kredite + - [ ] Ust Eigenbelege + - [ ] Jahresabschluss + - [ ] Steuererklärungen Privat +- [ ] Corni Abwesenheit Feuerwehr anmelden +- [ ] Uni + - [ ] Mails schreiben für mündliche Prüfungen + - [ ] Noch was bei Uni? + - [ ] GT lernen +- [x] Linphone +- [ ] Büro nochmal anfragen? +- [ ] Führerschein informieren + - [ ] Finanzierung durch GmbH + - [ ] Fink: 65€/h? + - [ ] Theorie üben +- [ ] Bob +- [ ] Unternehmensberatung rechtliche Bedenken / Haftungspflichten + +# 2026-03-31 + +- [ ] qwertus commit löschen (double pendulum vidoes sind problem) +- [ ] HTB Mikas Vertrag schicken +- [x] Büro nochmal anfragen + -> Untergegangen +- [x] forsberg per mail +- [ ] bafa typ +- [ ] Ottersbach & Partners vorbeigehen und Telefonanlage anschauen +- [ ] Remagen Vertrag prüfen +- [q] Mika Werkvertrag +- [ ] HTB Rechnungsrhythmus +- [x] PL Jahresabschluss 2024 an Wojtek +- [x] Qonto Support zu Datenupdates + -> Angeschrieben, warten auf AW +- [x] Morello updaten +- [p] Bis 31.03. Künstlerabgabenformular machen +- [x] Forsberg Angebot Fahrt- und Hotelkosten +- [x] Mika Werkstudentenvertrag +- [x] Qonto Ratenzahlung + -> Glaube das wird nix, Support schmettert mit generischen Antworten ab +- [x] pl-docs 0.1.2 +- [p] Qonto weitere Kreditpartner +- [p] STG Miroboard angucken +- [x] Thomas Rechnung +- [ ] Ella Media Vertragsentwurf fertigstellen +- [ ] Wojtek & R1 + - [ ] Qonto? -> Identitätsnachweise + - [ ] Corni: Muss Termin beim Amt machen + - [ ] Schlüssel + - [ ] Wojtek Geschenk +- [ ] Island + - [ ] Portierung auf drake +- [ ] Thomas + - [p] Visitenkarten + - [ ] LinkedIn + - [ ] Post Entwürfe schreiben (für Fotographen und für interne Wellenlängenkohärenz) +- [ ] Steuerthemen + - [ ] Stammkapitaleinzahlungen + - [ ] Qonto-Kredite + - [ ] Ust Eigenbelege + - [ ] Jahresabschluss + - [ ] Steuererklärungen Privat +- [ ] Corni Abwesenheit Feuerwehr anmelden +- [ ] Uni + - [ ] Mails schreiben für mündliche Prüfungen + - [ ] Noch was bei Uni? + - [ ] GT lernen +- [ ] Führerschein informieren + - [ ] Finanzierung durch GmbH + - [ ] Fink: 65€/h? + - [ ] Theorie üben +- [ ] Bob +- [ ] Unternehmensberatung rechtliche Bedenken / Haftungspflichten + +# 2026-04-01 + +- [ ] Remagen unterschreiben +- [ ] Remagen: Teamviewer Zugang für Testinstanzen +- [ ] +- [ ] Rechnung Gertrudenhof +- [x] Rechnung Remagen +- [ ] Rechnung Sholti +- [ ] Sachbezüge überweisen +- [ ] Semesterbescheinigung an Musikschule +- [q] PL Jahresabschluss 2024 +- [ ] Büro nochmal anfragen? +- [ ] qwertus commit löschen (double pendulum vidoes sind problem) +- [ ] HTB Mikas Vertrag schicken +- [ ] bafa typ +- [ ] Ottersbach & Partners vorbeigehen und Telefonanlage anschauen +- [ ] Remagen Vertrag prüfen +- [ ] HTB Rechnungsrhythmus +- [ ] Bis 31.03. Künstlerabgabenformular machen +- [p] Qonto weitere Kreditpartner +- [p] STG Miroboard angucken +- [ ] Ella Media Vertragsentwurf fertigstellen +- [ ] Wojtek & R1 + - [ ] Qonto? -> Identitätsnachweise + - [ ] Corni: Muss Termin beim Amt machen + - [ ] Schlüssel + - [ ] Wojtek Geschenk +- [ ] Island + - [ ] Portierung auf drake +- [ ] Thomas + - [p] Visitenkarten + - [ ] LinkedIn + - [ ] Post Entwürfe schreiben (für Fotographen und für interne Wellenlängenkohärenz) +- [ ] Steuerthemen + - [ ] Stammkapitaleinzahlungen + - [ ] Qonto-Kredite + - [ ] Ust Eigenbelege + - [ ] Jahresabschluss + - [ ] Steuererklärungen Privat +- [ ] Corni Abwesenheit Feuerwehr anmelden +- [ ] Uni + - [ ] Mails schreiben für mündliche Prüfungen + - [ ] Noch was bei Uni? + - [ ] GT lernen +- [ ] Führerschein informieren + - [ ] Finanzierung durch GmbH + - [ ] Fink: 65€/h? + - [ ] Theorie üben +- [ ] Bob +- [ ] Unternehmensberatung rechtliche Bedenken / Haftungspflichten + diff --git a/physics.md b/physics.md index 3057b10..54e8ab5 100644 --- a/physics.md +++ b/physics.md @@ -57,3 +57,48 @@ Sheet 13: 00.0 / 20 - Further lectures, explicitly everything after lecture 09 - Wigner-Eckart Theorem (in lecture, sheet and indip research) - Clebsch Gordan coeff as seperate research? + +# Ex1-3 Übersichtsprüfung + +## VL-Inhalte Ex1 + +Grundlagen (Größen, Einheiten; Skalare, Vektoren, trigonometrische Funktionen, differenzieren, +partielle und totale Ableitungen, integrieren, komplexe Zahlen, Gradient, Divergenz, Rotation); +Mechanik des Massenpunktes (Kinematik, Dynamik, Relativbewegung; *beschleunigte Bezugssysteme*, +Impuls, Drehimpuls, Arbeit, Energie, Massenmittelpunkt); +Relativistische Kinematik (Lorentz-Transformationen, Längenkontraktion, Zeitdilatation). +Gravitation und *Keplerbewegung* +Mechanik des Starren Körpers (Kraft, Drehmoment, Statik, Dynamik, Starrer Rotator, freie Achsen, +Trägheitsmoment, *Kreisel*, Schwingungen, *Festkörperwellen*); +Mechanik deformierbarer Medien (Aggregatzustände, Verformungseigenschaften fester Körper, *ruhende +Medien*, statischer Auftrieb, Oberflächenspannung, *bewegte Medien*, Wellen und Akustik, *dynamischer +Auftrieb)*; +*Mechanik der Vielteilchensysteme* (Gaskinetik, Temperatur, Zustandsgrößen, Hauptsätze der +Wärmelehre, Wärmekraftmaschinen, Entropie und Wahrscheinlichkeit, Diffusion, +Transportphänomene) + +## VL-Inhalte Ex2 + +Elektromagnetismus, Vergleich mit Gravitation. Elektrostatik (Ladung, Coulomb-Gesetz, Feld, Dipol, +elektrische Struktur der Materie, Fluss, Gauß-Gesetz, *Poisson-Gleichung*, Ladungsverteilung, +Kapazität). Elektrische Leitung (Stromdichte, Ladungserhaltung, Ohmsches Gesetz, Rotation des +Vektorfeldes, Stokes-Satz, Stromkreise, *Kirchhoff-Gesetze*, Leitungsmechanismen). Magnetische +Wechselwirkung, (Magnetismus als relativistischer Effekt, Magnetfeld, stationäre Maxwell-Gleichungen, +Lorentz-Kraft, Hall-Effekt, Magnetdipol, Vektorpotential, Biot-Savart-Gesetz). Materie in stationären +Feldern (induzierte und permanente Dipole, Dielektrikum, Verschiebungsfeld, elektrische Polarisation, +magnetische Dipole, magnetisiertes Feld H, Magnetisierungsfeld, Verhalten an Grenzflächen). +Zeitabhängige Felder (Induktion, Maxwellscher Verschiebungsstrom, technischer Wechselstrom, +Schwingkreise, Hochfrequenz-Phänomene, Abstrahlung, freie EM-Wellen, Hertz-Dipol, Polarisation, +Reflexion). Vollständige Maxwell-Gleichungen, Symmetrie zwischen elektrischen und magnetischen +Feldern. + +## VL-Inhalte Ex3 + +Optik: Strahlenoptik und Matrizenoptik; Abbildungen und Abbildungsfehler; Mikroskop und Teleskop; +Wellenoptik; Wellentypen; Gaußstrahlen; Kirchhoffsche Theorie der Beugung; Fraunhofer-Beugung; +Fourier-Optik; Brechung und Dispersion; Polarisation und Doppelbrechung; Kohärenz und +Zweistrahl-Interferometer; Vielstrahl-Interferometer; Michelson-Interferometer; Holographie, Laser-Speckel; +Wellenmechanik: Wellen- und Teilchenphänomene mit Licht,Wellenpakete, Tunnel-Effekt; Eingesperrte +Teilchen, Kastenpotential, Harmonischer Oszillator, Paul-Falle; Meßgrößen in der Quantenphysik; +Photo-, Compton-Effekt, Franck-Hertz-Versuch; Rutherford-Experiment; elementares Wasserstoff-Atom; +Stern-Gerlach-Experimente; Manipulation einzelner Teilchen diff --git a/tabs.md b/tabs.md new file mode 100644 index 0000000..4e8a33c --- /dev/null +++ b/tabs.md @@ -0,0 +1,18 @@ +Hassan Schuldenliste: +02-23: 12.50 +03-04: 15.50 +03-05: 5.00 +Kino: 11.50 +03-10: 16 +03-16: 11.75 +03-17: 8 +03-18: 13.4 +03-24: 13.22 + +Auszahlung: +03-24 25€ +30-03 81.87€ -> 0 + +Cornelius +03-16: 8.5 +03-18: 6.7 diff --git a/thomas_notes.md b/thomas_notes.md new file mode 100644 index 0000000..cdfe7c3 --- /dev/null +++ b/thomas_notes.md @@ -0,0 +1,10 @@ +# Painpoint Mapping +- Tool-Chaos +- Manuelle Abläufe +- Wenig Anpassung +- Hohe Kosten +- DGSVO + + +# Per Hand gefundene Leads +- SemanticEdge: Suchen Voice UX Leute