# CoinopAI Agent Automation Prompt Search

> CoinopAI Agent Automation Prompt Search 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).

Search a library of 819 agent automation prompts by keyword, returning matching prompts with metadata

## Facts

- Endpoint: GET https://x402.coinopai.com/api/search
- 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-82e5e63f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OAsR2JhcBpacdWdP4kA6u

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-82e5e63f
```

Example prompt: Search the CoinopAI automation prompt library for prompts related to 'email outreach' and show me the top 10 results.

## When to prefer this

Use this endpoint when you need to discover pre-built agent automation prompts from a curated library of 819 entries by keyword. Ideal when an agent needs to find relevant automation workflow templates for a specific platform, task, or category without browsing manually.

## Known failure modes

- Missing or empty query parameter returns empty or default results
- Payment not included or insufficient USDC causes 402 Payment Required response
- Invalid limit/offset values may return an error or empty results
- Network timeout if the service is temporarily unavailable

## How this service works

Returns matching workflows from 819 agent automation prompts with slug, title, description, and complexity — use it to find a ready-made automation instead of building one from scratch. Search by keyword to locate a Slack-to-Notion sync, an email-to-CRM pipeline, a dev-tool integration, or any pre-built workflow an agent can run directly, ranked by relevance with pagination via limit and offset.

## Output

Returns a JSON object with a total count of matching prompts and a results array of agent automation prompt entries matching the keyword query, supporting pagination via limit and offset.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "q": "artificial intelligence",
   "limit": 10,
   "offset": 0
  }
 }
}
```

## 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"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "q": {
       "type": "string"
      },
      "limit": {
       "type": "number"
      },
      "offset": {
       "type": "number"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "total": {
       "type": "number"
      },
      "results": {
       "type": "array"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "total": 1,
  "results": [
   {
    "slug": "slack-to-notion",
    "title": "Slack to Notion",
    "complexity": "low",
    "description": "Auto-save messages"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-coinopai-com-82e5e63f/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)
