collabflow.ai Open in urlscan Pro
146.190.58.239  Public Scan

Submitted URL: https://colabflows.com/
Effective URL: https://collabflow.ai/
Submission: On June 07 via api from US — Scanned from DE

Form analysis 1 forms found in the DOM

<form class="search-api" :class="{ 'active': searchActive, 'used': wasUsed }" x-data="{
		search: '',
		searchedString: '',
		userCode: null,
		error: null,
		failed: false,
		results: null,
		spinner: false,
		wasUsed: false,
		get searchActive() {
			return this.search !== null &amp;&amp; this.search.length > 0
		},
		// get the user hash from the rest api and then set it to the this.hash variable
		async getHash() {
			const response = await fetch('/wp-json/growsocial/v1/user-hash')
			.then(response => response.json())
			.then(data => {
				return JSON.parse(data)
			}).catch(error => {
				this.error = error
				console.log(error)
			})

			// set the hash to the this.userCode variable
			this.userCode = await response.hash
		},
		async fetchInfluencers() {
			this.spinner = true
			this.searchedString = null
			this.error = null
			this.failed = false
			this.results = null
			this.message = null

			const response = await fetch('https://search.growsocial.com/search?code=' + this.userCode + '&amp;search=' + this.search)
			.then(response => response.json())
			.then(data => {
				// check if success or error
				if ( data.status == 'error' ) {
					this.error = true
					this.message = data.message
					return
				}
				if ( data.status == 'failed' ) {
					this.failed = true
					this.message = data.message
					return
				}
				console.log(data.data)
				this.searchedString = this.search
				this.results = data.data
			}).catch(error => {
				this.error = error
				console.log(error)
			}).finally(() => {
				this.spinner = false
			})
		},
		esScoreClass( score ) {
			if ( ! score ) {
				return ''
			}
			// es_score is a number between 0 and 100, we want to return a class name
			// with number between 1 and 10 at end
			const number = Math.ceil(score / 10)

			return 'es-score-' + number
		},
		getFormatedEScore(score) {
			if ( ! score || score == 0 || score.isNaN ) {
				return '?'
			}
			return Math.round(score)

		},
		getFormatedFollowers( followers ) {
			if ( ! followers ) {
				return ''
			}

			if ( followers < 1000 ) {
				return '1K'
			}

			if ( followers < 1000000 ) {
				return Math.round(followers / 1000) + 'K';
			}

			return Math.round(followers / 1000000) + 'M';
		},
		getUrl( item ) {
			if ( ! item ) {
				return ''
			}
			return '/influencer/' + item.username + '/' + item.id
		},
		getAvatar( imageUrl ) {
			// return a default image if no image is found
			if ( ! imageUrl ) {
				return 'https://collabflow.ai/wp-content/themes/top-saas/assets/images/white1px.jpg'
			}
			return imageUrl
		},



	}" @submit.prevent="fetchInfluencers()" @keyup.escape.window="search = null; results = null" @focusin="wasUsed = true" @click.outside="search = null; results = null" x-init="getHash()">
  <span x-show="searchActive" class="search-api__overlay" @click="search = null; results = null" style="display: none;"></span>
  <div class="input-group">
    <input type="text" class="form-control" x-model="search" placeholder="Influencer Analysis">
    <div class="input-group-append">
      <span class="input-group-text" @click="fetchInfluencers()">
        <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
          <mask id="mask0_1_267" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="20" height="20">
            <path fill-rule="evenodd" clip-rule="evenodd" d="M20 0V19.7703H0.000209808V0L20 0Z" fill="white"></path>
          </mask>
          <g mask="url(#mask0_1_267)">
            <path fill-rule="evenodd" clip-rule="evenodd"
              d="M8.23656 14.8942C11.9076 14.8942 14.8939 11.9079 14.8939 8.23684C14.8939 4.56526 11.9076 1.57895 8.23656 1.57895C4.56551 1.57895 1.57919 4.56526 1.57919 8.23684C1.57919 11.9079 4.56551 14.8942 8.23656 14.8942ZM8.23656 0C12.7781 0 16.4729 3.69474 16.4729 8.23684C16.4729 10.1921 15.785 11.9889 14.6418 13.4032L19.7629 18.4168C19.9208 18.5711 20.0002 18.7758 20.0002 18.9811C20.0002 19.18 19.925 19.3795 19.7745 19.5332C19.6197 19.6911 19.4155 19.7705 19.2108 19.7705C19.0113 19.7705 18.8118 19.6953 18.6581 19.5447L13.5371 14.5316C12.1034 15.7405 10.2545 16.4732 8.23656 16.4732C3.69498 16.4732 0.000244141 12.7779 0.000244141 8.23684C0.000244141 3.69474 3.69498 0 8.23656 0Z"
              fill="#FFF"></path>
          </g>
        </svg>
      </span>
    </div>
  </div>
  <div x-show="results || spinner || error || failed" class="search-api-results" style="display: none;">
    <div x-show="spinner" class="search-api__message" style="display: none;"> Searching our database for "<span x-text="search"></span>" <span class="loader loader--xl"></span>
    </div>
    <div x-show="error || failed" class="search-api__message" style="display: none;">
      <span class="d-block mb-2">You have reached the max number of searches per day without an account.</span>
      <span class="d-block"> Sign up for a free trial to get full searches, click here: <a href="https://app.collabflow.ai/register">app.collabflow.ai/register</a> </span>
    </div>
    <div x-show="results" style="display: none;">
      <div x-show="results?.length == 0" class="search-api__message" style="display: none;">
        <span class="d-block mb-2">We could not find any results for "<span x-text="searchedString"></span>"</span>
        <span class="d-block mb-2">You can find over 45 million influencers in our system.</span>
        <span class="d-block"> Sign up for a free trial account to learn more, click here: <a href="https://app.collabflow.ai/register?product=scout">app.collabflow.ai/register</a> </span>
      </div>
      <div x-show="results?.length > 0" style="display: none;">
        <template x-for="(item, index) in results">
          <a :href="getUrl(item)" class="text-decoration-none">
						<div class="search-api-result" :data-index="index">
							<img :src="getAvatar(item?.avatar)" :alt="item?.full_name" width="35px" height="35px" class="rounded-circle">
							<div class="search-api-result__name">
								<span class="flex align-items-center" style="gap: 4px">
									<span x-show="item?.is_verified">
										<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
											<path d="M11.4086 0L12.8786 2.27571L15.5871 2.40857L15.7243 5.11714L18 6.58714L16.7657 9L18 11.4086L15.7243 12.8786L15.5914 15.5871L12.8829 15.7243L11.4129 18L9 16.7657L6.59143 18L5.12143 15.7243L2.41286 15.5914L2.27571 12.8829L0 11.4129L1.23429 9L0 6.59143L2.27571 5.12143L2.40857 2.41286L5.11714 2.27571L6.58714 0L9 1.23429L11.4086 0Z" fill="#42A5F5"></path>
											<path d="M7.88153 12.107L5.1001 9.32555L6.00867 8.41698L7.89867 10.3027L11.9958 6.32983L12.8915 7.25126L7.88153 12.107Z" fill="white"></path>
										</svg>
									</span>
									<span x-text="item?.full_name"></span>
								</span>
								<span>
										@<span x-text="item?.username?.substring(0, 18)"></span>
									</span>
							</div>
							<span x-text="getFormatedFollowers(item?.followers)"></span>
							<span x-text="item?.es_score" class="es-score-box d-flex justify-content-center align-items-center rounded" x-bind:class="esScoreClass(item.es_score)"></span>
						</div>
					</a>
        </template><a :href="getUrl(item)" class="text-decoration-none" href="/influencer/undefined/undefined">
						<div class="search-api-result" :data-index="index" data-index="0">
							<img :src="getAvatar(item?.avatar)" :alt="item?.full_name" width="35px" height="35px" class="rounded-circle" src="https://collabflow.ai/wp-content/themes/top-saas/assets/images/white1px.jpg" alt="">
							<div class="search-api-result__name">
								<span class="flex align-items-center" style="gap: 4px">
									<span x-show="item?.is_verified" style="display: none;">
										<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
											<path d="M11.4086 0L12.8786 2.27571L15.5871 2.40857L15.7243 5.11714L18 6.58714L16.7657 9L18 11.4086L15.7243 12.8786L15.5914 15.5871L12.8829 15.7243L11.4129 18L9 16.7657L6.59143 18L5.12143 15.7243L2.41286 15.5914L2.27571 12.8829L0 11.4129L1.23429 9L0 6.59143L2.27571 5.12143L2.40857 2.41286L5.11714 2.27571L6.58714 0L9 1.23429L11.4086 0Z" fill="#42A5F5"></path>
											<path d="M7.88153 12.107L5.1001 9.32555L6.00867 8.41698L7.89867 10.3027L11.9958 6.32983L12.8915 7.25126L7.88153 12.107Z" fill="white"></path>
										</svg>
									</span>
									<span x-text="item?.full_name"></span>
								</span>
								<span>
										@<span x-text="item?.username?.substring(0, 18)"></span>
									</span>
							</div>
							<span x-text="getFormatedFollowers(item?.followers)"></span>
							<span x-text="item?.es_score" class="es-score-box d-flex justify-content-center align-items-center rounded" x-bind:class="esScoreClass(item.es_score)"></span>
						</div>
					</a>
      </div>
    </div>
  </div>
