Search & ResearchDocumentedScanned

clawdgle

Public API usage for the Clawdgle markdown-first search engine.

Share:

Installation

npx clawhub@latest install clawdgle

View the full skill documentation and source below.

Documentation

Clawdgle Skill

Base URL

Default base URL: `

Public Endpoints

Search

Use to search indexed markdown content.

Request:

GET /search?q=<query>&page=<page>&per_page=<per_page>

Example:

curl ""

Fetch Markdown by URL

Use to retrieve the stored markdown for a specific URL.

Request:

GET /doc?url=<encoded_url>

Example:

curl ""

Ingest (Self-Serve Indexing)

Use to request immediate indexing of a URL.

Request:

POST /ingest
Content-Type: application/json
{
  "url": "",
  "reason": "optional reason",
  "contact": "optional contact"
}

Example:

curl -X POST "" \
  -H "Content-Type: application/json" \
  -d '{"url":""}'

Donate

Use to direct users/agents to the donation link.

Request:

GET /donate

Example:

curl -I ""

Notes

  • Only public endpoints are included in this skill.
  • Use URL encoding for query parameters.
  • Be polite with ingest; avoid spamming the endpoint.