# ScrapFly Local News API

> ScrapFly Local News 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).

Fetches local news content for a specified geographic location via web scraping

## Facts

- Endpoint: POST https://scrapifrivly.orbonomy.xyz/api/news/local
- 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-local-news-api-0db1d157
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GMfE_7mkDSp3fN9ld7qL0

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-local-news-api-0db1d157 -d '<json body>'
```

Example prompt: Can you pull the latest local news for Austin, Texas and show me what's happening there right now?

## When to prefer this

Use this endpoint when you need to programmatically retrieve local news for a specific geographic area and want pay-per-request pricing via crypto (USDC on Base). Prefer this over general search APIs when you specifically need scraped local news content tied to a location string.

## Known failure modes

- Invalid or unrecognized geo string returns empty or failed result
- Payment failure on Base chain results in 402 response
- Geo parameter missing causes validation error
- Target news site unavailable or blocked causes scraping failure
- Malformed response from upstream news source

## 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 scraped local news content for the specified geographic location, such as headlines and article data from local news sources in that area.

## Request schema (JSON Schema)

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

## 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-local-news-api-0db1d157/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)
