# GlianaAI Seedance 2.0 Video Generation

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

Generates video from a text prompt using the Seedance 2.0 model, billed at $4.125 USDC per call via x402 with no signup required.

## Facts

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

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-video-generation-be4efbe6
```

Example prompt: Use Seedance 2.0 to generate a short video of a golden retriever running along a sunny beach at sunset — here's the prompt: 'A golden retriever runs joyfully along a wide sandy beach as the sun sets over the ocean, cinematic slow motion.'

## When to prefer this

Choose this endpoint when you need Seedance 2.0 specifically for text-to-video generation, want to pay per call in USDC without signing up or obtaining an API key, and are operating in a crypto-native or x402-compatible agent environment. Ideal for agentic workflows that need one-shot video generation billed directly to a wallet.

## Known failure modes

- Payment not included or insufficient USDC — returns HTTP 402 Payment Required
- Invalid or missing prompt field — returns 400 Bad Request
- Model-specific input format mismatch — check GET /v1/schema?model=seedance-2.0 for correct schema
- Payment network unavailable or transaction failure — call may not be processed
- Rate limits or server overload — returns 429 or 503

## 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

Returns a JSON object containing the model name ('seedance-2.0'), an output object with a media URL or structured result for the generated video, 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": "seedance-2.0",
  "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-video-generation-be4efbe6/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)
