GET /v1/software
List all software products. Supports ?category=, ?q= (name search), ?limit= (max 100), ?offset=.
curl https://nypdfolwwyubfqqljmxj.functions.supabase.co/public-api/v1/software?limit=5 \
-H "Authorization: Bearer YOUR_API_KEY"Response shape:
{
"data": [
{
"id": "tekmon",
"name": "Tekmon",
"tagline": "...",
"category": "QHSE Platform",
"rating": 4.9,
"review_count": 187,
"website": "https://...",
...
}
],
"pagination": { "limit": 25, "offset": 0, "total": 142 }
}