Skip to content
Eden Engine

Brand & Styleguide Cache Warmer (by Domain)

omnial/utility-prefetch

Queues a background job that warms the cache for a domain's brand data or styleguide extraction so a later lookup call for that domain returns faster. This call itself returns only an acknowledgement that the warm job was queued -- it never returns brand or styleguide content.

activeper callv1
Provider
Web & Business Data Network
Category
company-enrichment
Provider price
$0.00 per call
Latency p50 / p95
— / —
Success rate
—
Verified
—

Provider list price; Omnial MCP charges provider cost plus a platform markup on top.

Contract

input_schema.json
{
  "type": "object",
  "required": [
    "type",
    "identifier"
  ],
  "properties": {
    "type": {
      "enum": [
        "brand",
        "styleguide"
      ],
      "type": "string",
      "description": "What to warm: 'brand' queues a brand-data fetch, 'styleguide' queues a styleguide extraction."
    },
    "timeoutMS": {
      "type": "integer",
      "maximum": 300000,
      "minimum": 1000,
      "description": "Upstream timeout in milliseconds (max 300000). The provider aborts the call with a 408 when exceeded. Keep it below the endpoint's requestTimeoutMs so the provider answers before the platform's own budget expires."
    },
    "identifier": {
      "type": "object",
      "properties": {
        "email": {
          "type": "string",
          "format": "email",
          "pattern": "^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$",
          "maxLength": 320,
          "description": "WORK email whose domain is extracted and validated. Free-provider and disposable addresses are rejected upstream."
        },
        "domain": {
          "type": "string",
          "minLength": 3,
          "description": "Domain name, e.g. 'example.com' (no scheme required)."
        }
      },
      "description": "The lookup target — exactly one of domain or email.",
      "additionalProperties": false
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "Echoes the request's `type` input: \"brand\" or \"styleguide\"."
    },
    "domain": {
      "type": "string",
      "description": "Echoes the requested domain back, e.g. \"stripe.com\"."
    },
    "status": {
      "type": "string",
      "description": "Observed value on both fixtures: \"ok\"."
    },
    "message": {
      "type": "string",
      "description": "Human-readable confirmation, e.g. \"Domain prefetch queued successfully\" or \"Styleguide prefetch queued successfully\" -- varies by `type`."
    },
    "request_id": {
      "type": "string",
      "description": "An opaque id for this queued warm job, for the vendor's own tracking."
    }
  },
  "description": "The queue acknowledgement, as returned at the result path. Observed identical in shape on both captured fixtures (a brand warm and a styleguide warm) -- this call never returns brand or styleguide content itself, only confirmation that the warm job was queued.",
  "additionalProperties": true
}

Pricing

Every real charge, itemised. A model that quietly omits one is a slow financial leak, so nothing here is rolled up, and a charge that only applies to some inputs says so rather than being added in.

Prices in this catalog are the provider's own list price, not your bill: Omnial MCP charges provider cost plus a platform markup on top, so what you are charged is higher than the figure shown. For the exact amount a specific call will cost, run omnial_execute with dry_run: true; that number includes the markup and is what we hold while the call runs. It is a quote, not a cap on the charge.

ChargeRate
Per call
Flat, regardless of what comes back
$0.00
Cost basis
Not recorded

This tool's catalog entry does not record how its final bill is determined, so we will not tell you whether its cost is fixed before the call or reported by the provider afterwards. Either way what is held is a quote rather than a cap: you are charged what the call actually costs, bounded at 2x the quote.

Updated
Sep 23, 2026