Get Tokens by Owner
GET/admin/tokens/owner/:ownerAddress
Get a list of tokens that belong to an ownerAddress
Request
Path Parameters
ownerAddress stringrequired
Example: 0xFDf589954F97b376F0794990d47948371f6824B1
Query Parameters
apiKey string
Example: {{publicKey}}
Header Parameters
API-SECRET string
Example: {{secretKey}}
Responses
- 200
 
OK
- application/json
 
- Schema
 - Example (from schema)
 - Example
 
Schema
object
{}
{
  "object": "list",
  "data": [
    {
      "decimals": 18,
      "spendabilityIds": [
        "a",
        "b",
        "c"
      ],
      "_id": "62f2cddd78f2e5001415f396",
      "address": "0x6F353A3A737bF3f6442BEc6246411E513285882E",
      "name": "My Cool Token",
      "symbol": "MCT",
      "tokenURI": "",
      "totalSupply": "0",
      "owner": "0xFDf589954F97b376F0794990d47948371f6824B1",
      "blockNumber": 18521317,
      "tokenType": "expirable",
      "networkType": "home",
      "expiryTimestamp": 1939300629,
      "createdAt": "2022-08-09T21:13:01.405Z",
      "updatedAt": "2022-08-09T21:13:01.405Z"
    }
  ]
}
Loading...