collabstr.com Open in urlscan Pro
52.10.118.17  Public Scan

Submitted URL: http://collabstr.com/
Effective URL: https://collabstr.com/
Submission: On July 08 via manual from IN — Scanned from DE

Form analysis 1 forms found in the DOM

GET /influencers

<form class="search-form-holder" method="get" action="/influencers">
  <div class="search-holder">
    <div class="filter-section platform-filter-section">
      <div class="filter-title">Platform</div>
      <div class="js-filter-placeholder filter-placeholder">Choose a platform</div>
      <div class="filter-dropdown-holder platform-dropdown-holder">
        <div class="filter-dropdown-option" data-id="">Any</div>
        <div class="filter-dropdown-option" data-id="instagram">Instagram</div>
        <div class="filter-dropdown-option" data-id="tiktok">TikTok</div>
        <div class="filter-dropdown-option" data-id="user generated content">User Generated Content</div>
        <div class="filter-dropdown-option" data-id="youtube">YouTube</div>
      </div>
      <select class="mobile-select-dropdown">
        <option value="">All</option>
        <option value="instagram">Instagram</option>
        <option value="tiktok">TikTok</option>
        <option value="user generated content">User Generated Content</option>
        <option value="youtube">YouTube</option>
      </select>
      <input type="hidden" name="p" value="">
    </div>
    <div class="filter-seperator"></div>
    <div class="filter-section category-filter-section">
      <div class="clear-input-btn"><img class="clear-input-img" src="https://d5ik1gor6xydq.cloudfront.net/websiteImages/creatorMarketplace/closeModal.svg"></div>
      <div class="filter-title">Category</div>
      <div class="filter-placeholder"><input class="filter-search-input" name="c" type="text" placeholder="Enter keywords, niches or categories" value=""></div>
      <div class="filter-dropdown-holder category-dropdown-holder">
        <div class="filter-search-input-suggestion-area">
          <div class="filter-search-input-suggestion-title">Suggested</div>
          <div class="filter-search-input-suggestion-holder"></div>
        </div>
        <div>
          <div class="filter-search-input-pop-title">Popular</div>
          <div class="filter-search-input-pop-holder">
            <div class="filter-search-input-pop-option" data-id="Lifestyle">Lifestyle</div>
            <div class="filter-search-input-pop-option" data-id="Fashion">Fashion</div>
            <div class="filter-search-input-pop-option" data-id="Beauty">Beauty</div>
            <div class="filter-search-input-pop-option" data-id="Health &amp; Fitness">Health &amp; Fitness</div>
            <div class="filter-search-input-pop-option" data-id="Travel">Travel</div>
            <div class="filter-search-input-pop-option" data-id="Food &amp; Drink">Food &amp; Drink</div>
            <div class="filter-search-input-pop-option" data-id="Model">Model</div>
            <div class="filter-search-input-pop-option" data-id="Comedy &amp; Entertainment">Comedy &amp; Entertainment</div>
            <div class="filter-search-input-pop-option" data-id="Art &amp; Photography">Art &amp; Photography</div>
            <div class="filter-search-input-pop-option" data-id="Music &amp; Dance">Music &amp; Dance</div>
            <div class="filter-search-input-pop-option" data-id="Entrepreneur &amp; Business">Entrepreneur &amp; Business</div>
            <div class="filter-search-input-pop-option" data-id="Family &amp; Children">Family &amp; Children</div>
            <div class="filter-search-input-pop-option" data-id="Animals &amp; Pets">Animals &amp; Pets</div>
            <div class="filter-search-input-pop-option" data-id="Athlete &amp; Sports">Athlete &amp; Sports</div>
            <div class="filter-search-input-pop-option" data-id="Celebrity &amp; Public Figure">Celebrity &amp; Public Figure</div>
            <div class="filter-search-input-pop-option" data-id="Adventure &amp; Outdoors">Adventure &amp; Outdoors</div>
            <div class="filter-search-input-pop-option" data-id="Actor">Actor</div>
            <div class="filter-search-input-pop-option" data-id="Education">Education</div>
            <div class="filter-search-input-pop-option" data-id="Gaming">Gaming</div>
            <div class="filter-search-input-pop-option" data-id="LGBTQ2+">LGBTQ2+</div>
            <div class="filter-search-input-pop-option" data-id="Technology">Technology</div>
            <div class="filter-search-input-pop-option" data-id="Healthcare">Healthcare</div>
            <div class="filter-search-input-pop-option" data-id="Vegan">Vegan</div>
            <div class="filter-search-input-pop-option" data-id="Cannabis">Cannabis</div>
            <div class="filter-search-input-pop-option" data-id="Skilled Trades">Skilled Trades</div>
            <div class="filter-search-input-pop-option" data-id="Automotive">Automotive</div>
          </div>
        </div>
      </div>
    </div>
    <button type="button" class="search-btn">
      <img alt="Search" class="search-img" src="https://d5ik1gor6xydq.cloudfront.net/websiteImages/creatorMarketplace/search.svg">
    </button>
  </div>
  <link rel="stylesheet" type="text/css" href="/static/igmarketplace/components/modal.css?v=3.27">
  <div class="modal">
    <div class="modal-content-holder"></div>
  </div>
  <script>
    function hideModal() {
      $(".modal").hide();
      $('.modal-content-holder').css('width', '500px');
      allowScroll();
    }

    function showModal(content, width) {
      if (content) $(".modal-content-holder").html(content);
      if (width) $('.modal-content-holder').css('width', width);
      $(".modal").css('display', 'flex');
      preventScroll();
    }

    function preventScroll() {
      // When the modal is shown, we want a fixed body
      const scrollY = window.scrollY;
      document.body.style.position = 'fixed';
      document.body.style.top = `-${scrollY}px`;
      // fix scroll issue on mobile
      let scrollHolder = $('.modal-content-scroll');
      if (scrollHolder.length) scrollHolder[0].scrollTop = 1;
    }

    function allowScroll() {
      document.body.style.position = "initial";
      const scrollY = document.body.style.top;
      document.body.style.position = '';
      document.body.style.top = '';
      window.scrollTo(0, parseInt(scrollY || '0') * -1);
    }
    $(document).on('click', '.close-modal', function() {
      hideModal();
    });
    $(document).on('click', function(e) {
      // if outside modal clicked and 3ds not open
      if ($(e.target).is('.modal') && !$('.modal').find('iframe').length) {
        hideModal();
      }
    });
  </script>
