Skip to main content
The labels.owner_details table on Dune provides essential information about various entities within the ecosystem, detailing their operational, social, and technical profiles. Data in this table is sourced from community contributions and official documentation, offering a comprehensive overview of the entities’ activities, categories, and online presence. Analysts can leverage this data to track the latest developments, partnerships, and projects associated with specific entities.
You can find addresses associated with the account owners and custody owners in the labels.owner_addresses table.

Table Schema

ColumnTypeDescription
nameVARCHAREntity name
owner_keyVARCHARUnique key linking to owner_addresses
websiteVARCHAREntity website URL
dune_teamVARCHARAssociated Dune team
project_documentationVARCHARLink to project documentation
project_github_urlVARCHARLink to project GitHub repository
socialVARCHARSocial media links
primary_categoryVARCHARPrimary business category (e.g., Decentralized Exchange)
category_tagsARRAY(VARCHAR)Additional category tags
country_nameVARCHARCountry of incorporation or operation
descriptionVARCHARBrief entity description
created_atTIMESTAMPWhen the record was created
created_byVARCHARWho created the record
updated_atTIMESTAMPWhen the record was last updated
updated_byVARCHARWho last updated the record

Table Sample

Example Query

The following SQL query demonstrates how to retrieve basic information about entities categorized as ‘Decentralized Exchange’:
SELECT
  name,
  website,
  primary_category
FROM
  labels.owner_details
WHERE
  primary_category = 'Decentralized Exchange'