Search
Full-text search across name + description with practical filters so you can ask for production-ready options directly.
Endpoint
bash
GET /search?q=weather&category=Weather&auth=No&pricing=Free&cors=Yes&https=true&alive=true&sortBy=name&sortOrder=asc&page=1&limit=20 GET /search?query=weather # alias for q GET /v1/categories # to populate category filter
Parameters
q | querystringMatches name + description
categorystring | string[]Category name(s)
authstring | string[]No, API Key, OAuth, …
pricingstring | string[]Free, Freemium, Paid
corsstring | string[]Yes, No, Unknown
httpsstring | string[]true / false
alivestring|booleantrue / false
sortByname | responseTime | categorydefault name
sortOrderasc | descdefault asc
page / limitint 1…100default 1/20
Response shape (legacy ApiItem)
json
{ "data": [{ "id":"…", "slug":"open-meteo", "name":"Open-Meteo", "description":"…", "link":"https://…", "category":"Weather", "auth":"No", "pricing":"Free", "cors":"Yes", "https":"true", "isAlive": true, "responseTime": 184, "statusCode": 200 }], "pagination": { "page":1, "limit":20, "total": 42 } }Practical recipes
bash
# prototype without OAuth curl "https://api.reqistry.dev/search?auth=No&pricing=Free&alive=true&limit=10" # browser-callable curl "https://api.reqistry.dev/search?cors=Yes&https=true&alive=true" # fastest curl "https://api.reqistry.dev/search?sortBy=responseTime&sortOrder=asc&limit=10"
Web search lives at reqistry.dev/search?q=… with the same filters and health dots.