Skip to main content
GET
/
account
/
{accountId}
/
positions
Position event history
curl --request GET \
  --url https://api.blend.money/extern/{neobankId}/{accountTypeId}/account/{accountId}/positions \
  --header 'X-API-Key: <api-key>'
{
  "status": "<string>",
  "data": {
    "accountId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "safeAddress": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045",
    "events": [
      {
        "kind": "DEPOSIT",
        "eventType": "<string>",
        "safeAddress": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045",
        "vaultId": "<string>",
        "chainId": 1,
        "blockNumber": "<string>",
        "transactionHash": "<string>",
        "logIndex": "<string>",
        "blockTime": "2023-11-07T05:31:56Z",
        "amount": "<string>",
        "price": {
          "USD": "1.0001",
          "EUR": "0.9201"
        },
        "tokenAddress": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045",
        "tokenSymbol": "<string>",
        "tokenDecimals": 123
      }
    ]
  }
}

Authorizations

X-API-Key
string
header
required

SHA-256 hashed API key issued per organization

Headers

x-fiat-currency
string

ISO 4217 currency code (e.g. EUR, GBP). When set, all monetary response fields include an additional key for the requested currency alongside USD. When absent, monetary fields contain USD only.

Pattern: ^[A-Z]{3}$
Example:

"EUR"

Path Parameters

accountId
string<uuid>
required

Account UUID (returned by GET /account)

Response

Position events

status
string
required
Allowed value: "success"
data
object
Last modified on April 6, 2026