crawlio

Quickstart

Get up and running with Crawlio in minutes. Follow these steps to start your first web scraping job using the SDK of your choice or directly through the REST API.

🧾 Sign Up & Log In

  1. Go to Crawlio Website
  2. Create an account or log in

🔑 Generate API Key

  1. Navigate to the "API Keys" section in your Crawlio dashboard.
  2. Click “Generate New Key”.
  3. Copy the key and store it securely. This will be required for all SDK and API requests.

💻 Choose Your Integration Method

1. Install the SDK

npm i crawlio.js

2. Initialize with your API key

import { Crawlio } from "crawlio.js"

const client = new Crawlio({apiKey: "YOUR_API_KEY"})

3. Start a scraping job

import { Crawlio } from "crawlio-js"

const client = new Crawlio({apiKey: "YOUR_API_KEY"})

On this page