# GlianaAI Seedance 2.0 Mini Video Generation

> GlianaAI Seedance 2.0 Mini Video Generation is a paid API for AI agents from api.glianalabs.com, paid per call via x402, $0.7975/call, status unknown (last checked 2026-09-14).

Generates a short video using the Seedance 2.0 Mini model via a pay-per-call x402 endpoint, returning a media URL, settled in USDC with no API key required.

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/seedance-2.0-mini
- Price: $0.7975/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glianaai-seedance-2-0-mini-video-generation-13d40318
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ccpwyoa_58uP7qNkifQle

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-seedance-2-0-mini-video-generation-13d40318
```

Example prompt: Use GlianaAI's Seedance 2.0 Mini to generate a short video of a sunset over the ocean with gentle waves — pay the $0.7975 USDC fee automatically and give me the video URL when it's ready.

## When to prefer this

Choose this endpoint when you need AI-generated video from the Seedance 2.0 Mini model specifically, want no-signup pay-per-call billing in USDC via x402 on Base/Solana/Tempo, and your agent can handle micropayment settlement autonomously. Ideal for agentic workflows that need occasional short video generation without committing to a subscription or API key management.

## Known failure modes

- Insufficient USDC balance or failed x402 payment — payment not settled, request rejected
- Invalid or missing required input fields (type, method, bodyType, body) — 400 bad request
- Model unavailable or overloaded — 503 or timeout
- Malformed GET request body — schema validation error
- Media generation failure — job may return an error URL or empty output

## How this service works

One endpoint for 90+ generative AI models, live market data, SEC filings and identity APIs — image, video, music, speech, LLM chat, crypto and FX rates, DEX liquidity, gas, US company fundamentals and insider trades, document OCR and face matching. Pay per request in USDC on Tempo, Base, Solana, Algorand or BNB Chain with no signup, or top up a prepaid balance in rupiah.

## Output

A JSON object containing the model name ('seedance-2.0-mini') and an output object with a URL pointing to the generated video media file hosted at api.glianalabs.com/v1/media/<id>.

## 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": "seedance-2.0-mini",
  "output": {
   "url": "https://api.glianalabs.com/v1/media/<id>"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glianaai-seedance-2-0-mini-video-generation-13d40318/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)
