n8n is a powerful workflow automation tool. By connecting it to Agent Media Tools, you can build automated pipelines that process images, generate PDFs, scrape websites, transcribe audio, and more โ triggered by webhooks, schedules, or events.
Sign up at agentmediatools.com and create an API key from your account dashboard.
Add a new HTTP Request node with these settings:
| Setting | Value |
|---|---|
| Method | POST (or GET for read-only endpoints) |
| URL | https://agentmediatools.com/api/agent/scrape (or any endpoint) |
| Authentication | Header Auth โ Authorization: Bearer mt_your_key_here |
| Body | JSON โ depends on the endpoint |
https://agentmediatools.com/api/screenshot{
"url": "{{ $json.body.url }}",
"width": 1280,
"full_page": true,
"format": "png"
}
Set Response Format to File.
https://agentmediatools.com/api/resize-imageimage (file from step 1) plus width: 800, format: webp
downloadUrlhttps://agentmediatools.com/api/html-to-pdf{
"url": "https://your-dashboard.com/report",
"width": 1280,
"full_page": true
}
https://agentmediatools.com/api/transcribeaudio field, or JSON with url field
| Endpoint | Method | What It Does |
|---|---|---|
/api/screenshot | POST | Full-page or viewport screenshot |
/api/html-to-pdf | POST | Convert web page to PDF |
/api/resize-image | POST | Resize an uploaded image |
/api/convert-image | POST | Convert image format |
/api/compress-image | POST | Compress image |
/api/merge-pdf | POST | Merge multiple PDFs |
/api/transcribe | POST | Transcribe audio to text |
/api/qrcode | POST | Generate QR code |
/api/paste | POST | Create a paste |
/api/shorten | POST | Shorten a URL |
/api/uuid | GET | Generate UUID |
/api/ip | GET | Get public IP |
See the full API docs for all 70+ endpoints.
File.