# ScrapFly Maps Search API

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

Searches maps and returns location/place data for a given query string

## Facts

- Endpoint: POST https://test-scrapfly.orbonomy.xyz/api/maps
- Price: $0.05/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-0ab687dc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VbGqYDf6XVnV89LQFlFa9

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-0ab687dc -d '<json body>'
```

Example prompt: Search the maps for 'coffee shops near Union Square San Francisco' and give me the results including names, addresses, and ratings.

## When to prefer this

Use this endpoint when you need to search maps for places, businesses, or locations by a natural language query and retrieve structured location data. Prefer this over general web scraping when you specifically need map/place search results.

## Known failure modes

- Empty or missing query returns validation error
- Query yields no results — success true but data empty
- Rate limiting or payment failure returns 402 or error
- Maps provider blocks or throttles the scrape — partial or no data returned
- Ambiguous query returns unrelated locations

## How this service works

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

## Output

Returns a success boolean and a data object containing map search results for the given query, likely including place names, addresses, ratings, coordinates, and other business or location metadata scraped from a maps provider.

## 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-0ab687dc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from test-scrapfly.orbonomy.xyz](https://www.zero.xyz/host/test-scrapfly.orbonomy.xyz/llms.txt)
