Get data from any page you want to get data from.
Need to talk to someone? Contact us—we’d love to help.
Get data from any page you want to get data from.
Need to talk to someone? Contact us—we’d love to help.
We are still busy preparing this batch of data. Please come back in a few minutes.
Seems like this data source was never ran before...
Changes are only available only when you have ran at least a second time.
Nope... guess no Martians around... Maybe set the webhook URL before pressing this button again...
This recipe is useful for gathering Instagram profiles that are similar to the current profile you are targeting. It is often used by growth marketers to generate a list of influencers whom they would target for marketing purposes.
https://www.instagram.com/sierralmiller https://www.instagram.com/nicholeaadan https://www.instagram.com/biscuitsandgrading https://www.instagram.com/makdauwe https://www.instagram.com/sunsoakedmama https://www.instagram.com/ak_skygirl https://www.instagram.com/courtneyellesmith https://www.instagram.com/brennabenameur https://www.instagram.com/aleighjoymoore https://www.instagram.com/theweissfam https://www.instagram.com/justdreamsof https://www.instagram.com/oliviamaybell https://www.instagram.com/madelinedmngz https://www.instagram.com/blondeboymama https://www.instagram.com/thefatfunnyone https://www.instagram.com/the_bossmama https://www.instagram.com/mother_freckle https://www.instagram.com/prepofboston https://www.instagram.com/beautydisclosed https://www.instagram.com/tashamamasol https://www.instagram.com/becomingbrenda https://www.instagram.com/vintageandgrace https://www.instagram.com/jessicansantillo https://www.instagram.com/caroline.and.crew https://www.instagram.com/hannah.cranmer https://www.instagram.com/dani.b.fit https://www.instagram.com/fortheloveofmila https://www.instagram.com/mymommyspost https://www.instagram.com/jennifer_gaulden https://www.instagram.com/empowered_mama_ https://www.instagram.com/beauty_on_a_fit_mission https://www.instagram.com/mindfulmagnolias https://www.instagram.com/maddiiicat https://www.instagram.com/toricasanova https://www.instagram.com/himichellewhite https://www.instagram.com/blondebrittney https://www.instagram.com/ashleylorenaadkins https://www.instagram.com/anna.everywhere https://www.instagram.com/liveplanted https://www.instagram.com/deliciouslyfitnhealthy https://www.instagram.com/avasmommi https://www.instagram.com/morganboulevard https://www.instagram.com/akshafer https://www.instagram.com/meghan_lanahan https://www.instagram.com/thesoberyogi https://www.instagram.com/be.the.inspiration24 https://www.instagram.com/supermommyof123 https://www.instagram.com/emmacherry2_food https://www.instagram.com/amberdenae https://www.instagram.com/moxie
Sample code snippets to quickly import data set into your application
For more information on how to automatically trigger an import please reference our WebHook API guide
Integrating with Java
import java.io.BufferedReader; import java.io.InputStreamReader; import java.net.URL; import java.net.URLConnection; import java.util.Arrays; public class HelloWorld { public static void main(String[] args) { try { URL urlCSV = new URL( "https://cache.getdata.io/n97890_cef98ac2235ecf8c2eee9c816e7e3ab0eses/latest_all.csv" ); URLConnection urlConn = urlCSV.openConnection(); InputStreamReader inputCSV = new InputStreamReader( ((URLConnection) urlConn).getInputStream() ); BufferedReader br = new BufferedReader(inputCSV); String line; String[] fields; while ((line = br.readLine()) != null) { // Each row fields = line.split(","); System.out.println(Arrays.toString(fields)); } // clean up buffered reader br.close(); } catch (Exception e) { System.out.println(e.getMessage()); } } }
Integrating with NodeJs
const csv = require('csv-parser'); const https = require('https'); const fs = require('fs'); const file = fs.createWriteStream("temp_download.csv"); const request = https.get( "https://cache.getdata.io/n97890_cef98ac2235ecf8c2eee9c816e7e3ab0eses/latest_all.csv", function(response) { response.pipe(file); } ); file.on('finish', function() { file.close(); fs.createReadStream('temp_download.csv').pipe(csv()).on('data', (row) => { // Each row console.log(row); }).on('end', () => { console.log('CSV file successfully processed'); }); });
Integrating with PHP
$data = file_get_contents("https://cache.getdata.io/n97890_cef98ac2235ecf8c2eee9c816e7e3ab0eses/latest_all.csv"); $rows = explode("\n",$data); $s = array(); foreach($rows as $row) { # Each row var_dump( $row); }
Integrating with Python
import csv import urllib2 url = 'https://cache.getdata.io/n97890_cef98ac2235ecf8c2eee9c816e7e3ab0eses/latest_all.csv' response = urllib2.urlopen(url) cr = csv.reader(response) for row in cr: # Each row print row
Integrating with Ruby
require 'open-uri' require 'tempfile' require 'csv' temp_file = Tempfile.new( "getdata", :encoding => 'ascii-8bit') temp_file << open("https://cache.getdata.io/n97890_cef98ac2235ecf8c2eee9c816e7e3ab0eses/latest_all.csv").read temp_file.rewind CSV.foreach( open(uri), :headers => :first_row ).each do |row| # Each row puts row end
Step 1: Generate a list of TikTok influencer handle URL using Google sheet Step 2: Submit t...
created on 2024-03-22
This recipe is useful for gathering Instagram profiles that are similar to the current profile you...
created on 2022-07-09
created on 2022-05-19