</form>

Text Content

Explore How It Works Login Join as Brand Join as Influencer



FIND AND HIRE INFLUENCERS IN SECONDS


FIND INSTAGRAM, TIKTOK, AND YOUTUBE INFLUENCERS TO CREATE UNIQUE CONTENT FOR
YOUR BRAND

Platform
Choose a platform
Any
Instagram
TikTok
User Generated Content
YouTube
All Instagram TikTok User Generated Content YouTube

Category

Suggested

Popular
Lifestyle
Fashion
Beauty
Health & Fitness
Travel
Food & Drink
Model
Comedy & Entertainment
Art & Photography
Music & Dance
Entrepreneur & Business
Family & Children
Animals & Pets
Athlete & Sports
Celebrity & Public Figure
Adventure & Outdoors
Actor
Education
Gaming
LGBTQ2+
Technology
Healthcare
Vegan
Cannabis
Skilled Trades
Automotive



FEATURED


HIRE TOP INFLUENCERS ACROSS ALL PLATFORMSSEE ALL

Ken & Tori Tabata
Houston, TX, US
Instagram
$375


LUXURY TRAVEL & LIFESTYLE

Jelena Lieberberg
Berlin, BE, DE
Instagram
$300


YOGI, LIFESTYLE COACH, AUTHOR, MOMFLUENCER

Hamsterland
Gelsenkirchen, NW, DE
TikTok
$350


SATISFYING CUTE HAMSTER VIDEOS

Brayden Ledford
Tampa, FL, US
Instagram
$800


QUALITY-DRIVEN CONTENT CREATOR


INSTAGRAM


HIRE INSTAGRAM INFLUENCERSSEE ALL

Logan Medeiros
Montreal, QC, CA
Instagram
$400


FASHION, FITNESS & LIFESTYLE INFLUENCER

Jonpaul
Leeds, LDS, GB
Instagram
$250


PUBLISHED FITNESS MODEL & LIFESTYLE CONTENT CREAT…

Eric Struk
Toronto, ON, CA
Instagram
$3000


TIKTOK - 7.5 MILLION | INSTAGRAM - 300K | LIFESTY…

