API Reference
Videos
Get single video

Get a single video

Fetching video list

Getting a single video is done by sending a GET request to the /videos/:id endpoint.

curl -X GET https://app.ignitevideo.cloud/api/videos/:id \
-H "Authorization: Bearer YOUR_TOKEN"

API Response

The response is a Video object or, if the video is not found, a 404 status code with a matching error message in the body is returned.

Error response (404)

{
  "errors": [
    {
      "message": "The requested ressource could not be found.",
    }
  ]
}