• Market Insights
  • Community Data Catalog
  • Integrations
  • API Documentation
    • Documentation Overview
    • Quick start for getting Data
    • Quick start for exporting Data
    • Semantic Query Language
    • Data Source Management API
    • WebHooks API
    • Sentiment Analysis
  • Sign In
  • Sign Up for Free

Sign In

Sign in with Google
Sign in with LinkedIn
Sign in with GitHub
Forgot your password?
Sign up For Free

3 simple steps to get you started

Step 1. Watching this 55 seconds tutorial

Step 2. Get

Your Chrome Extension

Start your 55 seconds tutorial.

Step 3. Get data in a few clicks

Get data from any page you want to get data from.

Need more help?

Need to talk to someone? Contact us—we’d love to help.

3 simple steps to get you started

Step 1. Watching this 55 seconds tutorial

Step 2. Get

Your Chrome Extension

Start your 55 seconds tutorial.

Step 3. Get data in a few clicks

Get data from any page you want to get data from.

Need more help?

Need to talk to someone? Contact us—we’d love to help.

Opps...

We are still busy preparing this batch of data. Please come back in a few minutes.

Hmmm...

Seems like this data source was never ran before...

No changes detected

Changes are only available only when you have ran at least a second time.

Earth calling Mars...?

Nope... guess no Martians around... Maybe set the webhook URL before pressing this button again...

Server response
    

phb123.com
牙膏品牌大全-牙膏什么牌子好-排行榜123网

By
Whitney Z
Use for Free
  • Data Set Preview
  • Settings
  • Recipe
  • Collaborators
  • Sample Code
Harvested on
1
1
56
CSV JSON HTML Changes
Column 1Column 2Column 3Column 4Column 5Column 6Column 7Column 8Column 9Column 10Column 11Column 12Column 13Column 14Column 15Column 16Column 17Column 18Column 19Column 20Column 21origin_patternorigin_urlcreatedAtupdatedAtpingedAt
supersmile成立于1987年的美国品牌,专注牙膏产品的研发和销售,该公司在美牙医学领域有很高的成就,被美国史密森学会国家博物馆和科展馆列为永久性展览项目。舒适达舒适达主主要研发生产抗敏感牙膏,致力于为各类牙齿敏感问题提供更多解决方法,最终达到更好的缓解作用,让用户牙齿更健康。狮王/LION狮王日用化工(青岛)有限公司,狮王,漱口水知名品牌,知名洗手液品牌,1891年创于日本,日本较大的日用消费品公司之一,专注于口腔护理用品领域、个人护理用品领域、家...皓乐齿皓乐齿是来自日本的品牌,是世界上第一款专为追求健康生活的女性们所创的口腔护理品牌。皓乐齿的品牌精神希望让每位使用皓乐齿的女性不只是能够拥有外表上的美丽,也在丰富和...冷酸灵冷酸灵主要对抗牙齿过敏问题,该品牌牙膏自从进入市场以来,一直以解决牙齿敏感、增强牙齿对冷热酸甜的耐受力等等方面的良好效果被人们熟知。佳洁士/CrestCrest佳洁士,牙膏牙刷知名品牌,美国宝洁公司旗下品牌,1955年诞生于美国,口腔护理行业的专家,全球领先的电动牙刷品牌,口腔保健产品领域最受消费者喜爱的品牌之...高露洁/Colgate高露洁成立于1806年,经过两百多年的风雨历程,它生产的个人护理用品已经销售到世界200多个国家和地区,在口腔护理、个人护理、家居护理和宠物食品等方面为大众提供高...云南白药云南白药诞生于1902年,旗下产品种类很多,包括各类药物牙膏-创可贴-医药知名品牌,云南白药牙膏因为含有一定重要成分,有时候可以有效的解决牙齿问题,深受消费者喜爱...中华上海联合利华牙膏有限公司,牙膏牙刷知名品牌,诞生于1954年,中国牙膏工业的创始品牌,国内获得FDI(国际牙膏联盟)认可的牙膏品牌,1994年被欧洲联合利华集团租...玛尔斯/MarvisMarvis是来自意大利,具有近百年历史的著名牙膏品牌。Marvis牙膏采用经典传统做法,工序复杂,一丝不苟,质感粘稠浓密,味道格外强烈,不只感觉舒爽,更具有保湿...https://www.phb123.com/pinpai/meizhuangdq/yagao/https://www.phb123.com/pinpai/meizhuangdq/yagao/2022-01-17 22:06:04 UTC2022-01-17 22:06:04 UTC2022-01-17 22:06:04 UTC
Data source unique ID
n101226_b27fb78fb71831703e3303a8cde0aeddeses
Privacy
Public
Last ran status
COMPLETED
Last ran
2022-01-17 22:06:04 UTC
Crawl Frequency
Not scheduled
Urls to Monitor
Use default URL in recipe

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/n101226_b27fb78fb71831703e3303a8cde0aeddeses/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/n101226_b27fb78fb71831703e3303a8cde0aeddeses/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/n101226_b27fb78fb71831703e3303a8cde0aeddeses/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/n101226_b27fb78fb71831703e3303a8cde0aeddeses/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/n101226_b27fb78fb71831703e3303a8cde0aeddeses/latest_all.csv").read
temp_file.rewind

CSV.foreach( open(uri), :headers => :first_row ).each do |row|      
  # Each row
  puts row
end

Whitney Z owner

Related Data Sources

cian.ru

Аренда однокомнатных апартаментов 40м² Березовая аллея, 19к3, Москва, СВАО, р-н Останкинский м. Ботанический сад - база ЦИАН, объявление 296903227

➜ Арендуйте однокомнатные апартаменты площадью 40м² Березовая аллея, 19к3, Москва, СВАО, р-н Остан...

created on 2025-05-24

Eduard Vidler
1
6
suveydamotor.com

YAMAHA > R25 (2019-2024)

created on 2025-05-23

esat çoban
1
189
suveydamotor.com

YAMAHA > R25 (2019-2024)

created on 2025-05-23

esat çoban
1
190
onlinesoru.com

KPSS Turkce Sozcuk Anlami ve Soz Yorumu Test1 Çöz

created on 2025-05-23

Semih
1
11
More related data sources