SDK Explorer

Fetches the info for all NFTs stored in a single developer-controlled wallet, using the wallets unique identifier.

Parameters
id
string
Required

Wallet ID

include_all
boolean

Return all recourses with monitored and non-monitored tokens.

name
string

Filter by token name.

token_address
string

Filter by token address.

standard
string

Filter by the token standard. ERC20/ERC721/ERC1155 are the standards for EVM chains, Fungible/FungibleAsset/NonFungible/NonFungibleEdition/ProgrammableNonFungible/ProgrammableNonFungibleEdition are the standards for the Solana chain.

Allowed valuesERC20ERC721ERC1155FungibleFungibleAssetNonFungibleNonFungibleEditionProgrammableNonFungibleProgrammableNonFungibleEdition
page_before
string

A collection ID value used for pagination.

It marks the exclusive end of a page. When provided, the collection resource will return the next n items before the id, with n being specified by pageSize.

The items will be returned in the natural order of the collection.

The resource will return the first page if neither pageAfter nor pageBefore are specified.

SHOULD NOT be used in conjunction with pageAfter.

page_after
string

A collection ID value used for pagination.

It marks the exclusive begin of a page. When provided, the collection resource will return the next n items after the id, with n being specified by pageSize.

The items will be returned in the natural order of the collection.

The resource will return the first page if neither pageAfter nor pageBefore are specified.

SHOULD NOT be used in conjunction with pageBefore.

page_size
integer

Limits the number of items to be returned.

Some collections have a strict upper bound that will disregard this value. In case the specified value is higher than the allowed limit, the collection limit will be used.

If avoided, the collection will determine the page size itself.

Responses
Example
1from circle.web3 import developer_controlled_wallets
2from circle.web3 import utils
3
4client = utils.init_developer_controlled_wallets_client(api_key=key, entity_secret=entitySecret)
5
6api_instance = developer_controlled_wallets.WalletsApi(client)
7response = api_instance.list_wallet_nfts(id="301e9038-e4c3-5a77-a9fe-95fd644f4c85")
8print(response.json())
9
ResponseChoose an example
1{
2  "data": {
3    "nfts": [
4      {
5        "amount": "1",
6        "metadata": "ipfs://QmZcH4YvBVVRJtdn4RdbaqgspFU8gH6P9vomDpBVpAL3u4/1",
7        "nft_token_id": "2",
8        "token": {
9          "id": "c4d1da72-111e-4d52-bdbf-2e74a2d803d5",
10          "name": "",
11          "standard": "ERC20",
12          "blockchain": "MATIC-AMOY",
13          "decimals": 0,
14          "is_native": false,
15          "symbol": "",
16          "token_address": "0xca9142d0b9804ef5e239d3bc1c7aa0d1c74e7350",
17          "update_date": "2023-01-01T12:04:05Z",
18          "create_date": "2023-01-01T12:04:05Z"
19        },
20        "update_date": "2023-01-01T12:04:05Z"
21      }
22    ]
23  }
24}
Did this page help you?
© 2023-2025 Circle Technology Services, LLC. All rights reserved.