Get Wallet by Address
Get wallet details by Ethereum address.
GET
/v1/wallets/address/{address}Overview
Retrieve wallet information by Ethereum address.
Authentication
Required: No
Payment: No
Public endpoint - no authentication needed.
Parameters
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
address | string | Yes | Ethereum address (0x prefixed) |
Response
Status: 200 OK
{
"id": "string",
"address": "string",
"total_feeds": number,
"total_entries": number,
"total_revenue": "string",
"created_at": number,
"updated_at": number
}Code Examples
cURL
curl https://api.grapevine.fyi/v1/wallets/address/0x742d35Cc6634C0532925a3b844Bc9e7595f0bEbSDK
// The SDK doesn't expose this endpoint directly
// Use the client utilities instead:
import { GrapevineClient } from '@pinata/grapevine-sdk';
const grapevine = new GrapevineClient({
privateKey: process.env.PRIVATE_KEY
});
const address = grapevine.getWalletAddress();
console.log('Current wallet address:', address);External Playground
Try this endpoint interactively in Swagger UI:
https://api.grapevine.fyi/v1/docs