Coinbax API

Transaction Stream

View as Markdown

Subscribe to real-time transaction updates

GET/api/v1/transactions/{id}/streamX-API-Key

Opens an SSE stream for real-time transaction and control execution updates

Path parameters

  • idstringrequired

Responses

200SSE stream opened successfully

Response follows the unified success / data / meta / error envelope.

404Transaction not found

Response follows the unified success / data / meta / error envelope.

curl https://api-staging.coinbax.com/api/v1/transactions/<id>/stream \
  -H "X-API-Key: $COINBAX_API_KEY"
const response = await fetch('https://api-staging.coinbax.com/api/v1/transactions/<id>/stream', {
  headers: {
    'X-API-Key': process.env.COINBAX_API_KEY,
  },
});
const result = await response.json();