Skip to main content

Scrape

Fetch any URL, return clean markdown text

$0.01
per call
POST /scrape Web Intelligence

Try It

This tool requires an API key. Get one from $1 to try it.

curl Example

curl -X POST https://api.aipaygen.com/scrape \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
  "url": "string"
}'

Python Example

import requests

resp = requests.post(
    "https://api.aipaygen.com/scrape",
    headers={
        "Authorization": "Bearer YOUR_API_KEY",
        "Content-Type": "application/json",
    },
    json={
    "url": "string"
}
)
print(resp.json())

Response Format

{
  "url": "string",
  "text": "string",
  "word_count": "int"
}

Related Tools

Extract
$0.02
Summarize
$0.01
Keywords
$0.01

Get API Key — From $1

$0.25 trial credits free. ~40 AI calls. No subscription.

Get Started

Or install via MCP: pip install aipaygen-mcp