Skip to main content
GET
/
gateway
/
v1
/
wallet
/
labels
/
batch
Wallet Labels (Batch)
curl --request GET \
  --url https://api.ask.surf/gateway/v1/wallet/labels/batch
{
  "data": [
    {
      "address": "<string>",
      "labels": [
        {
          "label": "<string>",
          "confidence": 123
        }
      ],
      "entity_name": "<string>",
      "entity_type": "<string>"
    }
  ],
  "meta": {
    "cached": true,
    "credits_used": 123,
    "limit": 123,
    "offset": 123,
    "total": 123
  },
  "$schema": "<string>"
}

Query Parameters

addresses
string
required

Comma-separated wallet addresses to look up, max 100

Example:

"0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045,0xdead"

Response

OK

data
object[] | null
required
meta
object
required
$schema
string<uri>

A URL to the JSON Schema for this object.

Example:

"https://example.com/schemas/DataResponseWalletLabelItem.json"