Skip to main content
GET
/
v1beta
/
{operation_name}
Query tasks (Omni and Veo formats)
curl --request GET \
  --url https://api.aiid.edu.kg/v1beta/{operation_name} \
  --header 'Authorization: Bearer <token>'
{
  "name": "models/veo3.1-fast/operations/abc123",
  "done": true,
  "response": {
    "generatedVideos": [
      {
        "video": {
          "uri": "https://example.com/generated-video.mp4"
        }
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Use Bearer Token authentication. Format: Authorization: Bearer sk-xxxxxx

Path Parameters

operation_name
string
required

The complete operation name returned by the creation interface. When calling, / must be URL-encoded.

Example:

"models/veo3.1-fast/operations/abc123"

Response

200 - application/json

Reserved query response structure. This is currently for protocol specification only and does not support actual calls.

name
string
required

The operation name, which is consistent with the name returned by the creation API.

done
boolean
required

Indicates whether the task is completed.

response
object

Result object upon successful completion.

error
object

Error message returned when the request fails.