Amira
London, LND, GB
Instagram
$350


DANCER

Christian Suen
Bristol, BST, GB
Instagram
$150


STUDENT AT CAMBRIDGE, PUBLIC SPEAKER, LIFESTYLE I…


TIKTOK


HIRE TIKTOK INFLUENCERSSEE ALL

Eric Fernandes
Vancouver, BC, CA
TikTok
$300


HEALTH & WELLNESS CONTENT CREATOR

Dan & Ryan
Boise, ID, US
TikTok
$1000


BRO BUILDS - DIY PROJECTS & MAKING PEOPLE LAUGH

Olivia Shannon
Orlando, FL, US
TikTok
$200


CURLY AND COLORFUL COLLEGE CONTENT CREATOR

Kayleen Jazzel
Rancho Cucamonga, CA, US
TikTok
$180


BEAUTY ENTHUSIAST

Frederic Chen
New York, NY, US
TikTok
$4000


COMEDIC LIFESTYLE CONTENT CREATOR


CATEGORIES

Fashion
Music & Dance
Beauty
Travel
As seen in



HOW COLLABSTR WORKS


EVERYTHING YOU NEED TO RUN YOUR INFLUENCER CAMPAIGNS, AND MORE.

1


SEARCH INFLUENCERS

Search through thousands of vetted Instagram, TikTok, and YouTube influencers.
2


PURCHASE SECURELY

Safely purchase through Collabstr. We hold your payment until the work is
completed.
3


RECEIVE QUALITY CONTENT

Receive your high quality content from influencers directly through the
platform.
No Upfront Cost
Search influencers for free. No subscriptions, contracts or hidden fees.
Vetted Influencers
Every influencer is vetted by us. Always receive high-quality, professional
content.
Instant Chat
Instantly chat with influencers and stay in touch throughout the whole
transaction.
Secure Purchases
Your money is held safely until you approve the influencer’s work.


TRUSTED BY 10,000+ BRANDS


VIEW COLLABORATIONS FROM BRANDS LIKE WEALTHSIMPLE, CLICKUP, DEEZER, AND MORE.





YOUTUBE


HIRE YOUTUBE INFLUENCERSSEE ALL

Allison Bargas
Sacramento, CA, US
YouTube
$400


I AM A INFLUENCER, CONTENT CREATOR, WIFE AND MOM!

Jade Capasso
Los Angeles, CA, US
YouTube
$150


PARANORMAL INVESTIGATOR & EXPLORER

Awful Gas
Dublin, IE
YouTube
$100


HUMEROUS GAMING CONTENT

Maryam Ali
Burnley, LAN, GB
YouTube
$600


COMEDY, FASHION, SKINCARE CONTENT CREATOR

Oliver Browns
Ottawa, ON, CA
YouTube
$51


THOUGHT PROVOKING CONTENT CREATOR


USER GENERATED CONTENT


PURCHASE HIGH-QUALITY UGCSEE ALL

Tyler Krueger
Vancouver, BC, CA
User Generated Content
$400


PROFESSIONAL MODEL & CONTENT CREATOR

Alison Bowles
Miami, FL, US
User Generated Content
$2500


MODEL & TRAVEL BLOGGER

Kaylee
Sault-Sainte-Marie, ON, CA
User Generated Content
$1000


TRAVEL AND ADVENTURE CONTENT CREATOR COUPLE

Keana Skurla
San Jose, CA, US
User Generated Content
$150


LIFESTYLE CONTENT CREATOR

Jack Flood
Raleigh, NC, US
User Generated Content
$800


TEAM USA DECATHLETE/ FOOD/FITNESS INFLUENCER


FIND AND HIRE INFLUENCERS


SEARCH INSTAGRAM, TIKTOK, AND YOUTUBE INFLUENCERS

Search Influencers
Explore

Brand

Influencer

Login
Resources
Blog Creator Hub Affiliate Program TikTok Ebook For Brands 2022 Influencer
Marketing Report
Tools
Influencer Price Calculator Influencer Campaign Brief Template Influencer
Contract Template
Discover
Find Influencers Hire Influencers Search Influencers Buy Content Buy Shoutouts
Influencer Marketplace Top Influencers
Support
hello@collabstr.com How It Works FAQ
© Collabstr Inc.
Privacy Terms Sitemap