---
name: amt-structured-scrape
description: Extract structured JSON fields from public pages with CSS selectors. Use for price/title extraction and agent research on public URLs.
---

# Structured scrape API (Agent Media Tools)

## When to use
- Pull specific fields (title, price, headings) from a public page
- Prefer schema+selectors over dumping full HTML into the model

## API
`POST https://agentmediatools.com/api/structured-scrape`  
Auth: Bearer API key (free daily quota then flexible credits)

```json
{
  "url": "https://example.com",
  "schema": {
    "type": "object",
    "properties": {
      "title": { "type": "string", "selector": "h1" },
      "price": { "type": "number", "selector": ".price" }
    }
  }
}
```

## Tool page
https://agentmediatools.com/tool/structured-scrape

## Related
- AgentBrowse (goal-oriented browse): `/agentbrowse` · skill `/skills/agentbrowse/SKILL.md`
- Public pages only; private networks blocked
- Pricing: https://agentmediatools.com/pricing