</form>

Text Content

By using this site you agree to our cookie policy

Accept
Customize Consent Preferences

We use cookies to help you navigate efficiently and perform certain functions.
You will find detailed information about all cookies under each consent category
below.

The cookies that are categorized as "Necessary" are stored on your browser as
they are essential for enabling the basic functionalities of the site. ... Show
more

NecessaryAlways Active

Necessary cookies are required to enable the basic features of this site, such
as providing secure log-in or adjusting your consent preferences. These cookies
do not store any personally identifiable data.

No cookies to display.

Functional

Functional cookies help perform certain functionalities like sharing the content
of the website on social media platforms, collecting feedback, and other
third-party features.

No cookies to display.

Analytics

Analytical cookies are used to understand how visitors interact with the
website. These cookies help provide information on metrics such as the number of
visitors, bounce rate, traffic source, etc.

No cookies to display.

Performance

Performance cookies are used to understand and analyze the key performance
indexes of the website which helps in delivering a better user experience for
the visitors.

No cookies to display.

Advertisement

Advertisement cookies are used to provide visitors with customized
advertisements based on the pages you visited previously and to analyze the
effectiveness of the ad campaigns.

No cookies to display.

Save My Preferences Accept
Powered by
 * Pricing
 * Products
     
   * Scout - Find Influencers
   * Influencer Detective
   * Collabs Center
   * Automatic Outreach
   * Smart Campaigns
   * Master Inbox
   * Free Influencer Analysis

