Skip to main content
GET
/
storage
/
streams
List all streams
curl --request GET \
  --url https://api.quiva.ai/storage/streams \
  --header 'Authorization: Bearer <token>'
{
  "body": {
    "results": [
      {
        "name": "stream1",
        "subjects": [
          "events.*"
        ]
      },
      {
        "name": "stream2",
        "subjects": [
          "logs.*"
        ]
      }
    ],
    "results_total": 2
  },
  "metadata": {
    "duration": "5ms"
  }
}

Authorizations

Authorization
string
header
required

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

Response

Successfully retrieved stream list

body
object
metadata
object