# Felipe Andrade — Scrape JSON

> Felipe Andrade — Scrape JSON is a paid API for AI agents from felipeandrade.xyz, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Fetches and returns structured JSON data from any given URL via a web scraping service

## Facts

- Endpoint: GET https://felipeandrade.xyz/api/agent/scrape-json
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/felipe-andrade-scrape-json-267d5c5c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MEIzUMizF8ba4x8Fqzk_y

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 felipe-andrade-scrape-json-267d5c5c
```

Example prompt: Can you scrape https://example.com/products and return the page content as structured JSON?

## When to prefer this

Choose this endpoint when you need to programmatically fetch and extract structured JSON content from a live web URL on demand, especially within an x402 micropayment-enabled agent workflow where per-call billing at $0.005 USDC is acceptable.

## Known failure modes

- Invalid or malformed URL returns an error
- Target URL is unreachable or returns non-200 HTTP status
- Target page blocks scraping (anti-bot measures, CAPTCHAs)
- Response is not parseable as JSON
- Rate limiting or payment failure returns 402

## How this service works

Felipe Andrade&#x27;s living archive of commerce systems, interactive products, motion, visual identities, and AI production workflows.

## Output

Returns a JSON object containing the scrape status (e.g. 'complete'), the service ID ('scrape-json'), and the source URL that was scraped, along with the extracted page content in structured JSON form.

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "status": "complete",
  "service_id": "scrape-json",
  "source_url": "https://example.com"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/felipe-andrade-scrape-json-267d5c5c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from felipeandrade.xyz](https://www.zero.xyz/host/felipeandrade.xyz/llms.txt)
