POST
/
public
/
get-all-live-events
curl --request POST \
  --url https://backend.codedamn.com/api/public/get-all-live-events \
  --header 'Content-Type: application/json' \
  --header 'FERMION-API-KEY: <api-key>' \
  --data '{
  "data": [
    {
      "data": {}
    }
  ]
}'
[
  {
    "output": {
      "status": "ok",
      "data": {
        "liveEvents": [
          {
            "fermionDigitalProductId": "<string>",
            "liveEventId": "<string>",
            "type": "LiveEventProduct",
            "status": "Active",
            "name": "<string>",
            "slug": "<string>",
            "link": "<string>",
            "thumbnailUrl": "<string>",
            "sessions": [
              {
                "liveEventSessionId": "<string>",
                "scheduledStartAtIso": "2023-11-07T05:31:56Z",
                "scheduledDurationInSecs": 123,
                "endedAtIso": "2023-11-07T05:31:56Z"
              }
            ]
          }
        ]
      }
    }
  }
]

Authorizations

FERMION-API-KEY
string
header
required

Body

application/json

API Request Body

The body is of type object.

Response

200 - application/json

API Response Body

The response is of type object[].