Searching our database for ""
You have reached the max number of searches per day without an account. Sign up
for a free trial to get full searches, click here: app.collabflow.ai/register
We could not find any results for "" You can find over 45 million influencers in
our system. Sign up for a free trial account to learn more, click here:
app.collabflow.ai/register
@
@
 * Login
 * Signup
   
 * Language
     
   * Spanish


SKYROCKET YOUR INFLUENCER PROGRAM WITH SMART AUTOMATIONS

Get an army of Influential creators to consistently promote your brand - Find,
email & manage Influencers at scale.
Click for sound





2:40









Get Started Now!
See Prices
Book a Demo!
Some of our happy clients



COLLABFLOW IS AN ALL-IN-ONE INFLUENCER SOFTWARE

Handle your seeding, gifting and paid partnerships with ease by automating the
time-consuming tasks.




SCOUT

Quickly find hyper-specific, matching influencers and creators with our 46+
million search platform.




AUTOMATIC OUTREACH

Contact thousands of influencers every month with personalized mass-email drip
campaigns.




SMART CAMPAIGNS

Send campaign offers that influencers agree to, and automatically gift products
and send promo codes.




ALL-IN-ONE INBOX

Keep all email accounts in one unified inbox, just one click away from important
stats and automations.




CUSTOMER TESTIMONIALS

