list_owned_nfts

Pack: opensea · Endpoint: https://gateway.pipeworx.io/opensea/mcp

NFTs owned by an address on a specific chain. Paginated.

Parameters

NameTypeRequiredDescription
chainstringyesChain slug
addressstringyesOwner wallet address
limitnumberno1-200 (default 50)
nextstringnoPagination cursor
collection_slugstringnoRestrict to a single collection (optional)

Example call

Arguments

{
  "chain": "ethereum",
  "address": "0x1234567890abcdef1234567890abcdef12345678",
  "limit": 50
}

curl

curl -X POST https://gateway.pipeworx.io/opensea/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_owned_nfts","arguments":{"chain":"ethereum","address":"0x1234567890abcdef1234567890abcdef12345678","limit":50}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('list_owned_nfts', {
  "chain": "ethereum",
  "address": "0x1234567890abcdef1234567890abcdef12345678",
  "limit": 50
});

More examples

{
  "chain": "polygon",
  "address": "0xabcdefabcdefabcdefabcdefabcdefabcdefabcd",
  "collection_slug": "boredapeyachtclub"
}

Response shape

Always returns: chain, owner, count, next, nfts

FieldTypeDescription
chainstringBlockchain chain queried
ownerstringOwner wallet address
countnumberNumber of NFTs in this page
nextstring | nullPagination cursor for next page
nftsarrayNFTs owned by address
Full JSON Schema
{
  "type": "object",
  "properties": {
    "chain": {
      "type": "string",
      "description": "Blockchain chain queried"
    },
    "owner": {
      "type": "string",
      "description": "Owner wallet address"
    },
    "count": {
      "type": "number",
      "description": "Number of NFTs in this page"
    },
    "next": {
      "type": [
        "string",
        "null"
      ],
      "description": "Pagination cursor for next page"
    },
    "nfts": {
      "type": "array",
      "description": "NFTs owned by address",
      "items": {
        "type": "object",
        "properties": {
          "identifier": {
            "type": [
              "string",
              "null"
            ],
            "description": "Token ID"
          },
          "collection": {
            "type": [
              "string",
              "null"
            ],
            "description": "Collection slug"
          },
          "contract": {
            "type": [
              "string",
              "null"
            ],
            "description": "Contract address"
          },
          "standard": {
            "type": [
              "string",
              "null"
            ],
            "description": "Token standard (ERC721, ERC1155)"
          },
          "name": {
            "type": [
              "string",
              "null"
            ],
            "description": "NFT name"
          },
          "description": {
            "type": [
              "string",
              "null"
            ],
            "description": "NFT description"
          },
          "image": {
            "type": [
              "string",
              "null"
            ],
            "description": "Display image URL"
          },
          "animation": {
            "type": [
              "string",
              "null"
            ],
            "description": "Animation/video URL"
          },
          "metadata_url": {
            "type": [
              "string",
              "null"
            ],
            "description": "Metadata URL"
          },
          "opensea_url": {
            "type": [
              "string",
              "null"
            ],
            "description": "OpenSea item page URL"
          },
          "updated_at": {
            "type": [
              "string",
              "null"
            ],
            "description": "Last update timestamp"
          },
          "disabled": {
            "type": "boolean",
            "description": "Whether NFT is disabled"
          },
          "nsfw": {
            "type": "boolean",
            "description": "Whether NFT is marked NSFW"
          },
          "traits": {
            "type": "array",
            "description": "NFT traits/attributes",
            "items": {
              "type": "object",
              "properties": {
                "type": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "description": "Trait name"
                },
                "value": {
                  "type": [
                    "string",
                    "number",
                    "null"
                  ],
                  "description": "Trait value"
                },
                "display_type": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "description": "Display type hint"
                }
              }
            }
          },
          "owners": {
            "type": "array",
            "description": "Current owners (for ERC1155 multiple owners possible)",
            "items": {
              "type": "object",
              "properties": {
                "address": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "description": "Owner address"
                },
                "quantity": {
                  "type": "number",
                  "description": "Quantity owned"
                }
              }
            }
          },
          "rarity_rank": {
            "type": [
              "number",
              "null"
            ],
            "description": "Rarity rank in collection"
          },
          "rarity_score": {
            "type": [
              "number",
              "null"
            ],
            "description": "Rarity score"
          }
        }
      }
    }
  },
  "required": [
    "chain",
    "owner",
    "count",
    "next",
    "nfts"
  ]
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "opensea": {
      "url": "https://gateway.pipeworx.io/opensea/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026