# GlianaAI Grok Imagine Video 1.5 Preview — Pay-Per-Call Video Generation

> GlianaAI Grok Imagine Video 1.5 Preview — Pay-Per-Call Video Generation is a paid API for AI agents from api.glianalabs.com, paid per call via x402, $1.015/call, status unknown (last checked 2026-09-13).

Generates video from a text prompt using the Grok Imagine Video 1.5 Preview model, billed at $1.05 USDC per call with no API key required.

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/grok-imagine-video-1.5-preview
- Price: $1.015/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glianaai-grok-imagine-video-1-5-preview-pay-per-call-video-generation-aac227e2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_j393jnHWDSaATTSi1OMN1

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability glianaai-grok-imagine-video-1-5-preview-pay-per-call-video-generation-aac227e2
```

Example prompt: Use GlianaAI to generate a short video of a futuristic city at night with neon lights reflecting on rain-soaked streets — pay with USDC per call, no signup needed.

## When to prefer this

Choose this endpoint when you need text-to-video generation using the Grok Imagine Video 1.5 Preview model specifically, want zero-signup pay-per-call access billed in USDC via x402, and are building an agent that needs to pay programmatically without managing API keys or subscriptions.

## Known failure modes

- Insufficient USDC balance — payment rejected before inference runs
- Invalid or empty prompt — model returns error or null output
- Model temporarily unavailable — 503 or timeout from upstream Grok service
- Payment protocol failure (x402/MPP) — transaction not settled, no video generated
- Prompt violates content policy — request refused with policy error

## How this service works

One endpoint for 60+ generative AI models — image, video, audio, music, speech. Your agent pays per request in USDC on Tempo, Base, or Solana. No signup, no API key, settled via MPP and x402.

## Output

Returns a JSON object containing the model name ('grok-imagine-video-1.5-preview'), an output object with the generated video URL or media result, and the amount charged in micro-USD (costMicroUsd).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "model": "grok-imagine-video-1.5-preview",
  "output": {
   "url": "https://api.glianalabs.com/v1/media/<id>"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glianaai-grok-imagine-video-1-5-preview-pay-per-call-video-generation-aac227e2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.glianalabs.com](https://www.zero.xyz/host/api.glianalabs.com/llms.txt)
