collabstr.ca Open in urlscan Pro
44.235.176.136  Public Scan

Submitted URL: http://collabstr.ca/
Effective URL: https://collabstr.ca/
Submission: On April 29 via api from US — Scanned from CA

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="Travel">Travel</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="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="Adventure &amp; Outdoors">Adventure &amp; Outdoors</div>
            <div class="filter-search-input-pop-option" data-id="Education">Education</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="Gaming">Gaming</div>
            <div class="filter-search-input-pop-option" data-id="Actor">Actor</div>
            <div class="filter-search-input-pop-option" data-id="Technology">Technology</div>
            <div class="filter-search-input-pop-option" data-id="LGBTQ2+">LGBTQ2+</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.48">
  <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, alreadyOpen) {
      if (content) $(".modal-content-holder").html(content);
      if (width) $('.modal-content-holder').css('width', width);
      $(".modal").css('display', 'flex');
      if (!alreadyOpen) 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 Creator



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
Travel
Health & Fitness
Food & Drink
Model
Comedy & Entertainment
Art & Photography
Music & Dance
Entrepreneur & Business
Family & Children
Animals & Pets
Athlete & Sports
Adventure & Outdoors
Education
Celebrity & Public Figure
Gaming
Actor
Technology
LGBTQ2+
Healthcare
Vegan
Cannabis
Skilled Trades
Automotive



FEATURED


HIRE TOP INFLUENCERS ACROSS ALL PLATFORMSSEE ALL

Eric Struk
Toronto, ON, CA
Instagram
$3000


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

Atsuna Matsui
Los Angeles, CA, US
Instagram
$589


LIFESTYLE CONTENT CREATOR

Meagan Kilgore
Fredericksburg, VA, US
Instagram
$1000


FOOD CONTENT CREATOR

Brianna Rubio
Los Angeles, CA, US
Instagram
$1000


LIFESTYLE FASHION TRAVEL INFLUENCER


INSTAGRAM


HIRE INSTAGRAM INFLUENCERSSEE ALL

Une Cecilie Oksvold
Trondheim, NO
Instagram
$1600


OUTDOORS, MENTAL HEALTH AND SUSTAINABLE LIVING

Marianthi Dassiou
Thessaloniki, GR
Instagram
$130


CONTENT CREATOR & LAW STUDENT

Ken X Tori
Houston, TX, US
Instagram
$250


LUXURY TRAVEL & LIFESTYLE

Gia Canning
Los Angeles, CA, US
Instagram
$800


COMEDY / BEAUTY LGBTQ+ CONTENT CREATOR

Alexseguralr
Almeria, AL, ES
Instagram
$200


PARKOUR AND SPORT CREATOR CONTENT


TIKTOK


HIRE TIKTOK INFLUENCERSSEE ALL

Sophia Isabella
Toronto, ON, CA
TikTok
$2930


FASHION | LIFESTYLE | WELLNESS | BEAUTY

Kien Quan
New York, NY, US
TikTok
$1200


PHOTOGRAPHY CONTENT CREATOR

Chhavi Verg
New York, NY, US
TikTok
$2000


LIFESTYLE CONTENT CREATOR

Deepa K
Albany, NY, US
TikTok
$400


FASHION CONTENT CREATOR

Tony
Los Angeles, CA, US
TikTok
$750


OLYMPIC MEDALIST BOXER


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 20,000+ BRANDS


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





YOUTUBE


HIRE YOUTUBE INFLUENCERSSEE ALL

Meg Garrod
Nottingham, NTT, GB
YouTube
$100


BODY POSITIVE AND SELF LOVE ACTIVIST AND ILLUSTRA…

Guillem Salvadó Gómez
Barcelona, ES
YouTube
$2100


VIDEO GAME DEVELOPMENT CONTENT CREATOR

Francesca Lucisano
Vibo Valentia, IT
YouTube
$200


FOOD CONTENT CREATOR

Fi Markey
London, LND, GB
YouTube
$50


FASHION, LIFESTYLE, FOOD AND TRAVEL CREATOR

Positivitrip
Catania, CT, IT
YouTube
$1000


TRAVEL COUPLE WITH A PASSION FOR FOOD


USER GENERATED CONTENT


PURCHASE HIGH-QUALITY UGCSEE ALL

Molly May Brown
Leeds, LDS, GB
User Generated Content
$120


FASHION AND BEAUTY CREATOR & LIFESTYLE!

Sarah Farnam
Detroit, MI, US
User Generated Content
$2000


COMEDY WRITER & ACTRESS

Blaine Scinta
Louisville, KY, US
User Generated Content
$1600


I AM A LIFESTYLE AND TRAVEL PHOTOGRAPHER & FILMMA…

Daragh Twomey
Cork, IE
User Generated Content
$450


SKETCH COMEDY CREATOR

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


PROFESSIONAL MODEL & CONTENT CREATOR


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 2023 Influencer
Marketing Report
Tools
Influencer Price Calculator Instagram Engagement Rate Calculator Influencer
Campaign Brief Template Influencer Contract Template
Discover
Find Influencers Hire Influencers Search Influencers Buy Content Buy Shoutouts
Influencer Marketplace Top Influencers
Support
Contact Us How It Works Frequently Asked Questions
© Collabstr Inc.
Privacy Terms Sitemap