All Products
Search
Document Center

Intelligent Media Management:GetVideoModerationResult

Last Updated:Jun 15, 2026

Retrieves a video content moderation task.

Try it now

Try this API in OpenAPI Explorer, no manual signing needed. Successful calls auto-generate SDK code matching your parameters. Download it with built-in credential security for local usage.

Test

RAM authorization

The table below describes the authorization required to call this API. You can define it in a Resource Access Management (RAM) policy. The table's columns are detailed below:

  • Action: The actions can be used in the Action element of RAM permission policy statements to grant permissions to perform the operation.

  • API: The API that you can call to perform the action.

  • Access level: The predefined level of access granted for each API. Valid values: create, list, get, update, and delete.

  • Resource type: The type of the resource that supports authorization to perform the action. It indicates if the action supports resource-level permission. The specified resource must be compatible with the action. Otherwise, the policy will be ineffective.

    • For APIs with resource-level permissions, required resource types are marked with an asterisk (*). Specify the corresponding Alibaba Cloud Resource Name (ARN) in the Resource element of the policy.

    • For APIs without resource-level permissions, it is shown as All Resources. Use an asterisk (*) in the Resource element of the policy.

  • Condition key: The condition keys defined by the service. The key allows for granular control, applying to either actions alone or actions associated with specific resources. In addition to service-specific condition keys, Alibaba Cloud provides a set of common condition keys applicable across all RAM-supported services.

  • Dependent action: The dependent actions required to run the action. To complete the action, the RAM user or the RAM role must have the permissions to perform all dependent actions.

Action

Access level

Resource type

Condition key

Dependent action

imm:GetVideoModerationResult

get

*Project

acs:imm:{#regionId}:{#accountId}:project/{#ProjectName}

None None

Request parameters

Parameter

Type

Required

Description

Example

ProjectName

string

Yes

The project name.

test-project

TaskType

string

Yes

The task type.

VideoModeration

TaskId

string

Yes

The task ID.

VideoModeration-d0f0df1d-531d-4ab4-b353-e7f475******

Response elements

Element

Type

Description

Example

object

The video moderation result.

RequestId

string

The request ID.

VideoModeration-d0f0df1d-531d-4ab4-b353-e7f475******

ProjectName

string

The project name.

test-project

EventId

string

The event ID.

05C-1XBQvsG2Tn5kBx2dUWo43******

Status

string

The task status. Valid values:

  • Running: The task is running.

  • Succeeded: The task succeeded.

  • Failed: The task failed.

Succeeded

Code

string

The task error code.

ResourceNotFound

Message

string

The task error message.

The specified resource TaskId is not found.

StartTime

string

The time when the task started. The value is a UTC timestamp in ISO 8601 format with millisecond precision.

2023-04-03T10:20:41.432Z

EndTime

string

The time when the task ended. The value is a UTC timestamp in ISO 8601 format with millisecond precision.

2023-04-03T10:20:56.87Z

UserData

string

The custom user data.

{ "id": "test-id", "name": "test-name" }

TaskType

string

The task type.

VideoModeration

TaskId

string

The task ID.

VideoModeration-d0f0df1d-531d-4ab4-b353-e7f4750******

ModerationResult

object

The content moderation details.

URI

string

The file URI. The storage address of the OSS file. The address follows the format oss://${bucketname}/${objectname}, where bucketname is the name of an OSS bucket in the same region as the current project, and objectname is the file path.

oss://test-bucket/test-object

Suggestion

string

The moderation result suggestion. Valid values:

  • block: Violation detected.

  • review: Suspected violation.

  • pass: Passed.

block

Categories

array

The category list.

string

The category information.

porn

Frames

object

The frame-related information for video and animated image moderation.

TotalCount

integer

The total number of detected frames.

12

BlockFrames

array<object>

The information about violated frames.

object

The information about violated frames.

Rate

number

The confidence level of the violation.

10

Offset

integer

The offset of the frame.

1

Label

string

The label of the violation.

{"teat":"val"}

Examples

Success response

JSON format

{
  "RequestId": "VideoModeration-d0f0df1d-531d-4ab4-b353-e7f475******",
  "ProjectName": "test-project",
  "EventId": "05C-1XBQvsG2Tn5kBx2dUWo43******",
  "Status": "Succeeded",
  "Code": "ResourceNotFound",
  "Message": "The specified resource TaskId is not found.",
  "StartTime": "2023-04-03T10:20:41.432Z",
  "EndTime": "2023-04-03T10:20:56.87Z",
  "UserData": "{\n      \"id\": \"test-id\",\n      \"name\": \"test-name\"\n}",
  "TaskType": "VideoModeration",
  "TaskId": "VideoModeration-d0f0df1d-531d-4ab4-b353-e7f4750******",
  "ModerationResult": {
    "URI": "oss://test-bucket/test-object",
    "Suggestion": "block",
    "Categories": [
      "porn"
    ],
    "Frames": {
      "TotalCount": 12,
      "BlockFrames": [
        {
          "Rate": 10,
          "Offset": 1,
          "Label": "{\"teat\":\"val\"}"
        }
      ]
    }
  }
}

Error codes

See Error Codes for a complete list.

Release notes

See Release Notes for a complete list.