API Documentation

FlashCrawl API

Powerful web scraping and data extraction API with AI-powered structured output.

Getting Started

Base URL

All API requests should be made to the following base URL:

API Base URL
https://api.flashi.ai

Complete endpoint URLs are formed by combining the base URL with the endpoint path. For example: https://api.flashi.ai/v2/scrape

Authentication

All API requests require authentication using a Bearer token in the Authorization header.

Request Headers
Authorization: Bearer YOUR_API_KEY

Scrape

Extract clean content from web pages

GET
/v2/scrape

Scrape URL Content

Retrieve cleaned Markdown content from a URL. Returns HTML by default.

Parameters

NameTypeRequiredDescription
url
string
Required
The URL of the website to scrape.
format
string
Optional
Output format. Use "json" to receive a JSON object containing the markdown.
scroll
boolean
Optional
Try scrolling to reveal content. Defaults to true. If false, the page will be loaded as is and quicker response time.
Example Request
GET /v2/scrape?url=https://example.com&format=json&should_click_elements=true
Authorization: Bearer YOUR_API_KEY