Skip to main content
GET
/
api
/
v1
/
web3-data
/
wallets
/
{walletAddress}
/
listings
Get listings for a wallet
curl --request GET \
  --url https://api.drip.re/api/v1/web3-data/wallets/{walletAddress}/listings \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "chain": "ethereum",
      "tokenId": "<string>",
      "contractAddress": "<string>",
      "marketplace": "<string>",
      "seller": "<string>",
      "price": {
        "amount": "<string>",
        "amountUsd": null,
        "currency": "<string>",
        "currencyAddress": null
      },
      "startTime": null,
      "endTime": null,
      "status": "active",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": null
    }
  ],
  "meta": {
    "hasNextPage": false,
    "hasPreviousPage": false,
    "startCursor": "<string>",
    "endCursor": "<string>",
    "totalCount": 123
  }
}

Authorizations

Authorization
string
header
required

API Key

Path Parameters

walletAddress
string
required

Query Parameters

chain
enum<string>
default:ethereum
Available options:
ethereum,
polygon,
arbitrum,
optimism,
base,
zksync,
starknet,
scroll,
polygonZkEVM,
arbitrumNova,
avalanche,
gnosis,
opbnb,
metis,
astar,
linea,
mantle,
berachain,
flow,
crossfi,
soneium,
worldchain,
rootstock,
shape,
unichain,
apechain,
geist,
lens,
abstract,
lumia,
ink,
zetachain,
blast,
sonic,
zora,
settlus,
solana
cursor
string
limit
number
default:20
contractAddress
string

Response

200 - application/json

Default Response

data
any[]
meta
any
I