DestinationsPer-parameter match coverage over time

Per-parameter match coverage over time

meta_capi destinations only. Daily coverage for each match key Meta scored — em, ph, fbp, fbc, external_id, ip_address, ct, st, zip, country — as one row per (day, event, identifier).

Match quality is a composite, so a drop in it names no fix. This is the series that does: the parameter whose coverage moved with the score is the gap to chase.

null coverage is not 0%. It means Meta listed the key without scoring it. Zero would say "this parameter is never sent", which is a different problem with a different fix.

curl -X GET "https://mythic-analytics.gulp.workers.dev/client/v1/destinations/example_string/quality/match-keys?days_back=30&event_name=John%20Doe&identifier=example_string" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN"
{
  "success": true,
  "data": {
    "action_id": "123e4567-e89b-12d3-a456-426614174000",
    "days_back": 42,
    "match_keys": [
      {
        "day": "2024-12-25",
        "event_name": "John Doe",
        "identifier": "example_string",
        "action_id": "123e4567-e89b-12d3-a456-426614174000",
        "coverage_percentage": 3.14,
        "captured_at": "2024-12-25T10:00:00Z"
      }
    ]
  }
}
GET
/client/v1/destinations/{id}/quality/match-keys
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 destinations:read or destinations: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 destinations:read or destinations:write. See Using an mcp_ key over HTTP.
query
days_backinteger

Days of history. Default 30, clamped to 1-365.

Min: 1 • Max: 365
query
identifierstring

Restrict to one match key, e.g. ip_address.

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 destinations:read or destinations:write. See Using an mcp_ key over HTTP.

Path Parameters

Query Parameters

days_backinteger

Days of history. Default 30, clamped to 1-365.

identifierstring

Restrict to one match key, e.g. ip_address.

Responses

successboolean
dataobject