GET
/
streams
/
{stream}
/
records
/
tail
curl --request GET \
  --url https://{basin}.b.aws.s2.dev/v1alpha/streams/{stream}/records/tail \
  --header 'Authorization: Bearer <token>'
{
  "next_seq_num": 1
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

stream
string
required

Name of the stream.

Response

200
application/json

Check tail response.

next_seq_num
integer
required

Sequence number that will be assigned to the next record on the stream.

Required range: x > 0