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...
Título | Imagen | Intro | Categoría | origin_pattern | origin_url | createdAt | updatedAt | pingedAt |
---|---|---|---|---|---|---|---|---|
20 marketing ideas to use as inspo for your next campaign | Need some ideas for your next marketing campaign? We’ve got you covered. | https://www.brafton.com/blog/content-marketing/ | https://www.brafton.com/brafton-blog/content-strategy/ | https://www.brafton.com/brafton-blog/content-strategy/ | 2020-02-06 10:29:05 | 2020-02-06 10:29:05 | 2020-02-06 10:29:05 | |
Google Autocomplete with Phil Newcomb [video] | Google autocomplete dished up some hot takes on the content marketing industry. F... | https://www.brafton.com/blog/content-marketing/ | https://www.brafton.com/brafton-blog/content-strategy/ | https://www.brafton.com/brafton-blog/content-strategy/ | 2020-02-06 10:29:05 | 2020-02-06 10:29:05 | 2020-02-06 10:29:05 | |
Google featured snippets 2020 update: What you need to know | Google will no longer allow articles to claim an organic page 1 position AND a fe... | https://www.brafton.com/blog/seo/ | https://www.brafton.com/brafton-blog/content-strategy/ | https://www.brafton.com/brafton-blog/content-strategy/ | 2020-02-06 10:29:05 | 2020-02-06 10:29:05 | 2020-02-06 10:29:05 | |
How to convert HTTP to HTTPS: A quick guide [Infographic] | HTTPS is the new security standard, and marketers who’ve yet to make the switch a... | https://www.brafton.com/blog/distribution/ | https://www.brafton.com/brafton-blog/content-strategy/ | https://www.brafton.com/brafton-blog/content-strategy/ | 2020-02-06 10:29:05 | 2020-02-06 10:29:05 | 2020-02-06 10:29:05 | |
How to get your blog noticed: 11 clever ways to promote your blog | Wondering how to get your blog noticed? Rev up your search, social, email and lin... | https://www.brafton.com/blog/content-marketing/ | https://www.brafton.com/brafton-blog/content-strategy/ | https://www.brafton.com/brafton-blog/content-strategy/ | 2020-02-06 10:29:05 | 2020-02-06 10:29:05 | 2020-02-06 10:29:05 | |
How to measure digital marketing effectiveness (infographic) | If just 39 percent of companies believe their marketing is effective, then why ar... | https://www.brafton.com/blog/analytics/ | https://www.brafton.com/brafton-blog/content-strategy/ | https://www.brafton.com/brafton-blog/content-strategy/ | 2020-02-06 10:29:05 | 2020-02-06 10:29:05 | 2020-02-06 10:29:05 | |
The 2020 State of Content Marketing Report | What does the world of content marketing look at the beginning of 2020? And how w... | https://www.brafton.com/blog/content-marketing/ | https://www.brafton.com/brafton-blog/content-strategy/ | https://www.brafton.com/brafton-blog/content-strategy/ | 2020-02-06 10:29:05 | 2020-02-06 10:29:05 | 2020-02-06 10:29:05 | |
The most affordable SEO services for small business | Many essential SEO practices can be completed in-house for an affordable cost. | https://www.brafton.com/blog/seo/ | https://www.brafton.com/brafton-blog/content-strategy/ | https://www.brafton.com/brafton-blog/content-strategy/ | 2020-02-06 10:29:05 | 2020-02-06 10:29:05 | 2020-02-06 10:29:05 | |
Why did my Domain Authority go down? And other top Domain Authority questions ans... | Domain Authority is not a Google ranking factor, so why do we care about it? Get ... | https://www.brafton.com/blog/seo/ | https://www.brafton.com/brafton-blog/content-strategy/ | https://www.brafton.com/brafton-blog/content-strategy/ | 2020-02-06 10:29:05 | 2020-02-06 10:29:05 | 2020-02-06 10:29:05 |
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/n72998_f929a1185b7462129f477eb88471aed3eses/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/n72998_f929a1185b7462129f477eb88471aed3eses/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/n72998_f929a1185b7462129f477eb88471aed3eses/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/n72998_f929a1185b7462129f477eb88471aed3eses/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/n72998_f929a1185b7462129f477eb88471aed3eses/latest_all.csv").read temp_file.rewind CSV.foreach( open(uri), :headers => :first_row ).each do |row| # Each row puts row end
created on 2024-11-21
created on 2024-11-21
created on 2024-11-20