CAReERS

Work with a US Based Startup

Work with a US Based Startup

Work with a US Based Startup

Founders Arm connects you with the top 1% of virtual roles available

Position Vacant

Position Vacant

Position Vacant

Position Vacant

Steps

How to Get Hired

How to Get Hired

How to Get Hired

Fill out the Rapha form

Share your background and work preferences.

Interview

Meet with our team for a quick screening.

Placement call

Speak directly with the

startup team.

Speak directly with the startup team.

Kick-off

Get hired and start within days.

Careers at Founders Arm

Careers at

Founders Arm

Careers at Founders Arm

9 openings

Marketing

Marketing

Social Media Manager

Marketing

Remote

Social Media Manager

Remote

Marketing

Social Media Manager

Marketing

Remote

Virtual Assistant

Virtual Assistant

Social Media Manager

Marketing

Remote

Social Media Manager

Remote

Marketing

Social Media Manager

Marketing

Remote

Executive Assistant

Executive Assistant

Social Media Manager

Marketing

Remote

Social Media Manager

Remote

Marketing

Social Media Manager

Marketing

Remote

Graphic Design

Graphic Design

Social Media Manager

Marketing

Remote

Social Media Manager

Remote

Marketing

Social Media Manager

Marketing

Remote

Business (BDR. Ops. Account Management.)

Business (BDR. Ops. Account Management.)

Social Media Manager

Marketing

Remote

Social Media Manager

Remote

Marketing

Social Media Manager

Marketing

Remote

FREQUENTLY ASKED

Got questions?

We've got answers.

Got questions?

We've got answers.

What is Founders Arm?

What is Founders Arm?

What is Founders Arm?

What is Founders Arm?

What roles do you hire for?

What roles do you hire for?

What roles do you hire for?

What roles do you hire for?

What is the process of getting hired?

What is the process of getting hired?

What is the process of getting hired?

What is the process of getting hired?

Why should I apply?

Why should I apply?

Why should I apply?

Why should I apply?

What exactly is a CRM Virtual Assistant?

What exactly is a CRM Virtual Assistant?

What exactly is a CRM Virtual Assistant?

What exactly is a CRM Virtual Assistant?

HIRE WITH FOUNDERS ARM

You want to build a great career. We want to help.

You want to build a great career. We want to help.

  • Cal AI

  • Cal AI

  • Cal AI

We help startups hire cracked offshore talent.

© 2025 Founders Arm. All rights reserved.

We help startups hire cracked offshore talent.

© 2025 Founders Arm.
All rights reserved.

We help startups hire cracked offshore talent.

© 2025 Founders Arm. All rights reserved.

// Loops Cal.com Attribution Script // Links anonymous website visitors to Cal.com bookings (function () { 'use strict'; const COOKIE_NAME = '_loops'; // Legacy localStorage key (SDK v1) const LEGACY_ANONYMOUS_ID_KEY = 'loops_anonymous_id'; let calIntercepted = false; /** * Get a cookie value by name */ function getCookie(name) { try { const value = '; ' + document.cookie; const parts = value.split('; ' + name + '='); if (parts.length === 2) { return decodeURIComponent(parts.pop().split(';').shift()); } return null; } catch (e) { return null; } } /** * Get the Loops anonymous ID * Tries the new SDK (cookie) first, then falls back to legacy localStorage */ function getLoopsId() { // Try new SDK v2 (_loops cookie with JSON) try { const cookieValue = getCookie(COOKIE_NAME); if (cookieValue) { const state = JSON.parse(cookieValue); if (state && state.anonymousId) { return state.anonymousId; } } } catch (e) { // JSON parse failed, continue to fallback } // Fallback: Try Loops global object (if SDK is initialized) try { if (typeof window !== 'undefined' && window.Loops && typeof window.Loops.getAnonymousId === 'function') { return window.Loops.getAnonymousId(); } } catch (e) { // Loops not available } // Fallback: Legacy SDK v1 (localStorage) try { return localStorage.getItem(LEGACY_ANONYMOUS_ID_KEY); } catch (e) { return null; } } function addLoopsIdToCalLinks() { const loopsId = getLoopsId(); if (!loopsId) { // No anonymous ID available - SDK may not be installed or initialized return; } // Find all Cal.com links const calLinks = document.querySelectorAll('a[href*="cal.com"]'); let updatedCount = 0; calLinks.forEach(link => { try { const url = new URL(link.href); if (!url.searchParams.has('metadata[loops_id]')) { url.searchParams.set('metadata[loops_id]', loopsId); link.href = url.toString(); updatedCount++; console.log('[Loops] Updated Cal link:', link.href); } } catch (e) { console.warn('[Loops] Could not update link:', link.href); } }); // Also handle Cal.com embed if present (only intercept once) if (window.Cal && !calIntercepted) { calIntercepted = true; const originalCal = window.Cal; window.Cal = function (action, ...args) { if (action === 'ui' && args[0]) { args[0].metadata = args[0].metadata || {}; args[0].metadata.loops_id = loopsId; } return originalCal.apply(this, [action, ...args]); }; Object.assign(window.Cal, originalCal); console.log('[Loops] Cal.com embed intercepted'); } if (updatedCount > 0) { console.log('[Loops] Updated ' + updatedCount + ' Cal.com link(s) with anonymous ID: ' + loopsId); } } // Run on DOM ready if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', addLoopsIdToCalLinks); } else { addLoopsIdToCalLinks(); } // Watch for dynamically added Cal links (SPA navigation) const observer = new MutationObserver(function () { addLoopsIdToCalLinks(); }); if (document.body) { observer.observe(document.body, { childList: true, subtree: true }); } else { document.addEventListener('DOMContentLoaded', function () { observer.observe(document.body, { childList: true, subtree: true }); }); } })();