Influencer Campaigns API
Manage influencer marketing campaigns — assemble a roster, brief them, track posts, and report performance.
Endpoints
| Method | Path | Description |
|---|---|---|
| GET | `/api/v1/influencer-campaigns` | List |
| POST | `/api/v1/influencer-campaigns` | Create |
| GET | `/api/v1/influencer-campaigns/:id` | Get |
| PUT | `/api/v1/influencer-campaigns/:id` | Update |
| POST | `/api/v1/influencer-campaigns/:id/add-kols` | Add creators |
| PUT | `/api/v1/influencer-campaigns/:id/kols/:kolId/status` | Update creator status |
Analytics
| Method | Path | Description |
|---|---|---|
| GET | `/api/v1/influencer-campaigns/:id/analytics` | Performance + AI insights |
Every response uses the standard envelope:
{
"success": true,
"data": { /* resource or array */ },
"meta": { "total": 100, "cursor": "...", "hasMore": true },
"error": { "code": "ERROR_CODE", "message": "Human readable" }
}error is omitted on success; meta is omitted when not paginating.
Rate Limits
Subject to the standard 200 req/min/tenant authenticated limit. See [Rate Limits](/docs/api-reference/rate-limits) for full details and the per-endpoint overrides.