What is Skop?

Skop is an intelligent file scraper API that uses AI to find and extract documents from websites based on natural language prompts. Simply provide a website URL and describe what documents you’re looking for, and Skop will navigate the site, identify relevant documents, and extract them for you. Base URL: https://api.skop.dev

Get Started

Start scraping documents in minutes with our quickstart guide.

Key Features

Natural Language Prompts

Describe what you’re looking for in plain English: “Find board meeting minutes from 2025”

Smart Document Discovery

AI-powered navigation finds documents across multiple pages automatically

Multiple File Formats

Extract PDF, DOC, DOCX, TXT and other document formats

Confidence Scoring

Each extracted document includes an AI confidence score for relevance

Common Use Cases

Financial Reports

Extract quarterly reports, annual statements, and financial documents

Legal Documents

Find contracts, policies, terms of service, and legal notices

Meeting Minutes

Gather board meeting minutes, committee reports, and corporate governance documents

Research Papers

Collect academic papers, whitepapers, and technical documentation

Quick Example

const response = await fetch('https://api.skop.dev/scrape/', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer sk-your-api-key',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    website: 'https://example.com',
    prompt: 'Find meeting minutes from 2025'
  })
})

const job = await response.json()
console.log('Job created:', job.job_id)

API Reference

Full API Documentation

Explore all endpoints, parameters, and response formats