← APIs / Firecrawl
Verified

Firecrawl

Apiosk Basicsby Apiosk Basics · General

Search, scrape and extract live web pages into agent-ready content.

web-extractionapi
Price per request
$0.06
About

Firecrawl turns web pages and search results into clean, LLM-ready markdown, metadata and structured content. This listing exposes the hosted v2 search and scrape endpoints through Apiosk with the upstream API key injected by the gateway.

Base URL
https://gateway.apiosk.com/firecrawl
Technical Specs
Auth MethodapiKey
Response FormatJSON
Endpoints2
Endpoints
MethodPathDescriptionCost
POST /scrape Scrape a single URL into markdown, HTML, summary, screenshot or other Firecrawl formats.
$0.06 default
View details
POST /search Search the web and optionally retrieve scrape-ready content for each result.
$0.08 default
View details
Endpoint documentation
POST/scrape
$0.06 default
Description

Scrape a single URL into markdown, HTML, summary, screenshot or other Firecrawl formats.

Pricing
$0.06 default
Request schema
{
  "properties": {
    "formats": {
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "url": {
      "format": "uri",
      "type": "string"
    }
  },
  "required": [
    "url"
  ],
  "type": "object"
}
Response schema
{
  "properties": {
    "data": {
      "type": "object"
    },
    "success": {
      "type": "boolean"
    }
  },
  "type": "object"
}
Example request
{
  "formats": [
    "markdown"
  ],
  "url": "https://example.com"
}
Example response
{
  "data": {
    "markdown": "# Example Domain",
    "metadata": {
      "title": "Example Domain"
    }
  },
  "success": true
}
POST/search
$0.08 default
Description

Search the web and optionally retrieve scrape-ready content for each result.

Pricing
$0.08 default
Request schema
{
  "properties": {
    "limit": {
      "maximum": 10,
      "minimum": 1,
      "type": "integer"
    },
    "query": {
      "type": "string"
    },
    "scrapeOptions": {
      "type": "object"
    }
  },
  "required": [
    "query"
  ],
  "type": "object"
}
Response schema
{
  "properties": {
    "creditsUsed": {
      "type": "number"
    },
    "data": {
      "type": "array"
    },
    "success": {
      "type": "boolean"
    }
  },
  "type": "object"
}
Example request
{
  "limit": 1,
  "query": "OpenAI agent search"
}
Example response
{
  "creditsUsed": 1,
  "data": [
    {
      "description": "Example result",
      "title": "Example",
      "url": "https://example.com"
    }
  ],
  "success": true
}