"Collabflow has been super valuable for my brands"
I've been able to generate tens of thousands of dollars with a high ROAS for my
brands using CollabFlow. The way you can effectively scale your campaigns is
truly amazing, and the price is super affordable for the value you get.
Emil Lazzaroni CEO
"The Swiss army know of Micro-Influencer marketing"
CollabFlow helps me discover influencers that would otherwise be impossible for
me to find, and my team saves hundreds of hours each month managing campaigns
from the CollabFlow dashboard
Tinger Hseih CEO
"A game changer"
We've recently started using CollabFlow, and I'm quite confident about its
potential to generate ROI for us, given the positive experiences shared by other
DTC brands
Andreas Cermak Co-founder


PRICES & PACKAGES

Monthly Yearly save 30%
Essential
$149

--------------------------------------------------------------------------------

Per month Start 10-day free trial!

1 USER ACCOUNT

SCOUT INFLUENCERS

 * 45+ million influencer database
 * 25 clever filters to find the best influencers
 * 500 searches
 * 2,500 influencer analyses


CAMPAIGNS

 * 2 Campaign offers
 * Standard Functionality
 * Automatic e-commerce store connections


COLLABS CENTER

 * Brand presentation page
 * Collab application inbox
 * Collab application form
 * 100 applicants per month
 * Use your custom domain
 * Removal of collabscenter branding


ACCELERATED ONBOARDING

Our team of experts will help you get started

Start 10-day free trial!
Standard
$249

--------------------------------------------------------------------------------

Per month Start 10-day free trial!

3 USER ACCOUNTS

SCOUT INFLUENCERS

 * 45+ million influencer database
 * 25 clever filters to find the best influencers
 * 1,000 searches
 * 5,000 influencer analyses


CAMPAIGNS

 * 5 Campaign offers
 * Standard Functionality
 * Automatic e-commerce store connections


COLLABS CENTER

 * Brand presentation page
 * Collab application inbox
 * Collab application form
 * Unlimited applicants
 * Use your custom domain
 * Remove CollabsCenter branding


ACCELERATED ONBOARDING

Our team of experts will help you get started


AUTOMATIC OUTREACH

 * 5 email accounts
 * 5 outreach sequences
 * 5,000 emails sent per month

Start 10-day free trial!
Premium
$399

--------------------------------------------------------------------------------

Per month Start 10-day free trial!

10 USER ACCOUNTS

SCOUT INFLUENCERS

 * 45+ million influencer database
 * 25 clever filters to find the best influencers
 * 5,000 searches
 * Unlimited influencer analyses


CAMPAIGNS

 * Unlimited Campaign offers
 * Advanced Functionality
 * Automatic e-commerce store connections (coming soon)


COLLABS CENTER

 * Brand presentation page
 * Collab application inbox
 * Collab application form
 * Unlimited applicants
 * Use your custom domain
 * Remove CollabsCenter branding


ACCELERATED ONBOARDING

Our team of experts will help you get started


AUTOMATIC OUTREACH

 * 10 email accounts
 * 10 outreach sequences
 * 10,000 emails sent per month


MASTER INBOX (COMING SOON)

 * Handle all your emails in 1 place
 * 10 email accounts with Master Inbox

Start 10-day free trial!
Essential
$105

--------------------------------------------------------------------------------

Per month - billed yearly Start 10-day free trial!

1 USER ACCOUNT

SCOUT INFLUENCERS

 * 45+ million influencer database
 * 25 clever filters to find the best influencers
 * 500 searches
 * 2,500 influencer analyses


CAMPAIGNS

 * 2 Campaign offers
 * Standard Functionality
 * Automatic e-commerce store connections


COLLABS CENTER

 * Brand presentation page
 * Collab application inbox
 * Collab application form
 * 100 applicants per month
 * Use your custom domain
 * Removal of collabscenter branding


