OpenSea · Schema

AccountSearchResponse

Account search result

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Properties

Name Type Description
address string Primary wallet address of the account
username string Username of the account
profile_image_url string URL of the account's profile image
opensea_url string URL to the account on OpenSea
View JSON Schema on GitHub

JSON Schema

AccountSearchResponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://opensea.io/schemas/AccountSearchResponse",
  "title": "AccountSearchResponse",
  "type": "object",
  "description": "Account search result",
  "properties": {
    "address": {
      "type": "string",
      "description": "Primary wallet address of the account"
    },
    "username": {
      "type": "string",
      "description": "Username of the account"
    },
    "profile_image_url": {
      "type": "string",
      "description": "URL of the account's profile image"
    },
    "opensea_url": {
      "type": "string",
      "description": "URL to the account on OpenSea"
    }
  },
  "required": [
    "address",
    "opensea_url"
  ]
}