ExperimentsGet launch plan

Get launch plan

The complete Meta ad-side recipe for conducting the holdout: control regions resolved to Marketing API targeting region keys, the exact excluded_geo_locations change, apply/revert dates, a step-by-step checklist, and paste-ready API calls. Instructions only — Mythic never mutates the ad account. Non-US regions are returned under unresolved_regions with a Targeting Search call to resolve them.

curl -X GET "https://mythic-analytics.gulp.workers.dev/client/v1/incrementality/experiments/123e4567-e89b-12d3-a456-426614174000/launch-plan" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN"
{
  "success": true,
  "data": {
    "strategy": "holdout",
    "launchable": true,
    "launch_blockers": [
      "example_string"
    ],
    "summary": "example_string",
    "apply_on": "2024-12-25",
    "revert_on": "2024-12-25",
    "control_regions": [
      {
        "key": "3878",
        "name": "Ohio"
      }
    ],
    "test_regions": [
      {
        "key": "3878",
        "name": "Ohio"
      }
    ],
    "unresolved_regions": [
      "example_string"
    ],
    "targeting_change": {},
    "steps": [
      "example_string"
    ],
    "api_calls": {
      "verify_region_keys": "example_string",
      "read_targeting": "example_string",
      "apply_exclusions": "example_string"
    },
    "notes": [
      "example_string"
    ]
  }
}
GET
/client/v1/incrementality/experiments/{id}/launch-plan
GET
Base URLstring

Target server for requests. Edit to use your own host.

Bearer Token
Bearer Tokenstring
Required

Client key as bearer token. Use an agency key (Bearer ak_...) for read-write access or a location secret key (Bearer sk_...) for read-only access. Scoped keys (mcp_) are accepted too and need incrementality:read or incrementality:write. See Using an mcp_ key over HTTP.

Client key as bearer token. Use an agency key (Bearer ak_...) for read-write access or a location secret key (Bearer sk_...) for read-only access. Scoped keys (mcp_) are accepted too and need incrementality:read or incrementality:write. See Using an mcp_ key over HTTP.
path
idstring
Required

Experiment identifier.

Format: uuid
Request Preview
Response

Response will appear here after sending the request

Authentication

header
Authorizationstring
Required

Bearer token. Client key as bearer token. Use an agency key (Bearer ak_...) for read-write access or a location secret key (Bearer sk_...) for read-only access. Scoped keys (mcp_) are accepted too and need incrementality:read or incrementality:write. See Using an mcp_ key over HTTP.

Path Parameters

idstring
Required

Experiment identifier.

Responses

successboolean
dataobject