ACCELERATED ONBOARDING

Our team of experts will help you get started

Start 10-day free trial!
Standard
$175

--------------------------------------------------------------------------------

Per month - billed yearly Start 10-day free trial!

3 USER ACCOUNTS

SCOUT INFLUENCERS

 * 45+ million influencer database
 * 25 clever filters to find the best influencers
 * 1,000 searches
 * 5,000 influencer analyses


CAMPAIGNS

 * 5 Campaign offers
 * Standard Functionality
 * Automatic e-commerce store connections


COLLABS CENTER

 * Brand presentation page
 * Collab application inbox
 * Collab application form
 * Unlimited applicants
 * Use your custom domain
 * Remove CollabsCenter branding


ACCELERATED ONBOARDING

Our team of experts will help you get started


AUTOMATIC OUTREACH

 * 5 email accounts
 * 5 outreach sequences
 * 5,000 emails sent per month

Start 10-day free trial!
Premium
$279

--------------------------------------------------------------------------------

Per month - billed yearly Start 10-day free trial!

10 USER ACCOUNTS

SCOUT INFLUENCERS

 * 45+ million influencer database
 * 25 clever filters to find the best influencers
 * 5,000 searches
 * Unlimited influencer analyses


CAMPAIGNS

 * Unlimited Campaign offers
 * Advanced Functionality
 * Automatic e-commerce store connections (coming soon)


COLLABS CENTER

 * Brand presentation page
 * Collab application inbox
 * Collab application form
 * Unlimited applicants
 * Use your custom domain
 * Remove CollabsCenter branding


ACCELERATED ONBOARDING

Our team of experts will help you get started


AUTOMATIC OUTREACH

 * 10 email accounts
 * 10 outreach sequences
 * 10,000 emails sent per month


MASTER INBOX (COMING SOON)

 * Handle all your emails in 1 place
 * 10 email accounts with Master Inbox

Start 10-day free trial!


CASE STUDIES

$10m in revenue using the CollabFlow software
MayBeauty used CollabFlow to gift thousands of influencers in exchange for
Instagram stories and generated over $10 million in revenue through influencer
marketing alone.

Karuna Skin partners with 40-50 new influencers each month with CollabFlow to
create Instagram Reels campaigns via a gifting + paid hybrid, resulting in an
average of 3k views per creator. This initiative includes detailed product
reviews and content rights for 30-90 days, significantly expanding the content
assets available for paid social ad testing and increasing overall ROI.



COMMON QUESTIONS

Are there any hidden fees?

Nope, you only pay the monthly subscription fee.

Can I cancel when I want to?

Yes, there are no commitments, you can cancel anytime.

How many Influencers can I partner with per month?

It depends, but we give you access to send 5000 emails on the standard plan
which is cheaper than any other software out there.

Are you an Influencer Marketplace?

No! We are not a Influencer Marketplace, Database or Network

Scout is a Search Engine, which mean you can find any Influencer on the planet
on CollabFlow, and together with all the tools it’s a complete All-on-one
Influencer software that can take your Influencer game to the next level.

Do I need to sign up on a yearly plan?

No, you can pay monthly and cancel whenever you want to.

How long is the learning curve?

CollabFlow is easy to understand and you will get the hang of it in just a few
days. If you have any questions you can always schedule a call with our team who
will assist you.

Can I get help if I am stuck?

Yes, our team will help onboard, and you can always schedule a call with your
experts.

PRODUCT

 * Scout - Find Influencers
 * Influencer Detective
 * Collabs Center
 * Automatic Outreach
 * Smart Campaigns
 * Master Inbox
 * Free Influencer Analysis

INTEGRATIONS

 * Shopify
 * WooCommerce
 * Magento
 * BigCommerce
 * SquareSpace
 * Wix
 * See all 40+

COMPANY

 * Customer Support
 * Contact Us
 * Book a Demo
 * Affiliate Partner
 * Career

LEGAL

 * Privacy Policy & GDPR
 * Terms & Conditions
 * Cookie Policy