Skip to main content
GET
/
search
search
curl --request GET \
  --url https://eth.blockscout.com/api/v2/search
import requests

url = "https://eth.blockscout.com/api/v2/search"

response = requests.get(url)

print(response.text)
const options = {method: 'GET'};

fetch('https://eth.blockscout.com/api/v2/search', 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://eth.blockscout.com/api/v2/search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://eth.blockscout.com/api/v2/search"

req, _ := http.NewRequest("GET", url, nil)

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://eth.blockscout.com/api/v2/search")
.asString();
require 'uri'
require 'net/http'

url = URI("https://eth.blockscout.com/api/v2/search")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body
{
  "items": [
    {
      "address_url": "/address/0xdAC17F958D2ee523a2206206994597C13D831ec7",
      "exchange_rate": "0.999813",
      "icon_url": "https://raw.githubusercontent.com/trustwallet/assets/master/blockchains/ethereum/assets/0xdAC17F958D2ee523a2206206994597C13D831ec7/logo.png",
      "is_smart_contract_verified": true,
      "name": "Tether USD",
      "symbol": "USDT",
      "token_type": "ERC-20",
      "token_url": "/token/0xdAC17F958D2ee523a2206206994597C13D831ec7",
      "total_supply": "39030615894320966",
      "type": "token",
      "address_hash": "0xdAC17F958D2ee523a2206206994597C13D831ec7"
    }
  ],
  "next_page_params": {
    "address_hash": "0x052Ad78E3aA0b0F2D3912FD3b50a9a289CF2f7Aa",
    "block_hash": null,
    "holders_count": 548,
    "inserted_at": "2021-12-07T08:39:01.062253Z",
    "item_type": "token",
    "items_count": 50,
    "name": "RealToken S 13245 Monica St Detroit MI",
    "q": "1",
    "transaction_hash": null
  }
}

Query Parameters

q
string
Example:

"USDT"

Response

search response

items
object[]
required
next_page_params
object
required
Example:
{
"address_hash": "0x052Ad78E3aA0b0F2D3912FD3b50a9a289CF2f7Aa",
"block_hash": null,
"holders_count": 548,
"inserted_at": "2021-12-07T08:39:01.062253Z",
"item_type": "token",
"items_count": 50,
"name": "RealToken S 13245 Monica St Detroit MI",
"q": "1",
"transaction_hash": null
}