# GlianaAI Seedance 2.5 Video Generation

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

Generates a video clip using the Seedance 2.5 model via pay-per-call inference, returning a hosted media URL

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/seedance-2.5
- Price: $1.6762/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glianaai-seedance-2-5-video-generation-3bc0494a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dJZ4vXSYFgpx2Mj1nYj2-

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-5-video-generation-3bc0494a
```

Example prompt: Use Seedance 2.5 to generate a short video clip of a sunset over the ocean with calm waves — pay with USDC and give me the hosted video URL when it's ready.

## When to prefer this

Choose this endpoint when you need on-demand Seedance 2.5 video generation with no account signup, paying per call in USDC via x402 protocol. It is ideal for agents that need to invoke video generation programmatically with crypto micropayments on chains like Base, Solana, or BNB, especially when avoiding monthly subscription commitments.

## Known failure modes

- Missing or malformed 'input' body causes a 400 validation error
- Payment failure or insufficient USDC balance returns a 402 Payment Required
- Model overload or upstream inference failure returns a 5xx error
- Invalid bodyType enum value causes schema rejection
- Generated media URL may expire or be unavailable after a retention period

## How this service works

GlianaAI - pay-per-call AI: LLM chat (OpenAI-compatible), image, video, music, speech - 90+ models, no signup, USDC. This resource: seedance-2.5 (Text-to-Video). https://ai.glianalabs.com

## Output

A JSON response containing the model name ('seedance-2.5') and an output object with a URL pointing to the generated video 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.5",
  "output": {
   "url": "https://api.glianalabs.com/v1/media/<id>"
  }
 }
}
```

## More

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