v1

latestOpenAPI 3.1.02026-07-2617125852.3 KB
SuperSearchEnrichment

Facet keywords for a signal category

Return the top matching keyword tokens for a given signal category and keyword field, aggregated from the last 90 days of signal data. Powers the Signals filter autocomplete in the Lead Finder. Unknown (category, field) pairs return 400.

Requires one of the following scopes: supersearch_enrichments:read, supersearch_enrichments:all, all:read, all:all

post/api/v2/supersearch-enrichment/signal-keywords-facet

Request body

categorystring required

Signal category to facet against (e.g. linkedin_post_contact).

fieldstring required

Indexed keyword field on autobound_signals to aggregate on.

prefixstring

Optional case-insensitive prefix to narrow the tokens returned.

limitnumber

Max number of keyword buckets to return (1-100).

Example request

{
  "category": "linkedin_post_contact",
  "field": "tags",
  "prefix": "ai",
  "limit": 20
}

Response

Default Response

Example response

{
  "keywords": [
    {
      "keyword": "artificial intelligence",
      "count": 22418
    }
  ]
}