Scrape a single page and return its main content as markdown.
curl --request POST \
--url https://api.aisa.one/apis/v1/firecrawl/scrape \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"url": "https://docs.firecrawl.dev",
"proxy": "basic",
"formats": [
"markdown"
]
}
'import requests
url = "https://api.aisa.one/apis/v1/firecrawl/scrape"
payload = {
"url": "https://docs.firecrawl.dev",
"proxy": "basic",
"formats": ["markdown"]
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({url: 'https://docs.firecrawl.dev', proxy: 'basic', formats: ['markdown']})
};
fetch('https://api.aisa.one/apis/v1/firecrawl/scrape', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.aisa.one/apis/v1/firecrawl/scrape",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'url' => 'https://docs.firecrawl.dev',
'proxy' => 'basic',
'formats' => [
'markdown'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.aisa.one/apis/v1/firecrawl/scrape"
payload := strings.NewReader("{\n \"url\": \"https://docs.firecrawl.dev\",\n \"proxy\": \"basic\",\n \"formats\": [\n \"markdown\"\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.aisa.one/apis/v1/firecrawl/scrape")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"url\": \"https://docs.firecrawl.dev\",\n \"proxy\": \"basic\",\n \"formats\": [\n \"markdown\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.aisa.one/apis/v1/firecrawl/scrape")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"url\": \"https://docs.firecrawl.dev\",\n \"proxy\": \"basic\",\n \"formats\": [\n \"markdown\"\n ]\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"markdown": "<string>",
"metadata": {
"title": "<string>",
"description": "<string>",
"sourceURL": "<string>",
"statusCode": 123
}
},
"creditsUsed": 123
}Search API
Firecrawl Scrape
Fetch one URL and get its main content back as markdown.
POST
https://api.aisa.one/apis/v1
/
firecrawl
/
scrape
Scrape a single page and return its main content as markdown.
curl --request POST \
--url https://api.aisa.one/apis/v1/firecrawl/scrape \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"url": "https://docs.firecrawl.dev",
"proxy": "basic",
"formats": [
"markdown"
]
}
'import requests
url = "https://api.aisa.one/apis/v1/firecrawl/scrape"
payload = {
"url": "https://docs.firecrawl.dev",
"proxy": "basic",
"formats": ["markdown"]
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({url: 'https://docs.firecrawl.dev', proxy: 'basic', formats: ['markdown']})
};
fetch('https://api.aisa.one/apis/v1/firecrawl/scrape', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.aisa.one/apis/v1/firecrawl/scrape",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'url' => 'https://docs.firecrawl.dev',
'proxy' => 'basic',
'formats' => [
'markdown'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.aisa.one/apis/v1/firecrawl/scrape"
payload := strings.NewReader("{\n \"url\": \"https://docs.firecrawl.dev\",\n \"proxy\": \"basic\",\n \"formats\": [\n \"markdown\"\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.aisa.one/apis/v1/firecrawl/scrape")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"url\": \"https://docs.firecrawl.dev\",\n \"proxy\": \"basic\",\n \"formats\": [\n \"markdown\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.aisa.one/apis/v1/firecrawl/scrape")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"url\": \"https://docs.firecrawl.dev\",\n \"proxy\": \"basic\",\n \"formats\": [\n \"markdown\"\n ]\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"markdown": "<string>",
"metadata": {
"title": "<string>",
"description": "<string>",
"sourceURL": "<string>",
"statusCode": 123
}
},
"creditsUsed": 123
}Fetch one URL and get its main content back as markdown.
Set this endpoint up in your agent →
url and proxy are both required — proxy must be basic on the metered profile — and formats selects the output. Returns success and data with markdown plus a large metadata object carrying the page’s og: and twitter: tags, statusCode, sourceURL and language. Measured at about 10 seconds for one page. ⚠️ The URL must be HTTPS and must not point at a PDF; both are rejected rather than best-effort. Use it when you have the URL and want the text. For several URLs at once post_firecrawl_batch_scrape runs them as one background job, and post_tavily_extract does a small batch synchronously. To find URLs first, post_firecrawl_map.
First time? Point any MCP client at
https://mcp.aisa.one/mcp — Claude
Code, Codex, Cursor, VS Code and the rest. Authorization is OAuth: the client
opens a browser, you click Allow once, and there is no key to paste. The
commands per client, and what each call costs, are on
aisa.one/mcp.Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
The HTTPS URL to scrape. PDF URLs are not supported on the metered profile.
Example:
"https://docs.firecrawl.dev"
Proxy tier. Must be explicitly set to "basic" on the metered profile.
Available options:
basic Example:
"basic"
Optional output formats. When present it must be exactly ["markdown"].
Available options:
markdown Example:
["markdown"]