# Strale Brand Mention Search

> Strale Brand Mention Search is a paid API for AI agents from api.strale.io, paid per call via x402, $0.324/call, status unknown (last checked 2026-09-15).

Searches Google for brand mentions and returns URLs, titles, snippets, sentiment, and source type for each result.

## Facts

- Endpoint: GET https://api.strale.io/x402/v2/brand-mention-search
- Price: $0.324/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-brand-mention-search-cdfd9335
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kcphebWMP5eI_HYNi9P4Z

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability strale-brand-mention-search-cdfd9335
```

Example prompt: Can you search Google for brand mentions of 'Notion' and return up to 20 results, excluding notion.so so I can see what third-party sites are talking about them?

## When to prefer this

Choose this endpoint when you need real, verifiable web mentions of a brand with sentiment context, clickable URLs, and source classification — particularly useful for reputation monitoring, PR tracking, or competitor research. Prefer it over social-media-specific monitoring tools when you need broad web coverage including news sites, blogs, and forums indexed by Google.

## Known failure modes

- Missing required 'brand_name' parameter returns a validation error
- Brand name with no Google results returns an empty mentions array
- Overly generic brand names may return noisy, unrelated results
- Rate limiting or quota exhaustion may return a 402 or 429 error
- Invalid 'max_results' value may cause a parameter error

## How this service works

Search Google for brand mentions. Returns URLs, titles, snippets, sentiment, and source type. Every result is a clickable, verifiable URL.

## Output

Returns an array of brand mention objects (each with a clickable URL, page title, snippet, sentiment label, and source type), plus the queried brand name and total result count found.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "brand_name"
 ],
 "properties": {
  "brand_name": {
   "type": "string"
  },
  "max_results": {
   "type": "integer"
  },
  "exclude_own_domain": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "mentions": {
  "type": "array"
 },
 "brand_name": {
  "type": "string"
 },
 "total_results_found": {
  "type": "integer"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-brand-mention-search-cdfd9335/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
