OpenapiCampaign
Returns the org's campaigns, newest first, optionally narrowed to one status.
Returns the org's campaigns, newest first, optionally narrowed to one status.
GET /v1/campaign
| Address | https://api.hanzo.ai/v1/campaign |
| Method | GET |
| Operation | get_campaign |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Returns the org's campaigns, newest first, optionally narrowed to one status.
A campaign is the top-level go-to-market object: a value that SPANS channels (paid, organic, email) and fans out to the executor for each. The listing is org-scoped server-side, so one org can never see another's campaigns.
Request
2 fields.
| Field | In | Type | Required | Description |
|---|---|---|---|---|
status | query | string | — | Status keeps only campaigns in that state: draft, live, paused or failed. |
limit | query | integer | — | Limit bounds the page. |
Response
| Status | Body | Meaning |
|---|---|---|
200 | campaignPage | ok |
200 body — 17 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
data | body | campaignRecord[] | — | Data are the campaigns on this page. |
data[].audience | body | string | — | Audience is an opaque reference to the segment this campaign targets. |
data[].budget | body | integer | — | Budget is the campaign's total budget in CENTS, handed to each executor as the budget for its channel. |
data[].channels | body | ChannelSpec[] | — | Channels are the fan-out targets, at most one per kind and at most 12, each carrying its own post-launch state. |
data[].channels[].account | body | string | — | Account is the provider account this channel runs under: an ad-account, a page or a mailing-list id. |
data[].channels[].detail | body | string | — | Detail is the last outcome in one secret-free line — the failure reason, or what the executor reported. |
data[].channels[].externalId | body | string | — | ExternalID is the provider-side id of the running execution, recorded by the orchestrator at launch and handed back verbatim to read spend or to pause. |
data[].channels[].kind | body | string | — | Kind is the channel and the identity a campaign holds at most one of: paid, organic or email. |
data[].channels[].platform | body | string | — | Platform is the provider within the kind — meta, google, x, instagram, or the email provider. |
data[].channels[].status | body | string | — | Status is this channel's own launch outcome, not the campaign's: pending (added, never launched), live, paused, failed (Detail says why) or unavailable (no… |
data[].content | body | string[] | — | Content is the ordered creative set, at most 32, empty entries dropped. |
data[].createdAt | body | integer | — | CreatedAt is when the campaign was created, in unix seconds. |
data[].id | body | string | — | ID is the campaign's server-minted handle — "cmp_" and 128 random bits — and the id every other campaign call is addressed by. |
data[].name | body | string | — | Name is the campaign's display name. |
data[].scheduleAt | body | integer | — | ScheduleAt is when the campaign should run, in unix seconds. 0 (absent) means launch immediately. |
data[].status | body | string | — | Status is the lifecycle state, server-owned and never accepted from a caller. |
data[].updatedAt | body | integer | — | UpdatedAt is the last write in unix seconds — an edit, a launch or a pause. |
Failure carries the platform error shape — see Errors.
Examples
hanzo campaign listimport { Configuration, CampaignApi } from 'hanzoai';
const api = new CampaignApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.getCampaign();from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import CampaignApi
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = CampaignApi(client).get_campaign()cfg := cloud.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := cloud.NewAPIClient(cfg)
resp, _, err := client.CampaignAPI.GetCampaign(context.Background()).Execute()
if err != nil {
return err
}use hanzo_cloud::apis::{configuration::Configuration, campaign_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = campaign_api::get_campaign(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.CampaignApi;
ApiClient client = new ApiClient();
client.setRequestInterceptor(b -> b.header("Authorization", "Bearer " + System.getenv("HANZO_API_KEY")));
var result = new CampaignApi(client).getCampaign();curl https://api.hanzo.ai/v1/campaign \
-H "Authorization: Bearer $HANZO_API_KEY"Tool campaign, op get_campaign — POST the JSON-RPC envelope to https://api.hanzo.ai/v1/mcp.
curl -X POST https://api.hanzo.ai/v1/mcp \
-H "Authorization: Bearer $HANZO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "campaign",
"arguments": {
"op": "get_campaign",
"input": {}
}
}
}'How is this guide?