• 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
--
--
CSV JSON HTML Changes
Column 1Column 2Column 3Column 4Column 5Column 6Column 7Column 8Column 9Column 10Column 11Column 12Column 13Column 14origin_patternorigin_urlcreatedAtupdatedAtpingedAt
欧乐B 好评率: 92.1% 查看品牌OralB/欧乐B主要研发牙刷与其他牙齿护理产品比如牙线类的产品,该品牌基本包括了所有口腔类的产品,其品牌所在公司对旗下牙刷产品相当自信。皓乐齿皓乐齿是来自日本的品牌,是世界上第一款专为追求健康生活的女性们所创的口腔护理品牌。皓乐齿的品牌精神希望让每位使用皓乐齿的女性不只是能够拥有外表上的美丽,也在丰富和...李施德林李施德林是一款拥有130多年历史的漱口水品牌,自1879年创立以来,李施德林一直坚持以“全口腔清洁”作为品牌的理念,致力于满足消费者清洁口腔的需求。其四种植物精油...佳洁士/CrestCrest佳洁士,牙膏牙刷知名品牌,美国宝洁公司旗下品牌,1955年诞生于美国,口腔护理行业的专家,全球领先的电动牙刷品牌,口腔保健产品领域最受消费者喜爱的品牌之...舒客/Saky舒客隶属于广州薇美姿个人护理用品有限公司,成立于2006年,漱口水知名品牌,牙膏知名品牌,国内领先的专业口腔护理品牌,高品质的口腔护理用品品牌,中国口腔清洁护理用...遇见香芬/COCOESSENCE遇见香芬(COCOESSENCE),源自于香港遇见香芬化妆品集团,是世界香芬洗护倡导品牌。突破洗护与香水的行业界限,遇见香芬(COCOESSENCE)创新的把高端...隆力奇隆力奇创立于1986年,主要经营化妆品、家用洗涤品、养生保健产品等等,该品牌坚持为人们创造更加优质的生活,让人们生活更加美好。https://www.phb123.com/pinpai/meizhuangdq/kouqianghuli/https://www.phb123.com/pinpai/meizhuangdq/kouqianghuli/2022-01-17 21:59:34 UTC2022-01-17 21:59:34 UTC2022-01-17 21:59:34 UTC
Data source unique ID
n101225_7b01959a3539ae6f85332376edc9d429eses
Privacy
Public
Last ran status
COMPLETED
Last ran
2022-01-17 21:59:34 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/n101225_7b01959a3539ae6f85332376edc9d429eses/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/n101225_7b01959a3539ae6f85332376edc9d429eses/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/n101225_7b01959a3539ae6f85332376edc9d429eses/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/n101225_7b01959a3539ae6f85332376edc9d429eses/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/n101225_7b01959a3539ae6f85332376edc9d429eses/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

merolagani.com

merolagani - Nepal Stock Exchange (NEPSE) Datewise Shareprices

created on 2025-05-25

Priyanshu Agrawal
1
100
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
More related data sources