# AgentUtility Movie Info

> AgentUtility Movie Info is a paid API for AI agents from x402.agentutility.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-22).

Looks up movie and TV show metadata including title, release year, rating, overview, poster, and streaming provider availability via TMDB.

## Facts

- Endpoint: POST https://x402.agentutility.ai/movie-info
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-22
- Success rate: 0% of calls made through Zero
- Rating: 1.3 / 5 from 1 review
- Activations on Zero: 1
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentutility-movie-info-2e81dbcb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TJg9hF-7QsH-PBpbyHnjB

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 agentutility-movie-info-2e81dbcb -d '<json body>'
```

Example prompt: Can you look up the movie info for Inception — I need the release year, rating, overview, and which streaming platforms it's available on?

## When to prefer this

Choose this endpoint when an agent needs quick, structured movie or TV show metadata (rating, year, overview, poster, streaming links) in a single call with USDC micropayment via x402. Prefer over raw TMDB API calls when you want a pre-packaged, agent-friendly response with a compact search slug and no API key management.

## Known failure modes

- Title not found in TMDB — returns empty or error response
- Ambiguous title matches multiple results — may return wrong entry without additional disambiguation
- Streaming provider data unavailable for certain regions or titles
- Network timeout or service unavailability
- Payment failure via x402 protocol — call not executed

## How this service works

Looks up movie and TV metadata: title, release year, rating, overview, poster, and optional streaming providers. Same TMDB-backed response as movie-database with a compact search slug for agents. Use it as a movie info API, film metadata lookup, or TV metadata lookup.

## Output

Returns structured movie or TV metadata including title, release year, audience rating, plot overview, poster image URL, and optionally a list of streaming providers where the title is available — all sourced from TMDB with a compact search slug optimized for agent use.

## 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": {
     "required": [
      "query"
     ],
     "properties": {
      "type": {
       "enum": [
        "movie",
        "tv",
        "both"
       ],
       "type": "string",
       "description": "Restrict results to movie, tv, or both. Default both."
      },
      "year": {
       "type": "number",
       "description": "Optional release year filter."
      },
      "limit": {
       "type": "number",
       "description": "Max results to return, 1-10. Default 5."
      },
      "query": {
       "type": "string",
       "description": "Movie or TV title to search, e.g. 'Dune Part Two'."
      },
      "region": {
       "type": "string",
       "description": "2-letter provider region for optional provider summary. Default US."
      },
      "include_providers": {
       "type": "boolean",
       "description": "If true, include watch-provider summary for the top match."
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "query": {
       "type": "string"
      },
      "returned": {
       "type": "integer"
      },
      "top_match": {
       "type": "object",
       "properties": {
        "type": {
         "type": "string"
        },
        "title": {
         "type": "string"
        },
        "tmdb_id": {
         "type": "integer"
        },
        "release_year": {
         "type": "integer"
        },
        "vote_average": {
         "type": "number"
        }
       }
      },
      "attribution": {
       "type": "string"
      },
      "provider_summary_for_top_match": {
       "type": "object",
       "properties": {
        "rent": {
         "type": "array",
         "items": {
          "type": "object",
          "properties": {
           "name": {
            "type": "string"
           }
       
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "query": "Dune Part Two",
  "returned": 1,
  "top_match": {
   "type": "movie",
   "title": "Dune: Part Two",
   "tmdb_id": 693134,
   "release_year": 2024,
   "vote_average": 8.1
  },
  "attribution": "Data: TMDB (https://www.themoviedb.org). Watch-provider data from JustWatch where included.",
  "provider_summary_for_top_match": {
   "rent": [
    {
     "name": "Amazon Video"
    }
   ],
   "region": "US",
   "flatrate": [
    {
     "name": "Max"
    }
   ]
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentutility-movie-info-2e81dbcb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.agentutility.ai](https://www.zero.xyz/host/x402.agentutility.ai/llms.txt)
