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

# VideoGenerationResponse

## Example Usage

```typescript theme={null}
import { VideoGenerationResponse } from "@openrouter/sdk/models";

let value: VideoGenerationResponse = {
  id: "job-abc123",
  pollingUrl: "/api/v1/videos/job-abc123",
  status: "pending",
};
```

## Fields

| Field          | Type                                                                                | Required             | Description                                                                                             | Example                                            |
| -------------- | ----------------------------------------------------------------------------------- | -------------------- | ------------------------------------------------------------------------------------------------------- | -------------------------------------------------- |
| `error`        | *string*                                                                            | :heavy\_minus\_sign: | N/A                                                                                                     |                                                    |
| `generationId` | *string*                                                                            | :heavy\_minus\_sign: | The generation ID associated with this video generation job. Available once the job has been processed. |                                                    |
| `id`           | *string*                                                                            | :heavy\_check\_mark: | N/A                                                                                                     |                                                    |
| `pollingUrl`   | *string*                                                                            | :heavy\_check\_mark: | N/A                                                                                                     |                                                    |
| `status`       | [models.VideoGenerationResponseStatus](../models/videogenerationresponsestatus.mdx) | :heavy\_check\_mark: | N/A                                                                                                     |                                                    |
| `unsignedUrls` | *string*\[]                                                                         | :heavy\_minus\_sign: | N/A                                                                                                     |                                                    |
| `usage`        | [models.VideoGenerationUsage](../models/videogenerationusage.mdx)                   | :heavy\_minus\_sign: | Usage and cost information for the video generation. Available once the job has completed.              | \{<br />"cost": 0.5,<br />"is\_byok": false<br />} |
