growsocial.com
Open in
urlscan Pro
198.211.105.79
Public Scan
Submitted URL: https://growsocial.ch/
Effective URL: https://growsocial.com/
Submission: On November 11 via api from CH — Scanned from CH
Effective URL: https://growsocial.com/
Submission: On November 11 via api from CH — Scanned from CH
Form analysis
1 forms found in the DOM<form class="search-api" :class="{ 'active': searchActive }" x-data="{
search: '',
searchedString: '',
userCode: null,
error: null,
failed: false,
results: null,
spinner: false,
get searchActive() {
return this.search !== null && 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 + '&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://growsocial.com/wp-content/themes/gs-wordpress-theme-1.1.3/assets/images/white1px.jpg'
}
return imageUrl
},
}" @submit.prevent="fetchInfluencers()" @keyup.escape.window="search = null; results = null" @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="Free Instagram 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 account to get 10 free searches per day, click here: <a href="https://app.growsocial.com/register">app.growsocial.com/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 27 million influencers in our system.</span>
<span class="d-block"> Sign up for a free account to learn more, click here: <a href="https://app.growsocial.com/register">app.growsocial.com/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://growsocial.com/wp-content/themes/gs-wordpress-theme-1.1.3/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. * Cookie growsocial_session * Duration 1 year * Description No description * Cookie _GRECAPTCHA * Duration 5 months 27 days * Description This cookie is set by the Google recaptcha service to identify bots to protect the website against malicious spam attacks. * Cookie XSRF-TOKEN * Duration 1 year * Description This cookie is set by Wix and is used for security purposes. * Cookie cookieyes-consent * Duration 1 year * Description CookieYes sets this cookie to remember users' consent preferences so that their preferences are respected on their subsequent visits to this site. It does not collect or store any personal information of the site visitors. 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. * Cookie crisp-client%2Fsession%2Fa8767d94-e1ff-4992-afba-12574acc1ab0 * Duration 6 months * Description No description * Cookie loglevel * Duration never * Description No description available. * Cookie timezone * Duration session * Description No description available. * Cookie crisp-client/domain-detect/1677519871042 * Duration session * Description No description * Cookie __cf_bm * Duration 30 minutes * Description This cookie, set by Cloudflare, is used to support Cloudflare Bot Management. 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. * Cookie attribution_user_id * Duration 1 year * Description This cookie is set by Typeform for usage statistics and is used in context with the website's pop-up questionnaires and messengering. 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. * Cookie rl_user_id * Duration never * Description RudderStack set this cookie to store a unique user ID for the Marketing/Tracking purpose. * Cookie rl_anonymous_id * Duration never * Description RudderStack set this cookie to store statistical data of users' behaviour on the website, which can be used for internal analytics by the website operator. Others Other uncategorized cookies are those that are being analyzed and have not been classified into a category as yet. * Cookie AWSALBTGCORS * Duration 7 days * Description No description available. * Cookie tf_respondent_cc * Duration 6 months * Description No description * Cookie AWSALBTG * Duration 7 days * Description No description available. Save My Preferences Accept Powered by * Software * Scout - Discover matching Influencers Find, Connect and Partner with valuable Influencers * Services * Influencer Seeding / Gifting We help you find and partner with hundreds of relevant influencers. * More * Customer Support * Contact us * Work for us * Privacy Policy Searching our database for "" You have reached the max number of searches per day without an account. Sign up for a free account to get 10 free searches per day, click here: app.growsocial.com/register We could not find any results for "" You can find over 27 million influencers in our system. Sign up for a free account to learn more, click here: app.growsocial.com/register @ @ * Signup * Login * Language * English * Spain * Germany * France * Italy * Netherlands * Sweden WE HELP AGENCIES & POPULAR BRANDS SCALE THEIR MICRO INFLUENCER MARKETING Let's Talk! DONE FOR YOU We do large-scale Micro Influencer Launch and Always-on campaigns. Click for sound We help brands and agencies in a variety of industries: ENTERTAINMENT TV-shows & Movie premieres. DTC BRANDS Fashion, Beauty, Wellness, CPG, Baby, Pets, Home, Travel, Electronics etc CONSUMER APPS Shopping, Wellness, Health, Fitness, Travel, Taxi, Food etc GAMING Launches for Games on Mobile, Consoles, PC Don't stress over time-sensitive micro influencer campaigns anymore. Let our AI-powered influencer marketing team take your campaigns to the next level. GET HIGH QUALITY CONTENT Get authentic influencer’s generated content for paid ads, newsletter, social media etc BETTER PERFORMING PAID ADS Boost your Paid Social ads with engaging influencer content and lower your CPA by up to 30% INCREASE SALES Generate direct sales when hundreds of Influencers post GET LOYAL AMBASSADORS We recruit the best influencers to become your loyal brand ambassadors, promoting your products multiple times per year. INCREASE BRAND AWARENESS Get attention when hundreds of influencers review and talk about your products and brand. HIGHER PROFITABILITY With great content, increased awareness, sales and a stronger community comes higher profitability We do Paid campaigns and Micro Influencer seeding / gifting PAID CAMPAIGNS We agree on terms and content brief upfront. These campaigns are good for campaigns with strict deadlines for product launches. SEEDING / GIFTING CAMPAIGNS This strategy is best for generating authentic content and fostering long-term loyalty for e-commerce brands. Let's Talk! DO IT YOURSELF Use our Influencer Marketing Software to scale your Micro Influencer Marketing to new heights Try 7-day for free! Learn more! CASE STUDY: FOX TV-SERIES CAMPAIGN How we helped Fox do a campaign with 147 micro Influencers in 10 days between Christmas and New Year CASE STUDY: MAYBEAUTY How we helped MayBeauty sell for over $8m and generate 5000+ content pieces. WE OFFER TOOLS TO TAKE YOUR INFLUENCER MARKETING GAME TO THE NEXT LEVEL SERVICES * Micro-influencer scaling * Scout - Find relevant Influencers LEGAL * Terms & Conditions * Privacy Policy * Cookie Policy * Career Privacy Policy CONTACT * Customer Support * Contact us * Work for us