• 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
    

bitcointalk.org
Latest posts of: satoshi

By
Thibault SCHREPEL
1
Use for Free
  • Data Set Preview
  • Settings
  • Recipe
  • Collaborators
  • Sample Code
Harvested on
20
--
--
CSV JSON HTML Changes
Column 1origin_patternorigin_urlcreatedAtupdatedAtpingedAt
3) Nothing, if sending by bitcoin address 5) It is decentralised.  After you have...https://bitcointalk.org/index.php?action=profile;u=3;sa=showPosts;start=420https://bitcointalk.org/index.php?action=profile;u=3;sa=showPosts;start=4202021-04-05 09:42:19 UTC2021-04-05 09:42:19 UTC2021-04-05 09:42:19 UTC
A little late, but in case anyone else has the same issue.  The compile dump had ...https://bitcointalk.org/index.php?action=profile;u=3;sa=showPosts;start=420https://bitcointalk.org/index.php?action=profile;u=3;sa=showPosts;start=4202021-04-05 09:42:19 UTC2021-04-05 09:42:19 UTC2021-04-05 09:42:19 UTC
Bitcoin has its own distributed address directory using the "addr" message.  It's...https://bitcointalk.org/index.php?action=profile;u=3;sa=showPosts;start=420https://bitcointalk.org/index.php?action=profile;u=3;sa=showPosts;start=4202021-04-05 09:42:19 UTC2021-04-05 09:42:19 UTC2021-04-05 09:42:19 UTC
Does anyone want to translate the Bitcoin client itself?  It would be great to ha...https://bitcointalk.org/index.php?action=profile;u=3;sa=showPosts;start=420https://bitcointalk.org/index.php?action=profile;u=3;sa=showPosts;start=4202021-04-05 09:42:19 UTC2021-04-05 09:42:19 UTC2021-04-05 09:42:19 UTC
Hurray!  We have our first language.  I uploaded it to SVN to go in with the 0.3 ...https://bitcointalk.org/index.php?action=profile;u=3;sa=showPosts;start=420https://bitcointalk.org/index.php?action=profile;u=3;sa=showPosts;start=4202021-04-05 09:42:19 UTC2021-04-05 09:42:19 UTC2021-04-05 09:42:19 UTC
getreceivedbyaddress and getallreceived->listreceivedbyaddress.  The old names are still there so as not to break existing code, but they're deprecated. The idea is that if you give the username whenever you call getnewaddress, you can get the user's total received across all their addresses using the "bylabel" functions.  You can freely change their address without worrying about tracking all their old addresses. A good way to automate changing the user's receiving address: just before displaying their current address, check if it has been used to receive anything, if it has then replace it with a new one: // Get a new address whenever the current one has received anything if (strAddr == "" || getreceivedbyaddress(strAddr) > 0)    strAddr = getnewaddress(strUsername); // Label the address with username Display(strAddr); // Display their current receiving address // Get total received by all the user's addresses getreceivedbylabel(strUsername, 0) // unconfirmed getreceivedbylabel(strUsername, 1) // available balance If you're just getting one particular user's balance, such as in response to a page request by that user, use getreceivedbylabel, but if you're scanning over all users, it's better to use listreceivedbylabel to get the complete list and scan against the result.  Scanning users with getreceivedbylabel would be n-squared, using listreceivedbylabel is n-log-n (or n linear). You should only really need to scan all users if you're polling in order to spontaneously take action in response to money received, rather than the user going to a webpage, seeing their balance and telling you what to do with it.  It's not necessary to poll very frequently.  If you require 1 confirmation, that'll take an average of 10 minutes anyway, so there's no point in polling more often than every few minutes. If you're selling digital goods and services, where you don't lose much if someone gets a free access, and it can't be resold for profit, I think you're fine to accept 0 confirmations. It's mostly only if you were selling gold or currency that you'd need multiple confirmations. ' rel='nofollow' target='_blank'>I added label related functions to help with managing multiple addresses per user...https://bitcointalk.org/index.php?action=profile;u=3;sa=showPosts;start=420https://bitcointalk.org/index.php?action=profile;u=3;sa=showPosts;start=4202021-04-05 09:42:19 UTC2021-04-05 09:42:19 UTC2021-04-05 09:42:19 UTC
I uploaded the 93% complete Dutch translation to SVN.  Thanks!https://bitcointalk.org/index.php?action=profile;u=3;sa=showPosts;start=420https://bitcointalk.org/index.php?action=profile;u=3;sa=showPosts;start=4202021-04-05 09:42:19 UTC2021-04-05 09:42:19 UTC2021-04-05 09:42:19 UTC
In the SVN version, if a transaction requires a transaction fee, it says "This tr...https://bitcointalk.org/index.php?action=profile;u=3;sa=showPosts;start=420https://bitcointalk.org/index.php?action=profile;u=3;sa=showPosts;start=4202021-04-05 09:42:19 UTC2021-04-05 09:42:19 UTC2021-04-05 09:42:19 UTC
It does in fact download 500 blocks at a time, then the counter counts one at a t...https://bitcointalk.org/index.php?action=profile;u=3;sa=showPosts;start=420https://bitcointalk.org/index.php?action=profile;u=3;sa=showPosts;start=4202021-04-05 09:42:19 UTC2021-04-05 09:42:19 UTC2021-04-05 09:42:19 UTC
It's not the download so much as verifying all the signatures in all the blocks a...https://bitcointalk.org/index.php?action=profile;u=3;sa=showPosts;start=420https://bitcointalk.org/index.php?action=profile;u=3;sa=showPosts;start=4202021-04-05 09:42:19 UTC2021-04-05 09:42:19 UTC2021-04-05 09:42:19 UTC
Quote from: DataWraith on May 19, 2010, 07:52:42 PM Can I just butt in with a que...https://bitcointalk.org/index.php?action=profile;u=3;sa=showPosts;start=420https://bitcointalk.org/index.php?action=profile;u=3;sa=showPosts;start=4202021-04-05 09:42:19 UTC2021-04-05 09:42:19 UTC2021-04-05 09:42:19 UTC
Quote from: Xunie on May 26, 2010, 12:50:04 AM Can't we force a user to use a new...https://bitcointalk.org/index.php?action=profile;u=3;sa=showPosts;start=420https://bitcointalk.org/index.php?action=profile;u=3;sa=showPosts;start=4202021-04-05 09:42:19 UTC2021-04-05 09:42:19 UTC2021-04-05 09:42:19 UTC
Quote from: molybdenum on May 22, 2010, 06:44:20 PM An optional parameter to spec...https://bitcointalk.org/index.php?action=profile;u=3;sa=showPosts;start=420https://bitcointalk.org/index.php?action=profile;u=3;sa=showPosts;start=4202021-04-05 09:42:19 UTC2021-04-05 09:42:19 UTC2021-04-05 09:42:19 UTC
Quote from: theymos on June 05, 2010, 04:26:09 PM Adding transactions to the bloc...https://bitcointalk.org/index.php?action=profile;u=3;sa=showPosts;start=420https://bitcointalk.org/index.php?action=profile;u=3;sa=showPosts;start=4202021-04-05 09:42:19 UTC2021-04-05 09:42:19 UTC2021-04-05 09:42:19 UTC
SHA-256 is very strong.  It's not like the incremental step from MD5 to SHA1.  It...https://bitcointalk.org/index.php?action=profile;u=3;sa=showPosts;start=420https://bitcointalk.org/index.php?action=profile;u=3;sa=showPosts;start=4202021-04-05 09:42:19 UTC2021-04-05 09:42:19 UTC2021-04-05 09:42:19 UTC
SirArthur has a good point about the normal online merchant case, which is what t...https://bitcointalk.org/index.php?action=profile;u=3;sa=showPosts;start=420https://bitcointalk.org/index.php?action=profile;u=3;sa=showPosts;start=4202021-04-05 09:42:19 UTC2021-04-05 09:42:19 UTC2021-04-05 09:42:19 UTC
Sorry, I didn't test compile on linux the last few revisions. Reverted makefile....https://bitcointalk.org/index.php?action=profile;u=3;sa=showPosts;start=420https://bitcointalk.org/index.php?action=profile;u=3;sa=showPosts;start=4202021-04-05 09:42:19 UTC2021-04-05 09:42:19 UTC2021-04-05 09:42:19 UTC
That's a good idea.  I'm not sure where exactly to fit that in, but it could cert...https://bitcointalk.org/index.php?action=profile;u=3;sa=showPosts;start=420https://bitcointalk.org/index.php?action=profile;u=3;sa=showPosts;start=4202021-04-05 09:42:19 UTC2021-04-05 09:42:19 UTC2021-04-05 09:42:19 UTC
1.2.3.4 or 1auaDZCFYqaGx4FKS5WenNfurk2SkoDu4hdomain.com I need suggestions for the separator character.  ":" is a candidate, but IPv6 has : in it and that might get confusing.  Something that's allowed in url parameters would be nice. I want to use SSL for the connection, using the bitcoin address' public key as the cert.  You would be certain you're connected to who you thought, and safely encrypted.  The bitcoin address would not be used for the transaction, only for authentication.  A new generated bitcoin address would be sent through the SSL connection. Since it's authenticated, it would then be safe to allow the IP address to be a domain name.  Some care taken that if a proxy is used, it uses socks4a instead of DNS lookup.' rel='nofollow' target='_blank'>The current sending by IP is not very useful: it connects to the IP, so you'd lik...https://bitcointalk.org/index.php?action=profile;u=3;sa=showPosts;start=420https://bitcointalk.org/index.php?action=profile;u=3;sa=showPosts;start=4202021-04-05 09:42:19 UTC2021-04-05 09:42:19 UTC2021-04-05 09:42:19 UTC
http://127.0.0.1:8330/?to=domain.com&amount=200.00&comment=order_12345 or http://...https://bitcointalk.org/index.php?action=profile;u=3;sa=showPosts;start=420https://bitcointalk.org/index.php?action=profile;u=3;sa=showPosts;start=4202021-04-05 09:42:19 UTC2021-04-05 09:42:19 UTC2021-04-05 09:42:19 UTC
Data source unique ID
n88361_56969371a0973ce82db8fe0890dc8aa0eses
Privacy
Public
Last ran status
COMPLETED
Last ran
2021-04-05 09:42:19 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/n88361_56969371a0973ce82db8fe0890dc8aa0eses/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/n88361_56969371a0973ce82db8fe0890dc8aa0eses/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/n88361_56969371a0973ce82db8fe0890dc8aa0eses/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/n88361_56969371a0973ce82db8fe0890dc8aa0eses/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/n88361_56969371a0973ce82db8fe0890dc8aa0eses/latest_all.csv").read
temp_file.rewind

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

Thibault SCHREPEL owner

Related Data Sources

kalileaks.com

(1) Um-Multicharacter NEW DOWNLOAD LINK !!!! BIG LEAK | Kali Leaks | FiveM Leaks - Copy

created on 2025-09-25

AHMED ABASOV
2
2

(8) Instagram

created on 2025-09-25

Gary Teh
1
38
keywordtool.io

Search for "cacao" found 183 unique hashtags

created on 2025-09-24

Gary Teh
1
184
business.google.com

Opiniones

created on 2025-09-19

araico ortega
1
150
More related data sources