Domain to Linked Domains
Query domains that are associated with another domain
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
}
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
}
'
Last updated
Was this helpful?