ExperimentsCoefficient history (progressive truth over time)

Coefficient history (progressive truth over time)

Every computed experiment's coefficient in computed_at order, each with the running precision-weighted median at that point — watch the progressive truth converge test by test. Grouped by series_key: only experiments measuring the same estimand (channel + revenue definition + spend scope) pool together. Partial (mid-window) computes and poor-control-fit results are excluded.

curl -X GET "https://mythic-analytics.gulp.workers.dev/client/v1/incrementality/coefficients/history?channel=example_string" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN"
{
  "success": true,
  "data": [
    {
      "channel": "meta",
      "series_key": "example_string",
      "points": [
        {
          "experiment_id": "123e4567-e89b-12d3-a456-426614174000",
          "name": "John Doe",
          "computed_at": "2024-12-25T10:00:00Z",
          "test_window": {
            "from": "2026-05-01",
            "to": "2026-05-31"
          },
          "coefficient": 3.14,
          "ci_width": 3.14,
          "confidence": 3.14,
          "running_coefficient": 3.14,
          "test_count": 10
        }
      ]
    }
  ]
}
GET
/client/v1/incrementality/coefficients/history
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.
query
channelstring

Restrict to one channel (e.g. meta).

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.

Query Parameters

channelstring

Restrict to one channel (e.g. meta).

Responses

successboolean
dataarray