ToolAssay

Tokenizes caller-supplied campaign and trend keywords, calculates overlap relati

Tokenizes caller-supplied campaign and trend keywords, calculates overlap relative to the trend vocabulary, and flags any supplied blocked keyword. It neither discovers live trends nor recommends deception, impersonation or spam; its scoped purpose is a transparent relevance and brand-safety screen.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
873 msmedian answer time
$0.003listed price per call
$0.003price it asked us

Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.

Endpoint

POST https://creator.halowerk.com/v1/trend-hijack

CategoryEverything else
Provider hostcreator.halowerk.com
Networkseip155:8453
Payment schemesexact
Self-reported calls, 30 days2 from 2 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.003 873 ms

Example input (from the provider)

{
  "body": {
    "blocked_keywords": [
      "disaster",
      "medical emergency"
    ],
    "campaign_keywords": [
      "repair",
      "circular economy",
      "local craft"
    ],
    "trends": [
      {
        "keywords": [
          "repair",
          "reuse",
          "local craft"
        ],
        "name": "right to repair week"
      },
      {
        "keywords": [
          "disaster",
          "storm",
          "emergency supplies"
        ],
        "name": "storm emergency"
      }
    ]
  },
  "bodyType": "json",
  "method": "POST",
  "type": "http"
}

Promised output schema (from the provider)

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "input": {
      "additionalProperties": false,
      "properties": {
        "body": {
          "additionalProperties": false,
          "properties": {
            "blocked_keywords": {
              "items": {
                "maxLength": 128,
                "minLength": 1,
                "type": "string"
              },
              "maxItems": 100,
              "type": "array",
              "uniqueItems": true
            },
            "campaign_keywords": {
              "items": {
                "maxLength": 128,
                "minLength": 1,
                "type": "string"
              },
              "maxItems": 100,
              "minItems": 1,
              "type": "array",
              "uniqueItems": true
            },
            "trends": {
              "items": {
                "additionalProperties": false,
                "properties": {
                  "keywords": {
                    "items": {
                      "maxLength": 128,
                      "minLength": 1,
                      "type": "string"
                    },
                    "maxItems": 100,
                    "minItems": 1,
                    "type": "array"
                  },
                  "name": {
                    "maxLength": 256,
                    "minLength": 1,
                    "type": "string"
                  }
                },
                "required": [
                  "name",
                  "keywords"
                ],
                "type": "object"
              },
              "maxItems": 1000,
              "minItems": 1,
              "type": "array"
            }
          },
          "required": [
            "campaign_keywords",
            "blocked_keywords",
            "trends"
          ],
          "type": "object"
        },
        "bodyType": {
          "enum": [
            "json",
            "form-data",
            "text"
          ],
          "type": "string"
        },
        "method": {
          "enum": [
            "POST",
            "PUT",
            "PATCH"
          ],
          "type": "string"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method",
        "bodyType",
        "body"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON