Tools
List all tools
Returns the public Toolblip directory. The tool array is nested at tools.tools to match the app client contract.
{ tools: { tools: [...] } }Headers
Acceptapplication/jsonRecommended for all requestsQuery parameters
categorystringOptionalFilter tools by category slug or name.searchstringOptionalSearch tool names and descriptions.pagenumberOptionalPagination page number.per_pagenumberOptionalNumber of tools to return per page.curl "https://toolblip-api-production.up.railway.app/api/tools" \
-H "Accept: application/json"{
"tools": {
"tools": [
{
"id": 1,
"slug": "json-formatter",
"name": "JSON Formatter",
"description": "Format, validate, and prettify JSON data instantly.",
"category": "Developer",
"is_pro": false,
"emoji": "🧰",
"created_at": "2026-01-15T10:30:00.000000Z"
}
]
}
}