{"openapi":"3.1.0","info":{"title":"IndieLaunch public API","version":"1.0.0","description":"Read-only access to products launched on IndieLaunch. No authentication."},"servers":[{"url":"https://indielaunch.dev/api/v1"}],"paths":{"/products":{"get":{"operationId":"searchProducts","summary":"Search live products, newest first","parameters":[{"name":"q","in":"query","schema":{"type":"string"},"description":"Keywords."},{"name":"category","in":"query","schema":{"type":"string"},"description":"Category slug or name."},{"name":"limit","in":"query","schema":{"type":"integer","minimum":1,"maximum":100,"default":20}}],"responses":{"200":{"description":"Matching products","content":{"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","description":"Live products in the whole catalog."},"count":{"type":"integer"},"products":{"type":"array","items":{"type":"object","properties":{"slug":{"type":"string"},"name":{"type":"string"},"tagline":{"type":"string"},"description":{"type":"string"},"website":{"type":"string","format":"uri","description":"The product's own site."},"page":{"type":"string","format":"uri","description":"Its page on IndieLaunch."},"categories":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"slug":{"type":"string"}}}},"pricing":{"type":"string","nullable":true},"upvotes":{"type":"integer"},"launchedAt":{"type":"string","format":"date-time","nullable":true},"premium":{"type":"boolean"}}}}}}}}}}}},"/categories":{"get":{"operationId":"listCategories","summary":"Every category with its product count","responses":{"200":{"description":"Categories"}}}}}}