Documentation

Stekpad docs

Five verbs, three surfaces, one engine. Pick where to start.

Quickstart

Get an API key, scrape a page, see the row.

Two minutes from signup to your first stored row.

  1. 01

    Get a key

    Sign up, go to Settings → API keys, copy the stkpd_live_... token.

  2. 02

    Call scrape

    Run a curl against /v1/scrape. You get a run_id, the markdown, and credits_charged: 1.

  3. 03

    Open the dataset

    Every scrape lands in a dataset. Visit Datasets → Default to see the row you just created.

  4. 04

    Install MCP (optional)

    Drop the Stekpad block into your Claude Desktop or Cursor config. Reading datasets is free, forever.

curl
bash
curl -X POST https://api.stekpad.com/v1/scrape \
-H "Authorization: Bearer stkpd_live_..." \
-H "Content-Type: application/json" \
-d '{
"url": "https://example.com",
"formats": ["markdown", "json"]
}'
MCP setup

Install once. Read your datasets for free.

Every Stekpad verb is an MCP tool from day one. Reads cost zero credits — agents can revisit yesterday's data without hitting a paywall.

claude_desktop_config.json
json
{
"mcpServers": {
"stekpad": {
"command": "npx",
"args": ["-y", "@stekpad/mcp"],
"env": {
"STEKPAD_API_KEY": "stkpd_live_..."
}
}
}
}
Full MCP setup guide →
Cookie bridge

Authenticated scraping with zero stored cookies.

When you call /v1/scrape with use_session, Stekpad routes the fetch through your Chrome extension. Cookies stay in your browser. Architecturally, not as a policy.

How the cookie bridge works →
Enrichers

19 enrichers in the box. Zero third-party vendors.

Every enricher runs in our stack. None of them call a third-party data vendor. One credit per row.

ai_extractLLMai_summaryLLMfind_emailsWebfind_socialsWebemail_verifyValidationwhoisValidationcompany_enrichSpecializedgeocodeSpecialized

Get your API key.

Two minutes to your first stored row. No credit card required.

Stekpad docs — quickstart, API reference, MCP setup — Stekpad