# ForgeMesh SEO Query Expander

> ForgeMesh SEO Query Expander is a paid API for AI agents from seo.forgemesh.io, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Generates deterministic related SEO query variants from a seed search query

## Facts

- Endpoint: GET https://seo.forgemesh.io/v1/query-expand
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forgemesh-seo-query-expander-6022cda0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AQIqrN8RYB_A3pLJtwOhX

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 forgemesh-seo-query-expander-6022cda0
```

Example prompt: Can you expand the query 'best running shoes for flat feet' into a set of related SEO query variants I can use for content targeting?

## When to prefer this

Choose this endpoint when you need deterministic, reproducible query expansions — meaning the same seed query always returns the same variants — rather than probabilistic or AI-generated suggestions that vary between calls. Prefer this over generic keyword tools when you want consistent, auditable SEO query sets for automated pipelines or content planning workflows.

## Known failure modes

- Missing required 'q' query parameter returns an error
- Empty or whitespace-only query string may return empty expansions or error
- Very short or ambiguous queries may produce low-quality or minimal expansions
- Network timeout on slow connections
- Service returns HTTP 402 if payment via x402 is not properly attached

## How this service works

Generate deterministic related SEO query variants

## Output

Returns an array of deterministic related query expansions derived from the seed query, along with a provenance string indicating how the expansions were generated. The expansions represent semantically related search variants suitable for SEO content targeting.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "q"
     ],
     "properties": {
      "q": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "expansions": {
       "type": "array"
      },
      "provenance": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "expansions": [
   {
    "query": "domain authority checker"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/forgemesh-seo-query-expander-6022cda0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from seo.forgemesh.io](https://www.zero.xyz/host/seo.forgemesh.io/llms.txt)
