cURL
curl --request POST \
--url https://api.chainbase.com/api/v1/query/execute \
--header 'Content-Type: <content-type>' \
--header 'X-API-KEY: <x-api-key>' \
--data '
{
"sql": "SELECT * FROM ethereum.blocks LIMIT 10"
}
'import requests
url = "https://api.chainbase.com/api/v1/query/execute"
payload = { "sql": "SELECT * FROM ethereum.blocks LIMIT 10" }
headers = {
"X-API-KEY": "<x-api-key>",
"Content-Type": "<content-type>"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-API-KEY': '<x-api-key>', 'Content-Type': '<content-type>'},
body: JSON.stringify({sql: 'SELECT * FROM ethereum.blocks LIMIT 10'})
};
fetch('https://api.chainbase.com/api/v1/query/execute', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.chainbase.com/api/v1/query/execute",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'sql' => 'SELECT * FROM ethereum.blocks LIMIT 10'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: <content-type>",
"X-API-KEY: <x-api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.chainbase.com/api/v1/query/execute"
payload := strings.NewReader("{\n \"sql\": \"SELECT * FROM ethereum.blocks LIMIT 10\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-API-KEY", "<x-api-key>")
req.Header.Add("Content-Type", "<content-type>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.chainbase.com/api/v1/query/execute")
.header("X-API-KEY", "<x-api-key>")
.header("Content-Type", "<content-type>")
.body("{\n \"sql\": \"SELECT * FROM ethereum.blocks LIMIT 10\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.chainbase.com/api/v1/query/execute")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-API-KEY"] = '<x-api-key>'
request["Content-Type"] = '<content-type>'
request.body = "{\n \"sql\": \"SELECT * FROM ethereum.blocks LIMIT 10\"\n}"
response = http.request(request)
puts response.read_body{
"message": "sql is empty",
"code": 1001,
"data": []
}Alpha
Execute Queries (Alpha)
Limit of 100,000 results
POST
/
query
/
execute
cURL
curl --request POST \
--url https://api.chainbase.com/api/v1/query/execute \
--header 'Content-Type: <content-type>' \
--header 'X-API-KEY: <x-api-key>' \
--data '
{
"sql": "SELECT * FROM ethereum.blocks LIMIT 10"
}
'import requests
url = "https://api.chainbase.com/api/v1/query/execute"
payload = { "sql": "SELECT * FROM ethereum.blocks LIMIT 10" }
headers = {
"X-API-KEY": "<x-api-key>",
"Content-Type": "<content-type>"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-API-KEY': '<x-api-key>', 'Content-Type': '<content-type>'},
body: JSON.stringify({sql: 'SELECT * FROM ethereum.blocks LIMIT 10'})
};
fetch('https://api.chainbase.com/api/v1/query/execute', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.chainbase.com/api/v1/query/execute",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'sql' => 'SELECT * FROM ethereum.blocks LIMIT 10'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: <content-type>",
"X-API-KEY: <x-api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.chainbase.com/api/v1/query/execute"
payload := strings.NewReader("{\n \"sql\": \"SELECT * FROM ethereum.blocks LIMIT 10\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-API-KEY", "<x-api-key>")
req.Header.Add("Content-Type", "<content-type>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.chainbase.com/api/v1/query/execute")
.header("X-API-KEY", "<x-api-key>")
.header("Content-Type", "<content-type>")
.body("{\n \"sql\": \"SELECT * FROM ethereum.blocks LIMIT 10\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.chainbase.com/api/v1/query/execute")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-API-KEY"] = '<x-api-key>'
request["Content-Type"] = '<content-type>'
request.body = "{\n \"sql\": \"SELECT * FROM ethereum.blocks LIMIT 10\"\n}"
response = http.request(request)
puts response.read_body{
"message": "sql is empty",
"code": 1001,
"data": []
}⌘I