> ## Documentation Index
> Fetch the complete documentation index at: https://docs.repdata.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get video upload status

> # Description

Get the current status of the video that is being processed by Dacast external service after uploading it.

# Response

## 200 OK

```json
{
  "status": string
}
```

where:

* `status`: Current video status in Dacast external service.

# 401 Unauthorized

> If user don't have permission to use this endpoint.

# 500 Internal Server Error

> If there is a problem with the service

# Description

Get the current status of the video that is being processed by Dacast external service after uploading it.

# Response

## 200 OK

```json theme={null}
{
  "status": string
}
```

where:

* `status`: Current video status in Dacast external service.

# 401 Unauthorized

> If user don't have permission to use this endpoint.

# 500 Internal Server Error

> If there is a problem with the service


## OpenAPI

````yaml GET /api/video/{videoId}/status
openapi: 3.0.3
info:
  title: SightX API
  version: 1.0.0
  description: >-
    SightX REST API documentation. Most responses are JSON; some export
    endpoints return files. API access is a paid add-on — contact
    sales@sightx.io for details.
servers:
  - url: https://auth.admin.sightx.io
    description: Authentication (Production)
  - url: https://auth.staging-admin.sightx.io
    description: Authentication (Staging)
security:
  - AuthorizationHeader: []
paths:
  /api/video/{videoId}/status:
    get:
      summary: Get video upload status
      description: >-
        # Description


        Get the current status of the video that is being processed by Dacast
        external service after uploading it.


        # Response


        ## 200 OK


        ```json

        {
          "status": string
        }

        ```


        where:


        * `status`: Current video status in Dacast external service.


        # 401 Unauthorized


        > If user don't have permission to use this endpoint.


        # 500 Internal Server Error


        > If there is a problem with the service
      operationId: get-video-upload-status-get-api-video-videoid-status
      parameters:
        - name: Authorization
          in: header
          required: true
          description: Authorization token
          schema:
            type: string
      responses:
        '200':
          description: Successful response
        '400':
          description: Bad request
        '401':
          description: Unauthorized
        '500':
          description: Internal server error
      servers:
        - url: https://upload-video.sightx.io
components:
  securitySchemes:
    AuthorizationHeader:
      type: apiKey
      in: header
      name: Authorization
      description: Access token obtained from the m2m-token endpoint.

````