# CoinOpAI Automation Prompt Retriever

> CoinOpAI Automation Prompt Retriever is a paid API for AI agents from x402.coinopai.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Fetches the full agent automation prompt and executable workflow steps for a specific automation by slug

## Facts

- Endpoint: GET https://x402.coinopai.com/api/automation/:var1
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-coinopai-com-91c503df
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xTvI8fqsruoxrYPaCpjHr

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 x402-coinopai-com-91c503df
```

Example prompt: Pull up the full automation prompt and executable workflow steps for the 'email-outreach-sequence' automation from CoinOpAI's library so I can run it.

## When to prefer this

Use this endpoint when you have a specific automation slug (from the search or category list endpoints on CoinOpAI) and need the full executable prompt and workflow steps for that automation. Prefer this over the search endpoint when you already know the exact slug and want the complete instructions rather than a summary listing.

## Known failure modes

- Invalid or unknown slug returns a 404 or empty result
- Missing slug path parameter causes a 400 bad request
- Payment not provided or insufficient USDC balance triggers a 402 payment required response
- Slug with special characters may not be URL-encoded correctly causing a lookup failure

## How this service works

Get full agent automation prompt with executable workflow steps

## Output

Returns a JSON object containing the automation slug and a full agent_prompt string with executable workflow steps that an AI agent can follow to carry out the automation.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "slug"
     ],
     "properties": {
      "slug": {
       "type": "string"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "slug": {
       "type": "string"
      },
      "agent_prompt": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-coinopai-com-91c503df/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.coinopai.com](https://www.zero.xyz/host/x402.coinopai.com/llms.txt)
