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

Domain to Linked Domains

Query domains that are associated with another domain

Last updated 1 year ago

Was this helpful?

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

domain

string

Domain / URL

page

int (optional)

Page number (for pagination purposes)

Usage Example

curl https://api.blockfence.io/api/v2/linked_domains -X POST -H "Content-Type: application/json" -H "x-api-key: <YOUR API KEY>" -d '
{
    "domain": "telos.net",
    "page": 1
}
'
{
    "incoming_linked_domains": [
        "tswaps.com"
    ],
    "outgoing_linked_domains": [
        "telos.miami",
        "uniswap.org",
        "goodblock.io",
        "multichain.org",
        "binance.com",
        "chainlist.org",
        "metamask.io",
        "tstarter.io",
        "teloscan.io",
        "eosx.io",
        "rubic.exchange",
        "forms.gle",
        "dstor.cloud",
        "taikai.network",
        "ptokens.io",
        "gate.io",
        "tswaps.com",
        "telosfoundation.io",
        "bloks.io",
        "simplex.com",
        "helpjuice.com",
        "kucoin.com"
    ],
    "page": 1,
    "page_count": 1
}
post

Query domains that are associated with another domain

Body
domainstringOptionalExample: uniswap.org
pageinteger ยท int32OptionalExample: 1
Responses
200
Successful operation
application/json
403
Forbidden
500
Internal Server Error
post
POST /api/v2/linked_domains HTTP/1.1
Host: api.blockfence.io
Content-Type: application/json
Accept: */*
Content-Length: 33

{
  "domain": "uniswap.org",
  "page": 1
}
{
  "incoming_linked_domains": [
    "tswaps.com"
  ],
  "outgoing_linked_domains": [
    "linkedin.com",
    "ethereum.org",
    "telos.miami"
  ],
  "page": 1,
  "page_count": 1
}