v1

latestOpenAPI 3.0.0raw.githubusercontent.com2026-04-107095124.5 KB
Profile data endpoints

Retrieves social graph connections for a given domain

Retrieves recommended connections for a given domain, using an on-chain social graph.

get/public/{domain}/connections

Path parameters

domainstring required

The domain name to query connections

Response

User connections

addressstring

Wallet address for the recommended account

domainstring

Domain name associated with the recommended account

imagePathstring

URL to the domain profile picture

imageTypestring

Defines the type of image represented by the URL - default, onChain, offChain

scorenumber

Score to represent the recommendation ranking

xmtpEnabledboolean

Indicates whether the address supports XMTP

Example response

[
  {
    "domain": "matt.crypto",
    "imagePath": "https://ipfs.io/ipfs/path/to/pfp",
    "imageType": "onChain",
    "reasons": [
      {
        "id": "poap",
        "description": "Holds the same POAP"
      }
    ],
    "score": 75,
    "xmtpEnabled": true
  }
]