GET
/
v1
/
transactions
/
invite
/
:token
curl https://api.geldstuck.com/v1/transactions/invite/ey...
{
  "title": "1972 Rolex Submariner",
  "amount": 1850000,
  "currency": "EUR",
  "counterparty": { "name": "Acme Escrow", "role": "seller" },
  "expiresAt": "2026-05-22T11:00:00.000Z"
}
Your frontend can use this to render a preview of the transaction before the counterparty signs in. The token itself is opaque - call this endpoint to resolve it.
This endpoint is unauthenticated because the invitee may not yet have an account. The token is single-use and expires after 30 days.

Path parameters

token
string
required
The inviteToken from the transaction creation response.

Returns

A redacted transaction preview - amount, title, counterparty name, and deadline. Sensitive fields (internal IDs, metadata) are omitted.
curl https://api.geldstuck.com/v1/transactions/invite/ey...
{
  "title": "1972 Rolex Submariner",
  "amount": 1850000,
  "currency": "EUR",
  "counterparty": { "name": "Acme Escrow", "role": "seller" },
  "expiresAt": "2026-05-22T11:00:00.000Z"
}