Filters

Get the workspace filters

The noise rules applied to every keyword before a mention is stored: excluded terms and authors, excluded GitHub repositories, and the subreddits Reddit posts may (or may not) come from. A post they reject is never classified, delivered or billed. Keyword-level rules live on each keyword (`matching`); both apply.

GET
/v1/filters
AuthorizationBearer <token>

API key minted via POST /v1/api-keys (format mk_live_...)

In: header

Response Body

application/json

application/json

curl -X GET "https://api.mentio.dev/v1/filters"
{
  "excludedTerms": [
    "string"
  ],
  "excludedAuthors": [
    "string"
  ],
  "excludedRepos": [
    "string"
  ],
  "subreddits": {
    "only": [
      "string"
    ],
    "excluded": [
      "string"
    ]
  },
  "updatedAt": "string"
}
{
  "error": {
    "code": "unauthorized",
    "message": "string",
    "requestId": "string",
    "retryAfterSeconds": 0
  }
}