# ScrapFly Maps Search API

> ScrapFly Maps Search API is a paid API for AI agents from scrapifrivly.orbonomy.xyz, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-14).

Searches maps data and returns location/business information based on a text query, via a pay-per-request x402 endpoint.

## Facts

- Endpoint: POST https://scrapifrivly.orbonomy.xyz/api/maps
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scrapfly-maps-search-api-fce6927e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kwnhd1H2EU6Q8IKqkWMBk

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 scrapfly-maps-search-api-fce6927e -d '<json body>'
```

Example prompt: Search maps for 'best pizza restaurants in Chicago' and give me the results including names, addresses, and ratings.

## When to prefer this

Use this endpoint when you need to search for businesses, locations, or points of interest by keyword and retrieve structured map/place data. Prefer this over generic web scraping endpoints when you specifically need maps search results with location context.

## Known failure modes

- Empty or missing query returns validation error
- Query too vague returns no results or generic data
- Payment failure via x402 returns 402 Payment Required
- Rate limiting or quota exceeded returns 429 or error response
- Downstream maps data source unavailable returns 503 or empty data object

## How this service works

69 endpoints for data, content generation, and web scraping. Pay per request via x402 on Base chain.

## Output

A JSON object with a 'success' boolean and a 'data' object containing map search results such as business names, addresses, ratings, and other place details matching the query.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "query"
 ],
 "properties": {
  "query": {
   "type": "string",
   "description": "query"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "success"
 ],
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scrapfly-maps-search-api-fce6927e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scrapifrivly.orbonomy.xyz](https://www.zero.xyz/host/scrapifrivly.orbonomy.xyz/llms.txt)
