# Verifik AI SMS Communication

> Verifik AI SMS Communication is a paid API for AI agents from ai.verifik.co, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-13).

Sends an SMS message to a specified phone number in a given country via Verifik's communication API.

## Facts

- Endpoint: POST https://ai.verifik.co/api/communication/sms
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Success rate: 0% of calls made through Zero
- Activations on Zero: 2
- Tags: x402
- Canonical page: https://www.zero.xyz/c/verifik-ai-sms-communication-8534c522
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_e-O_zBr1ehHdpA1Xt7hGc

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 verifik-ai-sms-communication-8534c522 -d '<json body>'
```

Example prompt: Send an SMS to +57 3001234567 in Colombia (country code CO) with the message: 'Your verification code is 482910.'

## When to prefer this

Use this endpoint when you need to programmatically send SMS messages as part of an automated agent workflow, especially within LATAM-region KYC/KYB pipelines, OTP delivery, or user notification flows and you want pay-per-use pricing with no subscription commitment.

## Known failure modes

- Invalid or unrecognized phone number format returns an error response
- Unsupported or incorrect country code results in routing failure
- Empty or missing message body causes a validation error
- Insufficient USDC balance or failed x402 payment prevents the request from being processed
- Phone number unreachable or carrier rejection results in delivery failure

## How this service works

Verifik AI — x402 KYC &amp; KYB for autonomous agents, with deep LATAM coverage: national IDs, companies, vehicles, sanctions, and regional registries. Pay per validation, no subscription lock-in.

## Output

A JSON object from Verifik containing a data field with delivery details and a signature field for response authenticity verification.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "phone",
  "message",
  "countryCode"
 ],
 "properties": {
  "phone": {
   "type": "string",
   "description": "Parameter: phone"
  },
  "message": {
   "type": "string",
   "description": "Parameter: message"
  },
  "countryCode": {
   "type": "string",
   "description": "Parameter: countryCode"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "description": "Verifik API JSON response (typically data and signature).",
 "additionalProperties": true
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/verifik-ai-sms-communication-8534c522/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ai.verifik.co](https://www.zero.xyz/host/ai.verifik.co/llms.txt)
