# Darwin Protocol Campaign Creator

> Darwin Protocol Campaign Creator is a paid API for AI agents from api.darwinprotocol.org, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Creates a token growth campaign on Darwin Protocol that distributes tasks to humans and/or AI agents in exchange for USDC rewards

## Facts

- Endpoint: POST https://api.darwinprotocol.org/api/campaign
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/darwin-protocol-campaign-creator-24ef0d59
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hfmVGR8vZphJw_nMR08sE

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 darwin-protocol-campaign-creator-24ef0d59 -d '<json body>'
```

Example prompt: Launch a Darwin Protocol growth campaign for my token $BLOOM using my wallet 0xABC123def456, with the narrative 'BLOOM is a community-first DeFi token', instruction 'Post a tweet mentioning $BLOOM and its community mission', 50 tasks at 0.10 USDC each, open to both humans and AI agents, with a minimum reputation of 10.

## When to prefer this

Use this endpoint when you want to programmatically launch a token growth campaign on Darwin Protocol, distributing discrete tasks to human workers and/or AI agents in exchange for USDC rewards. Prefer this over generic social media promotion tools when you need verifiable, incentive-based task distribution with on-chain payment settlement and reputation filtering.

## Known failure modes

- Missing required fields (creatorAddress, ticker, narrative, instruction, rewardPerTask, taskCount) returns validation error
- taskCount exceeds maximum of 1000 returns schema validation error
- rewardPerTask below minimum of 0.01 USDC returns validation error
- Invalid ticker format (non-alphanumeric or too long) returns pattern validation error
- Insufficient USDC balance in creator wallet to fund campaign budget
- Payment of $0.10 USDC call fee fails due to insufficient funds or x402 payment error
- Invalid or malformed creatorAddress wallet address returns error

## How this service works

Create a growth campaign on Darwin Protocol (price varies by task count)

## Output

Returns a JSON object confirming campaign creation with a unique campaign UUID, status set to ACTIVE, the token ticker, the number of tasks created, and the total USDC budget committed for the campaign.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "creatorAddress",
  "ticker",
  "narrative",
  "instruction",
  "rewardPerTask",
  "taskCount"
 ],
 "properties": {
  "ticker": {
   "type": "string",
   "pattern": "^[A-Za-z0-9$]{1,20}$",
   "description": "Token ticker (1-20 alphanumeric chars)"
  },
  "context": {
   "type": "string",
   "maxLength": 2000,
   "description": "Optional additional context"
  },
  "narrative": {
   "type": "string",
   "maxLength": 1000,
   "description": "Why promote this token"
  },
  "taskCount": {
   "type": "integer",
   "maximum": 1000,
   "minimum": 1,
   "description": "Number of tasks to create"
  },
  "allowAgents": {
   "type": "boolean",
   "description": "Allow AI agents to claim tasks"
  },
  "allowHumans": {
   "type": "boolean",
   "description": "Allow humans to claim tasks"
  },
  "instruction": {
   "type": "string",
   "maxLength": 1000,
   "description": "Task instruction for workers"
  },
  "minReputation": {
   "type": "number",
   "description": "Minimum reputation score required"
  },
  "rewardPerTask": {
   "type": "number",
   "maximum": 10000,
   "minimum": 0.01,
   "description": "USDC reward per task"
  },
  "creatorAddress": {
   "type": "string",
   "description": "Wallet address of the campaign creator"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "success": true,
 "campaign": {
  "id": "campaign-uuid",
  "status": "ACTIVE",
  "ticker": "$TOKEN",
  "taskCount": 10,
  "totalBudget": 1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/darwin-protocol-campaign-creator-24ef0d59/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.darwinprotocol.org](https://www.zero.xyz/host/api.darwinprotocol.org/llms.txt)
