# Get intelligence about an address with additional address information Similar to /intelligence/address/{address}, but includes additional address information (tags, cluster IDs, entity predictions). By default, includes tags, entity predictions, and cluster IDs. Use query parameters to exclude specific enrichments. Endpoint: GET /intelligence/address_enriched/{address} Version: 1.0.0 Security: ApiKeyAuth ## Path parameters: - `address` (string, required) ## Query parameters: - `chain` (string) - `includeTags` (boolean) Include populated tag details (default: true). Set to 'false' to exclude. - `includeEntityPredictions` (boolean) Include predicted entity information (default: true). Set to 'false' to exclude. - `includeClusters` (boolean) Include cluster IDs (default: true). Set to 'false' to exclude. ## Response 200 fields (application/json): - `address` (string) The raw address (hex for EVM chains, base58 for Bitcoin, etc.) Example: "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045" - `chain` (string) Enum: "ethereum", "polygon", "bsc", "optimism", "avalanche", "arbitrum_one", "bitcoin", "tron", "base", "flare", "linea", "manta", "blast", "ton", "solana", "mantle", "dogecoin", "sonic" - `depositServiceID` (string,null) - `arkhamEntity` (object,null) - `arkhamEntity.name` (string,null) Example: "Vitalik Buterin" - `arkhamEntity.note` (string,null) - `arkhamEntity.id` (string,null) Example: "vitalik-buterin" - `arkhamEntity.type` (string,null) Example: "individual" - `arkhamEntity.service` (string,null) - `arkhamEntity.addresses` (string,null) - `arkhamEntity.website` (string,null) - `arkhamEntity.twitter` (string,null) Example: "https://twitter.com/VitalikButerin" - `arkhamEntity.crunchbase` (string,null) Example: "https://www.crunchbase.com/person/vitalik-buterin" - `arkhamEntity.linkedin` (string,null) Example: "https://www.linkedin.com/in/vitalik-buterin-267a7450" - `arkhamLabel` (object,null) - `arkhamLabel.address` (string,null) Example: "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045" - `arkhamLabel.chainType` (string) Enum: "evm", "bitcoin", "tron", "ton", "solana", "dogecoin" - `isUserAddress` (boolean,null) - `contract` (boolean,null) - `clusterIds` (array,null) Array of cluster IDs associated with this address (when includeClusters=true) - `populatedTags` (array,null) Populated tags associated with this address (when includeTags=true) - `populatedTags.label` (string) Example: "Key Opinion Leader" - `populatedTags.rank` (integer) Example: 4 - `populatedTags.excludeEntities` (boolean) - `populatedTags.disablePage` (boolean) - `predictedEntity` (object) - `predictedEntity.customized` (boolean) - `predictedEntity.ownerUID` (string,null) Example: "if0jX2ggQzRlZnKYieI6uhLb07W1" - `predictedEntity.instagram` (string) Example: "https://www.instagram.com/vitalik.eth.official" - `predictedEntity.customImageSlug` (string) Example: "https://static.arkhamintelligence.com/entities/vitalik-buterin.png" - `predictedEntity.populatedTags` (array) - `predictedEntity.linkShareable` (boolean) Example: true ## Response 400 fields (application/json): - `error` (string) Example: "Bad request" ## Response 401 fields (application/json): - `error` (string) Example: "API key missing or invalid" ## Response 404 fields (application/json): - `error` (string) Example: "Not found"