# Relaystation Place Search

> Relaystation Place Search is a paid API for AI agents from api.relaystation.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Free-text search for places and points of interest, returning names, addresses, and coordinates as JSON

## Facts

- Endpoint: POST https://api.relaystation.ai/v1/location/place-search
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/relaystation-place-search-b81c8080
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kV0c0sbL6NBOErD8RtQZY

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 relaystation-place-search-b81c8080 -d '<json body>'
```

Example prompt: Search for coffee shops near coordinates 37.7749, -122.4194 in the US, give me up to 5 results in English.

## When to prefer this

Use this endpoint when you need fast, cheap ($0.01/call) free-text place and POI search with coordinate output, especially within the Relaystation ecosystem where a single balance covers 155+ tools. Prefer it over dedicated geocoding APIs when you want consolidated billing and don't need advanced routing or real-time traffic data.

## Known failure modes

- Query string too short or empty returns validation error
- Country codes not in ISO 3166-1 alpha-3 format cause rejection
- biasPosition array must have exactly 2 numeric elements or is ignored
- maxResults outside 1–20 range returns validation error
- No matching places found returns empty results array
- Insufficient balance returns payment/authorization error

## How this service works

$0.01/search. Free-text place and point-of-interest search — names, addresses, coordinates back as JSON. 155 tools, one balance — relaystation.ai

## Output

A JSON array of place results, each containing the place name, full address, geographic coordinates (latitude/longitude), and associated metadata such as country and place type, up to the requested maximum number of results.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "type": "object",
     "properties": {
      "query": {
       "type": "string",
       "minLength": 1,
       "maxLength": 512
      },
      "biasPosition": {
       "type": "array",
       "items": {
        "type": "number"
       },
       "minItems": 2,
       "maxItems": 2
      },
      "maxResults": {
       "type": "integer",
       "minimum": 1,
       "maximum": 20
      },
      "language": {
       "type": "string"
      },
      "countries": {
       "type": "array",
       "items": {
        "type": "string",
        "minLength": 3,
        "maxLength": 3
       }
      }
     }
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/relaystation-place-search-b81c8080/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.relaystation.ai](https://www.zero.xyz/host/api.relaystation.ai/llms.txt)
