# 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-14).

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/brand-mention-search
- Price: $0.324/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-strale-io-ff718ac0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XkkC50bx1BaKHXqhiUQPu

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 api-strale-io-ff718ac0
```

Example prompt: Can you search Google for mentions of 'Acme Corp' and show me the top 10 results — URLs, titles, snippets, and whether each mention is positive or negative?

## When to prefer this

Use this endpoint when you need to discover and analyze external web mentions of a specific brand, product, or company name with sentiment context. Prefer this over generic web scraping when you want structured brand-monitoring results including sentiment and source classification per result.

## Known failure modes

- Missing brand_name parameter returns validation error
- Brand name with no Google results returns empty result set
- Rate limiting or quota exceeded returns 429 or payment error
- Invalid max_results value returns schema validation error
- Transient Google search unavailability causes 5xx 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

A list of search results each containing a clickable URL, page title, text snippet, sentiment classification, and source type — all verifiable and human-readable

## Example request

```json
{
 "brand_name": "Apple",
 "max_results": 5,
 "exclude_own_domain": "apple.com"
}
```

## 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/api-strale-io-ff718ac0/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)
