# Retrieve domains Returns a list of domains owned by the specified wallet address Endpoint: GET /user/{address}/domains Version: 1.0.0 ## Path parameters: - `address` (string, required) The owner address to query. Supported addresses include EVM or Solana. ## Query parameters: - `take` (number) The number of domains to return. Default is 50. Max is 100. - `cursor` (string) The cursor to use for pagination ## Response 200 fields (application/json): - `data` (array) - `data.domain` (string) The domain name - `data.listing` (object) - `data.listing.status` (string) The status of the listing - `data.listing.price` (number) The price of the listing in USD - `data.listing.priceFormattedUsd` (string) The formatted price of the listing in USD - `data.listing.updatedAt` (string) The date and time the listing was last updated - `data.listing.expiresAt` (string) The date and time the listing will expire - `data.meta` (object) Resolution metadata for the domain - `meta` (object) - `meta.total_count` (integer) Total returned count - `meta.pagination` (object) - `meta.pagination.cursor` (integer) Cursor position for pagination - `meta.pagination.take` (integer) Number of items to return - `relationship_type` (string) Relationship type (followers or following) Enum: "followers", "following" - `domain` (string) The requested domain ## Response 404 fields