Domain Enrichment

Provides metadata on a given domain

All requests require an API key. Add "x-api-key" to your request header as shown in the example below.

Don't have an API key? Contact us to get one.

post

Provides metadata on a given domain

Body
urlstringOptionalExample: https://uniswap.org
Responses
200
Successful operation
application/json
post
POST /api/v2/enrich_url HTTP/1.1
Host: api.blockfence.io
Content-Type: application/json
Accept: */*
Content-Length: 29

{
  "url": "https://uniswap.org"
}
{
  "enrichments": [
    {
      "provider_name": "DappRadar",
      "name": "PancakeSwap V2",
      "type": "DAPP",
      "logo": "https://dashboard-assets.dappradar.com/geRRcWz9IdTwSrm1/document/4600/pancakeswap-dapp-defi-bsc-logo_97d09bb01774bc41263cb848bedbe994.png",
      "description": "The #1 AMM and yield farm on Binance Smart Chain",
      "long_description": "<p>PancakeSwap is an automated market maker (“AMM”) that allows two tokens to be exchanged on the Binance Smart Chain...</p>",
      "metrics": [
        {
          "name": "UAW",
          "amount": 713630,
          "tooltip": "The number of unique active wallets (UAW) interacting or performing a transaction with a dapp's smart contracts"
        }
      ]
    }
  ]
}

Request Body Parameters

Parameter Name
Parameter Type
Comments

url

string

Domain / URL

Usage Example

curl https://api.blockfence.io/api/v2/enrich_url -X POST -H "Content-Type: application/json" -H "x-api-key: <YOUR API KEY>" -d '
{
    "url": "https://pancakeswap.finance/"
}
'

Last updated

Was this helpful?