# CoinopAI Supported Platforms List

> CoinopAI Supported Platforms List is a paid API for AI agents from x402.coinopai.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns a complete list of all 115 automation platforms supported in the CoinopAI agent automation library

## Facts

- Endpoint: GET https://x402.coinopai.com/api/services
- Price: $0.005/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-17c7e9bd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jOV6B9SXKAkkCY7EKn68a

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-17c7e9bd
```

Example prompt: Show me all the platforms and services available in the coinopai automation library — I want to see the full list of the 115 supported integrations.

## When to prefer this

Use this endpoint when an agent needs to enumerate or browse the full catalog of supported automation platforms before searching for specific workflows or prompts. Prefer this over the categories endpoint when you need platform-level granularity rather than category-level groupings.

## Known failure modes

- Payment not provided or insufficient — returns 402 Payment Required
- Network timeout — no response returned
- API server error — 500 Internal Server Error

## How this service works

Returns purchasable service cards for all 18 endpoints with price, best_for guidance, and response field highlights — use it to pick the right endpoint before spending on the wrong one.

## Output

Returns an array of all 115 automation platforms supported by the CoinopAI library, including platform names and related metadata for each service.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {}
 }
}
```

## 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": {
      "category": {
       "type": "string",
       "description": "Filter by category slug: market_intelligence, workflows, media_generation, infrastructure"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "total": {
       "type": "integer"
      },
      "services": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "name": {
          "type": "string"
         },
         "price": {
          "type": "string"
         },
         "method": {
          "type": "string"
         },
         "best_for": {
          "type": "string"
         },
         "category": {
          "type": "string"
         },
         "endpoint": {
          "type": "string"
         },
         "description": {
          "type": "string"
         },
         "compliance_mode": {
          "type": "string"
         },
         "response_highlights": {
          "type": "array"
         }
        }
       }
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "total": 18,
  "services": [
   {
    "name": "Kronos Signals",
    "price": "$0.05",
    "method": "GET",
    "best_for": "Real-time market snapshot before any decision logic.",
    "category": "market_intelligence",
    "endpoint": "/api/kronos/signals",
    "description": "Latest market context with per-symbol scores, regime, and data freshness.",
    "compliance_mode": "market_intelligence_only",
    "response_highlights": [
     "signals",
     "top_k",
     "score_details"
    ]
   }
  ]
 }
}
```

## More

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