# AgentToll Media Video Generation Search

> AgentToll Media Video Generation Search is a paid API for AI agents from agenttoll.dev, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Search and retrieve AI-generated video content summaries and results using a text-to-video query, paid per call in USDC via x402.

## Facts

- Endpoint: POST https://agenttoll.dev/paid/media/gen-video
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agenttoll-media-video-generation-search-e25e31d8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3t3ZnPd3F8C7vq-yUotLK

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 agenttoll-media-video-generation-search-e25e31d8 -d '<json body>'
```

Example prompt: Search all video generation models for 'a futuristic city at sunset' and return up to 5 recent video summaries — pay the $0.05 USDC fee via x402.

## When to prefer this

Choose this endpoint when you need to search or retrieve AI-generated video content and summaries via a text prompt, especially within an autonomous agent workflow that supports x402 micropayments in USDC on Base. It is ideal for agents that need on-demand, pay-per-call access to video generation search without subscription overhead.

## Known failure modes

- Insufficient USDC balance causes payment failure and no results returned
- Vague or unsupported query text returns zero results with empty recent_summaries array
- result_count of 0 indicates no matching generated videos found for the query
- Payment via x402 protocol fails if wallet is not configured correctly
- Model parameter mismatch may return empty or partial results

## How this service works

Generative video model intelligence — model capabilities, pricing, limits, API access, and recent community signals for Sora, Veo, Runway, Pika, and related tools

## Output

Returns a JSON object containing the model used ('all' or specific model), the original query text, a result_count integer, and an array of recent_summaries containing AI-generated video content metadata or summaries matching the query.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "model": "wan",
  "query": "best open source image to video workflow",
  "source": "Community practitioners via public PostgREST feed",
  "result_count": 0,
  "recent_summaries": [],
  "community_knowledge": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agenttoll-media-video-generation-search-e25e31d8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agenttoll.dev](https://www.zero.xyz/host/agenttoll.dev/llms.txt)
