nfts_owned
Pack: alchemy-eth · Endpoint: https://gateway.pipeworx.io/alchemy-eth/mcp
NFTs owned by address.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
owner | string | yes | |
contracts | string | no | |
page_key | string | no | |
page_size | number | no | |
chain | string | no |
Example call
Arguments
{
"owner": "0x1234567890123456789012345678901234567890"
}
curl
curl -X POST https://gateway.pipeworx.io/alchemy-eth/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"nfts_owned","arguments":{"owner":"0x1234567890123456789012345678901234567890"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('nfts_owned', {
"owner": "0x1234567890123456789012345678901234567890"
});
More examples
{
"owner": "0x1234567890123456789012345678901234567890",
"contracts": "0xBC4CA0EdA7647A8aB7C2061c2E2ad6310f674457",
"page_size": 10
}
Response shape
| Field | Type | Description |
|---|---|---|
ownedNfts | array | Array of owned NFT objects |
pageKey | string | Pagination key for next page |
totalCount | integer | Total count of owned NFTs |
validAt | object | Block validity information |
Full JSON Schema
{
"type": "object",
"properties": {
"ownedNfts": {
"type": "array",
"description": "Array of owned NFT objects",
"items": {
"type": "object",
"properties": {
"contractAddress": {
"type": "string",
"description": "NFT contract address"
},
"tokenId": {
"type": "string",
"description": "Token ID"
},
"name": {
"type": "string",
"description": "NFT name"
},
"description": {
"type": "string",
"description": "NFT description"
},
"image": {
"type": "object",
"description": "Image metadata object"
},
"media": {
"type": "array",
"description": "Media objects"
}
}
}
},
"pageKey": {
"type": "string",
"description": "Pagination key for next page"
},
"totalCount": {
"type": "integer",
"description": "Total count of owned NFTs"
},
"validAt": {
"type": "object",
"description": "Block validity information"
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"alchemy-eth": {
"url": "https://gateway.pipeworx.io/alchemy-eth/mcp"
}
}
}
See Getting Started for client-specific install steps.