GET
/
v1
/
transactions
curl "https://api.geldstuck.com/v1/transactions?status=funded&limit=50" \
  -H "x-api-key: $GELDSTUCK_PUBLIC_KEY" \
  -H "x-api-secret: $GELDSTUCK_SECRET_KEY"
{
  "data": [
    {
      "id": "tx_01HX3ZM...",
      "status": "funded",
      "amount": 1850000,
      "currency": "EUR",
      "title": "1972 Rolex Submariner",
      "createdAt": "2026-04-22T11:00:00.000Z"
    }
  ],
  "hasMore": false,
  "nextCursor": null
}
Returns a cursor-paginated list. See pagination for cursor semantics.

Query parameters

limit
integer
default:"20"
starting_after
string
status
string
Filter by created, invited, accepted, funded, released, refunded, disputed, deleted.
accountType
string
userId
string
Return only transactions where this user is buyer or seller.

Returns

data
array
hasMore
boolean
nextCursor
string
curl "https://api.geldstuck.com/v1/transactions?status=funded&limit=50" \
  -H "x-api-key: $GELDSTUCK_PUBLIC_KEY" \
  -H "x-api-secret: $GELDSTUCK_SECRET_KEY"
{
  "data": [
    {
      "id": "tx_01HX3ZM...",
      "status": "funded",
      "amount": 1850000,
      "currency": "EUR",
      "title": "1972 Rolex Submariner",
      "createdAt": "2026-04-22T11:00:00.000Z"
    }
  ],
  "hasMore": false,
  "nextCursor": null
}