Blockfence API Docs
Back to Homepage
  • Welcome to Blockfence API
  • Quick Start
  • Reference
    • API Reference
      • Enrichment
        • Transaction Simulation
        • Address Enrichment
        • Domain Enrichment
        • AI Interpreter
      • Analysis
        • Address Analysis
        • Domain Analysis
        • Transaction Analysis
      • Monitoring
        • Subscribe to Address Events
        • Subscribe to Domain Events
      • Investigation
        • Domain To Addresses
        • Address to Domains
        • Similar Smart Contracts
        • Domain to Linked Domains
        • Domain to Internal Pages
        • Investigate a URL
  • Terms & Policy
    • API License Agreement
    • Terms & Conditions
    • Privacy Policy
Powered by GitBook
On this page

Was this helpful?

  1. Reference
  2. API Reference
  3. Investigation

Address to Domains

Query Domains that are associated with a blockchain address

Last updated 1 year ago

Was this helpful?

beta

Supported Networks:

  • Ethereum: chain_id: "0x1"

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.

This API returns at max 50 results per call. Check the response for page and page_count to query the rest of the results.

Request Body Parameters

Parameter Name
Parameter Type
Comments

chain_id

hex string

Chain ID (e.g. "0x1" for mainnet)

blockchain_address

hex string

Blockchain address

page

int (optional)

Page number (for pagination purposes)

Usage Example

curl https://api.blockfence.io/api/v1/address-to-urls -X POST -H "Content-Type: application/json" -H "x-api-key: <YOUR API KEY>" -d '
{
    "chain_id": "0x1",
    "blockchain_address": "0x8904E3E9eaB00F64458845d32Ea22b2279fda1f7",
    "page": 1
}
'
{
   "urls":[
      "https://boredapeyachtclub.com",
      "https://ethereum-bal.com",
      "https://mlndr.mentionnfts.com",
      "https://liquidity-miningserve.com",
      "https://ethdefi.wiki",
      "https://coalitioncrew.hfnfts.com",
      "https://wl-flufworld.com",
      "https://lirona.hfnfts.com",
      "https://liquiditypool-share.com",
      "https://welly.on-minting.com",
      "https://satoshiisland.giveaway-nfts.com",
      "https://thesaudis.ybnfts.com",
      "https://azukiofficial-arcade.xyz",
      "https://thesandbox.gwnfts.com",
      "https://welly.on-minting.com"
   ],
   "page": 1,
   "page_count": 1
}
  • beta
  • POST/address-to-urls
post

Query for blockchain addresses associated with a URL

Body
blockchain_addressstring · hexOptionalExample: 0x8904E3E9eaB00F64458845d32Ea22b2279fda1f7
chain_idstring · hexOptionalExample: 0x1
pageintegerOptionalExample: 1
Responses
200
Successful operation
application/json
403
Forbidden
500
Internal Server Error
post
POST /api/v1/address-to-urls HTTP/1.1
Host: api.blockfence.io
Content-Type: application/json
Accept: */*
Content-Length: 93

{
  "blockchain_address": "0x8904E3E9eaB00F64458845d32Ea22b2279fda1f7",
  "chain_id": "0x1",
  "page": 1
}
{
  "urls": [
    "text"
  ],
  "page": 1,
  "page_count": 1
}