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...
manufacturer number | Price | product name | Column 1 | origin_pattern | origin_url | createdAt | updatedAt | pingedAt |
---|---|---|---|---|---|---|---|---|
09136 | PM Company Amerigo Copy-20 Wide Format CAD Bond Paper, 36" x 500', 2/Carton (0913... | https://www.staplesadvantage.com/product_648775 | https://www.staplesadvantage.com/product_648775 | 2021-06-19 16:10:12 | 2021-06-19 16:10:12 | 2021-06-19 16:10:12 | ||
14786AA | Staples Pastel Multipurpose Paper, 20 Lbs., 8.5" x 11", Blue, 5000/Carton (14786-... | https://www.staplesadvantage.com/product_2259456 | https://www.staplesadvantage.com/product_2259456 | 2021-06-19 16:10:12 | 2021-06-19 16:10:12 | 2021-06-19 16:10:12 | ||
18875/3295 | Staples Thermal Paper Rolls, 2 1/4" x 50', 50/Carton (18875/3295) | https://www.staplesadvantage.com/product_816613 | https://www.staplesadvantage.com/product_816613 | 2021-06-19 16:10:12 | 2021-06-19 16:10:12 | 2021-06-19 16:10:12 | ||
3R11052 | Xerox Vitality 8.5" x 11" Multipurpose Paper, 20 Lbs., 500/Ream (3R11052) | https://www.staplesadvantage.com/product_901632 | https://www.staplesadvantage.com/product_901632 | 2021-06-19 16:10:12 | 2021-06-19 16:10:12 | 2021-06-19 16:10:12 | ||
CF214A | HP 14A Black Standard Yield Toner Cartridge | https://www.staplesadvantage.com/product_990212 | https://www.staplesadvantage.com/product_990212 | 2021-06-19 16:10:12 | 2021-06-19 16:10:12 | 2021-06-19 16:10:12 | ||
TN820 | Brother TN-820 Black Standard Yield Toner Cartridge | https://www.staplesadvantage.com/product_1868097 | https://www.staplesadvantage.com/product_1868097 | 2021-06-19 16:10:12 | 2021-06-19 16:10:12 | 2021-06-19 16:10:12 | ||
TN850 | Brother TN-850 Black Toner Cartridge, High Yield | https://www.staplesadvantage.com/product_1868096 | https://www.staplesadvantage.com/product_1868096 | 2021-06-19 16:10:12 | 2021-06-19 16:10:12 | 2021-06-19 16:10:12 | ||
TN880 | Brother TN-880 Black Extra High Yield Toner Cartridge | https://www.staplesadvantage.com/product_1868071 | https://www.staplesadvantage.com/product_1868071 | 2021-06-19 16:10:12 | 2021-06-19 16:10:12 | 2021-06-19 16:10:12 |
https://www.staplesadvantage.com/product_1971408 https://www.staplesadvantage.com/product_449814 https://www.staplesadvantage.com/product_634645 https://www.staplesadvantage.com/product_1979189 https://www.staplesadvantage.com/product_236268 https://www.staplesadvantage.com/product_168492 https://www.staplesadvantage.com/product_690316 https://www.staplesadvantage.com/product_600516 https://www.staplesadvantage.com/product_231640 https://www.staplesadvantage.com/product_24441525 https://www.staplesadvantage.com/product_2720259 https://www.staplesadvantage.com/product_196113 https://www.staplesadvantage.com/product_870239 https://www.staplesadvantage.com/product_IM11DA559 https://www.staplesadvantage.com/product_2580017
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/n93359_4df21e7c87a551d671f553a350d3acd8eses/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/n93359_4df21e7c87a551d671f553a350d3acd8eses/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/n93359_4df21e7c87a551d671f553a350d3acd8eses/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/n93359_4df21e7c87a551d671f553a350d3acd8eses/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/n93359_4df21e7c87a551d671f553a350d3acd8eses/latest_all.csv").read temp_file.rewind CSV.foreach( open(uri), :headers => :first_row ).each do |row| # Each row puts row end
created on 2025-09-25