Back to KB
Difficulty
Intermediate
Read Time
4 min

GET /api/local-only/crawl-library

By Codcompass Team··4 min read

GET /api/local-only/crawl-library

Overview

The /api/local-only/crawl-library endpoint provides a read-only, paginated interface for querying the locally stored crawl library. It is designed for developers building or integrating with the local crawler UI, enabling search, filtering, and pagination of previously crawled content records. This endpoint should be called when you need to retrieve metadata or content entries from the local SQLite database without triggering a new crawl operation.

Because the endpoint is public and requires no authentication, it is ideal for internal dashboards, debugging tools, and lightweight frontend integrations that display crawl history or search indexed content. The route is marked as force-dynamic, ensuring that every request bypasses static generation and fetches the latest state from the underlying database.

Endpoint Reference

PropertyValue
Path/api/local-only/crawl-library
HTTP MethodGET
AuthenticationNone (Public)
Rendering ModeDynamic (force-dynamic)
Base URLhttps://<your-domain>/api/local-only/crawl-library

Request Format

This endpoint does not require request headers or a request body. All configuration is passed via URL query parameters.

Query Parameters

ParameterTypeRequiredDefaultConstraintsDescription
limitintegerNo401200Maximum number of records to return per page. Values outside this range are au

🎉 Mid-Year Sale — Unlock Full Article

Base plan from just $4.99/mo or $49/yr

Sign in to read the full article and unlock all 635+ tutorials.

Sign In / Register — Start Free Trial

7-day free trial · Cancel anytime · 30-day money-back

Sources

  • api-reference