# TelAgent — Telegram Message Delivery for AI Agents

> TelAgent — Telegram Message Delivery for AI Agents is a paid API for AI agents from agentcash-proxy.onrender.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Sends a Telegram message on behalf of an AI agent via pay-per-use x402 micropayment, with no API keys or account setup required.

## Facts

- Endpoint: POST https://agentcash-proxy.onrender.com/api/v1/telegram/send
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/telagent-telegram-message-delivery-for-ai-agents-f43d6442
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rW5e2j2AUEacGoFJ_2WSB

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 telagent-telegram-message-delivery-for-ai-agents-f43d6442 -d '<json body>'
```

Example prompt: Send a Telegram message to chat ID 987654321 saying 'Your order has shipped and will arrive tomorrow!' — use the pay-per-message Telegram delivery so I don't need to set up a bot.

## When to prefer this

Choose this endpoint when an AI agent needs to send Telegram messages without managing a Telegram bot account or API keys, and when pay-per-message micropayment billing via x402/USDC is acceptable or preferred. Ideal for autonomous agents that send infrequent notifications and want zero-setup messaging infrastructure.

## Known failure modes

- Invalid or inaccessible chat ID returns a failed delivery status
- Insufficient USDC payment causes payment_verified to be false and message not sent
- Telegram API downtime may cause delivery failure
- Message content violating Telegram policies may be rejected
- Network timeout from the proxy service on Render may cause intermittent failures

## How this service works

Pay-per-message Telegram delivery for AI agents. No accounts, no API keys — just x402.

## Output

A JSON object confirming the delivery with fields: success (boolean), message_id (the Telegram message ID assigned to the sent message), payment_verified (boolean confirming the 0.01 USDC micropayment was accepted), and cost ('0.01 USDC').

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "to": {
   "type": "string",
   "minLength": 1,
   "description": "Telegram chat ID, numeric user ID, or @username (must have /start'd the bot first)"
  },
  "message": {
   "type": "string",
   "minLength": 1,
   "description": "Message text"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "cost": "0.01 USDC",
  "success": true,
  "message_id": 123456,
  "payment_verified": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/telagent-telegram-message-delivery-for-ai-agents-f43d6442/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentcash-proxy.onrender.com](https://www.zero.xyz/host/agentcash-proxy.onrender.com/llms.txt)
