Tools

Scrape URL

Beta
POST

Request

This endpoint expects an object.
url
stringRequired
params
map from strings to anyOptional

Response

This endpoint returns an object
content
string
markdown
string
metadata
object
POST
1curl -X POST https://api.athenaintelligence.ai/api/v0/tools/firecrawl/scrape-url \
2 -H "X-API-KEY: <apiKey>" \
3 -H "Content-Type: application/json" \
4 -d '{
5 "url": "https://athenaintelligence.ai"
6}'
200
Successful
1{
2 "content": "Welcome to Athena Intelligence",
3 "markdown": "# Welcome to Athena Intelligence",
4 "metadata": {
5 "title": "Athena Intelligence | AI-native analytics platform and artificial employee",
6 "description": "Athena is an AI-native analytics platform and artificial employee built to accelerate analytics workflows by offering enterprise teams co-pilot and auto-pilot modes. Athena learns your workflow as a co-pilot, allowing you to hand over controls to her for autonomous execution with confidence.",
7 "language": "language",
8 "sourceURL": "https://athenaintelligence.ai"
9 }
10}