GET
/api/v1/toolsTool Catalogue API
Search the full catalogue of live tools on induwara.lk. Returns each tool's title, description, category, keywords and URL, ordered by real organic traffic, and flags the tools that also have a computational API endpoint.
Parameters
| Param | In | Required | Description |
|---|---|---|---|
| q | query | no | Free-text search across title, description and keywords. |
| category | query | no | Filter to one category, e.g. Finance, Education, AI. |
| limit | query | no | Results per page, 1-200 (default 50). |
| offset | query | no | Pagination offset (default 0). |
Request
curl "https://induwara.lk/api/v1/tools?q=tax&limit=10"JavaScript (SDK):
import { InduwaraLK } from "https://induwara.lk/sdk/induwaralk.js";
const api = new InduwaraLK();
const data = await api.tools(/* … */);