# RagRadar Grid — Facebook Place Search

> RagRadar Grid — Facebook Place Search is a paid API for AI agents from grid.ragradar.space, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-15).

Searches for Facebook places/locations by query string, returning social place intelligence data.

## Facts

- Endpoint: GET https://grid.ragradar.space/api/grid/facebook/search/place
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ragradar-grid-facebook-place-search-5cb61bc1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gMAPEGh2K1wI-AR48cfTB

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 ragradar-grid-facebook-place-search-5cb61bc1
```

Example prompt: Search Facebook places for 'Blue Bottle Coffee San Francisco' and show me the place details like address, ratings, and social info.

## When to prefer this

Use this endpoint when you need to look up Facebook place/location data for a specific business or venue by name or keyword, and you are willing to pay $0.50 USDC per call via x402 micropayments. Prefer this over manual Facebook searches when building automated pipelines that need structured place intelligence from Facebook's social graph.

## Known failure modes

- No results found for the query (empty data object returned)
- Payment failure via x402 micropayment (402 Payment Required)
- Rate limiting or quota exceeded
- Invalid or missing query parameter returns error
- Facebook data temporarily unavailable or scraping blocked
- Malformed response if the upstream Facebook data source changes structure

## How this service works

37 paid REST endpoints: Facebook social & ads intelligence, Amazon e-commerce data, job market intelligence. Pay per call via x402 micropayments (USDC on Base).

## Output

Returns a JSON object with Facebook place data matching the search query, including place details such as name, address, ratings, and other social signals available via the RagRadar Grid intelligence layer.

## 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",
     "properties": {
      "q": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {},
  "source": "RagRadar Grid"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ragradar-grid-facebook-place-search-5cb61bc1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from grid.ragradar.space](https://www.zero.xyz/host/grid.ragradar.space/llms.txt)
