# AutoYT Launch Planner

> AutoYT Launch Planner is a paid API for AI agents from cognilode.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Analyzes a YouTube video topic and production parameters to decide whether to produce and generate a launch manifest

## Facts

- Endpoint: POST https://cognilode.com/api/x402/autoyt-launch
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/autoyt-launch-planner-f1b04f49
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LCDKYdhmJ9CEfWg8TGnom

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 autoyt-launch-planner-f1b04f49 -d '<json body>'
```

Example prompt: Can you use AutoYT to plan a YouTube launch for a 10-minute educational video about personal finance for beginners, with all-original content, posting twice a week, expecting around 5000 views per release at $2 RPM, with a production budget of $50?

## When to prefer this

Use this endpoint when you need an automated go/no-go production decision and a launch manifest for a YouTube video or series before committing resources. It is best suited for agents orchestrating video content pipelines that need to evaluate topic viability, production cost, expected revenue, and publishing cadence in a single call before triggering downstream production steps.

## Known failure modes

- Missing required fields 'topic' or 'rightsStatus' causes validation error
- targetSeconds below minimum of 15 returns schema validation failure
- cadencePerWeek below 1 is rejected
- Invalid bodyType or HTTP method enum value causes routing failure
- Malformed input object structure returns 400-level error

## How this service works

Cognilode ships production engineering, SignalCrew production AgentOps, Forge browser software creation, AutoYT video automation, technical products, cybersecurity work, and Care Network provider access.

## Output

Returns a JSON object with an 'ok' boolean, a 'result' containing a 'decision' field (e.g. 'produce') and a 'manifest' object (including whether YouTube OAuth is required), and the service name 'autoyt-launch-planner'.

## 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": {
     "type": "object",
     "required": [
      "topic",
      "rightsStatus"
     ],
     "properties": {
      "goal": {
       "type": "string"
      },
      "topic": {
       "type": "string"
      },
      "audience": {
       "type": "string"
      },
      "sourceType": {
       "type": "string"
      },
      "destinations": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "rightsStatus": {
       "type": "string"
      },
      "targetSeconds": {
       "type": "number",
       "minimum": 15
      },
      "cadencePerWeek": {
       "type": "number",
       "minimum": 1
      },
      "productionCostUsd": {
       "type": "number",
       "minimum": 0
      },
      "expectedViewsPerRelease": {
       "type": "number",
       "minimum": 0
      },
      "expectedRevenuePerThousandViews": {
       "type": "number",
       "minimum": 0
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "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": {
  "ok": true,
  "result": {
   "decision": "produce",
   "manifest": {
    "requiresYouTubeOAuth": false
   }
  },
  "service": "autoyt-launch-planner"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/autoyt-launch-planner-f1b04f49/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cognilode.com](https://www.zero.xyz/host/cognilode.com/llms.txt)
