# Iris AI Multi-Channel Outreach Campaign

> Iris AI Multi-Channel Outreach Campaign is a paid API for AI agents from api.iris-ai.dev, paid per call via x402, $2.25/call, status unknown (last checked 2026-09-13).

Creates an automated multi-channel outreach campaign by discovering contacts, generating AI-personalized messages, and delivering them via email, Twitter DM, and Instagram DM in a single credit.

## Facts

- Endpoint: POST https://api.iris-ai.dev/campaigns
- Price: $2.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-iris-ai-dev-e1b5262f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Q18uCE7goWHudvDOpAINW

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 api-iris-ai-dev-e1b5262f -d '<json body>'
```

Example prompt: Launch an outreach campaign targeting indie SaaS founders — find their contact info, write personalized messages about my new analytics tool Lumentrack, and send them across email, Twitter DM, and Instagram DM.

## When to prefer this

Choose this endpoint when you need a fully automated, end-to-end outreach campaign that combines contact discovery, AI message personalization, and multi-channel delivery (email + Twitter DM + Instagram DM) in a single API call. Prefer it over manual messaging tools or single-channel email APIs when you want to maximize reach across social and email simultaneously without orchestrating each channel separately.

## Known failure modes

- Contact discovery fails if target criteria are too vague or niche — returns empty or insufficient contact list
- Twitter or Instagram DM delivery blocked if target accounts have restricted DMs — partial delivery with channel-level status
- Payment fails if insufficient USDC balance for the $2.25 per-campaign credit
- Rate limiting or platform restrictions may prevent bulk social DM delivery
- AI message generation may fail if campaign intent or context is insufficiently specified

## How this service works

Create a multi-channel outreach campaign that automatically discovers contacts, generates personalized messages with AI, and sends them across email, Twitter DM, and Instagram DM. One credit (~$2.25) covers contact discovery, message drafting, and delivery for one campaign.

## Output

The agent receives confirmation of campaign execution including discovered contacts, the AI-generated personalized messages sent, and delivery status across email, Twitter DM, and Instagram DM channels, all for one credit (~$2.25 USDC).

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {
      "name": {
       "type": "string"
      },
      "product_url": {
       "type": "string"
      },
      "product_name": {
       "type": "string"
      },
      "contact_count": {
       "type": "integer"
      },
      "objective_type": {
       "type": "string"
      },
      "target_profile": {
       "type": "string"
      },
      "product_description": {
       "type": "string"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "id": {
       "type": "string"
      },
      "name": {
       "type": "string"
      },
      "status": {
       "type": "string"
      },
      "created_at": {
       "type": "string"
      },
      "objective_type": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "id": "uuid",
  "name": "Outreach to local DJ venues",
  "status": "draft",
  "created_at": "2026-04-27T12:00:00Z",
  "objective_type": "venue_dj"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-iris-ai-dev-e1b5262f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.iris-ai.dev](https://www.zero.xyz/host/api.iris-ai.dev/llms.txt)
