Skip to main content
GET
/
wallets
/
{wallet}
/
history
/
{strategyId}
Get wallet transaction history
curl --request GET \
  --url https://api.deframe.io/wallets/{wallet}/history/{strategyId} \
  --header 'x-api-key: <api-key>'
{
  "transactions": [
    {
      "txHash": "<string>",
      "timestamp": "<string>",
      "type": "<string>",
      "amount": "1000000",
      "status": "<string>"
    }
  ],
  "page": 123,
  "totalPages": 123
}

Authorizations

x-api-key
string
header
required

API key for authentication. Obtain from your Deframe dashboard.

Path Parameters

wallet
string
required

Wallet address

Example:

"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"

strategyId
string
required

Strategy ID or slug

Query Parameters

page
string
default:1
limit
string
default:10

Response

200 - application/json

History retrieved successfully

transactions
object[]
required
page
number
required
totalPages
number
required